public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2010-09-06 17:43 Michael Weber (xmw)
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Weber (xmw) @ 2010-09-06 17:43 UTC (permalink / raw
  To: gentoo-commits

xmw         10/09/06 17:43:50

  Modified:             ChangeLog
  Added:                byacc-1.9-r3.ebuild
  Log:
  Rev bump to fix LDFLAGS (bug #336197)
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	15 Jan 2010 21:11:02 -0000	1.23
+++ ChangeLog	6 Sep 2010 17:43:50 -0000	1.24
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/byacc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.23 2010/01/15 21:11:02 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.24 2010/09/06 17:43:50 xmw Exp $
+
+*byacc-1.9-r3 (06 Sep 2010)
+
+  06 Sep 2010; Michael Weber <xmw@gentoo.org> +byacc-1.9-r3.ebuild:
+  Rev bump to fix LDFLAGS (bug #336197).
 
   15 Jan 2010; Christian Faulhammer <fauli@gentoo.org> byacc-1.9-r2.ebuild:
   Transfer Prefix keywords



1.1                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.1 2010/09/06 17:43:50 xmw Exp $

EAPI=2

inherit eutils

DESCRIPTION="the best variant of the Yacc parser generator"
HOMEPAGE="http://dickey.his.com/byacc/byacc.html"
SRC_URI="http://sources.isc.org/devel/tools/${P}.tar.gz"

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
IUSE=""

src_prepare() {
	epatch "${FILESDIR}"/mkstemp.patch

	# The following patch fixes yacc to run correctly on ia64 (and
	# other 64-bit arches).  See bug 46233
	epatch "${FILESDIR}"/byacc-1.9-ia64.patch

	# avoid stack access error, bug 232005
	epatch "${FILESDIR}"/${P}-CVE-2008-3196.patch
}

src_compile() {
	emake PROGRAM=byacc CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
}

src_install() {
	dobin byacc || die
	mv yacc.1 byacc.1 || die
	doman byacc.1 || die
	dodoc ACKNOWLEDGEMENTS MANIFEST NEW_FEATURES NOTES README || die
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2010-09-06 17:53 Michael Weber (xmw)
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Weber (xmw) @ 2010-09-06 17:53 UTC (permalink / raw
  To: gentoo-commits

xmw         10/09/06 17:53:13

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  Fix CC/LINKER to toolchain-funcs
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- byacc-1.9-r3.ebuild	6 Sep 2010 17:43:50 -0000	1.1
+++ byacc-1.9-r3.ebuild	6 Sep 2010 17:53:13 -0000	1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.1 2010/09/06 17:43:50 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.2 2010/09/06 17:53:13 xmw Exp $
 
 EAPI=2
 
-inherit eutils
+inherit eutils toolchain-funcs
 
 DESCRIPTION="the best variant of the Yacc parser generator"
 HOMEPAGE="http://dickey.his.com/byacc/byacc.html"
@@ -27,7 +27,7 @@
 }
 
 src_compile() {
-	emake PROGRAM=byacc CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
+	emake PROGRAM=byacc CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" LINKER="$(tc-getCC)" || die
 }
 
 src_install() {



1.25                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	6 Sep 2010 17:43:50 -0000	1.24
+++ ChangeLog	6 Sep 2010 17:53:13 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.24 2010/09/06 17:43:50 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.25 2010/09/06 17:53:13 xmw Exp $
+
+  06 Sep 2010; Michael Weber <xmw@gentoo.org> byacc-1.9-r3.ebuild:
+  Fix CC/LINKER to toolchain-funcs.
 
 *byacc-1.9-r3 (06 Sep 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2011-12-11  9:25 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 9+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-12-11  9:25 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/12/11 09:25:34

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  x86 stable wrt bug #392813
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- byacc-1.9-r3.ebuild	6 Sep 2010 17:53:13 -0000	1.2
+++ byacc-1.9-r3.ebuild	11 Dec 2011 09:25:34 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.2 2010/09/06 17:53:13 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.3 2011/12/11 09:25:34 phajdan.jr Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 src_prepare() {



1.26                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	6 Sep 2010 17:53:13 -0000	1.25
+++ ChangeLog	11 Dec 2011 09:25:34 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.25 2010/09/06 17:53:13 xmw Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.26 2011/12/11 09:25:34 phajdan.jr Exp $
+
+  11 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> byacc-1.9-r3.ebuild:
+  x86 stable wrt bug #392813
 
   06 Sep 2010; Michael Weber <xmw@gentoo.org> byacc-1.9-r3.ebuild:
   Fix CC/LINKER to toolchain-funcs.






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2011-12-13 23:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2011-12-13 23:25 UTC (permalink / raw
  To: gentoo-commits

ago         11/12/13 23:25:02

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  Stable for AMD64, wrt bug #392813
  
  (Portage version: 2.1.10.39/cvs/Linux i686)

Revision  Changes    Path
1.4                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- byacc-1.9-r3.ebuild	11 Dec 2011 09:25:34 -0000	1.3
+++ byacc-1.9-r3.ebuild	13 Dec 2011 23:25:02 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.3 2011/12/11 09:25:34 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.4 2011/12/13 23:25:02 ago Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 src_prepare() {



1.27                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	11 Dec 2011 09:25:34 -0000	1.26
+++ ChangeLog	13 Dec 2011 23:25:02 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.26 2011/12/11 09:25:34 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.27 2011/12/13 23:25:02 ago Exp $
+
+  13 Dec 2011; Agostino Sarubbo <ago@gentoo.org> byacc-1.9-r3.ebuild:
+  Stable for AMD64, wrt bug #392813
 
   11 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> byacc-1.9-r3.ebuild:
   x86 stable wrt bug #392813






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2012-01-03 23:38 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 9+ messages in thread
From: Ulrich Mueller (ulm) @ 2012-01-03 23:38 UTC (permalink / raw
  To: gentoo-commits

ulm         12/01/03 23:38:52

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  QA: Don't install MANIFEST with dodoc.
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- byacc-1.9-r3.ebuild	13 Dec 2011 23:25:02 -0000	1.4
+++ byacc-1.9-r3.ebuild	3 Jan 2012 23:38:52 -0000	1.5
@@ -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-util/byacc/byacc-1.9-r3.ebuild,v 1.4 2011/12/13 23:25:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.5 2012/01/03 23:38:52 ulm Exp $
 
 EAPI=2
 
@@ -32,7 +32,6 @@
 
 src_install() {
 	dobin byacc || die
-	mv yacc.1 byacc.1 || die
-	doman byacc.1 || die
-	dodoc ACKNOWLEDGEMENTS MANIFEST NEW_FEATURES NOTES README || die
+	newman yacc.1 byacc.1 || die
+	dodoc ACKNOWLEDGEMENTS NEW_FEATURES NOTES README || die
 }



1.28                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	13 Dec 2011 23:25:02 -0000	1.27
+++ ChangeLog	3 Jan 2012 23:38:52 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.27 2011/12/13 23:25:02 ago Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.28 2012/01/03 23:38:52 ulm Exp $
+
+  03 Jan 2012; Ulrich Mueller <ulm@gentoo.org> byacc-1.9-r3.ebuild:
+  QA: Don't install MANIFEST with dodoc.
 
   13 Dec 2011; Agostino Sarubbo <ago@gentoo.org> byacc-1.9-r3.ebuild:
   Stable for AMD64, wrt bug #392813






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2012-01-15 17:35 Raul Porcel (armin76)
  0 siblings, 0 replies; 9+ messages in thread
From: Raul Porcel (armin76) @ 2012-01-15 17:35 UTC (permalink / raw
  To: gentoo-commits

armin76     12/01/15 17:35:10

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  alpha/ia64/s390/sparc stable wrt #392813
  
  (Portage version: 2.1.10.44/cvs/Linux ia64)

Revision  Changes    Path
1.6                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- byacc-1.9-r3.ebuild	3 Jan 2012 23:38:52 -0000	1.5
+++ byacc-1.9-r3.ebuild	15 Jan 2012 17:35:10 -0000	1.6
@@ -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-util/byacc/byacc-1.9-r3.ebuild,v 1.5 2012/01/03 23:38:52 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.6 2012/01/15 17:35:10 armin76 Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 src_prepare() {



1.29                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	3 Jan 2012 23:38:52 -0000	1.28
+++ ChangeLog	15 Jan 2012 17:35:10 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.28 2012/01/03 23:38:52 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.29 2012/01/15 17:35:10 armin76 Exp $
+
+  15 Jan 2012; Raúl Porcel <armin76@gentoo.org> byacc-1.9-r3.ebuild:
+  alpha/ia64/s390/sparc stable wrt #392813
 
   03 Jan 2012; Ulrich Mueller <ulm@gentoo.org> byacc-1.9-r3.ebuild:
   QA: Don't install MANIFEST with dodoc.






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2012-02-01  9:03 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-02-01  9:03 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/02/01 09:03:58

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  ppc/ppc64 stable wrt #392813
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- byacc-1.9-r3.ebuild	15 Jan 2012 17:35:10 -0000	1.6
+++ byacc-1.9-r3.ebuild	1 Feb 2012 09:03:57 -0000	1.7
@@ -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-util/byacc/byacc-1.9-r3.ebuild,v 1.6 2012/01/15 17:35:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.7 2012/02/01 09:03:57 ssuominen Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc ~ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 src_prepare() {



1.30                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	15 Jan 2012 17:35:10 -0000	1.29
+++ ChangeLog	1 Feb 2012 09:03:57 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.29 2012/01/15 17:35:10 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.30 2012/02/01 09:03:57 ssuominen Exp $
+
+  01 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> byacc-1.9-r3.ebuild:
+  ppc/ppc64 stable wrt #392813
 
   15 Jan 2012; Raúl Porcel <armin76@gentoo.org> byacc-1.9-r3.ebuild:
   alpha/ia64/s390/sparc stable wrt #392813






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2012-02-08  0:41 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-08  0:41 UTC (permalink / raw
  To: gentoo-commits

jer         12/02/08 00:41:23

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #402039).
  
  (Portage version: 2.2.0_alpha85/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- byacc-1.9-r3.ebuild	1 Feb 2012 13:32:42 -0000	1.8
+++ byacc-1.9-r3.ebuild	8 Feb 2012 00:41:23 -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-util/byacc/byacc-1.9-r3.ebuild,v 1.8 2012/02/01 13:32:42 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.9 2012/02/08 00:41:23 jer Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 src_prepare() {



1.33                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	7 Feb 2012 06:48:53 -0000	1.32
+++ ChangeLog	8 Feb 2012 00:41:23 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.32 2012/02/07 06:48:53 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.33 2012/02/08 00:41:23 jer Exp $
+
+  08 Feb 2012; Jeroen Roovers <jer@gentoo.org> byacc-1.9-r3.ebuild:
+  Stable for HPPA (bug #402039).
 
 *byacc-20120115 (07 Feb 2012)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog
@ 2012-02-08 21:11 Markus Meier (maekke)
  0 siblings, 0 replies; 9+ messages in thread
From: Markus Meier (maekke) @ 2012-02-08 21:11 UTC (permalink / raw
  To: gentoo-commits

maekke      12/02/08 21:11:40

  Modified:             byacc-1.9-r3.ebuild ChangeLog
  Log:
  add ~arm, bug #397819
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.10                 dev-util/byacc/byacc-1.9-r3.ebuild

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

Index: byacc-1.9-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- byacc-1.9-r3.ebuild	8 Feb 2012 00:41:23 -0000	1.9
+++ byacc-1.9-r3.ebuild	8 Feb 2012 21:11:40 -0000	1.10
@@ -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-util/byacc/byacc-1.9-r3.ebuild,v 1.9 2012/02/08 00:41:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/byacc-1.9-r3.ebuild,v 1.10 2012/02/08 21:11:40 maekke Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 src_prepare() {



1.34                 dev-util/byacc/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	8 Feb 2012 00:41:23 -0000	1.33
+++ ChangeLog	8 Feb 2012 21:11:40 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/byacc
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.33 2012/02/08 00:41:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/byacc/ChangeLog,v 1.34 2012/02/08 21:11:40 maekke Exp $
+
+  08 Feb 2012; Markus Meier <maekke@gentoo.org> byacc-1.9-r3.ebuild:
+  add ~arm, bug #397819
 
   08 Feb 2012; Jeroen Roovers <jer@gentoo.org> byacc-1.9-r3.ebuild:
   Stable for HPPA (bug #402039).






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

end of thread, other threads:[~2012-02-08 21:11 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-06 17:43 [gentoo-commits] gentoo-x86 commit in dev-util/byacc: byacc-1.9-r3.ebuild ChangeLog Michael Weber (xmw)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-06 17:53 Michael Weber (xmw)
2011-12-11  9:25 PaweA Hajdan (phajdan.jr)
2011-12-13 23:25 Agostino Sarubbo (ago)
2012-01-03 23:38 Ulrich Mueller (ulm)
2012-01-15 17:35 Raul Porcel (armin76)
2012-02-01  9:03 Samuli Suominen (ssuominen)
2012-02-08  0:41 Jeroen Roovers (jer)
2012-02-08 21:11 Markus Meier (maekke)

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