public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2012-03-30 15:52 Mike Frysinger (vapier)
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger (vapier) @ 2012-03-30 15:52 UTC (permalink / raw
  To: gentoo-commits

vapier      12/03/30 15:52:29

  Modified:             ChangeLog
  Added:                gmock-1.6.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha95/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  dev-cpp/gmock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	20 Feb 2012 04:14:36 -0000	1.5
+++ ChangeLog	30 Mar 2012 15:52:29 -0000	1.6
@@ -1,6 +1,11 @@
 # ChangeLog for dev-cpp/gmock
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.5 2012/02/20 04:14:36 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.6 2012/03/30 15:52:29 vapier Exp $
+
+*gmock-1.6.0 (30 Mar 2012)
+
+  30 Mar 2012; Mike Frysinger <vapier@gentoo.org> +gmock-1.6.0.ebuild:
+  Version bump.
 
   20 Feb 2012; Mike Gilbert <floppym@gentoo.org> metadata.xml:
   Drop no-herd.



1.1                  dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.1 2012/03/30 15:52:29 vapier Exp $

EAPI="4"

inherit libtool

DESCRIPTION="Google's C++ mocking framework"
HOMEPAGE="http://code.google.com/p/googlemock/"
SRC_URI="http://googlemock.googlecode.com/files/${P}.zip"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="static-libs"

RDEPEND="=dev-cpp/gtest-${PV}*"
DEPEND="${RDEPEND}"

src_unpack() {
	default
	# make sure we always use the system one
	rm -r "${S}"/gtest/{Makefile,configure}* || die
}

src_prepare() {
	sed -i -r \
		-e '/^install-(data|exec)-local:/s|^.*$|&\ndisabled-&|' \
		Makefile.in
	elibtoolize
}

src_configure() {
	econf $(use_enable static-libs static)
}

src_install() {
	default
	dobin scripts/gmock-config
	use static-libs || find "${D}" -name '*.la' -delete
}






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2012-06-12 18:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-12 18:32 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/12 18:32:04

  Modified:             ChangeLog gmock-1.6.0.ebuild
  Log:
  Stable for amd64, wrt bug #420853
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  dev-cpp/gmock/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	30 May 2012 20:03:47 -0000	1.7
+++ ChangeLog	12 Jun 2012 18:32:02 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/gmock
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.7 2012/05/30 20:03:47 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.8 2012/06/12 18:32:02 ago Exp $
+
+  12 Jun 2012; Agostino Sarubbo <ago@gentoo.org> gmock-1.6.0.ebuild:
+  Stable for amd64, wrt bug #420853
 
   30 May 2012; Mike Frysinger <vapier@gentoo.org>
   +files/gmock-1.4.0-gcc-4.7.patch, gmock-1.4.0.ebuild:



1.2                  dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gmock-1.6.0.ebuild	30 Mar 2012 15:52:29 -0000	1.1
+++ gmock-1.6.0.ebuild	12 Jun 2012 18:32:02 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.1 2012/03/30 15:52:29 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.2 2012/06/12 18:32:02 ago Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="static-libs"
 
 RDEPEND="=dev-cpp/gtest-${PV}*"






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2012-06-12 18:56 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-12 18:56 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/06/12 18:56:00

  Modified:             ChangeLog gmock-1.6.0.ebuild
  Log:
  marked x86 per bug 420853
  
  (Portage version: 2.2.0_alpha110/cvs/Linux i686)

Revision  Changes    Path
1.10                 dev-cpp/gmock/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	12 Jun 2012 18:44:43 -0000	1.9
+++ ChangeLog	12 Jun 2012 18:56:00 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/gmock
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.9 2012/06/12 18:44:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.10 2012/06/12 18:56:00 jdhore Exp $
+
+  12 Jun 2012; Jeff Horelick <jdhore@gentoo.org> gmock-1.6.0.ebuild:
+  marked x86 per bug 420853
 
   12 Jun 2012; Agostino Sarubbo <ago@gentoo.org> gmock-1.4.0.ebuild,
   gmock-1.5.0.ebuild, gmock-1.6.0.ebuild:



1.4                  dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gmock-1.6.0.ebuild	12 Jun 2012 18:44:43 -0000	1.3
+++ gmock-1.6.0.ebuild	12 Jun 2012 18:56:00 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.3 2012/06/12 18:44:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.4 2012/06/12 18:56:00 jdhore Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="static-libs"
 
 RDEPEND="=dev-cpp/gtest-${PV}*"






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2012-07-17  9:01 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 8+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-07-17  9:01 UTC (permalink / raw
  To: gentoo-commits

blueness    12/07/17 09:01:49

  Modified:             ChangeLog gmock-1.6.0.ebuild
  Log:
  Keyword ~mips ~ppc ~ppc64
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.12                 dev-cpp/gmock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	12 Jun 2012 18:58:16 -0000	1.11
+++ ChangeLog	17 Jul 2012 09:01:48 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/gmock
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.11 2012/06/12 18:58:16 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.12 2012/07/17 09:01:48 blueness Exp $
+
+  17 Jul 2012; Anthony G. Basile <blueness@gentoo.org> gmock-1.6.0.ebuild:
+  Keyword ~mips ~ppc ~ppc64
 
   12 Jun 2012; Jeff Horelick <jdhore@gentoo.org> gmock-1.4.0.ebuild,
   gmock-1.5.0.ebuild:



1.5                  dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gmock-1.6.0.ebuild	12 Jun 2012 18:56:00 -0000	1.4
+++ gmock-1.6.0.ebuild	17 Jul 2012 09:01:49 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.4 2012/06/12 18:56:00 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.5 2012/07/17 09:01:49 blueness Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 x86"
 IUSE="static-libs"
 
 RDEPEND="=dev-cpp/gtest-${PV}*"






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2013-08-07 10:05 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 8+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-08-07 10:05 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/08/07 10:05:33

  Modified:             ChangeLog gmock-1.6.0.ebuild
  Log:
  Stable on arm, wrt bug #478210
  
  (Portage version: 2.2.0_alpha193/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.15                 dev-cpp/gmock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	28 Aug 2012 21:52:08 -0000	1.14
+++ ChangeLog	7 Aug 2013 10:05:33 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/gmock
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.14 2012/08/28 21:52:08 vapier Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.15 2013/08/07 10:05:33 pinkbyte Exp $
+
+  07 Aug 2013; Sergey Popov <pinkbyte@gentoo.org> gmock-1.6.0.ebuild:
+  Stable on arm, wrt bug #478210
 
   28 Aug 2012; Mike Frysinger <vapier@gentoo.org>
   +files/gmock-1.4.0-more-gcc-4.7.patch, gmock-1.4.0.ebuild:



1.7                  dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gmock-1.6.0.ebuild	24 Aug 2012 09:23:27 -0000	1.6
+++ gmock-1.6.0.ebuild	7 Aug 2013 10:05:33 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.6 2012/08/24 09:23:27 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.7 2013/08/07 10:05:33 pinkbyte Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc ~ppc64 x86"
+KEYWORDS="amd64 arm ~mips ppc ~ppc64 x86"
 IUSE="static-libs"
 
 RDEPEND="=dev-cpp/gtest-${PV}*"





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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2013-12-09 19:29 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2013-12-09 19:29 UTC (permalink / raw
  To: gentoo-commits

jer         13/12/09 19:29:59

  Modified:             ChangeLog gmock-1.6.0.ebuild
  Log:
  Stable for HPPA (bug #493400).
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.17                 dev-cpp/gmock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	19 Oct 2013 00:14:07 -0000	1.16
+++ ChangeLog	9 Dec 2013 19:29:59 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/gmock
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.16 2013/10/19 00:14:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.17 2013/12/09 19:29:59 jer Exp $
+
+  09 Dec 2013; Jeroen Roovers <jer@gentoo.org> gmock-1.6.0.ebuild:
+  Stable for HPPA (bug #493400).
 
   19 Oct 2013; Mike Frysinger <vapier@gentoo.org> gmock-1.6.0.ebuild:
   Add keywords for everyone.



1.9                  dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- gmock-1.6.0.ebuild	19 Oct 2013 00:14:07 -0000	1.8
+++ gmock-1.6.0.ebuild	9 Dec 2013 19:29:59 -0000	1.9
@@ -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-cpp/gmock/gmock-1.6.0.ebuild,v 1.8 2013/10/19 00:14:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.9 2013/12/09 19:29:59 jer Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="static-libs"
 
 RDEPEND="=dev-cpp/gtest-${PV}*"





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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2014-07-23 12:03 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 8+ messages in thread
From: Tobias Klausmann (klausman) @ 2014-07-23 12:03 UTC (permalink / raw
  To: gentoo-commits

klausman    14/07/23 12:03:28

  Modified:             ChangeLog gmock-1.6.0.ebuild
  Log:
  Stable on alpha, bug #493400
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.25                 dev-cpp/gmock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	19 Jul 2014 07:28:13 -0000	1.24
+++ ChangeLog	23 Jul 2014 12:03:27 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/gmock
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.24 2014/07/19 07:28:13 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.25 2014/07/23 12:03:27 klausman Exp $
+
+  23 Jul 2014; Tobias Klausmann <klausman@gentoo.org> gmock-1.6.0.ebuild:
+  Stable on alpha, bug #493400
 
   19 Jul 2014; Pacho Ramos <pacho@gentoo.org> gmock-1.7.0.ebuild:
   amd64/x86 stable, bug #513804



1.11                 dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gmock-1.6.0.ebuild	14 Feb 2014 15:46:56 -0000	1.10
+++ gmock-1.6.0.ebuild	23 Jul 2014 12:03:27 -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-cpp/gmock/gmock-1.6.0.ebuild,v 1.10 2014/02/14 15:46:56 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.11 2014/07/23 12:03:27 klausman Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="static-libs"
 
 RDEPEND="=dev-cpp/gtest-${PV}*"





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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild
@ 2014-08-15 17:45 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2014-08-15 17:45 UTC (permalink / raw
  To: gentoo-commits

armin76     14/08/15 17:45:56

  Modified:             ChangeLog gmock-1.6.0.ebuild
  Log:
  sparc stable
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.26                 dev-cpp/gmock/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/gmock/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	23 Jul 2014 12:03:27 -0000	1.25
+++ ChangeLog	15 Aug 2014 17:45:56 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/gmock
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.25 2014/07/23 12:03:27 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/ChangeLog,v 1.26 2014/08/15 17:45:56 armin76 Exp $
+
+  15 Aug 2014; Raúl Porcel <armin76@gentoo.org> gmock-1.6.0.ebuild:
+  sparc stable
 
   23 Jul 2014; Tobias Klausmann <klausman@gentoo.org> gmock-1.6.0.ebuild:
   Stable on alpha, bug #493400



1.12                 dev-cpp/gmock/gmock-1.6.0.ebuild

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

Index: gmock-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- gmock-1.6.0.ebuild	23 Jul 2014 12:03:27 -0000	1.11
+++ gmock-1.6.0.ebuild	15 Aug 2014 17:45:56 -0000	1.12
@@ -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-cpp/gmock/gmock-1.6.0.ebuild,v 1.11 2014/07/23 12:03:27 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gmock/gmock-1.6.0.ebuild,v 1.12 2014/08/15 17:45:56 armin76 Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
 IUSE="static-libs"
 
 RDEPEND="=dev-cpp/gtest-${PV}*"





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

end of thread, other threads:[~2014-08-15 17:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-15 17:45 [gentoo-commits] gentoo-x86 commit in dev-cpp/gmock: ChangeLog gmock-1.6.0.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2014-07-23 12:03 Tobias Klausmann (klausman)
2013-12-09 19:29 Jeroen Roovers (jer)
2013-08-07 10:05 Sergey Popov (pinkbyte)
2012-07-17  9:01 Anthony G. Basile (blueness)
2012-06-12 18:56 Jeff Horelick (jdhore)
2012-06-12 18:32 Agostino Sarubbo (ago)
2012-03-30 15:52 Mike Frysinger (vapier)

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