public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.1.6.ebuild
@ 2012-08-16 16:50 Tim Harder (radhermit)
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Harder (radhermit) @ 2012-08-16 16:50 UTC (permalink / raw
  To: gentoo-commits

radhermit    12/08/16 16:50:38

  Modified:             ChangeLog
  Added:                fluidsynth-1.1.6.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.70                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	5 May 2012 08:20:42 -0000	1.69
+++ ChangeLog	16 Aug 2012 16:50:38 -0000	1.70
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.69 2012/05/05 08:20:42 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.70 2012/08/16 16:50:38 radhermit Exp $
+
+*fluidsynth-1.1.6 (16 Aug 2012)
+
+  16 Aug 2012; Tim Harder <radhermit@gentoo.org> +fluidsynth-1.1.6.ebuild:
+  Version bump.
 
   05 May 2012; Michał Górny <mgorny@gentoo.org> fluidsynth-1.1.1.ebuild,
   fluidsynth-1.1.3.ebuild, fluidsynth-1.1.4.ebuild, fluidsynth-1.1.5.ebuild:



1.1                  media-sound/fluidsynth/fluidsynth-1.1.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild?rev=1.1&content-type=text/plain

Index: fluidsynth-1.1.6.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.1 2012/08/16 16:50:38 radhermit Exp $

EAPI=4
inherit cmake-utils

DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications."
HOMEPAGE="http://www.fluidsynth.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile"

RDEPEND=">=dev-libs/glib-2.6.5:2
	alsa? ( media-libs/alsa-lib
		lash? ( >=media-sound/lash-0.5 ) )
	dbus? ( >=sys-apps/dbus-1.0.0 )
	jack? ( media-sound/jack-audio-connection-kit )
	ladspa? ( >=media-libs/ladspa-sdk-1.12
		>=media-libs/ladspa-cmt-1.15 )
	pulseaudio? ( >=media-sound/pulseaudio-0.9.8 )
	portaudio? ( >=media-libs/portaudio-19_pre )
	readline? ( sys-libs/readline )
	sndfile? ( >=media-libs/libsndfile-1.0.18 )"
DEPEND="${RDEPEND}
	virtual/pkgconfig"

src_configure() {
	mycmakeargs=(
		$(cmake-utils_use alsa enable-alsa)
		$(cmake-utils_use dbus enable-dbus)
		$(cmake-utils_use debug enable-debug)
		$(cmake-utils_use jack enable-jack)
		-Denable-ladcca=OFF
		$(cmake-utils_use ladspa enable-ladspa)
		$(cmake-utils_use sndfile enable-libsndfile)
		$(cmake-utils_use portaudio enable-portaudio)
		$(cmake-utils_use pulseaudio enable-pulseaudio)
		$(cmake-utils_use readline enable-readline)
		)

	if use alsa; then
		mycmakeargs+=( $(cmake-utils_use lash enable-lash) )
	else
		mycmakeargs+=( -Denable-lash=OFF )
	fi

	cmake-utils_src_configure
}

src_install() {
	cmake-utils_src_install

	dodoc AUTHORS NEWS README THANKS TODO doc/*.txt

	insinto /usr/share/doc/${PF}/pdf
	doins doc/*.pdf

	if use examples; then
		insinto /usr/share/doc/${PF}/examples
		doins doc/*.c
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.1.6.ebuild
@ 2012-11-23  3:56 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 6+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-11-23  3:56 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/11/23 03:56:20

  Modified:             ChangeLog fluidsynth-1.1.6.ebuild
  Log:
  Use append-flags -pthread to avoid missing symbol pthread_create wrt #436762 by "ungift-ed"
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.72                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- ChangeLog	16 Aug 2012 16:56:42 -0000	1.71
+++ ChangeLog	23 Nov 2012 03:56:20 -0000	1.72
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.71 2012/08/16 16:56:42 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.72 2012/11/23 03:56:20 ssuominen Exp $
+
+  23 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> fluidsynth-1.1.6.ebuild:
+  Use append-flags -pthread to avoid missing symbol pthread_create wrt #436762
+  by "ungift-ed"
 
   16 Aug 2012; Tim Harder <radhermit@gentoo.org> -fluidsynth-1.0.9.ebuild,
   -files/fluidsynth-1.0.9-pkg.patch, -fluidsynth-1.1.3.ebuild,



1.2                  media-sound/fluidsynth/fluidsynth-1.1.6.ebuild

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

Index: fluidsynth-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fluidsynth-1.1.6.ebuild	16 Aug 2012 16:50:38 -0000	1.1
+++ fluidsynth-1.1.6.ebuild	23 Nov 2012 03:56:20 -0000	1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.1 2012/08/16 16:50:38 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.2 2012/11/23 03:56:20 ssuominen Exp $
 
 EAPI=4
-inherit cmake-utils
+inherit cmake-utils flag-o-matic
 
 DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications."
 HOMEPAGE="http://www.fluidsynth.org/"
@@ -29,6 +29,10 @@
 	virtual/pkgconfig"
 
 src_configure() {
+	# autotools based build system has AC_CHECK_LIB(pthread, pthread_create) wrt
+	# bug #436762
+	append-flags -pthread
+
 	mycmakeargs=(
 		$(cmake-utils_use alsa enable-alsa)
 		$(cmake-utils_use dbus enable-dbus)





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.1.6.ebuild
@ 2012-11-23 13:05 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-11-23 13:05 UTC (permalink / raw
  To: gentoo-commits

ago         12/11/23 13:05:28

  Modified:             ChangeLog fluidsynth-1.1.6.ebuild
  Log:
  Stable for amd64, wrt bug #444388
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.73                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	23 Nov 2012 03:56:20 -0000	1.72
+++ ChangeLog	23 Nov 2012 13:05:28 -0000	1.73
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.72 2012/11/23 03:56:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.73 2012/11/23 13:05:28 ago Exp $
+
+  23 Nov 2012; <ago@gentoo.org> fluidsynth-1.1.6.ebuild:
+  Stable for amd64, wrt bug #444388
 
   23 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> fluidsynth-1.1.6.ebuild:
   Use append-flags -pthread to avoid missing symbol pthread_create wrt #436762



1.3                  media-sound/fluidsynth/fluidsynth-1.1.6.ebuild

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

Index: fluidsynth-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fluidsynth-1.1.6.ebuild	23 Nov 2012 03:56:20 -0000	1.2
+++ fluidsynth-1.1.6.ebuild	23 Nov 2012 13:05:28 -0000	1.3
@@ -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/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.2 2012/11/23 03:56:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.3 2012/11/23 13:05:28 ago Exp $
 
 EAPI=4
 inherit cmake-utils flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile"
 
 RDEPEND=">=dev-libs/glib-2.6.5:2





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.1.6.ebuild
@ 2012-11-29 14:57 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2012-11-29 14:57 UTC (permalink / raw
  To: gentoo-commits

jer         12/11/29 14:57:25

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

Revision  Changes    Path
1.75                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog	23 Nov 2012 14:57:20 -0000	1.74
+++ ChangeLog	29 Nov 2012 14:57:25 -0000	1.75
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.74 2012/11/23 14:57:20 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.75 2012/11/29 14:57:25 jer Exp $
+
+  29 Nov 2012; Jeroen Roovers <jer@gentoo.org> fluidsynth-1.1.6.ebuild:
+  Stable for HPPA (bug #444388).
 
   23 Nov 2012; Anthony G. Basile <blueness@gentoo.org> fluidsynth-1.1.6.ebuild:
   stable ppc ppc64, bug #444388



1.5                  media-sound/fluidsynth/fluidsynth-1.1.6.ebuild

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

Index: fluidsynth-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fluidsynth-1.1.6.ebuild	23 Nov 2012 14:57:20 -0000	1.4
+++ fluidsynth-1.1.6.ebuild	29 Nov 2012 14:57:25 -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/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.4 2012/11/23 14:57:20 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.5 2012/11/29 14:57:25 jer Exp $
 
 EAPI=4
 inherit cmake-utils flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 hppa ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile"
 
 RDEPEND=">=dev-libs/glib-2.6.5:2





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.1.6.ebuild
@ 2012-12-04 15:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-12-04 15:41 UTC (permalink / raw
  To: gentoo-commits

ago         12/12/04 15:41:01

  Modified:             ChangeLog fluidsynth-1.1.6.ebuild
  Log:
  Stable for x86, wrt bug #444388
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.76                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	29 Nov 2012 14:57:25 -0000	1.75
+++ ChangeLog	4 Dec 2012 15:41:01 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.75 2012/11/29 14:57:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.76 2012/12/04 15:41:01 ago Exp $
+
+  04 Dec 2012; <ago@gentoo.org> fluidsynth-1.1.6.ebuild:
+  Stable for x86, wrt bug #444388
 
   29 Nov 2012; Jeroen Roovers <jer@gentoo.org> fluidsynth-1.1.6.ebuild:
   Stable for HPPA (bug #444388).



1.6                  media-sound/fluidsynth/fluidsynth-1.1.6.ebuild

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

Index: fluidsynth-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fluidsynth-1.1.6.ebuild	29 Nov 2012 14:57:25 -0000	1.5
+++ fluidsynth-1.1.6.ebuild	4 Dec 2012 15:41:01 -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/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.5 2012/11/29 14:57:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.6 2012/12/04 15:41:01 ago Exp $
 
 EAPI=4
 inherit cmake-utils flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 hppa ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile"
 
 RDEPEND=">=dev-libs/glib-2.6.5:2





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.1.6.ebuild
@ 2012-12-27  8:17 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2012-12-27  8:17 UTC (permalink / raw
  To: gentoo-commits

armin76     12/12/27 08:17:26

  Modified:             ChangeLog fluidsynth-1.1.6.ebuild
  Log:
  alpha/sparc stable wrt #444388
  
  (Portage version: 2.1.11.38/cvs/Linux ia64, signed Manifest commit with key F6AD3240)

Revision  Changes    Path
1.77                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	4 Dec 2012 15:41:01 -0000	1.76
+++ ChangeLog	27 Dec 2012 08:17:26 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.76 2012/12/04 15:41:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.77 2012/12/27 08:17:26 armin76 Exp $
+
+  27 Dec 2012; Raúl Porcel <armin76@gentoo.org> fluidsynth-1.1.6.ebuild:
+  alpha/sparc stable wrt #444388
 
   04 Dec 2012; <ago@gentoo.org> fluidsynth-1.1.6.ebuild:
   Stable for x86, wrt bug #444388



1.7                  media-sound/fluidsynth/fluidsynth-1.1.6.ebuild

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

Index: fluidsynth-1.1.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fluidsynth-1.1.6.ebuild	4 Dec 2012 15:41:01 -0000	1.6
+++ fluidsynth-1.1.6.ebuild	27 Dec 2012 08:17:26 -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/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.6 2012/12/04 15:41:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6.ebuild,v 1.7 2012/12/27 08:17:26 armin76 Exp $
 
 EAPI=4
 inherit cmake-utils flag-o-matic
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile"
 
 RDEPEND=">=dev-libs/glib-2.6.5:2





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

end of thread, other threads:[~2012-12-27  8:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-27  8:17 [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.1.6.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2012-12-04 15:41 Agostino Sarubbo (ago)
2012-11-29 14:57 Jeroen Roovers (jer)
2012-11-23 13:05 Agostino Sarubbo (ago)
2012-11-23  3:56 Samuli Suominen (ssuominen)
2012-08-16 16:50 Tim Harder (radhermit)

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