public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2011-12-27 22:24 Stefan Briesenick (sbriesen)
  0 siblings, 0 replies; 12+ messages in thread
From: Stefan Briesenick (sbriesen) @ 2011-12-27 22:24 UTC (permalink / raw
  To: gentoo-commits

sbriesen    11/12/27 22:24:15

  Modified:             ChangeLog
  Added:                libyaml-0.1.4.ebuild
  Log:
  version bump. switching to EAPI=4, adding USE=static-libs.
  
  (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	18 Nov 2011 03:07:01 -0000	1.17
+++ ChangeLog	27 Dec 2011 22:24:14 -0000	1.18
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.17 2011/11/18 03:07:01 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.18 2011/12/27 22:24:14 sbriesen Exp $
+
+*libyaml-0.1.4 (27 Dec 2011)
+
+  27 Dec 2011; Stefan Briesenick <sbriesen@gentoo.org> +libyaml-0.1.4.ebuild:
+  version bump. switching to EAPI=4, adding USE=static-libs.
 
   18 Nov 2011; Naohiro Aota <naota@gentoo.org> libyaml-0.1.3.ebuild:
   Add ~x86-fbsd



1.1                  dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.1 2011/12/27 22:24:14 sbriesen Exp $

EAPI=4

inherit eutils

MY_P="${P/lib}"

DESCRIPTION="YAML 1.1 parser and emitter written in C"
HOMEPAGE="http://pyyaml.org/wiki/LibYAML"
SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="doc examples test static-libs"

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

DOCS="README"

src_prepare() {
	# conditionally remove tests
	if use test; then
		sed -i -e 's: tests::g' Makefile*
	fi
}

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

src_install() {
	default
	use doc && dohtml -r doc/html/.
	if use examples ; then
		docompress -x /usr/share/doc/${PF}/examples
		insinto /usr/share/doc/${PF}/examples
		doins tests/example-*.c
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-05-27 12:54 Markus Meier (maekke)
  0 siblings, 0 replies; 12+ messages in thread
From: Markus Meier (maekke) @ 2012-05-27 12:54 UTC (permalink / raw
  To: gentoo-commits

maekke      12/05/27 12:54:50

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  arm stable, bug #411507
  
  (Portage version: 2.1.10.62/cvs/Linux i686)

Revision  Changes    Path
1.20                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	29 Dec 2011 17:07:04 -0000	1.19
+++ ChangeLog	27 May 2012 12:54:50 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.19 2011/12/29 17:07:04 jer Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.20 2012/05/27 12:54:50 maekke Exp $
+
+  27 May 2012; Markus Meier <maekke@gentoo.org> libyaml-0.1.4.ebuild:
+  arm stable, bug #411507
 
   29 Dec 2011; Jeroen Roovers <jer@gentoo.org> libyaml-0.1.3.ebuild,
   libyaml-0.1.4.ebuild:



1.3                  dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libyaml-0.1.4.ebuild	29 Dec 2011 17:07:04 -0000	1.2
+++ libyaml-0.1.4.ebuild	27 May 2012 12:54:50 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.2 2011/12/29 17:07:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.3 2012/05/27 12:54:50 maekke Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-06-25  7:38 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-06-25  7:38 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/06/25 07:38:04

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  marked x86 per bug 421611
  
  (Portage version: 2.2.0_alpha112/cvs/Linux i686)

Revision  Changes    Path
1.21                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	27 May 2012 12:54:50 -0000	1.20
+++ ChangeLog	25 Jun 2012 07:38:04 -0000	1.21
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.20 2012/05/27 12:54:50 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.21 2012/06/25 07:38:04 jdhore Exp $
+
+  25 Jun 2012; Jeff Horelick <jdhore@gentoo.org> libyaml-0.1.4.ebuild:
+  marked x86 per bug 421611
 
   27 May 2012; Markus Meier <maekke@gentoo.org> libyaml-0.1.4.ebuild:
   arm stable, bug #411507



1.4                  dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libyaml-0.1.4.ebuild	27 May 2012 12:54:50 -0000	1.3
+++ libyaml-0.1.4.ebuild	25 Jun 2012 07:38:04 -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-libs/libyaml/libyaml-0.1.4.ebuild,v 1.3 2012/05/27 12:54:50 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.4 2012/06/25 07:38:04 jdhore Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-06-26 12:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-06-26 12:03 UTC (permalink / raw
  To: gentoo-commits

ago         12/06/26 12:03:01

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  Stable for amd64, wrt bug #421611
  
  (Portage version: 2.1.10.65/cvs/Linux x86_64)

Revision  Changes    Path
1.22                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	25 Jun 2012 07:38:04 -0000	1.21
+++ ChangeLog	26 Jun 2012 12:03:01 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.21 2012/06/25 07:38:04 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.22 2012/06/26 12:03:01 ago Exp $
+
+  26 Jun 2012; Agostino Sarubbo <ago@gentoo.org> libyaml-0.1.4.ebuild:
+  Stable for amd64, wrt bug #421611
 
   25 Jun 2012; Jeff Horelick <jdhore@gentoo.org> libyaml-0.1.4.ebuild:
   marked x86 per bug 421611



1.5                  dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libyaml-0.1.4.ebuild	25 Jun 2012 07:38:04 -0000	1.4
+++ libyaml-0.1.4.ebuild	26 Jun 2012 12:03:01 -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-libs/libyaml/libyaml-0.1.4.ebuild,v 1.4 2012/06/25 07:38:04 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.5 2012/06/26 12:03:01 ago Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-06-28  1:19 Stefan Briesenick (sbriesen)
  0 siblings, 0 replies; 12+ messages in thread
From: Stefan Briesenick (sbriesen) @ 2012-06-28  1:19 UTC (permalink / raw
  To: gentoo-commits

sbriesen    12/06/28 01:19:50

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  fixed static-libs support
  
  (Portage version: 2.2.0_alpha113/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	26 Jun 2012 12:03:01 -0000	1.22
+++ ChangeLog	28 Jun 2012 01:19:50 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.22 2012/06/26 12:03:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.23 2012/06/28 01:19:50 sbriesen Exp $
+
+  28 Jun 2012; Stefan Briesenick <sbriesen@gentoo.org> libyaml-0.1.4.ebuild:
+  fixed static-libs support
 
   26 Jun 2012; Agostino Sarubbo <ago@gentoo.org> libyaml-0.1.4.ebuild:
   Stable for amd64, wrt bug #421611



1.6                  dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libyaml-0.1.4.ebuild	26 Jun 2012 12:03:01 -0000	1.5
+++ libyaml-0.1.4.ebuild	28 Jun 2012 01:19:50 -0000	1.6
@@ -1,10 +1,10 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.5 2012/06/26 12:03:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.6 2012/06/28 01:19:50 sbriesen Exp $
 
 EAPI=4
 
-inherit eutils
+inherit eutils autotools-utils
 
 MY_P="${P/lib}"
 
@@ -28,12 +28,8 @@
 	fi
 }
 
-src_configure() {
-	econf $(use_enable static-libs static)
-}
-
 src_install() {
-	default
+	autotools-utils_src_install
 	use doc && dohtml -r doc/html/.
 	if use examples ; then
 		docompress -x /usr/share/doc/${PF}/examples






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-07-10 18:01 Brent Baude (ranger)
  0 siblings, 0 replies; 12+ messages in thread
From: Brent Baude (ranger) @ 2012-07-10 18:01 UTC (permalink / raw
  To: gentoo-commits

ranger      12/07/10 18:01:29

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  Marking libyaml-0.1.4 ppc for bug 421611
  
  (Portage version: 2.1.10.65/cvs/Linux ppc64)

Revision  Changes    Path
1.26                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	1 Jul 2012 15:40:31 -0000	1.25
+++ ChangeLog	10 Jul 2012 18:01:29 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.25 2012/07/01 15:40:31 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.26 2012/07/10 18:01:29 ranger Exp $
+
+  10 Jul 2012; Brent Baude <ranger@gentoo.org> libyaml-0.1.4.ebuild:
+  Marking libyaml-0.1.4 ppc for bug 421611
 
   01 Jul 2012; Akinori Hattori <hattya@gentoo.org> libyaml-0.1.4.ebuild:
   ia64 stable wrt bug #421611.



1.8                  dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libyaml-0.1.4.ebuild	1 Jul 2012 15:30:57 -0000	1.7
+++ libyaml-0.1.4.ebuild	10 Jul 2012 18:01:29 -0000	1.8
@@ -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-libs/libyaml/libyaml-0.1.4.ebuild,v 1.7 2012/07/01 15:30:57 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.8 2012/07/10 18:01:29 ranger Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-07-10 19:05 Brent Baude (ranger)
  0 siblings, 0 replies; 12+ messages in thread
From: Brent Baude (ranger) @ 2012-07-10 19:05 UTC (permalink / raw
  To: gentoo-commits

ranger      12/07/10 19:05:10

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  Marking libyaml-0.1.4 ppc64 for bug 421611
  
  (Portage version: 2.1.10.65/cvs/Linux ppc64)

Revision  Changes    Path
1.27                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	10 Jul 2012 18:01:29 -0000	1.26
+++ ChangeLog	10 Jul 2012 19:05:10 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.26 2012/07/10 18:01:29 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.27 2012/07/10 19:05:10 ranger Exp $
+
+  10 Jul 2012; Brent Baude <ranger@gentoo.org> libyaml-0.1.4.ebuild:
+  Marking libyaml-0.1.4 ppc64 for bug 421611
 
   10 Jul 2012; Brent Baude <ranger@gentoo.org> libyaml-0.1.4.ebuild:
   Marking libyaml-0.1.4 ppc for bug 421611



1.9                  dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libyaml-0.1.4.ebuild	10 Jul 2012 18:01:29 -0000	1.8
+++ libyaml-0.1.4.ebuild	10 Jul 2012 19:05:10 -0000	1.9
@@ -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-libs/libyaml/libyaml-0.1.4.ebuild,v 1.8 2012/07/10 18:01:29 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.9 2012/07/10 19:05:10 ranger Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-09-30 18:28 Raul Porcel (armin76)
  0 siblings, 0 replies; 12+ messages in thread
From: Raul Porcel (armin76) @ 2012-09-30 18:28 UTC (permalink / raw
  To: gentoo-commits

armin76     12/09/30 18:28:33

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  alpha/s390/sh/sparc stable wrt #421611
  
  (Portage version: 2.1.11.16/cvs/Linux ia64)

Revision  Changes    Path
1.29                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	27 Jul 2012 12:36:56 -0000	1.28
+++ ChangeLog	30 Sep 2012 18:28:32 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.28 2012/07/27 12:36:56 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.29 2012/09/30 18:28:32 armin76 Exp $
+
+  30 Sep 2012; Raúl Porcel <armin76@gentoo.org> libyaml-0.1.4.ebuild:
+  alpha/s390/sh/sparc stable wrt #421611
 
   27 Jul 2012; Fabian Groffen <grobian@gentoo.org> libyaml-0.1.4.ebuild:
   Marked ~{sparc,sparc64,x64}-solaris



1.11                 dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libyaml-0.1.4.ebuild	27 Jul 2012 12:36:56 -0000	1.10
+++ libyaml-0.1.4.ebuild	30 Sep 2012 18:28:32 -0000	1.11
@@ -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-libs/libyaml/libyaml-0.1.4.ebuild,v 1.10 2012/07/27 12:36:56 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.11 2012/09/30 18:28:32 armin76 Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-10-10 15:37 Jeroen Roovers (jer)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2012-10-10 15:37 UTC (permalink / raw
  To: gentoo-commits

jer         12/10/10 15:37:05

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  Invert USE=test logic. Sed must die() (bug #421611).
  
  (Portage version: 2.2.0_alpha136/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	30 Sep 2012 18:28:32 -0000	1.29
+++ ChangeLog	10 Oct 2012 15:37:05 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.29 2012/09/30 18:28:32 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.30 2012/10/10 15:37:05 jer Exp $
+
+  10 Oct 2012; Jeroen Roovers <jer@gentoo.org> libyaml-0.1.4.ebuild:
+  Invert USE=test logic. Sed must die() (bug #421611).
 
   30 Sep 2012; Raúl Porcel <armin76@gentoo.org> libyaml-0.1.4.ebuild:
   alpha/s390/sh/sparc stable wrt #421611



1.12                 dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libyaml-0.1.4.ebuild	30 Sep 2012 18:28:32 -0000	1.11
+++ libyaml-0.1.4.ebuild	10 Oct 2012 15:37:05 -0000	1.12
@@ -1,10 +1,10 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.11 2012/09/30 18:28:32 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.12 2012/10/10 15:37:05 jer Exp $
 
 EAPI=4
 
-inherit eutils autotools-utils
+inherit autotools-utils eutils
 
 MY_P="${P/lib}"
 
@@ -23,8 +23,8 @@
 
 src_prepare() {
 	# conditionally remove tests
-	if use test; then
-		sed -i -e 's: tests::g' Makefile*
+	if ! use test; then
+		sed -i -e 's: tests::g' Makefile* || die
 	fi
 }
 





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2012-11-06 16:39 Jeroen Roovers (jer)
  0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers (jer) @ 2012-11-06 16:39 UTC (permalink / raw
  To: gentoo-commits

jer         12/11/06 16:39:36

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  Stable for HPPA (bug #411507).
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.31                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	10 Oct 2012 15:37:05 -0000	1.30
+++ ChangeLog	6 Nov 2012 16:39:36 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.30 2012/10/10 15:37:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.31 2012/11/06 16:39:36 jer Exp $
+
+  06 Nov 2012; Jeroen Roovers <jer@gentoo.org> libyaml-0.1.4.ebuild:
+  Stable for HPPA (bug #411507).
 
   10 Oct 2012; Jeroen Roovers <jer@gentoo.org> libyaml-0.1.4.ebuild:
   Invert USE=test logic. Sed must die() (bug #421611).



1.13                 dev-libs/libyaml/libyaml-0.1.4.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild?r1=1.12&r2=1.13

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libyaml-0.1.4.ebuild	10 Oct 2012 15:37:05 -0000	1.12
+++ libyaml-0.1.4.ebuild	6 Nov 2012 16:39:36 -0000	1.13
@@ -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-libs/libyaml/libyaml-0.1.4.ebuild,v 1.12 2012/10/10 15:37:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.13 2012/11/06 16:39:36 jer Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2013-01-28 14:57 Alexis Ballier (aballier)
  0 siblings, 0 replies; 12+ messages in thread
From: Alexis Ballier (aballier) @ 2013-01-28 14:57 UTC (permalink / raw
  To: gentoo-commits

aballier    13/01/28 14:57:41

  Modified:             ChangeLog libyaml-0.1.4.ebuild
  Log:
  keyword ~amd64-fbsd
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.33                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	26 Jan 2013 16:37:51 -0000	1.32
+++ ChangeLog	28 Jan 2013 14:57:41 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.32 2013/01/26 16:37:51 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.33 2013/01/28 14:57:41 aballier Exp $
+
+  28 Jan 2013; Alexis Ballier <aballier@gentoo.org> libyaml-0.1.4.ebuild:
+  keyword ~amd64-fbsd
 
   26 Jan 2013; Fabian Groffen <grobian@gentoo.org> libyaml-0.1.4.ebuild:
   Run elibtoolize for FreeMiNT, keyworded, bug #446970



1.15                 dev-libs/libyaml/libyaml-0.1.4.ebuild

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

Index: libyaml-0.1.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- libyaml-0.1.4.ebuild	26 Jan 2013 16:37:51 -0000	1.14
+++ libyaml-0.1.4.ebuild	28 Jan 2013 14:57:41 -0000	1.15
@@ -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/libyaml/libyaml-0.1.4.ebuild,v 1.14 2013/01/26 16:37:51 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.15 2013/01/28 14:57:41 aballier Exp $
 
 EAPI=4
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc examples test static-libs"
 
 S="${WORKDIR}/${MY_P}"





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

* [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild
@ 2014-02-27 14:29 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 12+ messages in thread
From: Sergey Popov (pinkbyte) @ 2014-02-27 14:29 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    14/02/27 14:29:26

  Modified:             ChangeLog
  Removed:              libyaml-0.1.4.ebuild
  Log:
  Security cleanup, wrt bug #499920
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.46                 dev-libs/libyaml/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	17 Feb 2014 21:07:49 -0000	1.45
+++ ChangeLog	27 Feb 2014 14:29:26 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libyaml
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.45 2014/02/17 21:07:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.46 2014/02/27 14:29:26 pinkbyte Exp $
+
+  27 Feb 2014; Sergey Popov <pinkbyte@gentoo.org> -libyaml-0.1.4.ebuild:
+  Security cleanup, wrt bug #499920
 
   17 Feb 2014; Agostino Sarubbo <ago@gentoo.org> libyaml-0.1.5.ebuild:
   Stable for arm, wrt bug #499920





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

end of thread, other threads:[~2014-02-27 14:29 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-28 14:57 [gentoo-commits] gentoo-x86 commit in dev-libs/libyaml: ChangeLog libyaml-0.1.4.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2014-02-27 14:29 Sergey Popov (pinkbyte)
2012-11-06 16:39 Jeroen Roovers (jer)
2012-10-10 15:37 Jeroen Roovers (jer)
2012-09-30 18:28 Raul Porcel (armin76)
2012-07-10 19:05 Brent Baude (ranger)
2012-07-10 18:01 Brent Baude (ranger)
2012-06-28  1:19 Stefan Briesenick (sbriesen)
2012-06-26 12:03 Agostino Sarubbo (ago)
2012-06-25  7:38 Jeff Horelick (jdhore)
2012-05-27 12:54 Markus Meier (maekke)
2011-12-27 22:24 Stefan Briesenick (sbriesen)

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