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 47682138331 for ; Fri, 13 Apr 2018 19:32:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B14B0E08EC; Fri, 13 Apr 2018 19:32:23 +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 93BA4E08EC for ; Fri, 13 Apr 2018 19:32:23 +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 92C2D335C85 for ; Fri, 13 Apr 2018 19:32:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26D65288 for ; Fri, 13 Apr 2018 19:32:21 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1523647916.7a8bdeea4dea0ceb8ca339ea7c15e1728ea01e0f.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jcifs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jcifs/jcifs-1.3.17-r1.ebuild X-VCS-Directories: dev-java/jcifs/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 7a8bdeea4dea0ceb8ca339ea7c15e1728ea01e0f X-VCS-Branch: master Date: Fri, 13 Apr 2018 19:32:21 +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: 9caada91-2224-4f98-bb25-df3b0e4c51d9 X-Archives-Hash: 701627aef413a8f13949b70d4c0b7428 commit: 7a8bdeea4dea0ceb8ca339ea7c15e1728ea01e0f Author: Pacho Ramos gentoo org> AuthorDate: Fri Apr 13 18:36:16 2018 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri Apr 13 19:31:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a8bdeea dev-java/jcifs: Drop old Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-java/jcifs/jcifs-1.3.17-r1.ebuild | 40 ----------------------------------- 1 file changed, 40 deletions(-) diff --git a/dev-java/jcifs/jcifs-1.3.17-r1.ebuild b/dev-java/jcifs/jcifs-1.3.17-r1.ebuild deleted file mode 100644 index f5a1b1ecc8d..00000000000 --- a/dev-java/jcifs/jcifs-1.3.17-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" -JAVA_PKG_IUSE="doc examples source" - -inherit eutils java-pkg-2 java-ant-2 - -DESCRIPTION="Library that implements the CIFS/SMB networking protocol in Java" -SRC_URI="https://jcifs.samba.org/src/${P}.tgz" -HOMEPAGE="https://jcifs.samba.org/" -LICENSE="LGPL-2.1" -SLOT="1.1" -KEYWORDS="amd64 ppc64 x86" -RDEPEND=">=virtual/jre-1.4 - java-virtuals/servlet-api:2.4" -DEPEND=">=virtual/jdk-1.4 - ${RDEPEND}" -IUSE="" - -S=${WORKDIR}/${P/-/_} - -java_prepare() { - rm -v *.jar || die - epatch "${FILESDIR}/${PV}-build.xml.patch" -} - -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_EXTRA_ARGS="-DhasServlet=true" -EANT_GENTOO_CLASSPATH="servlet-api-2.4" - -src_install() { - java-pkg_newjar ${P}.jar - - dodoc README.txt || die - # other stuff besides javadocs - use doc && java-pkg_dohtml -r docs/* - use source && java-pkg_dosrc src/* - use examples && java-pkg_doexamples examples -}