public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Patrice Clement" <monsieurp@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/saxon/
Date: Sat, 17 Oct 2015 22:36:42 +0000 (UTC)	[thread overview]
Message-ID: <1445121293.ef4529d45b0e6dd4151d4e2451a2e4fe852f98a3.monsieurp@gentoo> (raw)

commit:     ef4529d45b0e6dd4151d4e2451a2e4fe852f98a3
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 17 22:34:21 2015 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sat Oct 17 22:34:53 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef4529d4

dev-java/saxon: Clean up old. Fixes bug 562972.

Package-Manager: portage-2.2.20.1
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 dev-java/saxon/Manifest             |  1 -
 dev-java/saxon/saxon-8.4b-r3.ebuild | 66 -----------------------------------
 dev-java/saxon/saxon-8.4b-r4.ebuild | 68 -------------------------------------
 3 files changed, 135 deletions(-)

diff --git a/dev-java/saxon/Manifest b/dev-java/saxon/Manifest
index 19b2be1..0114e78 100644
--- a/dev-java/saxon/Manifest
+++ b/dev-java/saxon/Manifest
@@ -1,3 +1,2 @@
 DIST saxon6-5-5.zip 3346162 SHA256 a76806dda554edc844601d0ec0fb3d2a10a2f397eabf3569dfb44b628363afc4 SHA512 2d76ab6da8fc8ca8502139f6b620d4c9e94732a520083480e3936f6bd0a9f069252a7a05df53dab49aabec505764b2ec4ca1b36022bb56df568883a0491f495a WHIRLPOOL 11bd5242e2c82ac7467561946a0b3b35e53af48962906739136ce97561ca38fd950011a1f4a65cd597d2279af244c7b474707017108296c8deaee8fcecde7652
-DIST saxonb8-4.zip 7266831 SHA256 c47f0f88c765d246a3e6666228db050fba5089bc8eff426d1b23ef807d1c7ff0 SHA512 cca8681dff8c851e1be513a5d3334a6395291f1773ea452d759445100c4e97e8fafee3e2fd7a1974d234ed6404e2292e231d00830bd90740e2dab1c671fec1b5 WHIRLPOOL 0d8ec91f77d632416eb4362264081a340addece41de11dc7203de63309e6c07a92c40f087724eb161671043f90790abf97ce520e2095414bc01ab42596a4ab39
 DIST saxonhe9-2-0-6source.zip 2942625 SHA256 4f15659cf8bb537b4b20f63cf060bf56f39453ab520fa912b2e9fe87e90a972e SHA512 6c59c0cbed905cf561387acb54bb31f0a251432deb0edf498ec4f4d9955bbcc12d1765ace594090d3ccb0416e3e72349466e430bb4f799b51fd12ce8fc5a144e WHIRLPOOL ca1b5b8f2f70eb72259b8128606830adebc6f6eed8c5c6ff9f222a672556ff8f73219960758480366004b656100e017bfdebad7f4dc60afc9cb3ab6793fa9364

diff --git a/dev-java/saxon/saxon-8.4b-r3.ebuild b/dev-java/saxon/saxon-8.4b-r3.ebuild
deleted file mode 100644
index 9dff433..0000000
--- a/dev-java/saxon/saxon-8.4b-r3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="doc examples source"
-
-inherit java-pkg-2 eutils java-ant-2
-
-DESCRIPTION="A collection of tools for processing XML documents: XSLT processor, XSL library, parser"
-MyPV=${PV%b}
-SRC_URI="mirror://sourceforge/saxon/saxonb${MyPV/./-}.zip"
-HOMEPAGE="http://saxon.sourceforge.net/"
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-COMMON_DEP="
-	dev-java/xom
-	~dev-java/jdom-1.0
-	=dev-java/xml-commons-external-1.3*"
-RDEPEND=">=virtual/jre-1.4
-	${COMMON_DEP}"
-
-DEPEND=">=virtual/jdk-1.4
-	app-arch/unzip
-	${COMMON_DEP}"
-
-S=${WORKDIR}
-
-src_unpack() {
-	unpack ${A}
-
-	unpack ./source.zip
-	mkdir src
-	mv net src
-
-	epatch "${FILESDIR}/${P}-jikes.patch"
-
-	cp -i "${FILESDIR}/build-${PV}.xml" build.xml || die
-
-	rm -v *.jar || die
-	rm samples/java/*.class || die
-
-	mkdir lib && cd lib
-	java-pkg_jar-from jdom-1.0
-	java-pkg_jar-from xom
-	# Is not needed with 1.5 but gets pulled in by deps any way
-	# without this emerging with sun-jdk-1.4 fails with
-	# JAVA_PKG_STRICT
-	java-pkg_jar-from xml-commons-external-1.3
-}
-
-src_install() {
-	java-pkg_dojar dist/*.jar
-
-	# the jar is named saxon8 and and helps if new slots come along
-	java-pkg_dolauncher ${PN}8 --main net.sf.saxon.Transform
-	if use doc; then
-		java-pkg_dojavadoc dist/doc/api doc/*
-		java-pkg_dohtml doc/*
-	fi
-	use examples && java-pkg_doexamples samples
-	use source && java-pkg_dosrc src/*
-}

diff --git a/dev-java/saxon/saxon-8.4b-r4.ebuild b/dev-java/saxon/saxon-8.4b-r4.ebuild
deleted file mode 100644
index 20bb1ba..0000000
--- a/dev-java/saxon/saxon-8.4b-r4.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-JAVA_PKG_IUSE="doc examples source"
-
-inherit java-pkg-2 eutils java-ant-2
-
-DESCRIPTION="A collection of tools for processing XML documents: XSLT processor, XSL library, parser"
-MyPV=${PV%b}
-SRC_URI="mirror://sourceforge/saxon/saxonb${MyPV/./-}.zip"
-HOMEPAGE="http://saxon.sourceforge.net/"
-
-LICENSE="MPL-1.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-COMMON_DEP="
-	dev-java/xom
-	dev-java/jdom:0
-	=dev-java/xml-commons-external-1.3*"
-RDEPEND=">=virtual/jre-1.4
-	${COMMON_DEP}"
-
-DEPEND=">=virtual/jdk-1.4
-	app-arch/unzip
-	${COMMON_DEP}"
-
-S=${WORKDIR}
-
-src_unpack() {
-	unpack ${A}
-
-	unpack ./source.zip
-	mkdir src
-	mv net src
-
-	epatch "${FILESDIR}/${P}-jikes.patch"
-
-	cp -i "${FILESDIR}/build-${PV}.xml" build.xml || die
-
-	rm -v *.jar || die
-	rm samples/java/*.class || die
-
-	mkdir lib && cd lib
-	java-pkg_jar-from jdom
-	java-pkg_jar-from xom
-	# Is not needed with 1.5 but gets pulled in by deps any way
-	# without this emerging with sun-jdk-1.4 fails with
-	# JAVA_PKG_STRICT
-	java-pkg_jar-from xml-commons-external-1.3
-}
-
-src_install() {
-	java-pkg_dojar dist/*.jar
-
-	# the jar is named saxon8 and and helps if new slots come along
-	java-pkg_dolauncher ${PN}8 --main net.sf.saxon.Transform
-	if use doc; then
-		java-pkg_dojavadoc dist/doc/api doc/*
-		java-pkg_dohtml doc/*
-	fi
-	use examples && java-pkg_doexamples samples
-	use source && java-pkg_dosrc src/*
-}


             reply	other threads:[~2015-10-17 22:36 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-17 22:36 Patrice Clement [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-15 11:14 [gentoo-commits] repo/gentoo:master commit in: dev-java/saxon/ Miroslav Šulc
2024-07-14 15:39 Sam James
2024-07-14  8:36 Arthur Zamarin
2024-07-14  8:36 Arthur Zamarin
2024-07-14  8:36 Arthur Zamarin
2024-06-14 10:12 Miroslav Šulc
2024-04-17  9:12 Miroslav Šulc
2023-12-17 10:06 Miroslav Šulc
2023-10-24 12:54 Miroslav Šulc
2022-04-23  7:05 Miroslav Šulc
2022-04-22 18:10 Arthur Zamarin
2022-04-22 18:10 Arthur Zamarin
2022-04-22 18:10 Arthur Zamarin
2022-04-22 18:10 Arthur Zamarin
2022-04-15  6:36 Arthur Zamarin
2022-04-15  6:22 Agostino Sarubbo
2022-03-15 17:23 Sam James
2022-03-15 17:23 Sam James
2020-10-20  4:11 Sam James
2019-05-18  1:14 Aaron Bauman
2018-04-14 19:18 Mikle Kolyada
2018-04-14 19:18 Mikle Kolyada
2018-04-12 20:54 Thomas Deutschmann
2018-04-05  3:29 Aaron Bauman
2018-03-14 15:01 Mikle Kolyada
2018-03-03 20:42 Patrice Clement
2017-07-13 18:32 Alexis Ballier
2017-03-21 23:00 Patrice Clement
2017-03-21 23:00 Patrice Clement
2017-03-21 23:00 Patrice Clement
2015-09-29 21:20 James Le Cuirot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1445121293.ef4529d45b0e6dd4151d4e2451a2e4fe852f98a3.monsieurp@gentoo \
    --to=monsieurp@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox