commit: b0fb163c7f4ef84d9bcdd3655d88b846d3e641f8 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com> AuthorDate: Wed Aug 5 19:49:15 2015 +0000 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org> CommitDate: Wed Aug 5 21:31:21 2015 +0000 URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=b0fb163c
[dev-java/hibernate*] Drop, same or newer version in tree dev-java/hibernate-annotations/ChangeLog | 39 ----- dev-java/hibernate-annotations/Manifest | 6 - .../hibernate-annotations-3.0_beta2.ebuild | 63 -------- .../hibernate-annotations-3.1_beta8.ebuild | 64 --------- .../hibernate-annotations-3.2.0.ebuild | 87 ------------ dev-java/hibernate-annotations/metadata.xml | 5 - dev-java/hibernate/ChangeLog | 158 --------------------- dev-java/hibernate/Manifest | 1 - .../hibernate/files/hibernate-3.0.5-nosplash.patch | 78 ---------- dev-java/hibernate/hibernate-3.0.5-r2.ebuild | 95 ------------- dev-java/hibernate/metadata.xml | 5 - 11 files changed, 601 deletions(-) diff --git a/dev-java/hibernate-annotations/ChangeLog b/dev-java/hibernate-annotations/ChangeLog deleted file mode 100644 index 6f1b5c8..0000000 --- a/dev-java/hibernate-annotations/ChangeLog +++ /dev/null @@ -1,39 +0,0 @@ -# ChangeLog for dev-java/hibernate-annotations -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: $ - - 29 Jan 2009; Alistair Bush <[email protected]> - hibernate-annotations-3.2.0.ebuild: - Drop keywords due to missing deps. - - 16 Nov 2008; Miroslav Šulc <[email protected]> - hibernate-annotations-3.2.0.ebuild: - fixed installation of javadoc - - 04 Sep 2008; Miroslav Šulc <[email protected]> - hibernate-annotations-3.2.0.ebuild: - Quickfix to be able to compile the package - - 11 Aug 2007; Petteri Räty <[email protected]> - hibernate-annotations-3.2.0.ebuild: - Use default src_compile. - - 11 Aug 2007; Petteri Räty <[email protected]> - -hibernate-annotations-3.2.0_rc2.ebuild: - Remove old version. - - 20 Mar 2007; William L. Thomson Jr. <[email protected]> ChangeLog: - Updated dep on javassist to reflect it's new slot, this version should be - removed. Uses stuff that is not included in deps - - 20 Mar 2007; William L. Thomson Jr. <[email protected]> ChangeLog: - Updated dep on javassist to reflect it's new slot - - 11 Feb 2007; kiorky <[email protected]> - hibernate-annotations-3.2.0.ebuild, metadata.xml: - Corrected dependencies - Fixed inherit - Fixed src_unpack - Fixed Copyright Dates/License - Filled #166441 - diff --git a/dev-java/hibernate-annotations/Manifest b/dev-java/hibernate-annotations/Manifest deleted file mode 100644 index e2732fa..0000000 --- a/dev-java/hibernate-annotations/Manifest +++ /dev/null @@ -1,6 +0,0 @@ -DIST hibernate-3.0.5.tar.gz 16097031 SHA256 6971edbbb7bda9e0d2b96a0a652c9040ccde9f17dfae0fe72cc017c3b29196fa -DIST hibernate-3.1.2.tar.gz 18498739 SHA256 1ff054a9208037ef7f7cb85753fde8431ccdd59789723c4dca52861b093b185b -DIST hibernate-3.2.0.ga.tar.gz 19744419 SHA256 e242eb6b243e7b0fac132f37f4e29bf06ec87c37be5a80a0849709a6cb89b03f -DIST hibernate-annotations-3.0beta2.tar.gz 1136471 SHA256 c2629f0dfad3e0af51a00609170a07e644acbd1cf5bb8a594205a1ec98548326 -DIST hibernate-annotations-3.1beta8.tar.gz 1182514 SHA256 48434ea4f1f537fce7cff2fc70fd8ae18c7eaf86893a4a3f48b091ab1278bbd0 -DIST hibernate-annotations-3.2.0.GA.tar.gz 2075220 SHA256 7ac81b03c4d4623cb7c883a3f85a47078edb261cde3fee2bfbc4fcf70a4e9bc8 diff --git a/dev-java/hibernate-annotations/hibernate-annotations-3.0_beta2.ebuild b/dev-java/hibernate-annotations/hibernate-annotations-3.0_beta2.ebuild deleted file mode 100644 index 78c7db4..0000000 --- a/dev-java/hibernate-annotations/hibernate-annotations-3.0_beta2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit java-pkg-2 - -MY_PV=${PV/_/} # TODO use versionator -MY_P="${PN}-${MY_PV}" -HIBERNATE_P="hibernate-3.0.5" - -DESCRIPTION="Annotations support for Hibernate" -HOMEPAGE="http://annotations.hibernate.org" -SRC_URI="mirror://sourceforge/hibernate/${MY_P}.tar.gz mirror://sourceforge/hibernate/${HIBERNATE_P}.tar.gz" -# http://prdownloads.sourceforge.net/hibernate/hibernate-annotations-3.1beta8.tar.gz?download -LICENSE="LGPL-2" -SLOT="3.0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -DEPEND=">=virtual/jdk-1.5" -RDEPEND=">=virtual/jre-1.5 - =dev-java/hibernate-3.1* - =dev-java/lucene-1*" - -S="${WORKDIR}/${MY_P}" -HIBERNATE_S="${WORKDIR}/hibernate-3.0" - -src_unpack() { - unpack ${A} - - cd ${HIBERNATE_S}/lib - # start: pulled from hibernate ebuild - rm *.jar - local JAR_PACKAGES="asm-2 c3p0 commons-collections - commons-logging dom4j-1 ehcache jaxen-1.1 jdbc2-stdext - log4j oscache proxool swarmcache-1.0 xerces-2" - for PACKAGE in ${JAR_PACKAGES}; do - java-pkg_jar-from ${PACKAGE} - done - java-pkg_jar-from cglib-2.1 cglib.jar - - java-pkg_jar-from jboss-module-cache-4 jboss-cache.jar - java-pkg_jar-from jboss-module-common-4 jboss-common.jar - java-pkg_jar-from jboss-module-j2ee-4 jboss-j2ee.jar - java-pkg_jar-from jboss-module-jmx-4 jboss-jmx.jar - java-pkg_jar-from jboss-module-system-4 jboss-system.jar - # end: pulled from hibernate ebuild - - java-pkg_jar-from hibernate-3.1 - - cd ${S}/lib - java-pkg_jar-from lucene-1 lucene.jar lucene-1.4.3.jar - # TODO ejb3-persistence.jar -} - -src_compile() { - eant -Djdk15.home=$(java-config --jdk) jar $(use_doc) -} - -src_install() { - java-pkg_dojar ${PN}.jar - -} diff --git a/dev-java/hibernate-annotations/hibernate-annotations-3.1_beta8.ebuild b/dev-java/hibernate-annotations/hibernate-annotations-3.1_beta8.ebuild deleted file mode 100644 index cf6331b..0000000 --- a/dev-java/hibernate-annotations/hibernate-annotations-3.1_beta8.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit java-pkg-2 - -MY_PV=${PV/_/} # TODO use versionator -MY_P="${PN}-${MY_PV}" -HIBERNATE_P="hibernate-3.1.2" - -DESCRIPTION="Annotations support for Hibernate" -HOMEPAGE="http://annotations.hibernate.org" -SRC_URI="mirror://sourceforge/hibernate/${MY_P}.tar.gz mirror://sourceforge/hibernate/${HIBERNATE_P}.tar.gz" -LICENSE="LGPL-2" -SLOT="3.1" -KEYWORDS="~amd64 ~x86" -IUSE="doc source" - -DEPEND=">=virtual/jdk-1.5" -RDEPEND=">=virtual/jre-1.5 - =dev-java/hibernate-3.1* - =dev-java/lucene-1*" - -S="${WORKDIR}/${MY_P}" -HIBERNATE_S="${WORKDIR}/hibernate-3.1" - -src_unpack() { - unpack ${A} - - cd ${HIBERNATE_S}/lib - # start: pulled from hibernate ebuild - rm *.jar - local JAR_PACKAGES="asm-2 c3p0 commons-collections - commons-logging dom4j-1 ehcache jaxen-1.1 jdbc2-stdext - log4j oscache proxool swarmcache-1.0 xerces-2" - for PACKAGE in ${JAR_PACKAGES}; do - java-pkg_jar-from ${PACKAGE} - done - java-pkg_jar-from cglib-2.1 cglib.jar - - java-pkg_jar-from jboss-module-cache-4 jboss-cache.jar - java-pkg_jar-from jboss-module-common-4 jboss-common.jar - java-pkg_jar-from jboss-module-j2ee-4 jboss-j2ee.jar - java-pkg_jar-from jboss-module-jmx-4 jboss-jmx.jar - java-pkg_jar-from jboss-module-system-4 jboss-system.jar - # end: pulled from hibernate ebuild - - java-pkg_jar-from hibernate-3.1 - - cd ${S}/lib - java-pkg_jar-from lucene-1 lucene.jar lucene-1.4.3.jar - # TODO ejb3-persistence.jar -} - -src_compile() { - eant jar $(use_doc) -} - -src_install() { - java-pkg_dojar ${PN}.jar - - use doc && java-pkg_dohtml -r doc/api - use source && java-pkg_dosrc src/* -} diff --git a/dev-java/hibernate-annotations/hibernate-annotations-3.2.0.ebuild b/dev-java/hibernate-annotations/hibernate-annotations-3.2.0.ebuild deleted file mode 100644 index 30f2e99..0000000 --- a/dev-java/hibernate-annotations/hibernate-annotations-3.2.0.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit java-pkg-2 java-ant-2 - -MY_PV="${PV}.GA" -MY_P="${PN}-${MY_PV}" -HIBERNATE_P="hibernate-3.2.0.ga" - -DESCRIPTION="Annotations support for Hibernate" -HOMEPAGE="http://annotations.hibernate.org" -SRC_URI="mirror://sourceforge/hibernate/${MY_P}.tar.gz mirror://sourceforge/hibernate/${HIBERNATE_P}.tar.gz" -LICENSE="LGPL-2.1" -SLOT="3.2" -KEYWORDS="" -IUSE="doc source" - -COMMON_DEPS=" - dev-java/antlr - =dev-java/asm-1.5* - dev-java/c3p0 - =dev-java/cglib-2.1* - dev-java/commons-logging - =dev-java/dom4j-1* - =dev-java/ehcache-1.2* - =dev-java/hibernate-${SLOT}* - =dev-java/jaxen-1.1* - =dev-java/javassist-3* - dev-java/jdbc2-stdext - dev-java/jgroups - dev-java/log4j - dev-java/oscache - dev-java/proxool - =dev-java/swarmcache-1* - =dev-java/xerces-2*" - -DEPEND=">=virtual/jdk-1.5 - dev-java/ant-antlr - dev-java/commons-collections - ${COMMON_DEPS} - " -RDEPEND=">=virtual/jre-1.5 - =dev-java/lucene-1* - ${COMMON_DEPS} - " - -S="${WORKDIR}/${MY_P}" -HIBERNATE_S="${WORKDIR}/hibernate-${SLOT}" - -src_unpack() { - unpack ${A} - -# DONNO WHAT IS IT DOING THERE : -# java-pkg_jar-from jboss-cache jboss-cache.jar -# java-pkg_jar-from jboss-module-common-4 jboss-common.jar -# java-pkg_jar-from jboss-module-j2ee-4 jboss-j2ee.jar -# java-pkg_jar-from jboss-module-jmx-4 jboss-jmx.jar -# java-pkg_jar-from jboss-module-system-4 jboss-system.jar -# END DONNO - - cd ${HIBERNATE_S}/lib || die "cd failed" - # start: pulled from hibernate ebuild - local JAR_PACKAGES="c3p0 javassist-3 - commons-logging dom4j-1 jaxen-1.1 jdbc2-stdext - log4j oscache proxool swarmcache-1.0 xerces-2 jgroups" - for PACKAGE in ${JAR_PACKAGES}; do - java-pkg_jar-from ${PACKAGE} - done - java-pkg_jar-from --build-only commons-collections - - java-pkg_jar-from ehcache-1.2 ehcache.jar - java-pkg_jar-from cglib-2.1 cglib.jar - java-pkg_jar-from --build-only ant-antlr - java-pkg_jar-from antlr - java-pkg_jar-from --build-only ant-core ant.jar - java-pkg_jar-from asm-1.5 asm.jar - java-pkg_jar-from asm-1.5 asm-attrs.jar - java-pkg_jar-from hibernate-${SLOT} -} - -src_install() { - java-pkg_dojar ${PN}.jar - - use doc && java-pkg_dojavadoc doc/api - use source && java-pkg_dosrc src/* -} diff --git a/dev-java/hibernate-annotations/metadata.xml b/dev-java/hibernate-annotations/metadata.xml deleted file mode 100644 index 838c00a..0000000 --- a/dev-java/hibernate-annotations/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>java</herd> -</pkgmetadata> diff --git a/dev-java/hibernate/ChangeLog b/dev-java/hibernate/ChangeLog deleted file mode 100644 index 03a8685..0000000 --- a/dev-java/hibernate/ChangeLog +++ /dev/null @@ -1,158 +0,0 @@ -# ChangeLog for dev-java/hibernate -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/hibernate/ChangeLog,v 1.37 2008/07/30 18:58:25 betelgeuse Exp $ - -*hibernate-3.1.3-r1 (30 Jul 2008) - - 30 Jul 2008; Petteri Räty <[email protected]> - +hibernate-3.1.3-r1.ebuild: - Remove unneeded dependencies found by java-dep-checker. - - 02 Nov 2007; Petteri Räty <[email protected]> - hibernate-3.0.5-r2.ebuild: - Migrate to modular ant. - - 02 Aug 2007; Joshua Nichols <[email protected]> metadata.xml: - Removed myself from metadata.xml. - - 25 May 2007; Vlastimil Babka <[email protected]> - hibernate-3.0.5-r2.ebuild: - Add missing dependencies. - - 26 Apr 2007; Krzysiek Pawlik <[email protected]> - -hibernate-3.0_rc1.ebuild: - Remove old version depending on dev-java/jcs-bin. - - 25 Apr 2007; Krzysiek Pawlik <[email protected]> hibernate-3.1.3.ebuild: - Disable splash, QA fixes. - - 23 Apr 2007; Petteri Räty <[email protected]> hibernate-3.1.3.ebuild: - Migrate to splitted ant. - - 01 Apr 2007; Petteri Räty <[email protected]> - -hibernate-2.1.8.ebuild: - Remove slot 2 because it's still generation 1 and nothing is depending on it. - - 24 Jan 2007; Vlastimil Babka <[email protected]> hibernate-2.1.8.ebuild: - Correct cglib-2 dep to pull correct slot. - - 24 Jan 2007; Vlastimil Babka <[email protected]> - hibernate-3.0.5-r2.ebuild, hibernate-3.1.3.ebuild: - Correct asm-2 dep which could have pulled different slot. - - 12 Jan 2007; Vlastimil Babka <[email protected]> - hibernate-3.0.5-r2.ebuild: - Change ant-core dep to full ant, because antlr task is needed. Remove jdbc2 - jar-from also from 3.0.5. - - 12 Jan 2007; Petteri Räty <[email protected]> hibernate-3.1.3.ebuild: - Remove java-pkg_jar-from call for jdbc2-stdext as it is not needed to - compile hibernate and not dependent upon. Fixes bug #161582. - - 11 Jan 2007; Joshua Nichols <[email protected]> metadata.xml: - Added self as maintainer. - -*hibernate-3.0.5-r2 (11 Jan 2007) - - 11 Jan 2007; Joshua Nichols <[email protected]> - +files/hibernate-3.0.5-nosplash.patch, +hibernate-3.0.5-r2.ebuild: - Version bump brought in from the Java overlay. JBoss support is disabled - until we finish packaging modular JBoss. - -*hibernate-3.1.3 (11 Jan 2007) - - 11 Jan 2007; Vlastimil Babka <[email protected]> +hibernate-3.1.3.ebuild: - Version bump, based on ebuild from java overlay developed there by nichoj. - Drops jboss USE flag - modular jboss4 is still only in the overlay, so use - the overlay if you need it. Closes bug #115369 by Mike Slinn - <[email protected]> - - 04 May 2006; Joshua Nichols <[email protected]> - hibernate-3.0_rc1.ebuild: - Changed dependency on ant-core to ant, because antlr is needed. bug #132268 - - 15 Oct 2005; Thomas Matthijs <[email protected]> hibernate-2.1.8.ebuild, - hibernate-3.0_rc1.ebuild: - move dev-java/jmx dev-java/sun-jmx, removed some use flags, only way i could - get it too build, and st_lim doesnt seem to be fixing it - - 31 Jul 2005; Lim Swee Tat <[email protected]> hibernate-2.1.8.ebuild: - Updated and fixed 2.1.8 - - 23 Mar 2005; Lim Swee Tat <[email protected]> : - Fixing bug #85821 - - 17 Mar 2005; Lim Swee Tat <[email protected]> hibernate-3.0_rc1.ebuild: - Fixed 3.0rc1 - - 17 Mar 2005; Lim Swee Tat <[email protected]> -hibernate-2.1.4.ebuild, - -hibernate-2.1.6.ebuild, hibernate-2.1.7.ebuild, hibernate-2.1.8.ebuild, - hibernate-3.0_rc1.ebuild: - Fixed 2.1.8 and retired 2.1.4 and 2.1.6 - - 16 Mar 2005; Lim Swee Tat <[email protected]> : - Fixed hibernate-2.1.8 - -*hibernate-3.0_rc1 (11 Mar 2005) -*hibernate-2.1.8 (11 Mar 2005) - - 11 Mar 2005; Lim Swee Tat <[email protected]> +hibernate-2.1.8.ebuild, - +hibernate-3.0_rc1.ebuild: - Added 2.1.8 and 3.0rc1 - - 27 Dec 2004; Lim Swee Tat <[email protected]> hibernate-2.1.7.ebuild: - Fixed the URL to the correct one. There was an update to hibernate-2.1.7c - -*hibernate-2.1.7 (25 Nov 2004) - - 25 Nov 2004; Lim Swee Tat <[email protected]> +hibernate-2.1.7.ebuild: - Version bump for hibernate. Still not moving the binary packages out. Coz do - not have enough time to do it. - - 22 Oct 2004; Dylan Carlson <[email protected]> hibernate-2.1.4.ebuild, - hibernate-2.1.6.ebuild: - Keywords ~amd64. - - 16 Oct 2004; Thomas Matthijs <[email protected]> hibernate-2.1.4.ebuild, - hibernate-2.1.6.ebuild: - use java-pkg_dohtml instead of dohtml to also install the package-list in - case of api docs: #50740 - -*hibernate-2.1.6 (11 Aug 2004) - - 11 Aug 2004; Konstantin Arkhipov <[email protected]> - +hibernate-2.1.6.ebuild: - Version bump. - - 03 Jul 2004; Chris Aniszczyk <[email protected]> hibernate-2.1.4.ebuild: - Dep fixes. Closes #55411. Thanks to Andreas Sahlbach <[email protected]> - - 27 Jun 2004; Chris Aniszczyk <[email protected]> hibernate-2.1.4.ebuild: - Marking stable on ppc - - 16 Jun 2004; Lim Swee Tat <[email protected]> hibernate-2.1.4.ebuild: - Modified to use S=${WORKDIR}/${PN}-${PV:0:3} as suggested by user. Not bad - actually. - -*hibernate-2.1.4 (15 Jun 2004) - - 15 Jun 2004; Lim Swee Tat <[email protected]> +hibernate-2.1.4.ebuild: - Just added hibernate 2.1.4 - Closing bug #53846 - -*hibernate-2.1.3 (28 Apr 2004) - - 28 Apr 2004; Lim Swee Tat <[email protected]> : - Updated to 2.1.3 - Added several library files - Added sample configuration in doc/sample - - 21 Mar 2004; David Holm <[email protected]> hibernate-2.1.2.ebuild: - Added to ~ppc. - -*hibernate-2.1.2 (18 Mar 2004) - - 18 Mar 2004; Chris Aniszczyk <[email protected]> : - Initial Import. Thanks to cheeser <[email protected]> for the initial - ebuild. - diff --git a/dev-java/hibernate/Manifest b/dev-java/hibernate/Manifest deleted file mode 100644 index 25ca765..0000000 --- a/dev-java/hibernate/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST hibernate-3.0.5.tar.gz 16097031 SHA256 6971edbbb7bda9e0d2b96a0a652c9040ccde9f17dfae0fe72cc017c3b29196fa diff --git a/dev-java/hibernate/files/hibernate-3.0.5-nosplash.patch b/dev-java/hibernate/files/hibernate-3.0.5-nosplash.patch deleted file mode 100644 index 13ce65f..0000000 --- a/dev-java/hibernate/files/hibernate-3.0.5-nosplash.patch +++ /dev/null @@ -1,78 +0,0 @@ -diff -ru hibernate-3.0/build.xml hibernate-3.0-patched/build.xml ---- hibernate-3.0/build.xml 2005-05-25 01:03:45.000000000 -0400 -+++ hibernate-3.0-patched/build.xml 2005-07-08 01:35:00.000000000 -0400 -@@ -132,7 +132,7 @@ - </delete> - </target> - -- <target name="init" depends="splash" description="Initialize the build"> -+ <target name="init" description="Initialize the build"> - <tstamp> - <format property="subversion" pattern="yyyy-MM-dd hh:mm:ss"/> - </tstamp> -Only in hibernate-3.0/lib: _README.txt -Only in hibernate-3.0/lib: ant-1.6.3.jar -Only in hibernate-3.0/lib: ant-antlr-1.6.3.jar -Only in hibernate-3.0/lib: ant-junit-1.6.3.jar -Only in hibernate-3.0/lib: ant-launcher-1.6.3.jar -Only in hibernate-3.0/lib: ant-swing-1.6.3.jar -Only in hibernate-3.0/lib: antlr-2.7.5H3.jar -Only in hibernate-3.0/lib: antlr.license.txt -Only in hibernate-3.0/lib: apache.license-2.0.txt -Only in hibernate-3.0/lib: apache.license.txt -Only in hibernate-3.0-patched/lib: asm-analysis.jar -Files hibernate-3.0/lib/asm-attrs.jar and hibernate-3.0-patched/lib/asm-attrs.jar differ -Only in hibernate-3.0-patched/lib: asm-commons.jar -Only in hibernate-3.0-patched/lib: asm-tree.jar -Only in hibernate-3.0-patched/lib: asm-util.jar -Only in hibernate-3.0-patched/lib: asm-xml.jar -Files hibernate-3.0/lib/asm.jar and hibernate-3.0-patched/lib/asm.jar differ -Only in hibernate-3.0/lib: c3p0-0.8.5.2.jar -Only in hibernate-3.0-patched/lib: c3p0.jar -Only in hibernate-3.0/lib: c3p0.license.txt -Only in hibernate-3.0/lib: cglib-2.1.jar -Only in hibernate-3.0-patched/lib: cglib.jar -Only in hibernate-3.0/lib: cleanimports.jar -Only in hibernate-3.0/lib: commons-collections-2.1.1.jar -Only in hibernate-3.0-patched/lib: commons-collections.jar -Only in hibernate-3.0/lib: commons-logging-1.0.4.jar -Only in hibernate-3.0-patched/lib: commons-logging-api.jar -Only in hibernate-3.0-patched/lib: commons-logging.jar -Only in hibernate-3.0/lib: concurrent-1.3.2.jar -Only in hibernate-3.0/lib: connector.jar -Only in hibernate-3.0/lib: connector.licence.txt -Only in hibernate-3.0/lib: dom4j-1.6.jar -Only in hibernate-3.0-patched/lib: dom4j.jar -Only in hibernate-3.0/lib: ehcache-1.1.jar -Only in hibernate-3.0-patched/lib: ehcache.jar -Only in hibernate-3.0/lib: jaas.jar -Only in hibernate-3.0/lib: jaas.licence.txt -Only in hibernate-3.0/lib: jacc-1_0-fr.jar -Only in hibernate-3.0/lib: jaxen-1.1-beta-4.jar -Only in hibernate-3.0-patched/lib: jaxen.jar -Files hibernate-3.0/lib/jboss-cache.jar and hibernate-3.0-patched/lib/jboss-cache.jar differ -Files hibernate-3.0/lib/jboss-common.jar and hibernate-3.0-patched/lib/jboss-common.jar differ -Only in hibernate-3.0-patched/lib: jboss-j2ee.jar -Files hibernate-3.0/lib/jboss-jmx.jar and hibernate-3.0-patched/lib/jboss-jmx.jar differ -Files hibernate-3.0/lib/jboss-system.jar and hibernate-3.0-patched/lib/jboss-system.jar differ -Only in hibernate-3.0/lib: jdbc2_0-stdext.licence.txt -Only in hibernate-3.0/lib: jgroups-2.2.7.jar -Only in hibernate-3.0-patched/lib: jgroups-core.jar -Files hibernate-3.0/lib/jta.jar and hibernate-3.0-patched/lib/jta.jar differ -Only in hibernate-3.0/lib: jta.licence.txt -Only in hibernate-3.0/lib: junit-3.8.1.jar -Only in hibernate-3.0/lib: log4j-1.2.9.jar -Only in hibernate-3.0-patched/lib: log4j.jar -Only in hibernate-3.0/lib: oscache-2.1.jar -Only in hibernate-3.0-patched/lib: oscache.jar -Only in hibernate-3.0/lib: proxool-0.8.3.jar -Only in hibernate-3.0-patched/lib: proxool.jar -Only in hibernate-3.0/lib: swarmcache-1.0rc2.jar -Only in hibernate-3.0-patched/lib: swarmcache.jar -Only in hibernate-3.0/lib: versioncheck.jar -Only in hibernate-3.0/lib: xerces-2.6.2.jar -Only in hibernate-3.0-patched/lib: xercesImpl.jar -Only in hibernate-3.0-patched/lib: xercesSamples.jar -Files hibernate-3.0/lib/xml-apis.jar and hibernate-3.0-patched/lib/xml-apis.jar differ -Only in hibernate-3.0-patched/lib: xmlParserAPIs.jar -Only in hibernate-3.0-patched/: packed diff --git a/dev-java/hibernate/hibernate-3.0.5-r2.ebuild b/dev-java/hibernate/hibernate-3.0.5-r2.ebuild deleted file mode 100644 index f1cc110..0000000 --- a/dev-java/hibernate/hibernate-3.0.5-r2.ebuild +++ /dev/null @@ -1,95 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/hibernate/hibernate-3.0.5-r2.ebuild,v 1.6 2007/11/02 10:40:55 betelgeuse Exp $ - -WANT_ANT_TASKS="ant-antlr ant-swing ant-junit" - -inherit java-pkg-2 java-ant-2 eutils - -MY_PV="3.0" -DESCRIPTION="Hibernate is a powerful, ultra-high performance object / relational persistence and query service for Java." -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -HOMEPAGE="http://www.hibernate.org" -LICENSE="LGPL-2" -# disable jboss until modular jboss is ready -#IUSE="doc jboss" -IUSE="doc" -SLOT="3" -KEYWORDS="~amd64 ~x86" - -COMMON_DEPEND=" - dev-java/ant-core - =dev-java/antlr-2* - =dev-java/asm-2.0* - dev-java/c3p0 - =dev-java/cglib-2.1* - dev-java/commons-collections - dev-java/commons-logging - =dev-java/dom4j-1* - =dev-java/ehcache-1.1* - =dev-java/jaxen-1.1* - dev-java/log4j - dev-java/oscache - dev-java/proxool - =dev-java/swarmcache-1* - dev-java/jta - dev-java/sun-jacc-api - >=dev-java/xerces-2.7" -# jboss? ( -# =dev-java/jboss-module-cache-4.0* -# =dev-java/jboss-module-common-4.0* -# =dev-java/jboss-module-j2ee-4.0* -# =dev-java/jboss-module-jmx-4.0* -# =dev-java/jboss-module-system-4.0* -# ) - -RDEPEND=">=virtual/jre-1.4 - ${COMMON_DEPEND}" -DEPEND=">=virtual/jdk-1.4 - ${COMMON_DEPEND}" -# TODO fix for Java 1.6... has problems due to JDBC4 -JAVA_PKG_NV_DEPEND="=virtual/jdk-1.4* =virtual/jdk-1.5*" - -S=${WORKDIR}/${PN}-${MY_PV} - -src_unpack() { - unpack ${A} - cd ${S} - - # get rid of the lame splash screen - epatch ${FILESDIR}/${P}-nosplash.patch - -# if ! use jboss; then - rm src/org/hibernate/cache/JndiBoundTreeCacheProvider.java \ - src/org/hibernate/cache/TreeCache.java \ - src/org/hibernate/cache/TreeCacheProvider.java -# fi - - cd lib - rm -v *.jar || die - - local JAR_PACKAGES="ant-core antlr asm-2 c3p0 commons-collections - commons-logging dom4j-1 ehcache jaxen-1.1 jta - log4j oscache proxool swarmcache-1.0 sun-jacc-api xerces-2" - for PACKAGE in ${JAR_PACKAGES}; do - java-pkg_jar-from ${PACKAGE} - done - java-pkg_jar-from cglib-2.1 cglib.jar - -# if use jboss; then -# java-pkg_jar-from jboss-module-cache-4 jboss-cache.jar -# java-pkg_jar-from jboss-module-common-4 jboss-common.jar -# java-pkg_jar-from jboss-module-j2ee-4 jboss-j2ee.jar -# java-pkg_jar-from jboss-module-jmx-4 jboss-jmx.jar -# java-pkg_jar-from jboss-module-system-4 jboss-system.jar -# fi - -} - -EANT_EXTRA_ARGS="-Ddist.dir=dist" - -src_install() { - java-pkg_dojar dist/hibernate3.jar - dodoc changelog.txt readme.txt - use doc && java-pkg_dohtml -r dist/doc/api doc/other doc/reference -} diff --git a/dev-java/hibernate/metadata.xml b/dev-java/hibernate/metadata.xml deleted file mode 100644 index 7303cef..0000000 --- a/dev-java/hibernate/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <herd>java</herd> -</pkgmetadata>
