public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-java/commons-httpclient: commons-httpclient-3.1-r1.ebuild ChangeLog
@ 2015-06-13  9:02 Patrice Clement (monsieurp)
  0 siblings, 0 replies; 5+ messages in thread
From: Patrice Clement (monsieurp) @ 2015-06-13  9:02 UTC (permalink / raw
  To: gentoo-commits

monsieurp    15/06/13 09:02:44

  Modified:             ChangeLog
  Added:                commons-httpclient-3.1-r1.ebuild
  Log:
  Add patch to mend SSLProtocolSocketFactory.java. EAPI 5 bump. Fix security bug 442292.
  
  Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)

Revision  Changes    Path
1.65                 dev-java/commons-httpclient/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	19 Dec 2011 12:33:32 -0000	1.64
+++ ChangeLog	13 Jun 2015 09:02:44 -0000	1.65
@@ -1,6 +1,14 @@
 # ChangeLog for dev-java/commons-httpclient
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.64 2011/12/19 12:33:32 sera Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.65 2015/06/13 09:02:44 monsieurp Exp $
+
+*commons-httpclient-3.1-r1 (13 Jun 2015)
+
+  13 Jun 2015; Patrice Clement <monsieurp@gentoo.org>
+  +commons-httpclient-3.1-r1.ebuild,
+  +files/commons-httpclient-3.1-SSLProtocolSocketFactory.java.patch:
+  Add patch to mend SSLProtocolSocketFactory.java. EAPI 5 bump. Fix security bug
+  442292.
 
   19 Dec 2011; Ralph Sennhauser <sera@gentoo.org>
   commons-httpclient-2.0.2-r1.ebuild:
@@ -282,4 +290,3 @@
   22 Mar 2003; Dylan Carlson <absinthe@gentoo.org>
   commons-httpclient-2.0_alpha3.ebuild:
   Initial import.
-



1.1                  dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: commons-httpclient-3.1-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.1 2015/06/13 09:02:44 monsieurp Exp $

EAPI=5

JAVA_PKG_IUSE="doc examples source test"

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

DESCRIPTION="The Jakarta Commons HttpClient library"
HOMEPAGE="http://hc.apache.org/"
SRC_URI="mirror://apache/httpcomponents/${PN}/source/${P}-src.tar.gz"
LICENSE="Apache-2.0"
SLOT="3"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
IUSE=""

# doesn't work with IBM JDK, bug #176133
RESTRICT="test"

CDEPEND="dev-java/commons-logging:0
	dev-java/commons-codec:0"
RDEPEND=">=virtual/jre-1.6
	${CDEPEND}"
DEPEND=">=virtual/jdk-1.6
	test? ( dev-java/ant-junit:0 )
	${CDEPEND}"

JAVA_ANT_ENCODING="ISO-8859-1"
JAVA_ANT_REWRITE_CLASSPATH="true"
EANT_GENTOO_CLASSPATH="commons-logging,commons-codec"
EANT_BUILD_TARGET="dist"
EANT_DOC_TARGET="doc"

java_prepare() {
	# patch against CVE-2012-{5783,6153}. See bug 442292.
	epatch "${FILESDIR}"/"${P}-SSLProtocolSocketFactory.java.patch"

	# generated docs go into docs/api
	rm -rf docs/apidocs

	# remove javadoc task from compile task
	sed -i -e 's/depends="compile,doc"/depends="compile"/' build.xml || die
	sed -i -e '/link/ d' build.xml || die

	mkdir lib && cd lib
	java-pkg_filter-compiler jikes
}

EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit"
EANT_TEST_TARGET="test"

src_install() {
	java-pkg_dojar dist/${PN}.jar

	# contains both html docs and javadoc in correct subdir
	if use doc ; then
		java-pkg_dojavadoc dist/docs/api
		java-pkg_dohtml -r dist/docs/*
	fi
	use source && java-pkg_dosrc src/java/*
	use examples && java-pkg_doexamples src/examples
}





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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-httpclient: commons-httpclient-3.1-r1.ebuild ChangeLog
@ 2015-06-16  7:18 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-16  7:18 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/16 07:18:44

  Modified:             commons-httpclient-3.1-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #442292
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.2                  dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?r1=1.1&r2=1.2

Index: commons-httpclient-3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commons-httpclient-3.1-r1.ebuild	13 Jun 2015 09:02:44 -0000	1.1
+++ commons-httpclient-3.1-r1.ebuild	16 Jun 2015 07:18:44 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.1 2015/06/13 09:02:44 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.2 2015/06/16 07:18:44 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI="mirror://apache/httpcomponents/${PN}/source/${P}-src.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="3"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE=""
 
 # doesn't work with IBM JDK, bug #176133



1.67                 dev-java/commons-httpclient/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	13 Jun 2015 13:35:55 -0000	1.66
+++ ChangeLog	16 Jun 2015 07:18:44 -0000	1.67
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-httpclient
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.66 2015/06/13 13:35:55 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.67 2015/06/16 07:18:44 ago Exp $
+
+  16 Jun 2015; Agostino Sarubbo <ago@gentoo.org>
+  commons-httpclient-3.1-r1.ebuild:
+  Stable for amd64, wrt bug #442292
 
   13 Jun 2015; Ulrich Müller <ulm@gentoo.org>
   files/commons-httpclient-3.1-SSLProtocolSocketFactory.java.patch:





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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-httpclient: commons-httpclient-3.1-r1.ebuild ChangeLog
@ 2015-06-17  7:31 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-17  7:31 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/17 07:31:49

  Modified:             commons-httpclient-3.1-r1.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #442292
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?r1=1.2&r2=1.3

Index: commons-httpclient-3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- commons-httpclient-3.1-r1.ebuild	16 Jun 2015 07:18:44 -0000	1.2
+++ commons-httpclient-3.1-r1.ebuild	17 Jun 2015 07:31:49 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.2 2015/06/16 07:18:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.3 2015/06/17 07:31:49 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI="mirror://apache/httpcomponents/${PN}/source/${P}-src.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="3"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE=""
 
 # doesn't work with IBM JDK, bug #176133



1.68                 dev-java/commons-httpclient/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	16 Jun 2015 07:18:44 -0000	1.67
+++ ChangeLog	17 Jun 2015 07:31:49 -0000	1.68
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-httpclient
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.67 2015/06/16 07:18:44 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.68 2015/06/17 07:31:49 ago Exp $
+
+  17 Jun 2015; Agostino Sarubbo <ago@gentoo.org>
+  commons-httpclient-3.1-r1.ebuild:
+  Stable for x86, wrt bug #442292
 
   16 Jun 2015; Agostino Sarubbo <ago@gentoo.org>
   commons-httpclient-3.1-r1.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-httpclient: commons-httpclient-3.1-r1.ebuild ChangeLog
@ 2015-06-29 13:16 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-29 13:16 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/29 13:16:06

  Modified:             commons-httpclient-3.1-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #442292
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?r1=1.3&r2=1.4

Index: commons-httpclient-3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- commons-httpclient-3.1-r1.ebuild	17 Jun 2015 07:31:49 -0000	1.3
+++ commons-httpclient-3.1-r1.ebuild	29 Jun 2015 13:16:06 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.3 2015/06/17 07:31:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.4 2015/06/29 13:16:06 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI="mirror://apache/httpcomponents/${PN}/source/${P}-src.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="3"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE=""
 
 # doesn't work with IBM JDK, bug #176133



1.69                 dev-java/commons-httpclient/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	17 Jun 2015 07:31:49 -0000	1.68
+++ ChangeLog	29 Jun 2015 13:16:06 -0000	1.69
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-httpclient
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.68 2015/06/17 07:31:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.69 2015/06/29 13:16:06 ago Exp $
+
+  29 Jun 2015; Agostino Sarubbo <ago@gentoo.org>
+  commons-httpclient-3.1-r1.ebuild:
+  Stable for ppc, wrt bug #442292
 
   17 Jun 2015; Agostino Sarubbo <ago@gentoo.org>
   commons-httpclient-3.1-r1.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-java/commons-httpclient: commons-httpclient-3.1-r1.ebuild ChangeLog
@ 2015-06-29 13:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-06-29 13:17 UTC (permalink / raw
  To: gentoo-commits

ago         15/06/29 13:17:16

  Modified:             commons-httpclient-3.1-r1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #442292
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild?r1=1.4&r2=1.5

Index: commons-httpclient-3.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- commons-httpclient-3.1-r1.ebuild	29 Jun 2015 13:16:06 -0000	1.4
+++ commons-httpclient-3.1-r1.ebuild	29 Jun 2015 13:17:16 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.4 2015/06/29 13:16:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/commons-httpclient-3.1-r1.ebuild,v 1.5 2015/06/29 13:17:16 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 SRC_URI="mirror://apache/httpcomponents/${PN}/source/${P}-src.tar.gz"
 LICENSE="Apache-2.0"
 SLOT="3"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE=""
 
 # doesn't work with IBM JDK, bug #176133



1.70                 dev-java/commons-httpclient/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	29 Jun 2015 13:16:06 -0000	1.69
+++ ChangeLog	29 Jun 2015 13:17:16 -0000	1.70
@@ -1,6 +1,10 @@
 # ChangeLog for dev-java/commons-httpclient
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.69 2015/06/29 13:16:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-httpclient/ChangeLog,v 1.70 2015/06/29 13:17:16 ago Exp $
+
+  29 Jun 2015; Agostino Sarubbo <ago@gentoo.org>
+  commons-httpclient-3.1-r1.ebuild:
+  Stable for ppc64, wrt bug #442292
 
   29 Jun 2015; Agostino Sarubbo <ago@gentoo.org>
   commons-httpclient-3.1-r1.ebuild:





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

end of thread, other threads:[~2015-06-29 13:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-13  9:02 [gentoo-commits] gentoo-x86 commit in dev-java/commons-httpclient: commons-httpclient-3.1-r1.ebuild ChangeLog Patrice Clement (monsieurp)
  -- strict thread matches above, loose matches on Subject: below --
2015-06-16  7:18 Agostino Sarubbo (ago)
2015-06-17  7:31 Agostino Sarubbo (ago)
2015-06-29 13:16 Agostino Sarubbo (ago)
2015-06-29 13:17 Agostino Sarubbo (ago)

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