public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2009-07-22 11:38 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2009-07-22 11:38 UTC (permalink / raw
  To: gentoo-commits

aballier    09/07/22 11:38:19

  Modified:             ChangeLog
  Added:                audacity-1.3.8.ebuild
  Log:
  version bump, by Semen Maryasin <marsoft@ya.ru>, bug #278325
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.125                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.125&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.125&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.124&r2=1.125

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog	4 Jul 2009 13:01:45 -0000	1.124
+++ ChangeLog	22 Jul 2009 11:38:19 -0000	1.125
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.124 2009/07/04 13:01:45 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.125 2009/07/22 11:38:19 aballier Exp $
+
+*audacity-1.3.8 (22 Jul 2009)
+
+  22 Jul 2009; Alexis Ballier <aballier@gentoo.org> +audacity-1.3.8.ebuild,
+  +files/audacity-1.3.8-automagic.patch:
+  version bump, by Semen Maryasin <marsoft@ya.ru>, bug #278325
 
   04 Jul 2009; Brent Baude <ranger@gentoo.org> audacity-1.3.7.ebuild:
   Marking audacity-1.3.7 ppc64 for bug 273094



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

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

Index: audacity-1.3.8.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.1 2009/07/22 11:38:19 aballier Exp $

EAPI=2

inherit eutils wxwidgets autotools versionator

IUSE="alsa ffmpeg flac id3tag jack ladspa libsamplerate midi mp3 soundtouch twolame vamp vorbis"

MY_PV=$(replace_version_separator 3 -)
MY_P="${PN}-src-${MY_PV}"
MY_T="${PN}-minsrc-${MY_PV}"
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 ~hppa ~ppc ~ppc64 ~sparc ~x86"
RESTRICT="test"

COMMON_DEPEND="=x11-libs/wxGTK-2.8*
	>=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? ( >=media-video/ffmpeg-0.4.9_p20080617 )
	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"

S=${WORKDIR}/${MY_P}

src_prepare() {
	epatch "${FILESDIR}/${PN}-1.3.8-automagic.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 || die

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

	# Install our docs
	dodoc README.txt
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2009-08-06  5:09 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 8+ messages in thread
From: Ryan Hill (dirtyepic) @ 2009-08-06  5:09 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    09/08/06 05:09:38

  Modified:             audacity-1.3.8.ebuild ChangeLog
  Log:
  Add patch from Fedora to fix building with developmental glib/wxGTK
  GSocket conflict. No revision bump as this is only a build fix.
  Thanks to insanity5902@gmail.com for tracking down this patch in bug
  #278778.
  (Portage version: 2.2_rc35/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-sound/audacity/audacity-1.3.8.ebuild

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

Index: audacity-1.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- audacity-1.3.8.ebuild	22 Jul 2009 11:38:19 -0000	1.1
+++ audacity-1.3.8.ebuild	6 Aug 2009 05:09:38 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.1 2009/07/22 11:38:19 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.2 2009/08/06 05:09:38 dirtyepic Exp $
 
 EAPI=2
 
@@ -49,6 +49,7 @@
 
 src_prepare() {
 	epatch "${FILESDIR}/${PN}-1.3.8-automagic.patch"
+	epatch "${FILESDIR}/${PN}-1.3.8-gsocket-conflict.patch"
 	AT_M4DIR="${S}/m4" eautoreconf
 }
 



1.128                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.128&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.128&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.127&r2=1.128

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog	25 Jul 2009 15:08:11 -0000	1.127
+++ ChangeLog	6 Aug 2009 05:09:38 -0000	1.128
@@ -1,6 +1,13 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.127 2009/07/25 15:08:11 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.128 2009/08/06 05:09:38 dirtyepic Exp $
+
+  06 Aug 2009; Ryan Hill <dirtyepic@gentoo.org> audacity-1.3.8.ebuild,
+  +files/audacity-1.3.8-gsocket-conflict.patch:
+  Add patch from Fedora to fix building with developmental glib/wxGTK
+  GSocket conflict. No revision bump as this is only a build fix.
+  Thanks to insanity5902@gmail.com for tracking down this patch in bug
+  #278778.
 
   25 Jul 2009; Alexis Ballier <aballier@gentoo.org> -audacity-1.3.6.ebuild,
   -files/audacity-1.3.6-novorbis.patch, -files/audacity-1.3.6-vamp2.patch:






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2009-09-22 11:02 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2009-09-22 11:02 UTC (permalink / raw
  To: gentoo-commits

maekke      09/09/22 11:02:16

  Modified:             audacity-1.3.8.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #285898
  (Portage version: 2.2_rc41/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  media-sound/audacity/audacity-1.3.8.ebuild

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

Index: audacity-1.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- audacity-1.3.8.ebuild	6 Aug 2009 05:09:38 -0000	1.2
+++ audacity-1.3.8.ebuild	22 Sep 2009 11:02:15 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.2 2009/08/06 05:09:38 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.3 2009/09/22 11:02:15 maekke Exp $
 
 EAPI=2
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 RESTRICT="test"
 
 COMMON_DEPEND="=x11-libs/wxGTK-2.8*



1.130                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.129&r2=1.130

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog	15 Sep 2009 20:12:54 -0000	1.129
+++ ChangeLog	22 Sep 2009 11:02:15 -0000	1.130
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.129 2009/09/15 20:12:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.130 2009/09/22 11:02:15 maekke Exp $
+
+  22 Sep 2009; Markus Meier <maekke@gentoo.org> audacity-1.3.8.ebuild:
+  amd64/x86 stable, bug #285898
 
 *audacity-1.3.9 (15 Sep 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2009-09-26 13:45 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2009-09-26 13:45 UTC (permalink / raw
  To: gentoo-commits

ranger      09/09/26 13:45:22

  Modified:             audacity-1.3.8.ebuild ChangeLog
  Log:
  Marking audacity-1.3.8 ppc64 for bug 285898
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.4                  media-sound/audacity/audacity-1.3.8.ebuild

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

Index: audacity-1.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- audacity-1.3.8.ebuild	22 Sep 2009 11:02:15 -0000	1.3
+++ audacity-1.3.8.ebuild	26 Sep 2009 13:45:22 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.3 2009/09/22 11:02:15 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.4 2009/09/26 13:45:22 ranger Exp $
 
 EAPI=2
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~hppa ~ppc ppc64 ~sparc x86"
 RESTRICT="test"
 
 COMMON_DEPEND="=x11-libs/wxGTK-2.8*



1.133                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.133&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.133&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.132&r2=1.133

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog	23 Sep 2009 18:54:08 -0000	1.132
+++ ChangeLog	26 Sep 2009 13:45:22 -0000	1.133
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.132 2009/09/23 18:54:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.133 2009/09/26 13:45:22 ranger Exp $
+
+  26 Sep 2009; Brent Baude <ranger@gentoo.org> audacity-1.3.8.ebuild:
+  Marking audacity-1.3.8 ppc64 for bug 285898
 
   23 Sep 2009; Alexis Ballier <aballier@gentoo.org> metadata.xml:
   Add Richard to metadata so that he get cc'ed on bugs






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2009-09-27 19:37 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 8+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-09-27 19:37 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/09/27 19:37:08

  Modified:             audacity-1.3.8.ebuild ChangeLog
  Log:
  ppc stable #285898
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.5                  media-sound/audacity/audacity-1.3.8.ebuild

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

Index: audacity-1.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- audacity-1.3.8.ebuild	26 Sep 2009 13:45:22 -0000	1.4
+++ audacity-1.3.8.ebuild	27 Sep 2009 19:37:08 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.4 2009/09/26 13:45:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.5 2009/09/27 19:37:08 nixnut Exp $
 
 EAPI=2
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ~hppa ppc ppc64 ~sparc x86"
 RESTRICT="test"
 
 COMMON_DEPEND="=x11-libs/wxGTK-2.8*



1.134                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.133&r2=1.134

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog	26 Sep 2009 13:45:22 -0000	1.133
+++ ChangeLog	27 Sep 2009 19:37:08 -0000	1.134
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.133 2009/09/26 13:45:22 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.134 2009/09/27 19:37:08 nixnut Exp $
+
+  27 Sep 2009; nixnut <nixnut@gentoo.org> audacity-1.3.8.ebuild:
+  ppc stable #285898
 
   26 Sep 2009; Brent Baude <ranger@gentoo.org> audacity-1.3.8.ebuild:
   Marking audacity-1.3.8 ppc64 for bug 285898






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2009-10-10 16:46 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2009-10-10 16:46 UTC (permalink / raw
  To: gentoo-commits

armin76     09/10/10 16:46:48

  Modified:             audacity-1.3.8.ebuild ChangeLog
  Log:
  sparc stable wrt #285898
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.6                  media-sound/audacity/audacity-1.3.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild?r1=1.5&r2=1.6

Index: audacity-1.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- audacity-1.3.8.ebuild	27 Sep 2009 19:37:08 -0000	1.5
+++ audacity-1.3.8.ebuild	10 Oct 2009 16:46:47 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.5 2009/09/27 19:37:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.6 2009/10/10 16:46:47 armin76 Exp $
 
 EAPI=2
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ~hppa ppc ppc64 sparc x86"
 RESTRICT="test"
 
 COMMON_DEPEND="=x11-libs/wxGTK-2.8*



1.135                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.134&r2=1.135

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog	27 Sep 2009 19:37:08 -0000	1.134
+++ ChangeLog	10 Oct 2009 16:46:47 -0000	1.135
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.134 2009/09/27 19:37:08 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.135 2009/10/10 16:46:47 armin76 Exp $
+
+  10 Oct 2009; Raúl Porcel <armin76@gentoo.org> audacity-1.3.8.ebuild:
+  sparc stable wrt #285898
 
   27 Sep 2009; nixnut <nixnut@gentoo.org> audacity-1.3.8.ebuild:
   ppc stable #285898






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2009-10-12 19:40 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2009-10-12 19:40 UTC (permalink / raw
  To: gentoo-commits

jer         09/10/12 19:40:08

  Modified:             audacity-1.3.8.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #285898).
  (Portage version: 2.2_rc46/cvs/Linux i686)

Revision  Changes    Path
1.7                  media-sound/audacity/audacity-1.3.8.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild?r1=1.6&r2=1.7

Index: audacity-1.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- audacity-1.3.8.ebuild	10 Oct 2009 16:46:47 -0000	1.6
+++ audacity-1.3.8.ebuild	12 Oct 2009 19:40:08 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.6 2009/10/10 16:46:47 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.7 2009/10/12 19:40:08 jer Exp $
 
 EAPI=2
 
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 hppa ppc ppc64 sparc x86"
 RESTRICT="test"
 
 COMMON_DEPEND="=x11-libs/wxGTK-2.8*



1.136                media-sound/audacity/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.136&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.136&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.135&r2=1.136

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog	10 Oct 2009 16:46:47 -0000	1.135
+++ ChangeLog	12 Oct 2009 19:40:08 -0000	1.136
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.135 2009/10/10 16:46:47 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.136 2009/10/12 19:40:08 jer Exp $
+
+  12 Oct 2009; Jeroen Roovers <jer@gentoo.org> audacity-1.3.8.ebuild:
+  Stable for HPPA (bug #285898).
 
   10 Oct 2009; Raúl Porcel <armin76@gentoo.org> audacity-1.3.8.ebuild:
   sparc stable wrt #285898






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

* [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog
@ 2010-10-27  3:09 Tim Harder (radhermit)
  0 siblings, 0 replies; 8+ messages in thread
From: Tim Harder (radhermit) @ 2010-10-27  3:09 UTC (permalink / raw
  To: gentoo-commits

radhermit    10/10/27 03:09:01

  Modified:             audacity-1.3.8.ebuild ChangeLog
  Log:
  Apply patch to fix build errors with recent versions of ffmpeg (fixes bug #284308, reported by Jeff).
  
  (Portage version: 2.2_rc98/cvs/Linux x86_64)

Revision  Changes    Path
1.8                  media-sound/audacity/audacity-1.3.8.ebuild

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

Index: audacity-1.3.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- audacity-1.3.8.ebuild	12 Oct 2009 19:40:08 -0000	1.7
+++ audacity-1.3.8.ebuild	27 Oct 2010 03:09:01 -0000	1.8
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.7 2009/10/12 19:40:08 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.8.ebuild,v 1.8 2010/10/27 03:09:01 radhermit Exp $
 
 EAPI=2
 
@@ -50,6 +50,7 @@
 src_prepare() {
 	epatch "${FILESDIR}/${PN}-1.3.8-automagic.patch"
 	epatch "${FILESDIR}/${PN}-1.3.8-gsocket-conflict.patch"
+	epatch "${FILESDIR}/${PN}-1.3.12-ffmpeg.patch"
 	AT_M4DIR="${S}/m4" eautoreconf
 }
 



1.144                media-sound/audacity/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	26 Oct 2010 21:22:53 -0000	1.143
+++ ChangeLog	27 Oct 2010 03:09:01 -0000	1.144
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/audacity
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.143 2010/10/26 21:22:53 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.144 2010/10/27 03:09:01 radhermit Exp $
+
+  27 Oct 2010; Tim Harder <radhermit@gentoo.org> audacity-1.3.8.ebuild:
+  Apply patch to fix build errors with recent versions of ffmpeg (fixes bug
+  #284308, reported by Jeff).
 
   26 Oct 2010; Tim Harder <radhermit@gentoo.org> audacity-1.3.12.ebuild,
   +files/audacity-1.3.12-ffmpeg.patch:






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

end of thread, other threads:[~2010-10-27  3:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-27 19:37 [gentoo-commits] gentoo-x86 commit in media-sound/audacity: audacity-1.3.8.ebuild ChangeLog Gysbert Wassenaar (nixnut)
  -- strict thread matches above, loose matches on Subject: below --
2010-10-27  3:09 Tim Harder (radhermit)
2009-10-12 19:40 Jeroen Roovers (jer)
2009-10-10 16:46 Raul Porcel (armin76)
2009-09-26 13:45 Brent Baude (ranger)
2009-09-22 11:02 Markus Meier (maekke)
2009-08-06  5:09 Ryan Hill (dirtyepic)
2009-07-22 11:38 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