public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/lv2core: ChangeLog lv2core-6.0.ebuild
@ 2011-12-07 13:15 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-07 13:15 UTC (permalink / raw
  To: gentoo-commits

aballier    11/12/07 13:15:36

  Modified:             ChangeLog
  Added:                lv2core-6.0.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  media-libs/lv2core/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	10 Oct 2010 17:11:47 -0000	1.7
+++ ChangeLog	7 Dec 2011 13:15:36 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/lv2core
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v 1.7 2010/10/10 17:11:47 aballier Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v 1.8 2011/12/07 13:15:36 aballier Exp $
+
+*lv2core-6.0 (07 Dec 2011)
+
+  07 Dec 2011; Alexis Ballier <aballier@gentoo.org> +lv2core-6.0.ebuild:
+  version bump
 
 *lv2core-4.0 (10 Oct 2010)
 



1.1                  media-libs/lv2core/lv2core-6.0.ebuild

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

Index: lv2core-6.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/lv2core-6.0.ebuild,v 1.1 2011/12/07 13:15:36 aballier Exp $

EAPI=2

inherit multilib toolchain-funcs

DESCRIPTION="LV2 is a simple but extensible successor of LADSPA"
HOMEPAGE="http://lv2plug.in/"
SRC_URI="http://lv2plug.in/spec/${P}.tar.bz2"

LICENSE="LGPL-2.1 MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

DEPEND=""
RDEPEND="!<media-libs/slv2-0.4.2"

src_configure() {
	tc-export CC CXX CPP AR RANLIB
	./waf configure --prefix=/usr --libdir=/usr/$(get_libdir) || die "failed to configure"
}

src_compile() {
	./waf || die "failed to build"
}

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






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

* [gentoo-commits] gentoo-x86 commit in media-libs/lv2core: ChangeLog lv2core-6.0.ebuild
@ 2011-12-07 13:48 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-07 13:48 UTC (permalink / raw
  To: gentoo-commits

aballier    11/12/07 13:48:22

  Modified:             ChangeLog lv2core-6.0.ebuild
  Log:
  convert to waf-utils.eclass and bump to eapi4
  
  (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)

Revision  Changes    Path
1.9                  media-libs/lv2core/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	7 Dec 2011 13:15:36 -0000	1.8
+++ ChangeLog	7 Dec 2011 13:48:22 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/lv2core
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v 1.8 2011/12/07 13:15:36 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/ChangeLog,v 1.9 2011/12/07 13:48:22 aballier Exp $
+
+  07 Dec 2011; Alexis Ballier <aballier@gentoo.org> lv2core-6.0.ebuild:
+  convert to waf-utils.eclass and bump to eapi4
 
 *lv2core-6.0 (07 Dec 2011)
 



1.2                  media-libs/lv2core/lv2core-6.0.ebuild

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

Index: lv2core-6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/lv2core/lv2core-6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lv2core-6.0.ebuild	7 Dec 2011 13:15:36 -0000	1.1
+++ lv2core-6.0.ebuild	7 Dec 2011 13:48:22 -0000	1.2
@@ -1,10 +1,10 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/lv2core-6.0.ebuild,v 1.1 2011/12/07 13:15:36 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/lv2core/lv2core-6.0.ebuild,v 1.2 2011/12/07 13:48:22 aballier Exp $
 
-EAPI=2
+EAPI=4
 
-inherit multilib toolchain-funcs
+inherit waf-utils
 
 DESCRIPTION="LV2 is a simple but extensible successor of LADSPA"
 HOMEPAGE="http://lv2plug.in/"
@@ -17,17 +17,4 @@
 
 DEPEND=""
 RDEPEND="!<media-libs/slv2-0.4.2"
-
-src_configure() {
-	tc-export CC CXX CPP AR RANLIB
-	./waf configure --prefix=/usr --libdir=/usr/$(get_libdir) || die "failed to configure"
-}
-
-src_compile() {
-	./waf || die "failed to build"
-}
-
-src_install() {
-	./waf --destdir="${D}" install || die "install failed"
-	dodoc AUTHORS README NEWS || die
-}
+DOCS=( "AUTHORS" "README" "NEWS" )






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

end of thread, other threads:[~2011-12-07 13:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-07 13:15 [gentoo-commits] gentoo-x86 commit in media-libs/lv2core: ChangeLog lv2core-6.0.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-07 13:48 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