public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog
@ 2013-02-19 10:13 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 7+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2013-02-19 10:13 UTC (permalink / raw
  To: gentoo-commits

dev-zero    13/02/19 10:13:10

  Modified:             ChangeLog
  Added:                zthread-2.3.2-r3.ebuild
  Log:
  Fix bug #269988, use default's and prune_libtool_files, update the automake patch to not add LDFLAGS to LIBADD.
  
  (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 0x1E0CA85F!)

Revision  Changes    Path
1.33                 dev-libs/zthread/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	23 Jun 2012 11:48:56 -0000	1.32
+++ ChangeLog	19 Feb 2013 10:13:10 -0000	1.33
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/zthread
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.32 2012/06/23 11:48:56 xarthisius Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.33 2013/02/19 10:13:10 dev-zero Exp $
+
+*zthread-2.3.2-r3 (19 Feb 2013)
+
+  19 Feb 2013; Tiziano Müller <dev-zero@gentoo.org>
+  +files/zthread-2.3.2-automake-r2.patch, +zthread-2.3.2-r3.ebuild:
+  Fix bug #269988, use default's and prune_libtool_files, update the automake
+  patch to not add LDFLAGS to LIBADD.
 
   23 Jun 2012; Kacper Kowalik <xarthisius.kk@gmail.com>
   +files/zthread-2.3.2-gcc47.patch, zthread-2.3.2-r2.ebuild:



1.1                  dev-libs/zthread/zthread-2.3.2-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.1&content-type=text/plain

Index: zthread-2.3.2-r3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.1 2013/02/19 10:13:10 dev-zero Exp $

EAPI="5"

inherit eutils autotools

MY_P="ZThread-${PV}"

DESCRIPTION="platform-independent multi-threading and synchronization library for C++"
HOMEPAGE="http://zthread.sourceforge.net/"
SRC_URI="mirror://sourceforge/zthread/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
IUSE="debug doc kernel_linux static-libs"

DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""

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

src_prepare() {
	rm -f include/zthread/{.Barrier.h.swp,Barrier.h.orig} || die
	epatch \
		"${FILESDIR}"/${P}-no-fpermissive.diff \
		"${FILESDIR}"/${P}-m4-quote.patch \
		"${FILESDIR}"/${P}-automake-r2.patch \
		"${FILESDIR}"/${P}-gcc47.patch

	AT_M4DIR="share" eautoreconf
}

src_configure() {
	local myconf
	# Autoconf does not support --disable-debug properly.
	use debug && myconf="--enable-debug"

	econf \
		$(use_enable kernel_linux atomic-linux) \
		$(use_enable static-libs static) \
		${myconf}
}

src_compile() {
	default

	if use doc; then
		doxygen doc/zthread.doxygen || die
		sed -i -e 's|href="html/|href="|' doc/documentation.html || die
		cp doc/documentation.html doc/html/index.html || die
		cp doc/{zthread.css,bugs.js} doc/html/ || die
	fi
}

src_install() {
	default

	use doc && dohtml doc/html/*

	prune_libtool_files
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog
@ 2013-05-02  4:13 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 7+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-05-02  4:13 UTC (permalink / raw
  To: gentoo-commits

ssuominen    13/05/02 04:13:53

  Modified:             zthread-2.3.2-r3.ebuild ChangeLog
  Log:
  Fix automake-1.13 compability wrt #467778 by "Vamp898"
  
  (Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.2                  dev-libs/zthread/zthread-2.3.2-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?r1=1.1&r2=1.2

Index: zthread-2.3.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- zthread-2.3.2-r3.ebuild	19 Feb 2013 10:13:10 -0000	1.1
+++ zthread-2.3.2-r3.ebuild	2 May 2013 04:13:53 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.1 2013/02/19 10:13:10 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.2 2013/05/02 04:13:53 ssuominen Exp $
 
 EAPI="5"
 
@@ -30,6 +30,8 @@
 		"${FILESDIR}"/${P}-automake-r2.patch \
 		"${FILESDIR}"/${P}-gcc47.patch
 
+	sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die #467778
+
 	AT_M4DIR="share" eautoreconf
 }
 



1.34                 dev-libs/zthread/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	19 Feb 2013 10:13:10 -0000	1.33
+++ ChangeLog	2 May 2013 04:13:53 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/zthread
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.33 2013/02/19 10:13:10 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.34 2013/05/02 04:13:53 ssuominen Exp $
+
+  02 May 2013; Samuli Suominen <ssuominen@gentoo.org> zthread-2.3.2-r3.ebuild:
+  Fix automake-1.13 compability wrt #467778 by "Vamp898"
 
 *zthread-2.3.2-r3 (19 Feb 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog
@ 2013-05-16 12:54 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-16 12:54 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/16 12:54:04

  Modified:             zthread-2.3.2-r3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #463040
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-libs/zthread/zthread-2.3.2-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?r1=1.2&r2=1.3

Index: zthread-2.3.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- zthread-2.3.2-r3.ebuild	2 May 2013 04:13:53 -0000	1.2
+++ zthread-2.3.2-r3.ebuild	16 May 2013 12:54:04 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.2 2013/05/02 04:13:53 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.3 2013/05/16 12:54:04 ago Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc ~x86"
 IUSE="debug doc kernel_linux static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.35                 dev-libs/zthread/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	2 May 2013 04:13:53 -0000	1.34
+++ ChangeLog	16 May 2013 12:54:04 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/zthread
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.34 2013/05/02 04:13:53 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.35 2013/05/16 12:54:04 ago Exp $
+
+  16 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
+  Stable for amd64, wrt bug #463040
 
   02 May 2013; Samuli Suominen <ssuominen@gentoo.org> zthread-2.3.2-r3.ebuild:
   Fix automake-1.13 compability wrt #467778 by "Vamp898"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog
@ 2013-05-16 13:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-16 13:03 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/16 13:03:39

  Modified:             zthread-2.3.2-r3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #463040
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-libs/zthread/zthread-2.3.2-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?r1=1.3&r2=1.4

Index: zthread-2.3.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- zthread-2.3.2-r3.ebuild	16 May 2013 12:54:04 -0000	1.3
+++ zthread-2.3.2-r3.ebuild	16 May 2013 13:03:39 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.3 2013/05/16 12:54:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.4 2013/05/16 13:03:39 ago Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc ~x86"
 IUSE="debug doc kernel_linux static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.36                 dev-libs/zthread/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	16 May 2013 12:54:04 -0000	1.35
+++ ChangeLog	16 May 2013 13:03:39 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/zthread
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.35 2013/05/16 12:54:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.36 2013/05/16 13:03:39 ago Exp $
+
+  16 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
+  Stable for ppc, wrt bug #463040
 
   16 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
   Stable for amd64, wrt bug #463040





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog
@ 2013-05-18 20:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-18 20:44 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/18 20:44:37

  Modified:             zthread-2.3.2-r3.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #463040
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-libs/zthread/zthread-2.3.2-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?r1=1.4&r2=1.5

Index: zthread-2.3.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- zthread-2.3.2-r3.ebuild	16 May 2013 13:03:39 -0000	1.4
+++ zthread-2.3.2-r3.ebuild	18 May 2013 20:44:37 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.4 2013/05/16 13:03:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.5 2013/05/18 20:44:37 ago Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ppc ~sparc ~x86"
+KEYWORDS="alpha amd64 ~hppa ~mips ppc ~sparc ~x86"
 IUSE="debug doc kernel_linux static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.37                 dev-libs/zthread/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	16 May 2013 13:03:39 -0000	1.36
+++ ChangeLog	18 May 2013 20:44:37 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/zthread
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.36 2013/05/16 13:03:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.37 2013/05/18 20:44:37 ago Exp $
+
+  18 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
+  Stable for alpha, wrt bug #463040
 
   16 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
   Stable for ppc, wrt bug #463040





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog
@ 2013-05-20  8:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-20  8:29 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/20 08:29:29

  Modified:             zthread-2.3.2-r3.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #463040
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  dev-libs/zthread/zthread-2.3.2-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?r1=1.5&r2=1.6

Index: zthread-2.3.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- zthread-2.3.2-r3.ebuild	18 May 2013 20:44:37 -0000	1.5
+++ zthread-2.3.2-r3.ebuild	20 May 2013 08:29:29 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.5 2013/05/18 20:44:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.6 2013/05/20 08:29:29 ago Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~mips ppc ~sparc ~x86"
+KEYWORDS="alpha amd64 ~hppa ~mips ppc ~sparc x86"
 IUSE="debug doc kernel_linux static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.38                 dev-libs/zthread/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	18 May 2013 20:44:37 -0000	1.37
+++ ChangeLog	20 May 2013 08:29:29 -0000	1.38
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/zthread
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.37 2013/05/18 20:44:37 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.38 2013/05/20 08:29:29 ago Exp $
+
+  20 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
+  Stable for x86, wrt bug #463040
 
   18 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
   Stable for alpha, wrt bug #463040





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog
@ 2013-05-25  7:50 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-05-25  7:50 UTC (permalink / raw
  To: gentoo-commits

ago         13/05/25 07:50:58

  Modified:             zthread-2.3.2-r3.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #463040
  
  (Portage version: 2.1.11.63/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-libs/zthread/zthread-2.3.2-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild?r1=1.6&r2=1.7

Index: zthread-2.3.2-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- zthread-2.3.2-r3.ebuild	20 May 2013 08:29:29 -0000	1.6
+++ zthread-2.3.2-r3.ebuild	25 May 2013 07:50:58 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.6 2013/05/20 08:29:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-2.3.2-r3.ebuild,v 1.7 2013/05/25 07:50:58 ago Exp $
 
 EAPI="5"
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ~mips ppc ~sparc x86"
+KEYWORDS="alpha amd64 ~hppa ~mips ppc sparc x86"
 IUSE="debug doc kernel_linux static-libs"
 
 DEPEND="doc? ( app-doc/doxygen )"



1.39                 dev-libs/zthread/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/zthread/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	20 May 2013 08:29:29 -0000	1.38
+++ ChangeLog	25 May 2013 07:50:58 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/zthread
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.38 2013/05/20 08:29:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/ChangeLog,v 1.39 2013/05/25 07:50:58 ago Exp $
+
+  25 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
+  Stable for sparc, wrt bug #463040
 
   20 May 2013; Agostino Sarubbo <ago@gentoo.org> zthread-2.3.2-r3.ebuild:
   Stable for x86, wrt bug #463040





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

end of thread, other threads:[~2013-05-25  7:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-25  7:50 [gentoo-commits] gentoo-x86 commit in dev-libs/zthread: zthread-2.3.2-r3.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-05-20  8:29 Agostino Sarubbo (ago)
2013-05-18 20:44 Agostino Sarubbo (ago)
2013-05-16 13:03 Agostino Sarubbo (ago)
2013-05-16 12:54 Agostino Sarubbo (ago)
2013-05-02  4:13 Samuli Suominen (ssuominen)
2013-02-19 10:13 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