public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-01-01 20:16 Matt Turner (mattst88)
  0 siblings, 0 replies; 8+ messages in thread
From: Matt Turner (mattst88) @ 2014-01-01 20:16 UTC (permalink / raw
  To: gentoo-commits

mattst88    14/01/01 20:16:57

  Modified:             ChangeLog
  Added:                check-0.9.11.ebuild
  Log:
  Version bump to 0.9.11. Add multilib support, bug 473624. Thanks to Jonathan Callen for the diff.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)

Revision  Changes    Path
1.83                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	24 Apr 2013 07:18:22 -0000	1.82
+++ ChangeLog	1 Jan 2014 20:16:57 -0000	1.83
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/check
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.82 2013/04/24 07:18:22 binki Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.83 2014/01/01 20:16:57 mattst88 Exp $
+
+*check-0.9.11 (01 Jan 2014)
+
+  01 Jan 2014; Matt Turner <mattst88@gentoo.org> +check-0.9.11.ebuild:
+  Version bump to 0.9.11. Add multilib support, bug 473624. Thanks to Jonathan
+  Callen for the diff.
 
 *check-0.9.10 (24 Apr 2013)
 



1.1                  dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.1 2014/01/01 20:16:57 mattst88 Exp $

EAPI=4

AUTOTOOLS_PRUNE_LIBTOOL_FILES="all"

inherit autotools autotools-multilib eutils

DESCRIPTION="A unit test framework for C"
HOMEPAGE="http://sourceforge.net/projects/check/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="static-libs subunit"

DEPEND="subunit? ( dev-python/subunit )"
RDEPEND="${DEPEND}"

src_prepare() {
	epatch \
		"${FILESDIR}"/${PN}-0.9.10-AM_PATH_CHECK.patch

	sed -i -e '/^docdir =/d' {.,doc}/Makefile.am || die

	# fix out-of-sourcedir build having inconsistent check.h files, for
	# example breaks USE=subunit.
	rm src/check.h || die

	# Fix automake warnings being treated as errors, bug #420373
	sed -i -e s/-Werror// configure.ac || die

	eautoreconf
}

src_configure() {
	local myeconfargs=(
		--disable-dependency-tracking
		$(use_enable subunit)
		--docdir="${EPREFIX}"/usr/share/doc/${PF}
	)
	autotools-multilib_src_configure
}

src_install() {
	autotools-multilib_src_install
	dodoc AUTHORS *ChangeLog* NEWS README THANKS TODO

	rm -f "${ED}"/usr/share/doc/${PF}/COPYING* || die
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-01-03  4:35 Matt Turner (mattst88)
  0 siblings, 0 replies; 8+ messages in thread
From: Matt Turner (mattst88) @ 2014-01-03  4:35 UTC (permalink / raw
  To: gentoo-commits

mattst88    14/01/03 04:35:30

  Modified:             check-0.9.11.ebuild ChangeLog
  Log:
  alpha stable, bug 489366.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)

Revision  Changes    Path
1.2                  dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- check-0.9.11.ebuild	1 Jan 2014 20:16:57 -0000	1.1
+++ check-0.9.11.ebuild	3 Jan 2014 04:35:30 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.1 2014/01/01 20:16:57 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.2 2014/01/03 04:35:30 mattst88 Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



1.84                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	1 Jan 2014 20:16:57 -0000	1.83
+++ ChangeLog	3 Jan 2014 04:35:30 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/check
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.83 2014/01/01 20:16:57 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.84 2014/01/03 04:35:30 mattst88 Exp $
+
+  03 Jan 2014; Matt Turner <mattst88@gentoo.org> check-0.9.11.ebuild:
+  alpha stable, bug 489366.
 
 *check-0.9.11 (01 Jan 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-02-20 14:56 Akinori Hattori (hattya)
  0 siblings, 0 replies; 8+ messages in thread
From: Akinori Hattori (hattya) @ 2014-02-20 14:56 UTC (permalink / raw
  To: gentoo-commits

hattya      14/02/20 14:56:25

  Modified:             check-0.9.11.ebuild ChangeLog
  Log:
  ia64 stable wrt bug #489366
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)

Revision  Changes    Path
1.5                  dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- check-0.9.11.ebuild	18 Feb 2014 10:34:45 -0000	1.4
+++ check-0.9.11.ebuild	20 Feb 2014 14:56:25 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.4 2014/02/18 10:34:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.5 2014/02/20 14:56:25 hattya Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



1.88                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	18 Feb 2014 10:34:45 -0000	1.87
+++ ChangeLog	20 Feb 2014 14:56:25 -0000	1.88
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/check
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.87 2014/02/18 10:34:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.88 2014/02/20 14:56:25 hattya Exp $
+
+  20 Feb 2014; Akinori Hattori <hattya@gentoo.org> check-0.9.11.ebuild:
+  ia64 stable wrt bug #489366
 
   18 Feb 2014; Jeroen Roovers <jer@gentoo.org> check-0.9.11.ebuild:
   Stable for HPPA (bug #489366).





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-03-02  9:22 Pacho Ramos (pacho)
  0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-02  9:22 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/02 09:22:46

  Modified:             check-0.9.11.ebuild ChangeLog
  Log:
  amd64 stable, bug #489366
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.7                  dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- check-0.9.11.ebuild	22 Feb 2014 19:26:23 -0000	1.6
+++ check-0.9.11.ebuild	2 Mar 2014 09:22:46 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.6 2014/02/22 19:26:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.7 2014/03/02 09:22:46 pacho Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



1.90                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	22 Feb 2014 19:26:23 -0000	1.89
+++ ChangeLog	2 Mar 2014 09:22:46 -0000	1.90
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/check
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.89 2014/02/22 19:26:23 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.90 2014/03/02 09:22:46 pacho Exp $
+
+  02 Mar 2014; Pacho Ramos <pacho@gentoo.org> check-0.9.11.ebuild:
+  amd64 stable, bug #489366
 
   22 Feb 2014; Markus Meier <maekke@gentoo.org> check-0.9.11.ebuild:
   arm stable, bug #489366





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-03-04 20:24 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-04 20:24 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/04 20:24:04

  Modified:             check-0.9.11.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #489366
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- check-0.9.11.ebuild	2 Mar 2014 09:22:46 -0000	1.7
+++ check-0.9.11.ebuild	4 Mar 2014 20:24:04 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.7 2014/03/02 09:22:46 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.8 2014/03/04 20:24:04 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



1.91                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	2 Mar 2014 09:22:46 -0000	1.90
+++ ChangeLog	4 Mar 2014 20:24:04 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/check
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.90 2014/03/02 09:22:46 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.91 2014/03/04 20:24:04 ago Exp $
+
+  04 Mar 2014; Agostino Sarubbo <ago@gentoo.org> check-0.9.11.ebuild:
+  Stable for x86, wrt bug #489366
 
   02 Mar 2014; Pacho Ramos <pacho@gentoo.org> check-0.9.11.ebuild:
   amd64 stable, bug #489366





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-03-05 18:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-05 18:32 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/05 18:32:19

  Modified:             check-0.9.11.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #489366
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- check-0.9.11.ebuild	4 Mar 2014 20:24:04 -0000	1.8
+++ check-0.9.11.ebuild	5 Mar 2014 18:32:19 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.8 2014/03/04 20:24:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.9 2014/03/05 18:32:19 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



1.92                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	4 Mar 2014 20:24:04 -0000	1.91
+++ ChangeLog	5 Mar 2014 18:32:19 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/check
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.91 2014/03/04 20:24:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.92 2014/03/05 18:32:19 ago Exp $
+
+  05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> check-0.9.11.ebuild:
+  Stable for ppc, wrt bug #489366
 
   04 Mar 2014; Agostino Sarubbo <ago@gentoo.org> check-0.9.11.ebuild:
   Stable for x86, wrt bug #489366





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-03-12 10:11 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-12 10:11 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/12 10:11:39

  Modified:             check-0.9.11.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #489366
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- check-0.9.11.ebuild	5 Mar 2014 18:32:19 -0000	1.9
+++ check-0.9.11.ebuild	12 Mar 2014 10:11:39 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.9 2014/03/05 18:32:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.10 2014/03/12 10:11:39 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



1.93                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	5 Mar 2014 18:32:19 -0000	1.92
+++ ChangeLog	12 Mar 2014 10:11:39 -0000	1.93
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/check
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.92 2014/03/05 18:32:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.93 2014/03/12 10:11:39 ago Exp $
+
+  12 Mar 2014; Agostino Sarubbo <ago@gentoo.org> check-0.9.11.ebuild:
+  Stable for sparc, wrt bug #489366
 
   05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> check-0.9.11.ebuild:
   Stable for ppc, wrt bug #489366





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog
@ 2014-03-14 10:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-14 10:03 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/14 10:03:05

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

Revision  Changes    Path
1.11                 dev-libs/check/check-0.9.11.ebuild

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

Index: check-0.9.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- check-0.9.11.ebuild	12 Mar 2014 10:11:39 -0000	1.10
+++ check-0.9.11.ebuild	14 Mar 2014 10:03:05 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.10 2014/03/12 10:11:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/check-0.9.11.ebuild,v 1.11 2014/03/14 10:03:05 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs subunit"
 
 DEPEND="subunit? ( dev-python/subunit )"



1.94                 dev-libs/check/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog	12 Mar 2014 10:11:39 -0000	1.93
+++ ChangeLog	14 Mar 2014 10:03:05 -0000	1.94
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/check
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.93 2014/03/12 10:11:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/check/ChangeLog,v 1.94 2014/03/14 10:03:05 ago Exp $
+
+  14 Mar 2014; Agostino Sarubbo <ago@gentoo.org> check-0.9.11.ebuild:
+  Stable for ppc64, wrt bug #489366
 
   12 Mar 2014; Agostino Sarubbo <ago@gentoo.org> check-0.9.11.ebuild:
   Stable for sparc, wrt bug #489366





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

end of thread, other threads:[~2014-03-14 10:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-03  4:35 [gentoo-commits] gentoo-x86 commit in dev-libs/check: check-0.9.11.ebuild ChangeLog Matt Turner (mattst88)
  -- strict thread matches above, loose matches on Subject: below --
2014-03-14 10:03 Agostino Sarubbo (ago)
2014-03-12 10:11 Agostino Sarubbo (ago)
2014-03-05 18:32 Agostino Sarubbo (ago)
2014-03-04 20:24 Agostino Sarubbo (ago)
2014-03-02  9:22 Pacho Ramos (pacho)
2014-02-20 14:56 Akinori Hattori (hattya)
2014-01-01 20:16 Matt Turner (mattst88)

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