public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild
@ 2010-04-28 12:31 TomAs Touceda (chiiph)
  0 siblings, 0 replies; 7+ messages in thread
From: TomAs Touceda (chiiph) @ 2010-04-28 12:31 UTC (permalink / raw
  To: gentoo-commits

chiiph      10/04/28 12:31:12

  Modified:             ChangeLog lilypond-2.12.3.ebuild
  Log:
  Fix dependency problem wrt bug 315471, and improve python related code wrt bug 313961. Thanks to Xarthisius and Arfrever for helping with this two issues
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.105                media-sound/lilypond/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lilypond/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	13 Apr 2010 18:35:47 -0000	1.104
+++ ChangeLog	28 Apr 2010 12:31:12 -0000	1.105
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/lilypond
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.104 2010/04/13 18:35:47 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.105 2010/04/28 12:31:12 chiiph Exp $
+
+  28 Apr 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild:
+  Fix dependency problem wrt bug 315471, and improve python related code wrt
+  bug 313961. Thanks to Xarthisius and Arfrever for helping with this two
+  issues
 
 *lilypond-2.12.3 (13 Apr 2010)
 



1.2                  media-sound/lilypond/lilypond-2.12.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?r1=1.1&r2=1.2

Index: lilypond-2.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lilypond-2.12.3.ebuild	13 Apr 2010 18:35:47 -0000	1.1
+++ lilypond-2.12.3.ebuild	28 Apr 2010 12:31:12 -0000	1.2
@@ -1,10 +1,12 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.1 2010/04/13 18:35:47 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.2 2010/04/28 12:31:12 chiiph Exp $
 
 EAPI="3"
 
-inherit eutils versionator toolchain-funcs elisp-common flag-o-matic
+PYTHON_DEPEND="2"
+
+inherit eutils versionator toolchain-funcs elisp-common flag-o-matic python
 
 DESCRIPTION="GNU Music Typesetter"
 SRC_URI="http://download.linuxaudio.org/lilypond/sources/v$(get_version_component_range 1-2)/${P}.tar.gz"
@@ -16,12 +18,11 @@
 
 IUSE="debug emacs profile"
 
-RDEPEND="
+RDEPEND="|| ( media-fonts/gnu-gs-fonts-std media-fonts/urw-fonts )
 	>=media-libs/freetype-2
 	media-libs/fontconfig
 	>=x11-libs/pango-1.12.3
 	>=dev-scheme/guile-1.8.2[deprecated,regex]
-	>=dev-lang/python-2.4
 	|| ( >=app-text/ghostscript-gnu-8.15
 		 >=app-text/ghostscript-gpl-8.15 )
 	emacs? ( virtual/emacs )"
@@ -38,6 +39,10 @@
 	dev-lang/perl
 	>=sys-devel/bison-2.0"
 
+pkg_setup() {
+	python_set_active_version 2
+}
+
 src_prepare() {
 	epatch "${FILESDIR}"/${P}-qa_pyc_fix.patch
 }
@@ -49,6 +54,7 @@
 	fi
 
 	if use profile; then
+		einfo "Stripping -fomit-frame-pointer flag"
 		strip-flags -fomit-frame-pointer
 	fi
 
@@ -78,7 +84,7 @@
 # for our purposes.
 RESTRICT=test
 
-src_install () {
+src_install() {
 	emake DESTDIR="${D}" vimdir=/usr/share/vim/vimfiles install || die "emake install failed"
 
 	# remove elisp files since they are in the wrong directory
@@ -91,6 +97,8 @@
 	fi
 
 	dodoc AUTHORS.txt HACKING NEWS.txt README.txt || die
+
+	python_convert_shebangs -r 2 "${D}"
 }
 
 pkg_postinst() {






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild
@ 2010-06-12  4:21 TomAs Touceda (chiiph)
  0 siblings, 0 replies; 7+ messages in thread
From: TomAs Touceda (chiiph) @ 2010-06-12  4:21 UTC (permalink / raw
  To: gentoo-commits

chiiph      10/06/12 04:21:45

  Modified:             ChangeLog lilypond-2.12.3.ebuild
  Log:
  Update font dependency wrt bug 323603 and 311923
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.106                media-sound/lilypond/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?r1=1.105&r2=1.106

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ChangeLog	28 Apr 2010 12:31:12 -0000	1.105
+++ ChangeLog	12 Jun 2010 04:21:44 -0000	1.106
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lilypond
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.105 2010/04/28 12:31:12 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.106 2010/06/12 04:21:44 chiiph Exp $
+
+  12 Jun 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild:
+  Update font dependency wrt bug 323603 and 311923
 
   28 Apr 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild:
   Fix dependency problem wrt bug 315471, and improve python related code wrt



1.3                  media-sound/lilypond/lilypond-2.12.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?r1=1.2&r2=1.3

Index: lilypond-2.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lilypond-2.12.3.ebuild	28 Apr 2010 12:31:12 -0000	1.2
+++ lilypond-2.12.3.ebuild	12 Jun 2010 04:21:44 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.2 2010/04/28 12:31:12 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.3 2010/06/12 04:21:44 chiiph Exp $
 
 EAPI="3"
 
@@ -18,7 +18,7 @@
 
 IUSE="debug emacs profile"
 
-RDEPEND="|| ( media-fonts/gnu-gs-fonts-std media-fonts/urw-fonts )
+RDEPEND="media-fonts/urw-fonts
 	>=media-libs/freetype-2
 	media-libs/fontconfig
 	>=x11-libs/pango-1.12.3
@@ -59,7 +59,7 @@
 	fi
 
 	# see bug 228823
-	econf --with-ncsb-dir=/usr/share/fonts/default/ghostscript \
+	econf --with-ncsb-dir=/usr/share/fonts/urw-fonts/ \
 		$(use_enable debug debugging) \
 		$(use_enable profile profiling) \
 		--disable-gui \






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild
@ 2010-06-12 22:59 TomAs Touceda (chiiph)
  0 siblings, 0 replies; 7+ messages in thread
From: TomAs Touceda (chiiph) @ 2010-06-12 22:59 UTC (permalink / raw
  To: gentoo-commits

chiiph      10/06/12 22:59:05

  Modified:             ChangeLog lilypond-2.12.3.ebuild
  Log:
  Remove hardcoded font path. fc-list works it out, wrt 323603. Thanks to Benjamin Peterson for testing.
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.107                media-sound/lilypond/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.107&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.107&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?r1=1.106&r2=1.107

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- ChangeLog	12 Jun 2010 04:21:44 -0000	1.106
+++ ChangeLog	12 Jun 2010 22:59:05 -0000	1.107
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lilypond
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.106 2010/06/12 04:21:44 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.107 2010/06/12 22:59:05 chiiph Exp $
+
+  13 Jun 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild:
+  Remove hardcoded font path. fc-list works it out, wrt 323603
 
   12 Jun 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild:
   Update font dependency wrt bug 323603 and 311923



1.4                  media-sound/lilypond/lilypond-2.12.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?r1=1.3&r2=1.4

Index: lilypond-2.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lilypond-2.12.3.ebuild	12 Jun 2010 04:21:44 -0000	1.3
+++ lilypond-2.12.3.ebuild	12 Jun 2010 22:59:05 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.3 2010/06/12 04:21:44 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.4 2010/06/12 22:59:05 chiiph Exp $
 
 EAPI="3"
 
@@ -58,9 +58,7 @@
 		strip-flags -fomit-frame-pointer
 	fi
 
-	# see bug 228823
-	econf --with-ncsb-dir=/usr/share/fonts/urw-fonts/ \
-		$(use_enable debug debugging) \
+	econf $(use_enable debug debugging) \
 		$(use_enable profile profiling) \
 		--disable-gui \
 		--disable-documentation






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild
@ 2010-06-29  1:31 TomAs Touceda (chiiph)
  0 siblings, 0 replies; 7+ messages in thread
From: TomAs Touceda (chiiph) @ 2010-06-29  1:31 UTC (permalink / raw
  To: gentoo-commits

chiiph      10/06/29 01:31:44

  Modified:             ChangeLog lilypond-2.12.3.ebuild
  Log:
  Fix gcc-4.5 building problem wrt bug 317163, and python cflags problem wrt bug 324929
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.108                media-sound/lilypond/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.108&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.108&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?r1=1.107&r2=1.108

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- ChangeLog	12 Jun 2010 22:59:05 -0000	1.107
+++ ChangeLog	29 Jun 2010 01:31:44 -0000	1.108
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/lilypond
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.107 2010/06/12 22:59:05 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.108 2010/06/29 01:31:44 chiiph Exp $
+
+  29 Jun 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild,
+  +files/lilypond-2.12.3-gcc45.patch,
+  +files/lilypond-2.12.3-python-cflags.patch:
+  Fix gcc-4.5 building problem wrt bug 317163, and python cflags problem wrt
+  bug 324929
 
   13 Jun 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild:
   Remove hardcoded font path. fc-list works it out, wrt 323603



1.5                  media-sound/lilypond/lilypond-2.12.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?r1=1.4&r2=1.5

Index: lilypond-2.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lilypond-2.12.3.ebuild	12 Jun 2010 22:59:05 -0000	1.4
+++ lilypond-2.12.3.ebuild	29 Jun 2010 01:31:44 -0000	1.5
@@ -1,12 +1,12 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.4 2010/06/12 22:59:05 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.5 2010/06/29 01:31:44 chiiph Exp $
 
 EAPI="3"
 
 PYTHON_DEPEND="2"
 
-inherit eutils versionator toolchain-funcs elisp-common flag-o-matic python
+inherit eutils versionator toolchain-funcs elisp-common flag-o-matic python autotools
 
 DESCRIPTION="GNU Music Typesetter"
 SRC_URI="http://download.linuxaudio.org/lilypond/sources/v$(get_version_component_range 1-2)/${P}.tar.gz"
@@ -44,7 +44,10 @@
 }
 
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-qa_pyc_fix.patch
+	epatch "${FILESDIR}/${P}-qa_pyc_fix.patch"
+	epatch "${FILESDIR}/${P}-python-cflags.patch"
+	epatch "${FILESDIR}/${P}-gcc45.patch"
+	eautoreconf
 }
 
 src_configure() {






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild
@ 2011-06-30 18:49 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2011-06-30 18:49 UTC (permalink / raw
  To: gentoo-commits

jer         11/06/30 18:49:31

  Modified:             ChangeLog lilypond-2.12.3.ebuild
  Log:
  Marked ~hppa (bug #356069).
  
  (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)

Revision  Changes    Path
1.109                media-sound/lilypond/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?r1=1.108&r2=1.109

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog	29 Jun 2010 01:31:44 -0000	1.108
+++ ChangeLog	30 Jun 2011 18:49:31 -0000	1.109
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lilypond
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.108 2010/06/29 01:31:44 chiiph Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.109 2011/06/30 18:49:31 jer Exp $
+
+  30 Jun 2011; Jeroen Roovers <jer@gentoo.org> lilypond-2.12.3.ebuild:
+  Marked ~hppa (bug #356069).
 
   29 Jun 2010; Tomas Touceda <chiiph@gentoo.org> lilypond-2.12.3.ebuild,
   +files/lilypond-2.12.3-gcc45.patch,



1.6                  media-sound/lilypond/lilypond-2.12.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?r1=1.5&r2=1.6

Index: lilypond-2.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lilypond-2.12.3.ebuild	29 Jun 2010 01:31:44 -0000	1.5
+++ lilypond-2.12.3.ebuild	30 Jun 2011 18:49:31 -0000	1.6
@@ -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/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.5 2010/06/29 01:31:44 chiiph Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.6 2011/06/30 18:49:31 jer Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~sparc ~x86"
 
 IUSE="debug emacs profile"
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild
@ 2011-09-21 15:24 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 7+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-09-21 15:24 UTC (permalink / raw
  To: gentoo-commits

chainsaw    11/09/21 15:24:23

  Modified:             ChangeLog lilypond-2.12.3.ebuild
  Log:
  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El Lazkani in bug #331181.
  
  (Portage version: 2.1.10.19/cvs/Linux x86_64)

Revision  Changes    Path
1.110                media-sound/lilypond/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?r1=1.109&r2=1.110

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog	30 Jun 2011 18:49:31 -0000	1.109
+++ ChangeLog	21 Sep 2011 15:24:23 -0000	1.110
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/lilypond
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.109 2011/06/30 18:49:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.110 2011/09/21 15:24:23 chainsaw Exp $
+
+  21 Sep 2011; Tony Vroon <chainsaw@gentoo.org> lilypond-2.12.3.ebuild:
+  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
+  Lazkani in bug #331181.
 
   30 Jun 2011; Jeroen Roovers <jer@gentoo.org> lilypond-2.12.3.ebuild:
   Marked ~hppa (bug #356069).



1.7                  media-sound/lilypond/lilypond-2.12.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?r1=1.6&r2=1.7

Index: lilypond-2.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- lilypond-2.12.3.ebuild	30 Jun 2011 18:49:31 -0000	1.6
+++ lilypond-2.12.3.ebuild	21 Sep 2011 15:24:23 -0000	1.7
@@ -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/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.6 2011/06/30 18:49:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.7 2011/09/21 15:24:23 chainsaw Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~hppa ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~sparc ~x86"
 
 IUSE="debug emacs profile"
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild
@ 2011-09-23 15:07 Andreas Schuerch (nativemad)
  0 siblings, 0 replies; 7+ messages in thread
From: Andreas Schuerch (nativemad) @ 2011-09-23 15:07 UTC (permalink / raw
  To: gentoo-commits

nativemad    11/09/23 15:07:42

  Modified:             ChangeLog lilypond-2.12.3.ebuild
  Log:
  x86 stable, thanks Joe Stroller. Bug 331181
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.111                media-sound/lilypond/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	21 Sep 2011 15:24:23 -0000	1.110
+++ ChangeLog	23 Sep 2011 15:07:42 -0000	1.111
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lilypond
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.110 2011/09/21 15:24:23 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/ChangeLog,v 1.111 2011/09/23 15:07:42 nativemad Exp $
+
+  23 Sep 2011; Andreas Schuerch <nativemad@gentoo.org> lilypond-2.12.3.ebuild:
+  x86 stable, thanks Joe Stroller. Bug 331181
 
   21 Sep 2011; Tony Vroon <chainsaw@gentoo.org> lilypond-2.12.3.ebuild:
   Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El



1.8                  media-sound/lilypond/lilypond-2.12.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild?r1=1.7&r2=1.8

Index: lilypond-2.12.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- lilypond-2.12.3.ebuild	21 Sep 2011 15:24:23 -0000	1.7
+++ lilypond-2.12.3.ebuild	23 Sep 2011 15:07:42 -0000	1.8
@@ -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/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.7 2011/09/21 15:24:23 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.8 2011/09/23 15:07:42 nativemad Exp $
 
 EAPI="3"
 
@@ -14,7 +14,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ~hppa ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~sparc x86"
 
 IUSE="debug emacs profile"
 






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

end of thread, other threads:[~2011-09-23 15:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-23 15:07 [gentoo-commits] gentoo-x86 commit in media-sound/lilypond: ChangeLog lilypond-2.12.3.ebuild Andreas Schuerch (nativemad)
  -- strict thread matches above, loose matches on Subject: below --
2011-09-21 15:24 Tony Vroon (chainsaw)
2011-06-30 18:49 Jeroen Roovers (jer)
2010-06-29  1:31 TomAs Touceda (chiiph)
2010-06-12 22:59 TomAs Touceda (chiiph)
2010-06-12  4:21 TomAs Touceda (chiiph)
2010-04-28 12:31 TomAs Touceda (chiiph)

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