summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2007-05-18 10:34:51 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2007-05-18 10:34:51 +0000
commitb5763bec3934cea2231aea60e2f7186d5c3b5880 (patch)
treee1b7e924b67b49018ce46e5450c729193f9042f4 /dev-util
parentia64 + x86 stable wrt #178983 (diff)
downloadgentoo-2-b5763bec3934cea2231aea60e2f7186d5c3b5880.tar.gz
gentoo-2-b5763bec3934cea2231aea60e2f7186d5c3b5880.tar.bz2
gentoo-2-b5763bec3934cea2231aea60e2f7186d5c3b5880.zip
Removing old versions.
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/checkstyle/ChangeLog6
-rw-r--r--dev-util/checkstyle/checkstyle-3.4-r4.ebuild63
-rw-r--r--dev-util/checkstyle/checkstyle-4.1.ebuild83
-rw-r--r--dev-util/checkstyle/files/digest-checkstyle-3.4-r43
-rw-r--r--dev-util/checkstyle/files/digest-checkstyle-4.13
5 files changed, 5 insertions, 153 deletions
diff --git a/dev-util/checkstyle/ChangeLog b/dev-util/checkstyle/ChangeLog
index 6f221e302373..81e92400c12f 100644
--- a/dev-util/checkstyle/ChangeLog
+++ b/dev-util/checkstyle/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/checkstyle
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/ChangeLog,v 1.24 2007/04/23 17:27:20 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/ChangeLog,v 1.25 2007/05/18 10:34:51 betelgeuse Exp $
+
+ 17 May 2007; Petteri Räty <betelgeuse@gentoo.org>
+ -checkstyle-3.4-r4.ebuild, -checkstyle-4.1.ebuild:
+ Removing old versions.
*checkstyle-4.3 (23 Apr 2007)
diff --git a/dev-util/checkstyle/checkstyle-3.4-r4.ebuild b/dev-util/checkstyle/checkstyle-3.4-r4.ebuild
deleted file mode 100644
index 388831a89c94..000000000000
--- a/dev-util/checkstyle/checkstyle-3.4-r4.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/checkstyle-3.4-r4.ebuild,v 1.4 2006/10/05 14:36:58 gustavoz Exp $
-
-inherit java-pkg
-
-DESCRIPTION="A development tool to help programmers write Java code that adheres to a coding standard."
-HOMEPAGE="http://checkstyle.sourceforge.net"
-SRC_URI="mirror://sourceforge/checkstyle/${PN}-src-${PV}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc jikes"
-
-RDEPEND=">=virtual/jre-1.3
- dev-java/antlr
- =dev-java/commons-beanutils-1.6*
- =dev-java/commons-cli-1*
- dev-java/commons-collections
- dev-java/commons-logging
- =dev-java/jakarta-regexp-1.3*"
-DEPEND=">=virtual/jdk-1.4
- ${RDEPEND}
- dev-java/ant-core
- jikes? ( dev-java/jikes )"
-S=${WORKDIR}/${PN}-src-${PV}
-
-src_unpack() {
- unpack ${A}
- cd ${S}/lib
- rm *.jar
- java-pkg_jar-from antlr
- java-pkg_jar-from commons-beanutils-1.6
- java-pkg_jar-from commons-cli-1
- java-pkg_jar-from commons-collections
- java-pkg_jar-from commons-logging
- java-pkg_jar-from jakarta-regexp-1.3 jakarta-regexp.jar jakarta-regexp-1.3.jar
-}
-
-src_compile() {
- local antflags="compile.checkstyle"
- use doc && antflags="${antflags} javadoc"
- use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- ant ${antflags} || die "ant :("
-}
-
-src_install() {
- insinto /usr/share/checkstyle
- jar cfm ${PN}.jar config/manifest.mf -C target/checkstyle . || die
- java-pkg_dojar ${PN}.jar
- use doc && java-pkg_dohtml -r docs/*
- dodoc README RIGHTS.antlr TODO
- mv docs/checkstyle_checks.xml ${D}/usr/share/checkstyle/checkstyle_checks.xml
- mv docs/sun_checks.xml ${D}/usr/share/checkstyle/sun_checks.xml
- mv contrib ${D}/usr/share/checkstyle
-
- echo '#!/bin/bash' > checkstyle
- echo '' >> checkstyle
- echo '`java-config -J` -cp `java-config -p checkstyle,antlr,commons-beanutils-1.6,commons-cli-1,commons-collections,commons-logging,jakarta-regexp-1.3` com.puppycrawl.tools.checkstyle.Main "$@"' >> checkstyle
-
- dobin checkstyle
-}
diff --git a/dev-util/checkstyle/checkstyle-4.1.ebuild b/dev-util/checkstyle/checkstyle-4.1.ebuild
deleted file mode 100644
index 7c596282e4b1..000000000000
--- a/dev-util/checkstyle/checkstyle-4.1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/checkstyle/checkstyle-4.1.ebuild,v 1.3 2007/01/09 15:34:36 caster Exp $
-
-inherit java-pkg
-
-MY_P="${PN}-src-${PV}"
-DESCRIPTION="A development tool to help programmers write Java code that adheres to a coding standard."
-HOMEPAGE="http://checkstyle.sourceforge.net"
-SRC_URI="mirror://sourceforge/checkstyle/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc jikes"
-
-RDEPEND=">=virtual/jre-1.3
- dev-java/antlr
- =dev-java/commons-beanutils-1.7*
- =dev-java/commons-cli-1*
- dev-java/commons-collections
- dev-java/commons-logging
- =dev-java/jakarta-regexp-1.3*"
-DEPEND=">=virtual/jdk-1.4
- ${RDEPEND}
- dev-java/ant-core
- dev-java/ant-tasks
- jikes? ( dev-java/jikes )"
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A}
- cd ${S}/lib
- rm *.jar
- java-pkg_jar-from antlr
- java-pkg_jar-from commons-beanutils-1.7
- java-pkg_jar-from commons-cli-1
- java-pkg_jar-from commons-collections
- java-pkg_jar-from commons-logging
- java-pkg_jar-from jakarta-regexp-1.3 jakarta-regexp.jar jakarta-regexp-1.3.jar
-}
-
-src_compile() {
- local antflags="compile.checkstyle"
- use doc && antflags="${antflags} javadoc"
- use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
- ant ${antflags} || die "ant failed"
-
- jar cfm ${PN}.jar config/manifest.mf -C target/checkstyle . || die "jar failed"
-}
-
-src_install() {
- java-pkg_dojar ${PN}.jar
-
- dodoc README RIGHTS.antlr TODO
- use doc && java-pkg_dohtml -r docs/*
-
- # Install check files
- insinto /usr/share/checkstyle/checks
- doins checkstyle_checks.xml sun_checks.xml
-
- # Install extra files
- insinto /usr/share/checkstyle/contrib
- doins -r contrib/*
-
- # Make and install a wrapper script
- cat > checkstyle <<-END
-#!/bin/bash
-classpath=\$(java-config -p checkstyle,antlr,commons-beanutils-1.7,commons-cli-1,commons-collections,commons-logging,jakarta-regexp-1.3)
-class=com.puppycrawl.tools.checkstyle.Main
-exec \$(java-config --java) -cp \$classpath \$class "\$@"
-END
- dobin checkstyle
-
- # Make the ant tasks available to ant
- dodir /usr/share/ant-core/lib
- dosym /usr/share/${PN}/lib/${PN}.jar /usr/share/ant-core/lib/
-}
-
-pkg_postinst() {
- elog "Checkstyle is located at /usr/bin/checkstyle"
- elog "Check files are located in /usr/share/checkstyle/checks/"
-}
diff --git a/dev-util/checkstyle/files/digest-checkstyle-3.4-r4 b/dev-util/checkstyle/files/digest-checkstyle-3.4-r4
deleted file mode 100644
index 8c833eb5823f..000000000000
--- a/dev-util/checkstyle/files/digest-checkstyle-3.4-r4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 39b7e55c7e2103b485e061ab5e42c292 checkstyle-src-3.4.tar.gz 1323474
-RMD160 7931d1351e692d0b3fc3a990eded5420dc365795 checkstyle-src-3.4.tar.gz 1323474
-SHA256 909438e173b61ba989ecb9bd9b80429cfd11e50089c77f19519c45201d21f4c9 checkstyle-src-3.4.tar.gz 1323474
diff --git a/dev-util/checkstyle/files/digest-checkstyle-4.1 b/dev-util/checkstyle/files/digest-checkstyle-4.1
deleted file mode 100644
index d3be6a690f8b..000000000000
--- a/dev-util/checkstyle/files/digest-checkstyle-4.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 96b430fe5087b4f62fa78804475ee2ea checkstyle-src-4.1.tar.gz 2877441
-RMD160 70be504829eb9f33affe56bd4b87228a38354683 checkstyle-src-4.1.tar.gz 2877441
-SHA256 0ea1c7fea315a8321a826ccf8e4fa9b12542d79a9d6da5f79def8c77f9e5fddb checkstyle-src-4.1.tar.gz 2877441