public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/patchage: ChangeLog patchage-0.5.0.ebuild
@ 2011-01-13  9:00 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2011-01-13  9:00 UTC (permalink / raw
  To: gentoo-commits

aballier    11/01/13 09:00:12

  Modified:             ChangeLog
  Added:                patchage-0.5.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha15/cvs/Linux x86_64)

Revision  Changes    Path
1.11                 media-sound/patchage/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	9 Oct 2010 13:31:13 -0000	1.10
+++ ChangeLog	13 Jan 2011 09:00:12 -0000	1.11
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/patchage
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.10 2010/10/09 13:31:13 aballier Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.11 2011/01/13 09:00:12 aballier Exp $
+
+*patchage-0.5.0 (13 Jan 2011)
+
+  13 Jan 2011; Alexis Ballier <aballier@gentoo.org> +patchage-0.5.0.ebuild:
+  version bump
 
 *patchage-0.4.5 (09 Oct 2010)
 



1.1                  media-sound/patchage/patchage-0.5.0.ebuild

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

Index: patchage-0.5.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/patchage-0.5.0.ebuild,v 1.1 2011/01/13 09:00:12 aballier Exp $

EAPI=2

inherit toolchain-funcs

DESCRIPTION="Modular patch bay for audio and MIDI systems"
HOMEPAGE="http://wiki.drobilla.net/Patchage"
SRC_URI="http://download.drobilla.net/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa debug lash"

RDEPEND=">=media-libs/raul-0.5.1
	>=x11-libs/flowcanvas-0.7.1
	>=dev-cpp/gtkmm-2.11.12
	>=dev-cpp/glibmm-2.14
	>=dev-cpp/libglademm-2.6.0
	dev-cpp/libgnomecanvasmm
	dev-libs/boost
	>=media-sound/jack-audio-connection-kit-0.107
	alsa? ( media-libs/alsa-lib )
	lash? ( dev-libs/dbus-glib )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

src_configure() {
	tc-export CC CXX CPP AR RANLIB
	./waf configure \
		--prefix=/usr \
		$(use debug && echo "--debug") \
		$(use alsa || echo "--no-alsa") \
		$(use lash || echo "--no-lash") \
		|| die
}

src_compile() {
	./waf || die
}

src_install() {
	./waf install --destdir="${D}" || die
	dodoc AUTHORS README ChangeLog || die
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/patchage: ChangeLog patchage-0.5.0.ebuild
@ 2011-03-29  2:33 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2011-03-29  2:33 UTC (permalink / raw
  To: gentoo-commits

aballier    11/03/29 02:33:09

  Modified:             ChangeLog patchage-0.5.0.ebuild
  Log:
  bump raul dep, by Jyrki Launonen, bug #359983
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.13                 media-sound/patchage/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	28 Mar 2011 18:37:25 -0000	1.12
+++ ChangeLog	29 Mar 2011 02:33:09 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/patchage
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.12 2011/03/28 18:37:25 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/ChangeLog,v 1.13 2011/03/29 02:33:09 aballier Exp $
+
+  29 Mar 2011; Alexis Ballier <aballier@gentoo.org> patchage-0.5.0.ebuild:
+  bump raul dep, by Jyrki Launonen, bug #359983
 
   28 Mar 2011; Christoph Mende <angelos@gentoo.org> patchage-0.4.2.ebuild,
   patchage-0.4.4.ebuild, patchage-0.4.5.ebuild, patchage-0.5.0.ebuild:



1.3                  media-sound/patchage/patchage-0.5.0.ebuild

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

Index: patchage-0.5.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/patchage/patchage-0.5.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- patchage-0.5.0.ebuild	28 Mar 2011 18:37:25 -0000	1.2
+++ patchage-0.5.0.ebuild	29 Mar 2011 02:33:09 -0000	1.3
@@ -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/patchage/patchage-0.5.0.ebuild,v 1.2 2011/03/28 18:37:25 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/patchage/patchage-0.5.0.ebuild,v 1.3 2011/03/29 02:33:09 aballier Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="alsa debug lash"
 
-RDEPEND=">=media-libs/raul-0.5.1
+RDEPEND=">=media-libs/raul-0.7.0
 	>=x11-libs/flowcanvas-0.7.1
 	>=dev-cpp/gtkmm-2.11.12:2.4
 	>=dev-cpp/glibmm-2.14:2






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

end of thread, other threads:[~2011-03-29  2:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-29  2:33 [gentoo-commits] gentoo-x86 commit in media-sound/patchage: ChangeLog patchage-0.5.0.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2011-01-13  9:00 Alexis Ballier (aballier)

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