public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-1.3.14.ebuild
@ 2011-12-13 23:00 Tim Harder (radhermit)
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Harder (radhermit) @ 2011-12-13 23:00 UTC (permalink / raw
  To: gentoo-commits

radhermit    11/12/13 23:00:48

  Modified:             ChangeLog
  Added:                audacity-1.3.14.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)

Revision  Changes    Path
1.162                media-sound/audacity/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog	7 Aug 2011 17:08:16 -0000	1.161
+++ ChangeLog	13 Dec 2011 23:00:48 -0000	1.162
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.161 2011/08/07 17:08:16 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.162 2011/12/13 23:00:48 radhermit Exp $
+
+*audacity-1.3.14 (13 Dec 2011)
+
+  13 Dec 2011; Tim Harder <radhermit@gentoo.org> +audacity-1.3.14.ebuild,
+  +files/audacity-1.3.14-typecast.patch:
+  Version bump.
 
   07 Aug 2011; Tim Harder <radhermit@gentoo.org> -audacity-1.3.8.ebuild,
   -files/audacity-1.3.8-automagic.patch,



1.1                  media-sound/audacity/audacity-1.3.14.ebuild

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

Index: audacity-1.3.14.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v 1.1 2011/12/13 23:00:48 radhermit Exp $

EAPI=4

inherit eutils wxwidgets autotools versionator

MY_PV=$(replace_version_separator 3 -)
MY_P="${PN}-src-${MY_PV}-beta"
MY_T="${PN}-minsrc-${MY_PV}-beta"
DESCRIPTION="Free crossplatform audio editor"
HOMEPAGE="http://audacity.sourceforge.net/"
SRC_URI="http://${PN}.googlecode.com/files/${MY_T}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
RESTRICT="test"

COMMON_DEPEND="x11-libs/wxGTK:2.8[X]
	>=app-arch/zip-2.3
	>=media-libs/libsndfile-1.0.0
	dev-libs/expat
	libsamplerate? ( >=media-libs/libsamplerate-0.1.2 )
	vorbis? ( >=media-libs/libvorbis-1.0 )
	mp3? ( >=media-libs/libmad-0.14.2b )
	flac? ( >=media-libs/flac-1.2.0[cxx] )
	id3tag? ( media-libs/libid3tag )
	soundtouch? ( >=media-libs/libsoundtouch-1.3.1 )
	vamp? ( >=media-libs/vamp-plugin-sdk-2.0 )
	twolame? ( media-sound/twolame )
	ffmpeg? ( virtual/ffmpeg )
	alsa? ( media-libs/alsa-lib )
	jack? ( >=media-sound/jack-audio-connection-kit-0.103.0 )"
# Crashes at  startup here...
#	lv2? ( >=media-libs/slv2-0.6.0 )
# Disabled upstream ATM
#  ladspa? ( >=media-libs/liblrdf-0.4.0 )

RDEPEND="${COMMON_DEPEND}
	mp3? ( >=media-sound/lame-3.70 )"
DEPEND="${COMMON_DEPEND}
	dev-util/pkgconfig"

REQUIRED_USE="soundtouch? ( midi )"

S=${WORKDIR}/${MY_P}

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.3.13-automagic.patch
	epatch "${FILESDIR}"/${PN}-1.3.13-ffmpeg.patch
	epatch "${FILESDIR}"/${P}-typecast.patch
	AT_M4DIR="${S}/m4" eautoreconf
}

src_configure() {
	WX_GTK_VER="2.8"
	need-wxwidgets unicode

	# * always use system libraries if possible
	# * options listed in the order that configure --help lists them
	# * if libsamplerate not requested, use libresample instead.
	econf \
		--enable-unicode \
		--enable-nyquist \
		$(use_enable ladspa) \
		--with-libsndfile=system \
		--with-expat=system \
		$(use_with libsamplerate) \
		$(use_with !libsamplerate libresample) \
		$(use_with vorbis libvorbis) \
		$(use_with mp3 libmad) \
		$(use_with flac libflac) \
		$(use_with id3tag libid3tag) \
		$(use_with soundtouch) \
		$(use_with vamp libvamp) \
		$(use_with twolame libtwolame) \
		$(use_with ffmpeg) \
		$(use_with midi) \
		$(use_with alsa) \
		$(use_with jack)
}

# $(use_with lv2 slv2) \
# $(use_with ladspa liblrdf) \

src_install() {
	emake DESTDIR="${D}" install

	# Remove bad doc install
	rm -rf "${D}"/usr/share/doc

	# Install our docs
	dodoc README.txt
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-1.3.14.ebuild
@ 2012-02-07 23:37 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-02-07 23:37 UTC (permalink / raw
  To: gentoo-commits

ago         12/02/07 23:37:46

  Modified:             ChangeLog audacity-1.3.14.ebuild
  Log:
  Stable for amd64, wrt bug #402597
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.163                media-sound/audacity/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- ChangeLog	13 Dec 2011 23:00:48 -0000	1.162
+++ ChangeLog	7 Feb 2012 23:37:46 -0000	1.163
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.162 2011/12/13 23:00:48 radhermit Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.163 2012/02/07 23:37:46 ago Exp $
+
+  07 Feb 2012; Agostino Sarubbo <ago@gentoo.org> audacity-1.3.14.ebuild:
+  Stable for amd64, wrt bug #402597
 
 *audacity-1.3.14 (13 Dec 2011)
 



1.2                  media-sound/audacity/audacity-1.3.14.ebuild

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

Index: audacity-1.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- audacity-1.3.14.ebuild	13 Dec 2011 23:00:48 -0000	1.1
+++ audacity-1.3.14.ebuild	7 Feb 2012 23:37:46 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v 1.1 2011/12/13 23:00:48 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v 1.2 2012/02/07 23:37:46 ago Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-1.3.14.ebuild
@ 2012-02-16 18:23 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-02-16 18:23 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/02/16 18:23:08

  Modified:             ChangeLog audacity-1.3.14.ebuild
  Log:
  x86 stable wrt bug #402597
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.164                media-sound/audacity/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog	7 Feb 2012 23:37:46 -0000	1.163
+++ ChangeLog	16 Feb 2012 18:23:07 -0000	1.164
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.163 2012/02/07 23:37:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.164 2012/02/16 18:23:07 phajdan.jr Exp $
+
+  16 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> audacity-1.3.14.ebuild:
+  x86 stable wrt bug #402597
 
   07 Feb 2012; Agostino Sarubbo <ago@gentoo.org> audacity-1.3.14.ebuild:
   Stable for amd64, wrt bug #402597



1.3                  media-sound/audacity/audacity-1.3.14.ebuild

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

Index: audacity-1.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- audacity-1.3.14.ebuild	7 Feb 2012 23:37:46 -0000	1.2
+++ audacity-1.3.14.ebuild	16 Feb 2012 18:23:07 -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/audacity/audacity-1.3.14.ebuild,v 1.2 2012/02/07 23:37:46 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v 1.3 2012/02/16 18:23:07 phajdan.jr Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-1.3.14.ebuild
@ 2012-03-03 14:39 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2012-03-03 14:39 UTC (permalink / raw
  To: gentoo-commits

ranger      12/03/03 14:39:44

  Modified:             ChangeLog audacity-1.3.14.ebuild
  Log:
  Marking audacity-1.3.14 ppc64 for bug 402597
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.165                media-sound/audacity/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ChangeLog	16 Feb 2012 18:23:07 -0000	1.164
+++ ChangeLog	3 Mar 2012 14:39:44 -0000	1.165
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.164 2012/02/16 18:23:07 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.165 2012/03/03 14:39:44 ranger Exp $
+
+  03 Mar 2012; Brent Baude <ranger@gentoo.org> audacity-1.3.14.ebuild:
+  Marking audacity-1.3.14 ppc64 for bug 402597
 
   16 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> audacity-1.3.14.ebuild:
   x86 stable wrt bug #402597



1.4                  media-sound/audacity/audacity-1.3.14.ebuild

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

Index: audacity-1.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- audacity-1.3.14.ebuild	16 Feb 2012 18:23:07 -0000	1.3
+++ audacity-1.3.14.ebuild	3 Mar 2012 14:39:44 -0000	1.4
@@ -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/audacity/audacity-1.3.14.ebuild,v 1.3 2012/02/16 18:23:07 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v 1.4 2012/03/03 14:39:44 ranger Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ppc64 x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-1.3.14.ebuild
@ 2012-03-10 17:19 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2012-03-10 17:19 UTC (permalink / raw
  To: gentoo-commits

ranger      12/03/10 17:19:57

  Modified:             ChangeLog audacity-1.3.14.ebuild
  Log:
  Marking audacity-1.3.14 ppc for bug 402597
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.166                media-sound/audacity/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog	3 Mar 2012 14:39:44 -0000	1.165
+++ ChangeLog	10 Mar 2012 17:19:57 -0000	1.166
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.165 2012/03/03 14:39:44 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.166 2012/03/10 17:19:57 ranger Exp $
+
+  10 Mar 2012; Brent Baude <ranger@gentoo.org> audacity-1.3.14.ebuild:
+  Marking audacity-1.3.14 ppc for bug 402597
 
   03 Mar 2012; Brent Baude <ranger@gentoo.org> audacity-1.3.14.ebuild:
   Marking audacity-1.3.14 ppc64 for bug 402597



1.5                  media-sound/audacity/audacity-1.3.14.ebuild

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

Index: audacity-1.3.14.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- audacity-1.3.14.ebuild	3 Mar 2012 14:39:44 -0000	1.4
+++ audacity-1.3.14.ebuild	10 Mar 2012 17:19:57 -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/audacity/audacity-1.3.14.ebuild,v 1.4 2012/03/03 14:39:44 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.14.ebuild,v 1.5 2012/03/10 17:19:57 ranger Exp $
 
 EAPI=4
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"
 RESTRICT="test"
 






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

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

ago         12/05/30 11:58:58

  Modified:             ChangeLog
  Removed:              audacity-1.3.14.ebuild
  Log:
  Remove old
  
  (Portage version: 2.1.10.49/cvs/Linux x86_64)

Revision  Changes    Path
1.174                media-sound/audacity/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	29 May 2012 19:51:56 -0000	1.173
+++ ChangeLog	30 May 2012 11:58:57 -0000	1.174
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.173 2012/05/29 19:51:56 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.174 2012/05/30 11:58:57 ago Exp $
+
+  30 May 2012; Agostino Sarubbo <ago@gentoo.org> -audacity-1.3.14.ebuild:
+  Remove old
 
   29 May 2012; Brent Baude <ranger@gentoo.org> audacity-2.0.0.ebuild:
   Marking audacity-2.0.0 ppc for bug 412411






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

end of thread, other threads:[~2012-05-30 11:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-30 11:58 [gentoo-commits] gentoo-x86 commit in media-sound/audacity: ChangeLog audacity-1.3.14.ebuild Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-10 17:19 Brent Baude (ranger)
2012-03-03 14:39 Brent Baude (ranger)
2012-02-16 18:23 PaweA Hajdan (phajdan.jr)
2012-02-07 23:37 Agostino Sarubbo (ago)
2011-12-13 23:00 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