summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Wijsman <tomwij@gentoo.org>2014-01-14 22:51:29 +0000
committerTom Wijsman <tomwij@gentoo.org>2014-01-14 22:51:29 +0000
commite10decd457513ad319e81b0401f76c10926e6c89 (patch)
treeba03eae4fd43f37045f3d319602817e187c30f21 /dev-java/httpunit
parentInitial import in main tree (diff)
downloadgentoo-2-e10decd457513ad319e81b0401f76c10926e6c89.tar.gz
gentoo-2-e10decd457513ad319e81b0401f76c10926e6c89.tar.bz2
gentoo-2-e10decd457513ad319e81b0401f76c10926e6c89.zip
Removal of the older version which has QA issues, beacuses the newer version has been stabilized.
(Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'dev-java/httpunit')
-rw-r--r--dev-java/httpunit/ChangeLog6
-rw-r--r--dev-java/httpunit/httpunit-1.6.2-r3.ebuild52
2 files changed, 5 insertions, 53 deletions
diff --git a/dev-java/httpunit/ChangeLog b/dev-java/httpunit/ChangeLog
index 303bdcbfb6d6..38f4ee06a66b 100644
--- a/dev-java/httpunit/ChangeLog
+++ b/dev-java/httpunit/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-java/httpunit
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/httpunit/ChangeLog,v 1.11 2014/01/14 13:51:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/httpunit/ChangeLog,v 1.12 2014/01/14 22:51:29 tomwij Exp $
+
+ 14 Jan 2014; Tom Wijsman <TomWij@gentoo.org> -httpunit-1.6.2-r3.ebuild:
+ Removal of the older version which has QA issues, beacuses the newer version
+ has been stabilized.
14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> httpunit-1.7.ebuild:
Stable for x86, wrt bug #496668
diff --git a/dev-java/httpunit/httpunit-1.6.2-r3.ebuild b/dev-java/httpunit/httpunit-1.6.2-r3.ebuild
deleted file mode 100644
index 9eec88109964..000000000000
--- a/dev-java/httpunit/httpunit-1.6.2-r3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/httpunit/httpunit-1.6.2-r3.ebuild,v 1.5 2013/08/15 09:27:38 tomwij Exp $
-
-EAPI="2"
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="HttpUnit emulates the relevant portions of browser behavior."
-HOMEPAGE="http://httpunit.sourceforge.net/"
-# TODO what is metainf for?
-# TODO where did it come from?
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-CDEPEND="
- >=dev-java/junit-3.8:0
- dev-java/rhino:1.6
- dev-java/jtidy:0
- java-virtuals/servlet-api:2.3
- dev-java/xerces:2"
-
-RDEPEND=">=virtual/jre-1.5
- ${CDEPEND}"
-DEPEND=">=virtual/jdk-1.5
- ${CDEPEND}"
-
-src_unpack() {
- unpack ${A}
- find "${S}" -name "*.jar" | xargs rm -v
- cd "${S}"
- epatch "${FILESDIR}/rhino-fix-${PV}.diff"
- cd "${S}/jars"
- java-pkg_jar-from junit,rhino-1.6,xerces-2,jtidy,servlet-api-2.3
-}
-
-src_compile() {
- java-pkg_filter-compiler jikes
- eant clean jar $(use_doc javadocs)
-}
-
-src_install() {
- java-pkg_dojar "lib/${PN}.jar"
- dodoc doc/*.txt
- if use doc; then
- dohtml -r doc/manual doc/tutorial
- java-pkg_dojavadoc doc/api
- fi
-}