* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-08-22 8:02 Tim Harder (radhermit)
0 siblings, 0 replies; 14+ messages in thread
From: Tim Harder (radhermit) @ 2011-08-22 8:02 UTC (permalink / raw
To: gentoo-commits
radhermit 11/08/22 08:02:42
Modified: ChangeLog
Added: libsoundtouch-1.6.0.ebuild
Log:
Version bump (bug #376261 by Alex Barker). Add static-libs USE flag.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Revision Changes Path
1.42 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.42&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.42&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.41&r2=1.42
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog 15 Oct 2010 13:50:25 -0000 1.41
+++ ChangeLog 22 Aug 2011 08:02:42 -0000 1.42
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/libsoundtouch
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.41 2010/10/15 13:50:25 ranger Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.42 2011/08/22 08:02:42 radhermit Exp $
+
+*libsoundtouch-1.6.0 (22 Aug 2011)
+
+ 22 Aug 2011; Tim Harder <radhermit@gentoo.org> +libsoundtouch-1.6.0.ebuild,
+ +files/libsoundtouch-1.6.0-flags.patch:
+ Version bump (bug #376261 by Alex Barker). Add static-libs USE flag.
15 Oct 2010; Brent Baude <ranger@gentoo.org> libsoundtouch-1.5.0.ebuild:
stable ppc, bug 325875
1.1 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.1&content-type=text/plain
Index: libsoundtouch-1.6.0.ebuild
===================================================================
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.1 2011/08/22 08:02:42 radhermit Exp $
EAPI=4
inherit autotools eutils flag-o-matic
MY_PN=${PN/lib}
DESCRIPTION="Audio processing library for changing tempo, pitch and playback rates."
HOMEPAGE="http://www.surina.net/soundtouch/"
SRC_URI="http://www.surina.net/soundtouch/${P/lib}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
src_prepare() {
epatch "${FILESDIR}"/${P}-flags.patch
sed -i -e "s:^\(pkgdoc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
eautoreconf
if use sse2; then
append-flags -msse2
else
sed -i -e '/^.*#define ALLOW_X86_OPTIMIZATIONS.*$/d' \
include/STTypes.h || die
fi
}
src_configure() {
econf \
--enable-shared \
--disable-integer-samples \
$(use_enable static-libs static)
}
src_compile() {
emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
}
src_install() {
emake DESTDIR="${ED}" pkgdocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
find "${ED}" -name '*.la' -exec rm -f '{}' +
}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-10-20 2:30 Tim Harder (radhermit)
0 siblings, 0 replies; 14+ messages in thread
From: Tim Harder (radhermit) @ 2011-10-20 2:30 UTC (permalink / raw
To: gentoo-commits
radhermit 11/10/20 02:30:46
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Use remove_libtool_files to remove libtool archives.
(Portage version: 2.2.0_alpha69/cvs/Linux x86_64)
Revision Changes Path
1.43 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.42&r2=1.43
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog 22 Aug 2011 08:02:42 -0000 1.42
+++ ChangeLog 20 Oct 2011 02:30:44 -0000 1.43
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.42 2011/08/22 08:02:42 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.43 2011/10/20 02:30:44 radhermit Exp $
+
+ 20 Oct 2011; Tim Harder <radhermit@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ Use remove_libtool_files to remove libtool archives.
*libsoundtouch-1.6.0 (22 Aug 2011)
1.2 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.1&r2=1.2
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libsoundtouch-1.6.0.ebuild 22 Aug 2011 08:02:42 -0000 1.1
+++ libsoundtouch-1.6.0.ebuild 20 Oct 2011 02:30:44 -0000 1.2
@@ -1,9 +1,9 @@
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.1 2011/08/22 08:02:42 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.2 2011/10/20 02:30:44 radhermit Exp $
EAPI=4
-inherit autotools eutils flag-o-matic
+inherit autotools-utils eutils flag-o-matic
MY_PN=${PN/lib}
@@ -44,5 +44,5 @@
src_install() {
emake DESTDIR="${ED}" pkgdocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
- find "${ED}" -name '*.la' -exec rm -f '{}' +
+ remove_libtool_files all
}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-10-20 15:54 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 14+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-20 15:54 UTC (permalink / raw
To: gentoo-commits
ssuominen 11/10/20 15:54:51
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
amd64 stable wrt #387769
(Portage version: 2.2.0_alpha69/cvs/Linux x86_64)
Revision Changes Path
1.44 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 20 Oct 2011 02:30:44 -0000 1.43
+++ ChangeLog 20 Oct 2011 15:54:51 -0000 1.44
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.43 2011/10/20 02:30:44 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.44 2011/10/20 15:54:51 ssuominen Exp $
+
+ 20 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
+ libsoundtouch-1.6.0.ebuild:
+ amd64 stable wrt #387769
20 Oct 2011; Tim Harder <radhermit@gentoo.org> libsoundtouch-1.6.0.ebuild:
Use remove_libtool_files to remove libtool archives.
1.3 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.2&r2=1.3
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libsoundtouch-1.6.0.ebuild 20 Oct 2011 02:30:44 -0000 1.2
+++ libsoundtouch-1.6.0.ebuild 20 Oct 2011 15:54:51 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.2 2011/10/20 02:30:44 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.3 2011/10/20 15:54:51 ssuominen Exp $
EAPI=4
inherit autotools-utils eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-10-25 22:20 Tim Harder (radhermit)
0 siblings, 0 replies; 14+ messages in thread
From: Tim Harder (radhermit) @ 2011-10-25 22:20 UTC (permalink / raw
To: gentoo-commits
radhermit 11/10/25 22:20:33
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Update sed line (fixes bug #380489) and use D instead of ED.
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Revision Changes Path
1.45 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.45&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.45&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.44&r2=1.45
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog 20 Oct 2011 15:54:51 -0000 1.44
+++ ChangeLog 25 Oct 2011 22:20:33 -0000 1.45
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.44 2011/10/20 15:54:51 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.45 2011/10/25 22:20:33 radhermit Exp $
+
+ 25 Oct 2011; Tim Harder <radhermit@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ Update sed line (fixes bug #380489) and use D instead of ED.
20 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
libsoundtouch-1.6.0.ebuild:
1.4 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.3&r2=1.4
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libsoundtouch-1.6.0.ebuild 20 Oct 2011 15:54:51 -0000 1.3
+++ libsoundtouch-1.6.0.ebuild 25 Oct 2011 22:20:33 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.3 2011/10/20 15:54:51 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.4 2011/10/25 22:20:33 radhermit Exp $
EAPI=4
inherit autotools-utils eutils flag-o-matic
@@ -26,7 +26,7 @@
if use sse2; then
append-flags -msse2
else
- sed -i -e '/^.*#define ALLOW_X86_OPTIMIZATIONS.*$/d' \
+ sed -i -e '/#define SOUNDTOUCH_ALLOW_X86_OPTIMIZATIONS/d' \
include/STTypes.h || die
fi
}
@@ -43,6 +43,6 @@
}
src_install() {
- emake DESTDIR="${ED}" pkgdocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
+ emake DESTDIR="${D}" pkgdocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
remove_libtool_files all
}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-10-28 16:18 Jeroen Roovers (jer)
0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-28 16:18 UTC (permalink / raw
To: gentoo-commits
jer 11/10/28 16:18:06
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Stable for HPPA (bug #387769).
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Revision Changes Path
1.46 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.45&r2=1.46
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog 25 Oct 2011 22:20:33 -0000 1.45
+++ ChangeLog 28 Oct 2011 16:18:06 -0000 1.46
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.45 2011/10/25 22:20:33 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.46 2011/10/28 16:18:06 jer Exp $
+
+ 28 Oct 2011; Jeroen Roovers <jer@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ Stable for HPPA (bug #387769).
25 Oct 2011; Tim Harder <radhermit@gentoo.org> libsoundtouch-1.6.0.ebuild:
Update sed line (fixes bug #380489) and use D instead of ED.
1.5 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.4&r2=1.5
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libsoundtouch-1.6.0.ebuild 25 Oct 2011 22:20:33 -0000 1.4
+++ libsoundtouch-1.6.0.ebuild 28 Oct 2011 16:18:06 -0000 1.5
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.4 2011/10/25 22:20:33 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.5 2011/10/28 16:18:06 jer Exp $
EAPI=4
inherit autotools-utils eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-11-02 14:52 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 14+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-11-02 14:52 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 11/11/02 14:52:24
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
x86 stable wrt bug #387769
(Portage version: 2.1.10.11/cvs/Linux i686)
Revision Changes Path
1.47 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.46&r2=1.47
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog 28 Oct 2011 16:18:06 -0000 1.46
+++ ChangeLog 2 Nov 2011 14:52:23 -0000 1.47
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.46 2011/10/28 16:18:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.47 2011/11/02 14:52:23 phajdan.jr Exp $
+
+ 02 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+ libsoundtouch-1.6.0.ebuild:
+ x86 stable wrt bug #387769
28 Oct 2011; Jeroen Roovers <jer@gentoo.org> libsoundtouch-1.6.0.ebuild:
Stable for HPPA (bug #387769).
1.6 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.5&r2=1.6
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libsoundtouch-1.6.0.ebuild 28 Oct 2011 16:18:06 -0000 1.5
+++ libsoundtouch-1.6.0.ebuild 2 Nov 2011 14:52:23 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.5 2011/10/28 16:18:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.6 2011/11/02 14:52:23 phajdan.jr Exp $
EAPI=4
inherit autotools-utils eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 hppa ~ppc ~ppc64 ~sparc x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-11-27 4:17 Tim Harder (radhermit)
0 siblings, 0 replies; 14+ messages in thread
From: Tim Harder (radhermit) @ 2011-11-27 4:17 UTC (permalink / raw
To: gentoo-commits
radhermit 11/11/27 04:17:19
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Build in the source tree.
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Revision Changes Path
1.48 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.47&r2=1.48
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog 2 Nov 2011 14:52:23 -0000 1.47
+++ ChangeLog 27 Nov 2011 04:17:19 -0000 1.48
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.47 2011/11/02 14:52:23 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.48 2011/11/27 04:17:19 radhermit Exp $
+
+ 27 Nov 2011; Tim Harder <radhermit@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ Build in the source tree.
02 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
libsoundtouch-1.6.0.ebuild:
1.7 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.6&r2=1.7
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libsoundtouch-1.6.0.ebuild 2 Nov 2011 14:52:23 -0000 1.6
+++ libsoundtouch-1.6.0.ebuild 27 Nov 2011 04:17:19 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.6 2011/11/02 14:52:23 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.7 2011/11/27 04:17:19 radhermit Exp $
EAPI=4
inherit autotools-utils eutils flag-o-matic
@@ -18,6 +18,8 @@
S=${WORKDIR}/${MY_PN}
+AUTOTOOLS_IN_SOURCE_BUILD=1
+
src_prepare() {
epatch "${FILESDIR}"/${P}-flags.patch
sed -i -e "s:^\(pkgdoc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2011-11-28 6:18 Tim Harder (radhermit)
0 siblings, 0 replies; 14+ messages in thread
From: Tim Harder (radhermit) @ 2011-11-28 6:18 UTC (permalink / raw
To: gentoo-commits
radhermit 11/11/28 06:18:42
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Revert to autotools eclass (fixes bug #392103).
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Revision Changes Path
1.49 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.48&r2=1.49
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog 27 Nov 2011 04:17:19 -0000 1.48
+++ ChangeLog 28 Nov 2011 06:18:42 -0000 1.49
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.48 2011/11/27 04:17:19 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.49 2011/11/28 06:18:42 radhermit Exp $
+
+ 28 Nov 2011; Tim Harder <radhermit@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ Revert to autotools eclass (fixes bug #392103).
27 Nov 2011; Tim Harder <radhermit@gentoo.org> libsoundtouch-1.6.0.ebuild:
Build in the source tree.
1.8 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.7&r2=1.8
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libsoundtouch-1.6.0.ebuild 27 Nov 2011 04:17:19 -0000 1.7
+++ libsoundtouch-1.6.0.ebuild 28 Nov 2011 06:18:42 -0000 1.8
@@ -1,9 +1,9 @@
# Copyright 1999-2011 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.7 2011/11/27 04:17:19 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.8 2011/11/28 06:18:42 radhermit Exp $
EAPI=4
-inherit autotools-utils eutils flag-o-matic
+inherit autotools eutils flag-o-matic
MY_PN=${PN/lib}
@@ -18,8 +18,6 @@
S=${WORKDIR}/${MY_PN}
-AUTOTOOLS_IN_SOURCE_BUILD=1
-
src_prepare() {
epatch "${FILESDIR}"/${P}-flags.patch
sed -i -e "s:^\(pkgdoc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
@@ -46,5 +44,5 @@
src_install() {
emake DESTDIR="${D}" pkgdocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
- remove_libtool_files all
+ find "${ED}" -name '*.la' -exec rm -f {} +
}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2012-02-12 22:15 Tony Vroon (chainsaw)
0 siblings, 0 replies; 14+ messages in thread
From: Tony Vroon (chainsaw) @ 2012-02-12 22:15 UTC (permalink / raw
To: gentoo-commits
chainsaw 12/02/12 22:15:13
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Marked stable on PPC64 as requested by Tim "radhermit" Harder in bug #387769. Compile tested on a PowerMac7,3 (64UL) with GCC 4.5.3.
(Portage version: 2.1.10.44/cvs/Linux ppc64)
Revision Changes Path
1.51 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.50&r2=1.51
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog 18 Dec 2011 17:57:27 -0000 1.50
+++ ChangeLog 12 Feb 2012 22:15:13 -0000 1.51
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libsoundtouch
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.50 2011/12/18 17:57:27 armin76 Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.51 2012/02/12 22:15:13 chainsaw Exp $
+
+ 12 Feb 2012; Tony Vroon <chainsaw@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ Marked stable on PPC64 as requested by Tim "radhermit" Harder in bug
+ #387769. Compile tested on a PowerMac7,3 (64UL) with GCC 4.5.3.
18 Dec 2011; Raúl Porcel <armin76@gentoo.org> libsoundtouch-1.5.0.ebuild,
libsoundtouch-1.6.0.ebuild:
1.10 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.9&r2=1.10
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libsoundtouch-1.6.0.ebuild 18 Dec 2011 17:57:27 -0000 1.9
+++ libsoundtouch-1.6.0.ebuild 12 Feb 2012 22:15:13 -0000 1.10
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo FoundationOU
+# Copyright 1999-2012 Gentoo FoundationOU
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.9 2011/12/18 17:57:27 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.10 2012/02/12 22:15:13 chainsaw Exp $
EAPI=4
inherit autotools eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 hppa ~ppc ppc64 x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2012-02-14 21:34 Ulrich Mueller (ulm)
0 siblings, 0 replies; 14+ messages in thread
From: Ulrich Mueller (ulm) @ 2012-02-14 21:34 UTC (permalink / raw
To: gentoo-commits
ulm 12/02/14 21:34:13
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
QA: Fix ebuild header, bug 398773.
(Portage version: 2.1.10.46/cvs/Linux x86_64)
Revision Changes Path
1.52 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.51&r2=1.52
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog 12 Feb 2012 22:15:13 -0000 1.51
+++ ChangeLog 14 Feb 2012 21:34:13 -0000 1.52
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.51 2012/02/12 22:15:13 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.52 2012/02/14 21:34:13 ulm Exp $
+
+ 14 Feb 2012; Ulrich Müller <ulm@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ QA: Fix ebuild header, bug 398773.
12 Feb 2012; Tony Vroon <chainsaw@gentoo.org> libsoundtouch-1.6.0.ebuild:
Marked stable on PPC64 as requested by Tim "radhermit" Harder in bug
1.11 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.10&r2=1.11
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libsoundtouch-1.6.0.ebuild 12 Feb 2012 22:15:13 -0000 1.10
+++ libsoundtouch-1.6.0.ebuild 14 Feb 2012 21:34:13 -0000 1.11
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo FoundationOU
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.10 2012/02/12 22:15:13 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.11 2012/02/14 21:34:13 ulm Exp $
EAPI=4
inherit autotools eutils flag-o-matic
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2012-03-07 20:33 Brent Baude (ranger)
0 siblings, 0 replies; 14+ messages in thread
From: Brent Baude (ranger) @ 2012-03-07 20:33 UTC (permalink / raw
To: gentoo-commits
ranger 12/03/07 20:33:24
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Marking libsoundtouch-1.6.0 ppc for bug 387769
(Portage version: 2.1.10.11/cvs/Linux ppc64)
Revision Changes Path
1.53 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 14 Feb 2012 21:34:13 -0000 1.52
+++ ChangeLog 7 Mar 2012 20:33:24 -0000 1.53
@@ -1,6 +1,9 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.52 2012/02/14 21:34:13 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.53 2012/03/07 20:33:24 ranger Exp $
+
+ 07 Mar 2012; Brent Baude <ranger@gentoo.org> libsoundtouch-1.6.0.ebuild:
+ Marking libsoundtouch-1.6.0 ppc for bug 387769
14 Feb 2012; Ulrich Müller <ulm@gentoo.org> libsoundtouch-1.6.0.ebuild:
QA: Fix ebuild header, bug 398773.
1.12 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.11&r2=1.12
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libsoundtouch-1.6.0.ebuild 14 Feb 2012 21:34:13 -0000 1.11
+++ libsoundtouch-1.6.0.ebuild 7 Mar 2012 20:33:24 -0000 1.12
@@ -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-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.11 2012/02/14 21:34:13 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.12 2012/03/07 20:33:24 ranger Exp $
EAPI=4
inherit autotools eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 hppa ~ppc ppc64 x86"
+KEYWORDS="amd64 hppa ppc ppc64 x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2012-06-03 13:59 Anthony G. Basile (blueness)
0 siblings, 0 replies; 14+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-06-03 13:59 UTC (permalink / raw
To: gentoo-commits
blueness 12/06/03 13:59:18
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Keyword ~mips
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.55 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 8 Mar 2012 03:30:07 -0000 1.54
+++ ChangeLog 3 Jun 2012 13:59:18 -0000 1.55
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.54 2012/03/08 03:30:07 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.55 2012/06/03 13:59:18 blueness Exp $
+
+ 03 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
+ libsoundtouch-1.6.0.ebuild:
+ Keyword ~mips
08 Mar 2012; Tim Harder <radhermit@gentoo.org> -libsoundtouch-1.5.0.ebuild,
-files/libsoundtouch-1.5.0-flags_and_version.patch:
1.13 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.12&r2=1.13
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libsoundtouch-1.6.0.ebuild 7 Mar 2012 20:33:24 -0000 1.12
+++ libsoundtouch-1.6.0.ebuild 3 Jun 2012 13:59:18 -0000 1.13
@@ -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-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.12 2012/03/07 20:33:24 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.13 2012/06/03 13:59:18 blueness Exp $
EAPI=4
inherit autotools eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 hppa ppc ppc64 x86"
+KEYWORDS="amd64 hppa ~mips ppc ppc64 x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2012-08-06 0:52 Anthony G. Basile (blueness)
0 siblings, 0 replies; 14+ messages in thread
From: Anthony G. Basile (blueness) @ 2012-08-06 0:52 UTC (permalink / raw
To: gentoo-commits
blueness 12/08/06 00:52:47
Modified: ChangeLog libsoundtouch-1.6.0.ebuild
Log:
Keyword ~arm
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Revision Changes Path
1.56 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.55&r2=1.56
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog 3 Jun 2012 13:59:18 -0000 1.55
+++ ChangeLog 6 Aug 2012 00:52:47 -0000 1.56
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.55 2012/06/03 13:59:18 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.56 2012/08/06 00:52:47 blueness Exp $
+
+ 06 Aug 2012; Anthony G. Basile <blueness@gentoo.org>
+ libsoundtouch-1.6.0.ebuild:
+ Keyword ~arm
03 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
libsoundtouch-1.6.0.ebuild:
1.14 media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild?r1=1.13&r2=1.14
Index: libsoundtouch-1.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- libsoundtouch-1.6.0.ebuild 3 Jun 2012 13:59:18 -0000 1.13
+++ libsoundtouch-1.6.0.ebuild 6 Aug 2012 00:52:47 -0000 1.14
@@ -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-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.13 2012/06/03 13:59:18 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.14 2012/08/06 00:52:47 blueness Exp $
EAPI=4
inherit autotools eutils flag-o-matic
@@ -13,7 +13,7 @@
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="amd64 hppa ~mips ppc ppc64 x86"
+KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 x86"
IUSE="sse2 static-libs"
S=${WORKDIR}/${MY_PN}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild
@ 2013-01-03 5:52 Tim Harder (radhermit)
0 siblings, 0 replies; 14+ messages in thread
From: Tim Harder (radhermit) @ 2013-01-03 5:52 UTC (permalink / raw
To: gentoo-commits
radhermit 13/01/03 05:52:25
Modified: ChangeLog
Removed: libsoundtouch-1.6.0.ebuild
Log:
Remove old.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Revision Changes Path
1.64 media-libs/libsoundtouch/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.63&r2=1.64
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog 3 Jan 2013 05:50:52 -0000 1.63
+++ ChangeLog 3 Jan 2013 05:52:25 -0000 1.64
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.63 2013/01/03 05:50:52 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.64 2013/01/03 05:52:25 radhermit Exp $
+
+ 03 Jan 2013; Tim Harder <radhermit@gentoo.org> -libsoundtouch-1.6.0.ebuild,
+ -files/libsoundtouch-1.6.0-flags.patch:
+ Remove old.
*libsoundtouch-1.7.1 (03 Jan 2013)
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2013-01-03 5:52 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-02 14:52 [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.6.0.ebuild PaweA Hajdan (phajdan.jr)
-- strict thread matches above, loose matches on Subject: below --
2013-01-03 5:52 Tim Harder (radhermit)
2012-08-06 0:52 Anthony G. Basile (blueness)
2012-06-03 13:59 Anthony G. Basile (blueness)
2012-03-07 20:33 Brent Baude (ranger)
2012-02-14 21:34 Ulrich Mueller (ulm)
2012-02-12 22:15 Tony Vroon (chainsaw)
2011-11-28 6:18 Tim Harder (radhermit)
2011-11-27 4:17 Tim Harder (radhermit)
2011-10-28 16:18 Jeroen Roovers (jer)
2011-10-25 22:20 Tim Harder (radhermit)
2011-10-20 15:54 Samuli Suominen (ssuominen)
2011-10-20 2:30 Tim Harder (radhermit)
2011-08-22 8:02 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