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

fordfrog    08/02/06 15:25:30

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

Revision  Changes    Path
1.58                 dev-java/commons-logging/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	30 Jan 2008 17:30:30 -0000	1.57
+++ ChangeLog	6 Feb 2008 15:25:30 -0000	1.58
@@ -1,6 +1,15 @@
 # ChangeLog for dev-java/commons-logging
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.57 2008/01/30 17:30:30 caster Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.58 2008/02/06 15:25:30 fordfrog Exp $
+
+*commons-logging-1.1.1 (06 Feb 2008)
+
+  06 Feb 2008; Miroslav Šulc <fordfrog@gentoo.org>
+  +files/commons-logging-1.1.1-gentoo.patch,
+  +files/commons-logging-1.1.1-manifest,
+  +files/commons-logging-1.1.1-servletapi.patch,
+  +commons-logging-1.1.1.ebuild:
+  Version bump
 
 *commons-logging-1.1-r6 (30 Jan 2008)
 *commons-logging-1.1-r5 (30 Jan 2008)



1.1                  dev-java/commons-logging/commons-logging-1.1.1.ebuild

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

Index: commons-logging-1.1.1.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-logging/commons-logging-1.1.1.ebuild,v 1.1 2008/02/06 15:25:30 fordfrog Exp $

EAPI="1"
JAVA_PKG_IUSE="doc source"

inherit java-pkg-2 java-ant-2 java-osgi

DESCRIPTION="The Jakarta-Commons Logging package is an ultra-thin bridge between different logging libraries."
HOMEPAGE="http://jakarta.apache.org/commons/logging/"
SRC_URI="mirror://apache/commons/logging/source/${P}-src.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="avalon-logkit log4j servletapi avalon-framework"

COMMON_DEP="
	avalon-logkit? ( dev-java/avalon-logkit:1.2 )
	log4j? ( dev-java/log4j:0 )
	servletapi? ( java-virtuals/servlet-api:2.3 )
	avalon-framework? ( dev-java/avalon-framework:4.2 )"
# ATTENTION: Add this when log4j-1.3 is out
#	=dev-java/log4j-1.3*
RDEPEND=">=virtual/jre-1.4
	${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
	${COMMON_DEP}"

S="${WORKDIR}/${P}-src/"

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}/${P}-gentoo.patch"
	# patch to make the build.xml respect no servletapi
	# TODO file upstream -nichoj
	epatch "${FILESDIR}/${P}-servletapi.patch"

	# bug 200918
	java-ant_ignore-system-classes

	# bug #208098
	echo "jdk.1.4.present=true" > build.properties
	use log4j && echo "log4j12.jar=$(java-pkg_getjars log4j)" >> build.properties
	# ATTENTION: Add this when log4j-1.3 is out (check the SLOT)
	#echo "log4j13.jar=$(java-pkg_getjars log4j-1.3)" > build.properties
	use avalon-logkit && echo "logkit.jar=$(java-pkg_getjars avalon-logkit-1.2)" >> build.properties
	use servletapi && echo "servletapi.jar=$(java-pkg_getjar --virtual servlet-api-2.3 servlet.jar)" >> build.properties
	use avalon-framework && echo "avalon-framework.jar=$(java-pkg_getjars avalon-framework-4.2)" >> build.properties
	java-pkg_filter-compiler jikes ecj-3.2
}

EANT_BUILD_TARGET="compile"

src_install() {
	java-osgi_newjar-fromfile "target/${P}-SNAPSHOT.jar" "${FILESDIR}/${P}-manifest" "Apache Commons Logging"
	java-pkg_newjar target/${PN}-api-${PV}-SNAPSHOT.jar ${PN}-api.jar
	java-pkg_newjar target/${PN}-adapters-${PV}-SNAPSHOT.jar ${PN}-adapters.jar

	dodoc RELEASE-NOTES.txt || die
	dohtml PROPOSAL.html STATUS.html || die
	use doc && java-pkg_dojavadoc target/docs/
	use source && java-pkg_dosrc src/java/org
}



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



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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-logging: ChangeLog commons-logging-1.1.1.ebuild
@ 2009-09-24 22:46 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; 7+ messages in thread
From: Petteri Raty (betelgeuse) @ 2009-09-24 22:46 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    09/09/24 22:46:50

  Modified:             ChangeLog commons-logging-1.1.1.ebuild
  Log:
  Move test dependencies out of RDEPEND. Fixes bug #286318.
  (Portage version: 2.2_rc40/cvs/Linux i686)

Revision  Changes    Path
1.66                 dev-java/commons-logging/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	25 Mar 2008 19:48:39 -0000	1.65
+++ ChangeLog	24 Sep 2009 22:46:50 -0000	1.66
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-logging
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.65 2008/03/25 19:48:39 betelgeuse Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.66 2009/09/24 22:46:50 betelgeuse Exp $
+
+  24 Sep 2009; Petteri Räty <betelgeuse@gentoo.org>
+  commons-logging-1.1.1.ebuild:
+  Move test dependencies out of RDEPEND. Fixes bug #286318.
 
   25 Mar 2008; Petteri Räty <betelgeuse@gentoo.org>
   -commons-logging-1.1-r5.ebuild, -commons-logging-1.1-r6.ebuild:



1.7                  dev-java/commons-logging/commons-logging-1.1.1.ebuild

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

Index: commons-logging-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- commons-logging-1.1.1.ebuild	16 Mar 2008 17:44:04 -0000	1.6
+++ commons-logging-1.1.1.ebuild	24 Sep 2009 22:46:50 -0000	1.7
@@ -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-logging/commons-logging-1.1.1.ebuild,v 1.6 2008/03/16 17:44:04 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.7 2009/09/24 22:46:50 betelgeuse Exp $
 
 EAPI="1"
 JAVA_PKG_IUSE="doc source test"
@@ -20,14 +20,14 @@
 	avalon-logkit? ( dev-java/avalon-logkit:1.2 )
 	log4j? ( dev-java/log4j:0 )
 	servletapi? ( java-virtuals/servlet-api:2.3 )
-	avalon-framework? ( dev-java/avalon-framework:4.2 )
-	test? ( dev-java/ant-junit:0 )"
+	avalon-framework? ( dev-java/avalon-framework:4.2 )"
 # ATTENTION: Add this when log4j-1.3 is out
 #	=dev-java/log4j-1.3*
 RDEPEND=">=virtual/jre-1.4
 	${COMMON_DEP}"
 DEPEND=">=virtual/jdk-1.4
-	${COMMON_DEP}"
+	${COMMON_DEP}
+	test? ( dev-java/ant-junit:0 )"
 
 S="${WORKDIR}/${P}-src/"
 






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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-logging: ChangeLog commons-logging-1.1.1.ebuild
@ 2010-01-15 20:24 Jonathan Callen (abcd)
  0 siblings, 0 replies; 7+ messages in thread
From: Jonathan Callen (abcd) @ 2010-01-15 20:24 UTC (permalink / raw
  To: gentoo-commits

abcd        10/01/15 20:24:52

  Modified:             ChangeLog commons-logging-1.1.1.ebuild
  Log:
  Add prefix keywords
  (Portage version: -svn/cvs/Linux i686)

Revision  Changes    Path
1.67                 dev-java/commons-logging/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	24 Sep 2009 22:46:50 -0000	1.66
+++ ChangeLog	15 Jan 2010 20:24:52 -0000	1.67
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-logging
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.66 2009/09/24 22:46:50 betelgeuse Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.67 2010/01/15 20:24:52 abcd Exp $
+
+  15 Jan 2010; Jonathan Callen <abcd@gentoo.org>
+  commons-logging-1.1.1.ebuild:
+  Add prefix keywords
 
   24 Sep 2009; Petteri Räty <betelgeuse@gentoo.org>
   commons-logging-1.1.1.ebuild:



1.8                  dev-java/commons-logging/commons-logging-1.1.1.ebuild

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

Index: commons-logging-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- commons-logging-1.1.1.ebuild	24 Sep 2009 22:46:50 -0000	1.7
+++ commons-logging-1.1.1.ebuild	15 Jan 2010 20:24:52 -0000	1.8
@@ -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-logging/commons-logging-1.1.1.ebuild,v 1.7 2009/09/24 22:46:50 betelgeuse Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.8 2010/01/15 20:24:52 abcd Exp $
 
 EAPI="1"
 JAVA_PKG_IUSE="doc source test"
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-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 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="avalon-logkit log4j servletapi avalon-framework"
 
 COMMON_DEP="






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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-logging: ChangeLog commons-logging-1.1.1.ebuild
@ 2010-07-16 19:46 Fabian Groffen (grobian)
  0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen (grobian) @ 2010-07-16 19:46 UTC (permalink / raw
  To: gentoo-commits

grobian     10/07/16 19:46:37

  Modified:             ChangeLog commons-logging-1.1.1.ebuild
  Log:
  Marked ~x64-macos
  
  (Portage version: 2.2.01.15395-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.68                 dev-java/commons-logging/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	15 Jan 2010 20:24:52 -0000	1.67
+++ ChangeLog	16 Jul 2010 19:46:37 -0000	1.68
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-logging
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.67 2010/01/15 20:24:52 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.68 2010/07/16 19:46:37 grobian Exp $
+
+  16 Jul 2010; Fabian Groffen <grobian@gentoo.org>
+  commons-logging-1.1.1.ebuild:
+  Marked ~x64-macos
 
   15 Jan 2010; Jonathan Callen <abcd@gentoo.org>
   commons-logging-1.1.1.ebuild:



1.9                  dev-java/commons-logging/commons-logging-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?r1=1.8&r2=1.9

Index: commons-logging-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- commons-logging-1.1.1.ebuild	15 Jan 2010 20:24:52 -0000	1.8
+++ commons-logging-1.1.1.ebuild	16 Jul 2010 19:46:37 -0000	1.9
@@ -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-logging/commons-logging-1.1.1.ebuild,v 1.8 2010/01/15 20:24:52 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.9 2010/07/16 19:46:37 grobian Exp $
 
 EAPI="1"
 JAVA_PKG_IUSE="doc source test"
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="avalon-logkit log4j servletapi avalon-framework"
 
 COMMON_DEP="






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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-logging: ChangeLog commons-logging-1.1.1.ebuild
@ 2011-05-03 18:21 Fabian Groffen (grobian)
  0 siblings, 0 replies; 7+ messages in thread
From: Fabian Groffen (grobian) @ 2011-05-03 18:21 UTC (permalink / raw
  To: gentoo-commits

grobian     11/05/03 18:21:02

  Modified:             ChangeLog commons-logging-1.1.1.ebuild
  Log:
  Marked ~x64-freebsd
  
  (Portage version: 2.2.01.18252-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.69                 dev-java/commons-logging/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	16 Jul 2010 19:46:37 -0000	1.68
+++ ChangeLog	3 May 2011 18:21:02 -0000	1.69
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-logging
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.68 2010/07/16 19:46:37 grobian Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.69 2011/05/03 18:21:02 grobian Exp $
+
+  03 May 2011; Fabian Groffen <grobian@gentoo.org>
+  commons-logging-1.1.1.ebuild:
+  Marked ~x64-freebsd
 
   16 Jul 2010; Fabian Groffen <grobian@gentoo.org>
   commons-logging-1.1.1.ebuild:



1.10                 dev-java/commons-logging/commons-logging-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?r1=1.9&r2=1.10

Index: commons-logging-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- commons-logging-1.1.1.ebuild	16 Jul 2010 19:46:37 -0000	1.9
+++ commons-logging-1.1.1.ebuild	3 May 2011 18:21:02 -0000	1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.9 2010/07/16 19:46:37 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.10 2011/05/03 18:21:02 grobian Exp $
 
 EAPI="1"
 JAVA_PKG_IUSE="doc source test"
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="avalon-logkit log4j servletapi avalon-framework"
 
 COMMON_DEP="






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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-logging: ChangeLog commons-logging-1.1.1.ebuild
@ 2011-12-19 12:09 Ralph Sennhauser (sera)
  0 siblings, 0 replies; 7+ messages in thread
From: Ralph Sennhauser (sera) @ 2011-12-19 12:09 UTC (permalink / raw
  To: gentoo-commits

sera        11/12/19 12:09:29

  Modified:             ChangeLog commons-logging-1.1.1.ebuild
  Log:
  Fix homepage wrt #202445.
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.70                 dev-java/commons-logging/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	3 May 2011 18:21:02 -0000	1.69
+++ ChangeLog	19 Dec 2011 12:09:29 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/commons-logging
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.69 2011/05/03 18:21:02 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.70 2011/12/19 12:09:29 sera Exp $
+
+  19 Dec 2011; Ralph Sennhauser <sera@gentoo.org> commons-logging-1.1.1.ebuild:
+  Fix homepage wrt #202445.
 
   03 May 2011; Fabian Groffen <grobian@gentoo.org>
   commons-logging-1.1.1.ebuild:



1.11                 dev-java/commons-logging/commons-logging-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?r1=1.10&r2=1.11

Index: commons-logging-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- commons-logging-1.1.1.ebuild	3 May 2011 18:21:02 -0000	1.10
+++ commons-logging-1.1.1.ebuild	19 Dec 2011 12:09:29 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.10 2011/05/03 18:21:02 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.11 2011/12/19 12:09:29 sera Exp $
 
 EAPI="1"
 JAVA_PKG_IUSE="doc source test"
@@ -8,7 +8,7 @@
 inherit java-pkg-2 java-ant-2 java-osgi
 
 DESCRIPTION="The Jakarta-Commons Logging package is an ultra-thin bridge between different logging libraries."
-HOMEPAGE="http://jakarta.apache.org/commons/logging/"
+HOMEPAGE="http://commons.apache.org/logging/"
 SRC_URI="mirror://apache/commons/logging/source/${P}-src.tar.gz"
 
 LICENSE="Apache-2.0"






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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-logging: ChangeLog commons-logging-1.1.1.ebuild
@ 2012-01-01 12:19 Ralph Sennhauser (sera)
  0 siblings, 0 replies; 7+ messages in thread
From: Ralph Sennhauser (sera) @ 2012-01-01 12:19 UTC (permalink / raw
  To: gentoo-commits

sera        12/01/01 12:19:02

  Modified:             ChangeLog commons-logging-1.1.1.ebuild
  Log:
  Drop ia64 support #345433
  
  (Portage version: 2.1.10.43/cvs/Linux x86_64)

Revision  Changes    Path
1.71                 dev-java/commons-logging/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/ChangeLog?r1=1.70&r2=1.71

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ChangeLog	19 Dec 2011 12:09:29 -0000	1.70
+++ ChangeLog	1 Jan 2012 12:19:02 -0000	1.71
@@ -1,6 +1,9 @@
 # ChangeLog for dev-java/commons-logging
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.70 2011/12/19 12:09:29 sera Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/ChangeLog,v 1.71 2012/01/01 12:19:02 sera Exp $
+
+  01 Jan 2012; Ralph Sennhauser <sera@gentoo.org> commons-logging-1.1.1.ebuild:
+  Drop ia64 support #345433
 
   19 Dec 2011; Ralph Sennhauser <sera@gentoo.org> commons-logging-1.1.1.ebuild:
   Fix homepage wrt #202445.



1.12                 dev-java/commons-logging/commons-logging-1.1.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild?r1=1.11&r2=1.12

Index: commons-logging-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- commons-logging-1.1.1.ebuild	19 Dec 2011 12:09:29 -0000	1.11
+++ commons-logging-1.1.1.ebuild	1 Jan 2012 12:19:02 -0000	1.12
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.11 2011/12/19 12:09:29 sera Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-logging/commons-logging-1.1.1.ebuild,v 1.12 2012/01/01 12:19:02 sera Exp $
 
 EAPI="1"
 JAVA_PKG_IUSE="doc source test"
@@ -13,7 +13,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="avalon-logkit log4j servletapi avalon-framework"
 
 COMMON_DEP="






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

end of thread, other threads:[~2012-01-01 12:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-16 19:46 [gentoo-commits] gentoo-x86 commit in dev-java/commons-logging: ChangeLog commons-logging-1.1.1.ebuild Fabian Groffen (grobian)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-01 12:19 Ralph Sennhauser (sera)
2011-12-19 12:09 Ralph Sennhauser (sera)
2011-05-03 18:21 Fabian Groffen (grobian)
2010-01-15 20:24 Jonathan Callen (abcd)
2009-09-24 22:46 Petteri Raty (betelgeuse)
2008-02-06 15:25 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