public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog
@ 2013-04-25 19:21 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2013-04-25 19:21 UTC (permalink / raw
  To: gentoo-commits

hwoarang    13/04/25 19:21:56

  Modified:             ChangeLog
  Added:                json-c-0.11.ebuild
  Log:
  Version bump. Fixes #464616 and #466960
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)

Revision  Changes    Path
1.27                 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	4 Apr 2013 22:18:36 -0000	1.26
+++ ChangeLog	25 Apr 2013 19:21:56 -0000	1.27
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/json-c
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.26 2013/04/04 22:18:36 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.27 2013/04/25 19:21:56 hwoarang Exp $
+
+*json-c-0.11 (25 Apr 2013)
+
+  25 Apr 2013; Markos Chandras <hwoarang@gentoo.org> +json-c-0.11.ebuild:
+  Version bump. Fixes #464616 and #466960
 
   04 Apr 2013; Mike Gilbert <floppym@gentoo.org> json-c-0.9-r1.ebuild:
   Update blocker; newer jsoncpp does not collide. Bug 462434.



1.1                  dev-libs/json-c/json-c-0.11.ebuild

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

Index: json-c-0.11.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.1 2013/04/25 19:21:56 hwoarang Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=true

inherit autotools-utils

DESCRIPTION="A JSON implementation in C"
HOMEPAGE="https://github.com/json-c/json-c/wiki"
SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz"

LICENSE="MIT"
SLOT="0/0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="doc static-libs"

# tests break otherwise
AUTOTOOLS_IN_SOURCE_BUILD=1

src_prepare() {
	sed -i -e "s:-Werror::" Makefile.am.inc || die
	autotools-utils_src_prepare
}

src_configure() {
	# Disable old lib compatibility
	myeconfargs=(--disable-oldname-compat)
	autotools-utils_src_configure
}

src_test() {
	export USE_VALGRIND=0 VERBOSE=1
	autotools-utils_src_test
}

src_install() {
	use doc && HTML_DOCS=( "${S}"/doc/html )
	autotools-utils_src_install

	# add symlink for projects not using pkgconfig
	dosym ../json-c /usr/include/json-c/json
}





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog
@ 2013-11-24 19:07 Pacho Ramos (pacho)
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos (pacho) @ 2013-11-24 19:07 UTC (permalink / raw
  To: gentoo-commits

pacho       13/11/24 19:07:39

  Modified:             json-c-0.11.ebuild ChangeLog
  Log:
  amd64 stable, bug #492238
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  dev-libs/json-c/json-c-0.11.ebuild

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

Index: json-c-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- json-c-0.11.ebuild	9 May 2013 05:15:10 -0000	1.2
+++ json-c-0.11.ebuild	24 Nov 2013 19:07:39 -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/json-c/json-c-0.11.ebuild,v 1.2 2013/05/09 05:15:10 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.3 2013/11/24 19:07:39 pacho Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0/0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 # tests break otherwise



1.31                 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	24 Nov 2013 10:56:48 -0000	1.30
+++ ChangeLog	24 Nov 2013 19:07:39 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-c
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.30 2013/11/24 10:56:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.31 2013/11/24 19:07:39 pacho Exp $
+
+  24 Nov 2013; Pacho Ramos <pacho@gentoo.org> json-c-0.11.ebuild:
+  amd64 stable, bug #492238
 
 *json-c-0.11-r1 (24 Nov 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog
@ 2013-11-26 20:11 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2013-11-26 20:11 UTC (permalink / raw
  To: gentoo-commits

jer         13/11/26 20:11:26

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

Revision  Changes    Path
1.4                  dev-libs/json-c/json-c-0.11.ebuild

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

Index: json-c-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- json-c-0.11.ebuild	24 Nov 2013 19:07:39 -0000	1.3
+++ json-c-0.11.ebuild	26 Nov 2013 20:11:26 -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/json-c/json-c-0.11.ebuild,v 1.3 2013/11/24 19:07:39 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.4 2013/11/26 20:11:26 jer Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 # tests break otherwise



1.32                 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	24 Nov 2013 19:07:39 -0000	1.31
+++ ChangeLog	26 Nov 2013 20:11:26 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-c
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.31 2013/11/24 19:07:39 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.32 2013/11/26 20:11:26 jer Exp $
+
+  26 Nov 2013; Jeroen Roovers <jer@gentoo.org> json-c-0.11.ebuild:
+  Stable for HPPA (bug #492238).
 
   24 Nov 2013; Pacho Ramos <pacho@gentoo.org> json-c-0.11.ebuild:
   amd64 stable, bug #492238





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog
@ 2013-12-06 17:13 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2013-12-06 17:13 UTC (permalink / raw
  To: gentoo-commits

maekke      13/12/06 17:13:01

  Modified:             json-c-0.11.ebuild ChangeLog
  Log:
  arm stable, bug #492238
  
  (Portage version: 2.2.7/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.5                  dev-libs/json-c/json-c-0.11.ebuild

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

Index: json-c-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- json-c-0.11.ebuild	26 Nov 2013 20:11:26 -0000	1.4
+++ json-c-0.11.ebuild	6 Dec 2013 17:13:01 -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/json-c/json-c-0.11.ebuild,v 1.4 2013/11/26 20:11:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.5 2013/12/06 17:13:01 maekke Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 # tests break otherwise



1.33                 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	26 Nov 2013 20:11:26 -0000	1.32
+++ ChangeLog	6 Dec 2013 17:13:01 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-c
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.32 2013/11/26 20:11:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.33 2013/12/06 17:13:01 maekke Exp $
+
+  06 Dec 2013; Markus Meier <maekke@gentoo.org> json-c-0.11.ebuild:
+  arm stable, bug #492238
 
   26 Nov 2013; Jeroen Roovers <jer@gentoo.org> json-c-0.11.ebuild:
   Stable for HPPA (bug #492238).





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog
@ 2013-12-08 10:50 Pacho Ramos (pacho)
  0 siblings, 0 replies; 7+ messages in thread
From: Pacho Ramos (pacho) @ 2013-12-08 10:50 UTC (permalink / raw
  To: gentoo-commits

pacho       13/12/08 10:50:16

  Modified:             json-c-0.11.ebuild ChangeLog
  Log:
  x86 stable, bug #492238
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.6                  dev-libs/json-c/json-c-0.11.ebuild

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

Index: json-c-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- json-c-0.11.ebuild	6 Dec 2013 17:13:01 -0000	1.5
+++ json-c-0.11.ebuild	8 Dec 2013 10:50:16 -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/json-c/json-c-0.11.ebuild,v 1.5 2013/12/06 17:13:01 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.6 2013/12/08 10:50:16 pacho Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 # tests break otherwise



1.34                 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	6 Dec 2013 17:13:01 -0000	1.33
+++ ChangeLog	8 Dec 2013 10:50:16 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-c
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.33 2013/12/06 17:13:01 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.34 2013/12/08 10:50:16 pacho Exp $
+
+  08 Dec 2013; Pacho Ramos <pacho@gentoo.org> json-c-0.11.ebuild:
+  x86 stable, bug #492238
 
   06 Dec 2013; Markus Meier <maekke@gentoo.org> json-c-0.11.ebuild:
   arm stable, bug #492238





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog
@ 2013-12-24 16:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 7+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-12-24 16:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/12/24 16:55:35

  Modified:             json-c-0.11.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #492238
  
  (Portage version: 2.2.1/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-libs/json-c/json-c-0.11.ebuild

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

Index: json-c-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- json-c-0.11.ebuild	8 Dec 2013 10:50:16 -0000	1.6
+++ json-c-0.11.ebuild	24 Dec 2013 16:55:35 -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/json-c/json-c-0.11.ebuild,v 1.6 2013/12/08 10:50:16 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.7 2013/12/24 16:55:35 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 # tests break otherwise



1.35                 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	8 Dec 2013 10:50:16 -0000	1.34
+++ ChangeLog	24 Dec 2013 16:55:35 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-c
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.34 2013/12/08 10:50:16 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.35 2013/12/24 16:55:35 ago Exp $
+
+  24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> json-c-0.11.ebuild:
+  Stable for ppc64, wrt bug #492238
 
   08 Dec 2013; Pacho Ramos <pacho@gentoo.org> json-c-0.11.ebuild:
   x86 stable, bug #492238





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog
@ 2014-01-27 12:21 Akinori Hattori (hattya)
  0 siblings, 0 replies; 7+ messages in thread
From: Akinori Hattori (hattya) @ 2014-01-27 12:21 UTC (permalink / raw
  To: gentoo-commits

hattya      14/01/27 12:21:12

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

Revision  Changes    Path
1.8                  dev-libs/json-c/json-c-0.11.ebuild

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

Index: json-c-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- json-c-0.11.ebuild	24 Dec 2013 16:55:35 -0000	1.7
+++ json-c-0.11.ebuild	27 Jan 2014 12:21:12 -0000	1.8
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.7 2013/12/24 16:55:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.11.ebuild,v 1.8 2014/01/27 12:21:12 hattya Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0/0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm hppa ia64 ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 # tests break otherwise



1.36                 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	24 Dec 2013 16:55:35 -0000	1.35
+++ ChangeLog	27 Jan 2014 12:21:12 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-c
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.35 2013/12/24 16:55:35 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.36 2014/01/27 12:21:12 hattya Exp $
+
+  27 Jan 2014; Akinori Hattori <hattya@gentoo.org> json-c-0.11.ebuild:
+  ia64 stable wrt bug #492238
 
   24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> json-c-0.11.ebuild:
   Stable for ppc64, wrt bug #492238





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

end of thread, other threads:[~2014-01-27 12:21 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-24 19:07 [gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.11.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2014-01-27 12:21 Akinori Hattori (hattya)
2013-12-24 16:55 Agostino Sarubbo (ago)
2013-12-08 10:50 Pacho Ramos (pacho)
2013-12-06 17:13 Markus Meier (maekke)
2013-11-26 20:11 Jeroen Roovers (jer)
2013-04-25 19:21 Markos Chandras (hwoarang)

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