public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-java/commons-io: ChangeLog commons-io-1.4.ebuild
@ 2008-02-06 14:46 Miroslav Sulc (fordfrog)
  0 siblings, 0 replies; 4+ messages in thread
From: Miroslav Sulc (fordfrog) @ 2008-02-06 14:46 UTC (permalink / raw
  To: gentoo-commits

fordfrog    08/02/06 14:46:12

  Modified:             ChangeLog
  Added:                commons-io-1.4.ebuild
  Log:
  Version bump
  (Portage version: 2.1.4.1)

Revision  Changes    Path
1.40                 dev-java/commons-io/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?r1=1.39&r2=1.40

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	25 Nov 2007 09:33:28 -0000	1.39
+++ ChangeLog	6 Feb 2008 14:46:12 -0000	1.40
@@ -1,6 +1,11 @@
 # ChangeLog for dev-java/commons-io
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.39 2007/11/25 09:33:28 nelchael Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.40 2008/02/06 14:46:12 fordfrog Exp $
+
+*commons-io-1.4 (06 Feb 2008)
+
+  06 Feb 2008; Miroslav Šulc <fordfrog@gentoo.org> +commons-io-1.4.ebuild:
+  Version bump
 
   25 Nov 2007; Krzysiek Pawlik <nelchael@gentoo.org>
   commons-io-1.3.2.ebuild:



1.1                  dev-java/commons-io/commons-io-1.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.1&content-type=text/plain

Index: commons-io-1.4.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v 1.1 2008/02/06 14:46:12 fordfrog Exp $

JAVA_PKG_IUSE="doc source"

inherit java-pkg-2 java-ant-2 eutils

MY_P="${P}-src"
DESCRIPTION="Commons-IO contains utility classes, stream implementations, file filters, and endian classes."
HOMEPAGE="http://jakarta.apache.org/commons/io"
SRC_URI="mirror://apache/commons/io/source/${MY_P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="1"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="test"

DEPEND=">=virtual/jdk-1.4
	test? ( dev-java/ant-junit )"
RDEPEND=">=virtual/jre-1.4"

S="${WORKDIR}/${MY_P}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	java-ant_ignore-system-classes
	java-ant_rewrite-classpath
	# Setting java.io.tmpdir doesn't have effect unless we do this because the
	# vm is forked
	java-ant_xml-rewrite -f build.xml --change -e junit -a clonevm -v "true"
}

EANT_EXTRA_ARGS="-Duser.home=${T}"

src_test() {
	if has userpriv ${FEATURES}; then
		ANT_OPTS="-Djava.io.tmpdir=${T} -Duser.home=${T}" \
		ANT_TASKS="ant-junit" \
			eant test \
			-Dgentoo.classpath="$(java-pkg_getjars junit)" \
			-Dlibdir="libdir" \
			-Djava.io.tmpdir="${T}"
	else
		elog "Tests fail unless userpriv is enabled because they test for"
		elog "file permissions which doesn't work when run as root."
	fi
}

src_install() {
	java-pkg_newjar target/${P}.jar ${PN}.jar

	dodoc RELEASE-NOTES.txt NOTICE.txt || die
	use doc && java-pkg_dojavadoc target/apidocs
	use source && java-pkg_dosrc src/java/*
}



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-io: ChangeLog commons-io-1.4.ebuild
@ 2009-07-25 10:08 Krzysiek Pawlik (nelchael)
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysiek Pawlik (nelchael) @ 2009-07-25 10:08 UTC (permalink / raw
  To: gentoo-commits

nelchael    09/07/25 10:08:12

  Modified:             ChangeLog commons-io-1.4.ebuild
  Log:
  Remove FEATURES test.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.46                 dev-java/commons-io/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?r1=1.45&r2=1.46

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	4 Feb 2009 12:23:41 -0000	1.45
+++ ChangeLog	25 Jul 2009 10:08:12 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/commons-io
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.45 2009/02/04 12:23:41 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.46 2009/07/25 10:08:12 nelchael Exp $
+
+  25 Jul 2009; Krzysiek Pawlik <nelchael@gentoo.org> commons-io-1.4.ebuild:
+  Remove FEATURES test.
 
   04 Feb 2009; Petteri Räty <betelgeuse@gentoo.org>
   -commons-io-1.3.1.ebuild, -commons-io-1.3.2.ebuild:



1.6                  dev-java/commons-io/commons-io-1.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?r1=1.5&r2=1.6

Index: commons-io-1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- commons-io-1.4.ebuild	11 Mar 2008 20:58:12 -0000	1.5
+++ commons-io-1.4.ebuild	25 Jul 2009 10:08:12 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v 1.5 2008/03/11 20:58:12 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v 1.6 2009/07/25 10:08:12 nelchael Exp $
 
 JAVA_PKG_IUSE="doc source"
 
@@ -35,7 +35,7 @@
 EANT_EXTRA_ARGS="-Duser.home=${T}"
 
 src_test() {
-	if has userpriv ${FEATURES}; then
+	if [[ ${EUID} -ne 0 ]]; then
 		ANT_OPTS="-Djava.io.tmpdir=${T} -Duser.home=${T}" \
 		ANT_TASKS="ant-junit" \
 			eant test \






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-io: ChangeLog commons-io-1.4.ebuild
@ 2010-01-03 20:27 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-01-03 20:27 UTC (permalink / raw
  To: gentoo-commits

fauli       10/01/03 20:27:15

  Modified:             ChangeLog commons-io-1.4.ebuild
  Log:
  Transfer Prefix keywords
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.47                 dev-java/commons-io/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?r1=1.46&r2=1.47

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	25 Jul 2009 10:08:12 -0000	1.46
+++ ChangeLog	3 Jan 2010 20:27:14 -0000	1.47
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-io
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.46 2009/07/25 10:08:12 nelchael Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.47 2010/01/03 20:27:14 fauli Exp $
+
+  03 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
+  commons-io-1.4.ebuild:
+  Transfer Prefix keywords
 
   25 Jul 2009; Krzysiek Pawlik <nelchael@gentoo.org> commons-io-1.4.ebuild:
   Remove FEATURES test.



1.7                  dev-java/commons-io/commons-io-1.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?r1=1.6&r2=1.7

Index: commons-io-1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- commons-io-1.4.ebuild	25 Jul 2009 10:08:12 -0000	1.6
+++ commons-io-1.4.ebuild	3 Jan 2010 20:27:14 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v 1.6 2009/07/25 10:08:12 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v 1.7 2010/01/03 20:27:14 fauli Exp $
 
 JAVA_PKG_IUSE="doc source"
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="test"
 
 DEPEND=">=virtual/jdk-1.4






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-io: ChangeLog commons-io-1.4.ebuild
@ 2010-04-24 16:15 Fabian Groffen (grobian)
  0 siblings, 0 replies; 4+ messages in thread
From: Fabian Groffen (grobian) @ 2010-04-24 16:15 UTC (permalink / raw
  To: gentoo-commits

grobian     10/04/24 16:15:33

  Modified:             ChangeLog commons-io-1.4.ebuild
  Log:
  Marked ~sparc-solaris ~x86-solaris, bug #314093
  (Portage version: 2.2.00.15842-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.48                 dev-java/commons-io/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	3 Jan 2010 20:27:14 -0000	1.47
+++ ChangeLog	24 Apr 2010 16:15:33 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/commons-io
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.47 2010/01/03 20:27:14 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/ChangeLog,v 1.48 2010/04/24 16:15:33 grobian Exp $
+
+  24 Apr 2010; Fabian Groffen <grobian@gentoo.org> commons-io-1.4.ebuild:
+  Marked ~sparc-solaris ~x86-solaris, bug #314093
 
   03 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
   commons-io-1.4.ebuild:



1.8                  dev-java/commons-io/commons-io-1.4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild?r1=1.7&r2=1.8

Index: commons-io-1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- commons-io-1.4.ebuild	3 Jan 2010 20:27:14 -0000	1.7
+++ commons-io-1.4.ebuild	24 Apr 2010 16:15:33 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v 1.7 2010/01/03 20:27:14 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-1.4.ebuild,v 1.8 2010/04/24 16:15:33 grobian Exp $
 
 JAVA_PKG_IUSE="doc source"
 
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="1"
-KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="test"
 
 DEPEND=">=virtual/jdk-1.4






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-04-24 16:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-25 10:08 [gentoo-commits] gentoo-x86 commit in dev-java/commons-io: ChangeLog commons-io-1.4.ebuild Krzysiek Pawlik (nelchael)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-24 16:15 Fabian Groffen (grobian)
2010-01-03 20:27 Christian Faulhammer (fauli)
2008-02-06 14:46 Miroslav Sulc (fordfrog)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox