public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.1.ebuild
@ 2007-12-24  9:31 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2007-12-24  9:31 UTC (permalink / raw
  To: gentoo-commits

dev-zero    07/12/24 09:31:56

  Modified:             ChangeLog
  Added:                commoncpp2-1.6.1.ebuild
  Log:
  Version bump, fixes compile problems with gcc-4.2 (bug #187206). Added '-j1' to avoid parallel build problems (thanks to dragonheart)
  (Portage version: 2.1.4_rc11)

Revision  Changes    Path
1.35                 dev-cpp/commoncpp2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	16 Aug 2007 09:52:51 -0000	1.34
+++ ChangeLog	24 Dec 2007 09:31:55 -0000	1.35
@@ -1,6 +1,13 @@
 # ChangeLog for dev-cpp/commoncpp2
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.34 2007/08/16 09:52:51 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.35 2007/12/24 09:31:55 dev-zero Exp $
+
+*commoncpp2-1.6.1 (24 Dec 2007)
+
+  24 Dec 2007; Tiziano Müller <dev-zero@gentoo.org>
+  +files/1.6.1-gcc42_atomicity.patch, +commoncpp2-1.6.1.ebuild:
+  Version bump, fixes compile problems with gcc-4.2 (bug #187206). Added '-j1'
+  to avoid parallel build problems (thanks to dragonheart)
 
   16 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
   commoncpp2-1.5.7.ebuild:



1.1                  dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.1&content-type=text/plain

Index: commoncpp2-1.6.1.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.1 2007/12/24 09:31:55 dev-zero Exp $

inherit eutils autotools

DESCRIPTION="GNU Common C++ is a C++ framework offering portable support for threading, sockets, file access, daemons, persistence, serial I/O, XML parsing, and system services"
SRC_URI="mirror://gnu/commoncpp/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/commoncpp/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="debug doc examples ipv6 gnutls"

RDEPEND="gnutls? ( dev-libs/libgcrypt
		net-libs/gnutls )
	!gnutls? ( dev-libs/openssl )
	sys-libs/zlib"
DEPEND="doc? ( >=app-doc/doxygen-1.3.6 )
	${RDEPEND}"

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

	epatch "${FILESDIR}/${PV}-gcc42_atomicity.patch"
	eautoconf
}

src_compile() {
	use doc || \
		sed -i "s/^DOXYGEN=.*/DOXYGEN=no/" configure || die "sed failed"

	local myconf
	use gnutls || myconf="--with-openssl"

	econf \
		$(use_enable debug) \
		$(use_with ipv6 ) \
		${myconf} || die "econf failed"
	emake -j1 || die "emake failed"
}

src_install () {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc AUTHORS NEWS ChangeLog README THANKS TODO COPYING.addendum

	# Only install html docs
	# man and latex available, but seems a little wasteful
	use doc && dohtml doc/html/*

	if use examples ; then
		insinto /usr/share/doc/${PF}/examples
		cd demo
		doins *.cpp *.h *.xml README
	fi
}

# Some of the tests hang forever
#src_test() {
#	cd "${S}/tests"
#	emake || die "emake tests failed"
#	./test.sh || die "tests failed"
#}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.1.ebuild
@ 2007-12-24 12:27 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 6+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2007-12-24 12:27 UTC (permalink / raw
  To: gentoo-commits

dev-zero    07/12/24 12:27:06

  Modified:             ChangeLog commoncpp2-1.6.1.ebuild
  Log:
  Added pkg_postinst ABI breakage warning (thanks to dragonheart)
  (Portage version: 2.1.4_rc11)

Revision  Changes    Path
1.36                 dev-cpp/commoncpp2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	24 Dec 2007 09:31:55 -0000	1.35
+++ ChangeLog	24 Dec 2007 12:27:05 -0000	1.36
@@ -1,6 +1,10 @@
 # ChangeLog for dev-cpp/commoncpp2
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.35 2007/12/24 09:31:55 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.36 2007/12/24 12:27:05 dev-zero Exp $
+
+  24 Dec 2007; Tiziano Müller <dev-zero@gentoo.org>
+  commoncpp2-1.6.1.ebuild:
+  Added pkg_postinst ABI breakage warning (thanks to dragonheart)
 
 *commoncpp2-1.6.1 (24 Dec 2007)
 



1.2                  dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?r1=1.1&r2=1.2

Index: commoncpp2-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- commoncpp2-1.6.1.ebuild	24 Dec 2007 09:31:55 -0000	1.1
+++ commoncpp2-1.6.1.ebuild	24 Dec 2007 12:27:05 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.1 2007/12/24 09:31:55 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.2 2007/12/24 12:27:05 dev-zero Exp $
 
 inherit eutils autotools
 
@@ -57,6 +57,12 @@
 	fi
 }
 
+pkg_postinst() {
+	ewarn "There's a change in the ABI between version 1.5.x and 1.6.x, please"
+	ewarn "run the following command to find broken packages and rebuild them:"
+	ewarn "    revdep-rebuild --library=libccext2-1.5.so"
+}
+
 # Some of the tests hang forever
 #src_test() {
 #	cd "${S}/tests"



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.1.ebuild
@ 2008-01-29 19:16 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-01-29 19:16 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/01/29 19:16:30

  Modified:             ChangeLog commoncpp2-1.6.1.ebuild
  Log:
  Stable on ppc wrt bug 207632
  (Portage version: 2.1.4)

Revision  Changes    Path
1.37                 dev-cpp/commoncpp2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	24 Dec 2007 12:27:05 -0000	1.36
+++ ChangeLog	29 Jan 2008 19:16:29 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/commoncpp2
-# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.36 2007/12/24 12:27:05 dev-zero Exp $
+# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.37 2008/01/29 19:16:29 nixnut Exp $
+
+  29 Jan 2008; nixnut <nixnut@gentoo.org> commoncpp2-1.6.1.ebuild:
+  Stable on ppc wrt bug 207632
 
   24 Dec 2007; Tiziano Müller <dev-zero@gentoo.org>
   commoncpp2-1.6.1.ebuild:



1.3                  dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?r1=1.2&r2=1.3

Index: commoncpp2-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- commoncpp2-1.6.1.ebuild	24 Dec 2007 12:27:05 -0000	1.2
+++ commoncpp2-1.6.1.ebuild	29 Jan 2008 19:16:29 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.2 2007/12/24 12:27:05 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.3 2008/01/29 19:16:29 nixnut Exp $
 
 inherit eutils autotools
 
@@ -9,7 +9,7 @@
 HOMEPAGE="http://www.gnu.org/software/commoncpp/"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ~ppc64 ~x86"
 IUSE="debug doc examples ipv6 gnutls"
 
 RDEPEND="gnutls? ( dev-libs/libgcrypt



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



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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.1.ebuild
@ 2008-01-30 22:28 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2008-01-30 22:28 UTC (permalink / raw
  To: gentoo-commits

ranger      08/01/30 22:28:36

  Modified:             ChangeLog commoncpp2-1.6.1.ebuild
  Log:
  Marking commoncpp2-1.6.1 ppc64 for bug 207632
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.38                 dev-cpp/commoncpp2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	29 Jan 2008 19:16:29 -0000	1.37
+++ ChangeLog	30 Jan 2008 22:28:36 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/commoncpp2
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.37 2008/01/29 19:16:29 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.38 2008/01/30 22:28:36 ranger Exp $
+
+  30 Jan 2008; Brent Baude <ranger@gentoo.org> commoncpp2-1.6.1.ebuild:
+  Marking commoncpp2-1.6.1 ppc64 for bug 207632
 
   29 Jan 2008; nixnut <nixnut@gentoo.org> commoncpp2-1.6.1.ebuild:
   Stable on ppc wrt bug 207632



1.4                  dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild?r1=1.3&r2=1.4

Index: commoncpp2-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- commoncpp2-1.6.1.ebuild	29 Jan 2008 19:16:29 -0000	1.3
+++ commoncpp2-1.6.1.ebuild	30 Jan 2008 22:28:36 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.3 2008/01/29 19:16:29 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.4 2008/01/30 22:28:36 ranger Exp $
 
 inherit eutils autotools
 
@@ -9,7 +9,7 @@
 HOMEPAGE="http://www.gnu.org/software/commoncpp/"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~x86"
 IUSE="debug doc examples ipv6 gnutls"
 
 RDEPEND="gnutls? ( dev-libs/libgcrypt



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



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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.1.ebuild
@ 2008-02-01  9:09 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-02-01  9:09 UTC (permalink / raw
  To: gentoo-commits

opfer       08/02/01 09:09:25

  Modified:             ChangeLog commoncpp2-1.6.1.ebuild
  Log:
  stable x86, bug 207632
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.39                 dev-cpp/commoncpp2/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	30 Jan 2008 22:28:36 -0000	1.38
+++ ChangeLog	1 Feb 2008 09:09:24 -0000	1.39
@@ -1,6 +1,10 @@
 # ChangeLog for dev-cpp/commoncpp2
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.38 2008/01/30 22:28:36 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.39 2008/02/01 09:09:24 opfer Exp $
+
+  01 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
+  commoncpp2-1.6.1.ebuild:
+  stable x86, bug 207632
 
   30 Jan 2008; Brent Baude <ranger@gentoo.org> commoncpp2-1.6.1.ebuild:
   Marking commoncpp2-1.6.1 ppc64 for bug 207632



1.5                  dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild

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

Index: commoncpp2-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- commoncpp2-1.6.1.ebuild	30 Jan 2008 22:28:36 -0000	1.4
+++ commoncpp2-1.6.1.ebuild	1 Feb 2008 09:09:25 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.4 2008/01/30 22:28:36 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.5 2008/02/01 09:09:25 opfer Exp $
 
 inherit eutils autotools
 
@@ -9,7 +9,7 @@
 HOMEPAGE="http://www.gnu.org/software/commoncpp/"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 x86"
 IUSE="debug doc examples ipv6 gnutls"
 
 RDEPEND="gnutls? ( dev-libs/libgcrypt



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



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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.1.ebuild
@ 2008-02-17 12:46 Christoph Mende (angelos)
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Mende (angelos) @ 2008-02-17 12:46 UTC (permalink / raw
  To: gentoo-commits

angelos     08/02/17 12:46:48

  Modified:             ChangeLog commoncpp2-1.6.1.ebuild
  Log:
  Stable on amd64, bug #207632
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.40                 dev-cpp/commoncpp2/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	1 Feb 2008 09:09:24 -0000	1.39
+++ ChangeLog	17 Feb 2008 12:46:47 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/commoncpp2
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.39 2008/02/01 09:09:24 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.40 2008/02/17 12:46:47 angelos Exp $
+
+  17 Feb 2008; Christoph Mende <angelos@gentoo.org> commoncpp2-1.6.1.ebuild:
+  Stable on amd64, bug #207632
 
   01 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
   commoncpp2-1.6.1.ebuild:



1.6                  dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild

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

Index: commoncpp2-1.6.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- commoncpp2-1.6.1.ebuild	1 Feb 2008 09:09:25 -0000	1.5
+++ commoncpp2-1.6.1.ebuild	17 Feb 2008 12:46:47 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.5 2008/02/01 09:09:25 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.1.ebuild,v 1.6 2008/02/17 12:46:47 angelos Exp $
 
 inherit eutils autotools
 
@@ -9,7 +9,7 @@
 HOMEPAGE="http://www.gnu.org/software/commoncpp/"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="debug doc examples ipv6 gnutls"
 
 RDEPEND="gnutls? ( dev-libs/libgcrypt



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



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

end of thread, other threads:[~2008-02-17 12:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-29 19:16 [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.1.ebuild Gysbert Wassenaar (nixnut)
  -- strict thread matches above, loose matches on Subject: below --
2008-02-17 12:46 Christoph Mende (angelos)
2008-02-01  9:09 Christian Faulhammer (opfer)
2008-01-30 22:28 Brent Baude (ranger)
2007-12-24 12:27 Tiziano Mueller (dev-zero)
2007-12-24  9:31 Tiziano Mueller (dev-zero)

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