From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6BB5E138239 for ; Sun, 3 Jun 2018 02:59:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BD6BE08EC; Sun, 3 Jun 2018 02:59:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D5B91E08DA for ; Sun, 3 Jun 2018 02:59:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 64DD4335C85 for ; Sun, 3 Jun 2018 02:59:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 914BF2E0 for ; Sun, 3 Jun 2018 02:59:11 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527994743.66172acb5a15b03e4aeaaaa419d37f38e9b67985.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jdom/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jdom/jdom-1.0-r2.ebuild X-VCS-Directories: dev-java/jdom/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 66172acb5a15b03e4aeaaaa419d37f38e9b67985 X-VCS-Branch: master Date: Sun, 3 Jun 2018 02:59:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 07fab9fe-3562-495c-8767-9ffde17019ca X-Archives-Hash: f1f381f8d6753d2134c66fd61b18b4f6 commit: 66172acb5a15b03e4aeaaaa419d37f38e9b67985 Author: Aaron Bauman gentoo org> AuthorDate: Sun Jun 3 00:40:59 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun Jun 3 02:59:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66172acb dev-java/jdom: drop old EAPI Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-java/jdom/jdom-1.0-r2.ebuild | 67 ---------------------------------------- 1 file changed, 67 deletions(-) diff --git a/dev-java/jdom/jdom-1.0-r2.ebuild b/dev-java/jdom/jdom-1.0-r2.ebuild deleted file mode 100644 index 2e92729fbb7..00000000000 --- a/dev-java/jdom/jdom-1.0-r2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -JAVA_PKG_IUSE="doc examples source" - -inherit java-pkg-2 java-ant-2 - -DESCRIPTION="Java API to manipulate XML data" -SRC_URI="http://www.jdom.org/dist/source/${P}.tar.gz" -HOMEPAGE="http://www.jdom.org" -LICENSE="JDOM" -SLOT="${PV}" -KEYWORDS="amd64 ppc64 x86" -COMMON_DEP="dev-java/saxpath - >=dev-java/xerces-2.7" -RDEPEND=">=virtual/jre-1.4 - ${COMMON_DEP}" -DEPEND=">=virtual/jdk-1.4 - ${COMMON_DEP}" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - - rm -v build/*.jar lib/*.jar || die - rm -rf build/{apidocs,samples} || die - - cd "${S}/lib" - java-pkg_jar-from saxpath,xerces-2 - - if has_version '=dev-java/jaxen-1.1*'; then - elog "jaxen detected - building jaxen support." - elog "you can ignore the warnings below" - elog "one day there will be better solution" - JAVA_PKG_STRICT="" java-pkg_jar-from jaxen-1.1 - fi -} - -src_compile() { - # to prevent a newer jdom from going into cp - # (EANT_ANT_TASKS doesn't work with none) - ANT_TASKS="none" eant package $(use_doc) -} - -src_install() { - java-pkg_dojar build/*.jar - - dodoc CHANGES.txt COMMITTERS.txt README.txt TODO.txt || die - use doc && java-pkg_dojavadoc build/apidocs - use examples && java-pkg_doexamples samples - use source && java-pkg_dosrc src/java/org -} - -pkg_postinst() { - if ! has_version '=dev-java/jaxen-1.1*'; then - elog "" - elog "If you want jaxen support for jdom then" - elog "please emerge =dev-java/jaxen-1.1* first and" - elog "re-emerge jdom. Sorry for the" - elog "inconvenience, this is to break out of the" - elog "circular dependencies." - elog "" - fi -}