public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2014-05-03  9:44 Michal Gorny (mgorny)
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Gorny (mgorny) @ 2014-05-03  9:44 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/05/03 09:44:12

  Modified:             ChangeLog
  Added:                fluidsynth-1.1.6-r1.ebuild
  Log:
  Enable multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.78                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	27 Dec 2012 08:17:26 -0000	1.77
+++ ChangeLog	3 May 2014 09:44:11 -0000	1.78
@@ -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.77 2012/12/27 08:17:26 armin76 Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.78 2014/05/03 09:44:11 mgorny Exp $
+
+*fluidsynth-1.1.6-r1 (03 May 2014)
+
+  03 May 2014; Michał Górny <mgorny@gentoo.org> +fluidsynth-1.1.6-r1.ebuild:
+  Enable multilib support.
 
   27 Dec 2012; Raúl Porcel <armin76@gentoo.org> fluidsynth-1.1.6.ebuild:
   alpha/sparc stable wrt #444388



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

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
# Copyright 1999-2014 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-r1.ebuild,v 1.1 2014/05/03 09:44:11 mgorny Exp $

EAPI=5
inherit cmake-multilib flag-o-matic

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[${MULTILIB_USEDEP}]
	alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}]
		lash? ( >=media-sound/lash-0.5[${MULTILIB_USEDEP}] ) )
	dbus? ( >=sys-apps/dbus-1.0.0[${MULTILIB_USEDEP}] )
	jack? ( media-sound/jack-audio-connection-kit[${MULTILIB_USEDEP}] )
	ladspa? ( >=media-libs/ladspa-sdk-1.12[${MULTILIB_USEDEP}]
		>=media-libs/ladspa-cmt-1.15[${MULTILIB_USEDEP}] )
	pulseaudio? ( >=media-sound/pulseaudio-0.9.8[${MULTILIB_USEDEP}] )
	portaudio? ( >=media-libs/portaudio-19_pre[${MULTILIB_USEDEP}] )
	readline? ( sys-libs/readline[${MULTILIB_USEDEP}] )
	sndfile? ( >=media-libs/libsndfile-1.0.18[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
	virtual/pkgconfig[${MULTILIB_USEDEP}]"

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)
		$(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-multilib_src_configure
}

src_install() {
	cmake-multilib_src_install

	dodoc AUTHORS NEWS README THANKS TODO doc/*.txt

	docinto pdf
	dodoc doc/*.pdf

	if use examples; then
		docinto examples
		dodoc doc/*.c
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2014-06-18 20:27 Michal Gorny (mgorny)
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-18 20:27 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/18 20:27:44

  Modified:             fluidsynth-1.1.6-r1.ebuild ChangeLog
  Log:
  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug #513718.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.2                  media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- fluidsynth-1.1.6-r1.ebuild	3 May 2014 09:44:11 -0000	1.1
+++ fluidsynth-1.1.6-r1.ebuild	18 Jun 2014 20:27:44 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 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-r1.ebuild,v 1.1 2014/05/03 09:44:11 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v 1.2 2014/06/18 20:27:44 mgorny Exp $
 
 EAPI=5
 inherit cmake-multilib flag-o-matic
@@ -14,19 +14,19 @@
 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[${MULTILIB_USEDEP}]
-	alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}]
-		lash? ( >=media-sound/lash-0.5[${MULTILIB_USEDEP}] ) )
-	dbus? ( >=sys-apps/dbus-1.0.0[${MULTILIB_USEDEP}] )
-	jack? ( media-sound/jack-audio-connection-kit[${MULTILIB_USEDEP}] )
-	ladspa? ( >=media-libs/ladspa-sdk-1.12[${MULTILIB_USEDEP}]
-		>=media-libs/ladspa-cmt-1.15[${MULTILIB_USEDEP}] )
-	pulseaudio? ( >=media-sound/pulseaudio-0.9.8[${MULTILIB_USEDEP}] )
-	portaudio? ( >=media-libs/portaudio-19_pre[${MULTILIB_USEDEP}] )
-	readline? ( sys-libs/readline[${MULTILIB_USEDEP}] )
-	sndfile? ( >=media-libs/libsndfile-1.0.18[${MULTILIB_USEDEP}] )"
+RDEPEND=">=dev-libs/glib-2.38.2-r1:2[${MULTILIB_USEDEP}]
+	alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}]
+		lash? ( >=media-sound/lash-0.5.4-r2[${MULTILIB_USEDEP}] ) )
+	dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
+	jack? ( >=media-sound/jack-audio-connection-kit-0.121.3-r1[${MULTILIB_USEDEP}] )
+	ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}]
+		>=media-libs/ladspa-cmt-1.16-r3[${MULTILIB_USEDEP}] )
+	pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
+	portaudio? ( >=media-libs/portaudio-19_pre20111121-r1[${MULTILIB_USEDEP}] )
+	readline? ( >=sys-libs/readline-6.2_p5-r1[${MULTILIB_USEDEP}] )
+	sndfile? ( >=media-libs/libsndfile-1.0.25[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}
-	virtual/pkgconfig[${MULTILIB_USEDEP}]"
+	>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
 
 src_configure() {
 	# autotools based build system has AC_CHECK_LIB(pthread, pthread_create) wrt



1.79                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	3 May 2014 09:44:11 -0000	1.78
+++ ChangeLog	18 Jun 2014 20:27:44 -0000	1.79
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.78 2014/05/03 09:44:11 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.79 2014/06/18 20:27:44 mgorny Exp $
+
+  18 Jun 2014; Michał Górny <mgorny@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
+  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
+  #513718.
 
 *fluidsynth-1.1.6-r1 (03 May 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2014-06-24 22:16 Michal Gorny (mgorny)
  0 siblings, 0 replies; 8+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-24 22:16 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/24 22:16:06

  Modified:             fluidsynth-1.1.6-r1.ebuild ChangeLog
  Log:
  Lower dev-libs/glib dep to first known EAPI=5 version, requested by Funtoo for GNOME 3.6.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.3                  media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- fluidsynth-1.1.6-r1.ebuild	18 Jun 2014 20:27:44 -0000	1.2
+++ fluidsynth-1.1.6-r1.ebuild	24 Jun 2014 22:16:06 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 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-r1.ebuild,v 1.2 2014/06/18 20:27:44 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v 1.3 2014/06/24 22:16:06 mgorny Exp $
 
 EAPI=5
 inherit cmake-multilib flag-o-matic
@@ -14,7 +14,7 @@
 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.38.2-r1:2[${MULTILIB_USEDEP}]
+RDEPEND=">=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
 	alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}]
 		lash? ( >=media-sound/lash-0.5.4-r2[${MULTILIB_USEDEP}] ) )
 	dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )



1.80                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	18 Jun 2014 20:27:44 -0000	1.79
+++ ChangeLog	24 Jun 2014 22:16:06 -0000	1.80
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.79 2014/06/18 20:27:44 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.80 2014/06/24 22:16:06 mgorny Exp $
+
+  24 Jun 2014; Michał Górny <mgorny@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
+  Lower dev-libs/glib dep to first known EAPI=5 version, requested by Funtoo for
+  GNOME 3.6.
 
   18 Jun 2014; Michał Górny <mgorny@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
   Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2014-10-21 10:17 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2014-10-21 10:17 UTC (permalink / raw
  To: gentoo-commits

jer         14/10/21 10:17:10

  Modified:             fluidsynth-1.1.6-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #525744).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.5                  media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- fluidsynth-1.1.6-r1.ebuild	10 Aug 2014 21:05:38 -0000	1.4
+++ fluidsynth-1.1.6-r1.ebuild	21 Oct 2014 10:17:10 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 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-r1.ebuild,v 1.4 2014/08/10 21:05:38 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v 1.5 2014/10/21 10:17:10 jer Exp $
 
 EAPI=5
 inherit cmake-multilib 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.34.3:2[${MULTILIB_USEDEP}]



1.82                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	10 Aug 2014 21:05:38 -0000	1.81
+++ ChangeLog	21 Oct 2014 10:17:10 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.81 2014/08/10 21:05:38 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.82 2014/10/21 10:17:10 jer Exp $
+
+  21 Oct 2014; Jeroen Roovers <jer@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
+  Stable for HPPA (bug #525744).
 
   10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> fluidsynth-1.1.1.ebuild,
   fluidsynth-1.1.5.ebuild, fluidsynth-1.1.6-r1.ebuild, fluidsynth-1.1.6.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2014-10-21 14:37 Pacho Ramos (pacho)
  0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos (pacho) @ 2014-10-21 14:37 UTC (permalink / raw
  To: gentoo-commits

pacho       14/10/21 14:37:48

  Modified:             fluidsynth-1.1.6-r1.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #525744
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.6                  media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- fluidsynth-1.1.6-r1.ebuild	21 Oct 2014 10:17:10 -0000	1.5
+++ fluidsynth-1.1.6-r1.ebuild	21 Oct 2014 14:37:48 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 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-r1.ebuild,v 1.5 2014/10/21 10:17:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v 1.6 2014/10/21 14:37:48 pacho Exp $
 
 EAPI=5
 inherit cmake-multilib 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.34.3:2[${MULTILIB_USEDEP}]



1.83                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- ChangeLog	21 Oct 2014 10:17:10 -0000	1.82
+++ ChangeLog	21 Oct 2014 14:37:48 -0000	1.83
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.82 2014/10/21 10:17:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.83 2014/10/21 14:37:48 pacho Exp $
+
+  21 Oct 2014; Pacho Ramos <pacho@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
+  amd64/x86 stable, bug #525744
 
   21 Oct 2014; Jeroen Roovers <jer@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
   Stable for HPPA (bug #525744).





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2015-01-16  9:55 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2015-01-16  9:55 UTC (permalink / raw
  To: gentoo-commits

armin76     15/01/16 09:55:39

  Modified:             fluidsynth-1.1.6-r1.ebuild ChangeLog
  Log:
  alpha/sparc stable wrt #525744
  
  (Portage version: 2.2.8-r2/cvs/Linux ia64, signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.7                  media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- fluidsynth-1.1.6-r1.ebuild	21 Oct 2014 14:37:48 -0000	1.6
+++ fluidsynth-1.1.6-r1.ebuild	16 Jan 2015 09:55:39 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 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-r1.ebuild,v 1.6 2014/10/21 14:37:48 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v 1.7 2015/01/16 09:55:39 armin76 Exp $
 
 EAPI=5
 inherit cmake-multilib 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.34.3:2[${MULTILIB_USEDEP}]



1.84                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	21 Oct 2014 14:37:48 -0000	1.83
+++ ChangeLog	16 Jan 2015 09:55:39 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.83 2014/10/21 14:37:48 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.84 2015/01/16 09:55:39 armin76 Exp $
+
+  16 Jan 2015; Raúl Porcel <armin76@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
+  alpha/sparc stable wrt #525744
 
   21 Oct 2014; Pacho Ramos <pacho@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
   amd64/x86 stable, bug #525744





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2015-04-21 18:38 Pacho Ramos (pacho)
  0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos (pacho) @ 2015-04-21 18:38 UTC (permalink / raw
  To: gentoo-commits

pacho       15/04/21 18:38:27

  Modified:             fluidsynth-1.1.6-r1.ebuild ChangeLog
  Log:
  ppc stable wrt bug #525744
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.8                  media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- fluidsynth-1.1.6-r1.ebuild	16 Jan 2015 09:55:39 -0000	1.7
+++ fluidsynth-1.1.6-r1.ebuild	21 Apr 2015 18:38:27 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 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-r1.ebuild,v 1.7 2015/01/16 09:55:39 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v 1.8 2015/04/21 18:38:27 pacho Exp $
 
 EAPI=5
 inherit cmake-multilib 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.34.3:2[${MULTILIB_USEDEP}]



1.86                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	29 Mar 2015 22:28:40 -0000	1.85
+++ ChangeLog	21 Apr 2015 18:38:27 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.85 2015/03/29 22:28:40 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.86 2015/04/21 18:38:27 pacho Exp $
+
+  21 Apr 2015; Pacho Ramos <pacho@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
+  ppc stable wrt bug #525744
 
   29 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -fluidsynth-1.1.1.ebuild,
   -fluidsynth-1.1.5.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
@ 2015-05-01 19:48 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2015-05-01 19:48 UTC (permalink / raw
  To: gentoo-commits

jer         15/05/01 19:48:16

  Modified:             fluidsynth-1.1.6-r1.ebuild ChangeLog
  Log:
  Stable for PPC64 (bug #525744).
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.9                  media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild

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

Index: fluidsynth-1.1.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- fluidsynth-1.1.6-r1.ebuild	21 Apr 2015 18:38:27 -0000	1.8
+++ fluidsynth-1.1.6-r1.ebuild	1 May 2015 19:48:16 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 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-r1.ebuild,v 1.8 2015/04/21 18:38:27 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild,v 1.9 2015/05/01 19:48:16 jer Exp $
 
 EAPI=5
 inherit cmake-multilib 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.34.3:2[${MULTILIB_USEDEP}]



1.87                 media-sound/fluidsynth/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	21 Apr 2015 18:38:27 -0000	1.86
+++ ChangeLog	1 May 2015 19:48:16 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/fluidsynth
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.86 2015/04/21 18:38:27 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.87 2015/05/01 19:48:16 jer Exp $
+
+  01 May 2015; Jeroen Roovers <jer@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
+  Stable for PPC64 (bug #525744).
 
   21 Apr 2015; Pacho Ramos <pacho@gentoo.org> fluidsynth-1.1.6-r1.ebuild:
   ppc stable wrt bug #525744





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

end of thread, other threads:[~2015-05-01 19:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-21 18:38 [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2015-05-01 19:48 Jeroen Roovers (jer)
2015-01-16  9:55 Raul Porcel (armin76)
2014-10-21 14:37 Pacho Ramos (pacho)
2014-10-21 10:17 Jeroen Roovers (jer)
2014-06-24 22:16 Michal Gorny (mgorny)
2014-06-18 20:27 Michal Gorny (mgorny)
2014-05-03  9:44 Michal Gorny (mgorny)

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