public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-05-03  8:27 Michal Gorny (mgorny)
  0 siblings, 0 replies; 9+ messages in thread
From: Michal Gorny (mgorny) @ 2014-05-03  8:27 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/05/03 08:27:56

  Modified:             ChangeLog
  Added:                lash-0.5.4-r2.ebuild
  Log:
  Convert to python-single-r1 & multilib.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.40                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	25 Feb 2013 08:04:11 -0000	1.39
+++ ChangeLog	3 May 2014 08:27:56 -0000	1.40
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/lash
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.39 2013/02/25 08:04:11 ssuominen Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.40 2014/05/03 08:27:56 mgorny Exp $
+
+*lash-0.5.4-r2 (03 May 2014)
+
+  03 May 2014; Michał Górny <mgorny@gentoo.org> +lash-0.5.4-r2.ebuild:
+  Convert to python-single-r1 & multilib.
 
   25 Feb 2013; Samuli Suominen <ssuominen@gentoo.org> lash-0.5.4-r1.ebuild,
   +files/lash-0.5.4-gcc47.patch:
@@ -140,4 +145,3 @@
   and connects different kinds of virtual audio ports together (currently JACK
   and ALSA sequencer ports). It can also be used to move entire sessions
   between computers, or post sessions on the Internet for download.
-



1.1                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.1 2014/05/03 08:27:56 mgorny Exp $

EAPI=5

PYTHON_COMPAT=( python2_7 )

inherit autotools eutils multilib-minimal python-single-r1

DESCRIPTION="LASH Audio Session Handler"
HOMEPAGE="http://www.nongnu.org/lash/"
SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="alsa debug gtk python static-libs" # doc

RDEPEND="dev-libs/libxml2
	media-sound/jack-audio-connection-kit
	>=sys-apps/util-linux-2.24.1-r3[${MULTILIB_USEDEP}]
	alsa? ( media-libs/alsa-lib )
	gtk? ( x11-libs/gtk+:2 )
	python? ( ${PYTHON_DEPS} )
	|| ( sys-libs/readline dev-libs/libedit )"
DEPEND="${RDEPEND}
	virtual/pkgconfig
	python? ( >=dev-lang/swig-1.3.40 )"
# doc? ( >=app-text/texi2html-5 )

DOCS="AUTHORS ChangeLog NEWS README TODO"

REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"

pkg_setup() {
	use python && python-single-r1_pkg_setup
}

src_prepare() {
	sed -i \
		-e '/texi2html/s:-number:&-sections:' \
		docs/Makefile.am || die #422045

	epatch \
		"${FILESDIR}"/${P}-glibc2.8.patch \
		"${FILESDIR}"/${P}-swig_version_comparison.patch \
		"${FILESDIR}"/${P}-gcc47.patch

	AT_M4DIR="m4" eautoreconf
}

multilib_src_configure() {
	# 'no' could be '$(usex doc)' but we use the pregenerated lash-manual.html
	export ac_cv_prog_lash_texi2html=no #422045

	# --enable-pylash would disable it
	local myconf=()
	if ! multilib_is_native_abi || ! use python; then
		myconf+=( --disable-pylash )
	fi

	if ! multilib_is_native_abi; then
		# disable remaining configure checks
		myconf+=(
			JACK_CFLAGS=' '
			JACK_LIBS=' '
			XML2_CFLAGS=' '
			XML2_LIBS=' '

			vl_cv_lib_readline=no
		)
	fi

	ECONF_SOURCE=${S} \
	econf \
		$(use_enable static-libs static) \
		$(multilib_native_use_enable alsa alsa-midi) \
		$(multilib_native_use_enable gtk gtk2) \
		$(multilib_native_use_enable debug) \
		"${myconf[@]}"
}

multilib_src_compile() {
	if multilib_is_native_abi; then
		default
	else
		emake -C liblash
	fi
}

multilib_src_test() {
	multilib_is_native_abi && default
}

multilib_src_install() {
	if multilib_is_native_abi; then
		emake DESTDIR="${D}" install
	else
		# headers
		emake -C lash DESTDIR="${D}" install
		# library
		emake -C liblash DESTDIR="${D}" install
		# pkg-config
		emake DESTDIR="${D}" install-pkgconfigDATA
	fi
}

multilib_src_install_all() {
	dohtml docs/lash-manual-html-*/lash-manual.html
	prune_libtool_files --all # --all for _lash.la in python directory
	use python && python_optimize
}





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-07-09 18:25 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 9+ messages in thread
From: Samuli Suominen (ssuominen) @ 2014-07-09 18:25 UTC (permalink / raw
  To: gentoo-commits

ssuominen    14/07/09 18:25:49

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  Fix underlinking bugs #367589 (missing -luuid) and #514748 (missing -lm). Thanks to Diego Elio Pettenò, Christian Compagnon and Ted Tanberry. Fix missing include of string.h for strcmp() while at it.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)

Revision  Changes    Path
1.2                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lash-0.5.4-r2.ebuild	3 May 2014 08:27:56 -0000	1.1
+++ lash-0.5.4-r2.ebuild	9 Jul 2014 18:25:49 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.1 2014/05/03 08:27:56 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.2 2014/07/09 18:25:49 ssuominen Exp $
 
 EAPI=5
 
@@ -45,9 +45,11 @@
 	epatch \
 		"${FILESDIR}"/${P}-glibc2.8.patch \
 		"${FILESDIR}"/${P}-swig_version_comparison.patch \
-		"${FILESDIR}"/${P}-gcc47.patch
+		"${FILESDIR}"/${P}-gcc47.patch \
+		"${FILESDIR}"/${P}-underlinking.patch \
+		"${FILESDIR}"/${P}-strcmp.patch
 
-	AT_M4DIR="m4" eautoreconf
+	AT_M4DIR=m4 eautoreconf
 }
 
 multilib_src_configure() {



1.41                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	3 May 2014 08:27:56 -0000	1.40
+++ ChangeLog	9 Jul 2014 18:25:49 -0000	1.41
@@ -1,6 +1,13 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.40 2014/05/03 08:27:56 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.41 2014/07/09 18:25:49 ssuominen Exp $
+
+  09 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
+  +files/lash-0.5.4-strcmp.patch, +files/lash-0.5.4-underlinking.patch,
+  lash-0.5.4-r2.ebuild:
+  Fix underlinking bugs #367589 (missing -luuid) and #514748 (missing -lm).
+  Thanks to Diego Elio Pettenò, Christian Compagnon and Ted Tanberry. Fix
+  missing include of string.h for strcmp() while at it.
 
 *lash-0.5.4-r2 (03 May 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-10-20 10:16 Pacho Ramos (pacho)
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos (pacho) @ 2014-10-20 10:16 UTC (permalink / raw
  To: gentoo-commits

pacho       14/10/20 10:16:18

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  amd64 stable, bug #525804
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- lash-0.5.4-r2.ebuild	9 Jul 2014 18:25:49 -0000	1.2
+++ lash-0.5.4-r2.ebuild	20 Oct 2014 10:16:18 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.2 2014/07/09 18:25:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.3 2014/10/20 10:16:18 pacho Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 RDEPEND="dev-libs/libxml2



1.42                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	9 Jul 2014 18:25:49 -0000	1.41
+++ ChangeLog	20 Oct 2014 10:16:18 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.41 2014/07/09 18:25:49 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.42 2014/10/20 10:16:18 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos <pacho@gentoo.org> lash-0.5.4-r2.ebuild:
+  amd64 stable, bug #525804
 
   09 Jul 2014; Samuli Suominen <ssuominen@gentoo.org>
   +files/lash-0.5.4-strcmp.patch, +files/lash-0.5.4-underlinking.patch,





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-10-20 10:19 Pacho Ramos (pacho)
  0 siblings, 0 replies; 9+ messages in thread
From: Pacho Ramos (pacho) @ 2014-10-20 10:19 UTC (permalink / raw
  To: gentoo-commits

pacho       14/10/20 10:19:34

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  x86 stable, bug #525804
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- lash-0.5.4-r2.ebuild	20 Oct 2014 10:16:18 -0000	1.3
+++ lash-0.5.4-r2.ebuild	20 Oct 2014 10:19:34 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.3 2014/10/20 10:16:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.4 2014/10/20 10:19:34 pacho Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 RDEPEND="dev-libs/libxml2



1.43                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	20 Oct 2014 10:16:18 -0000	1.42
+++ ChangeLog	20 Oct 2014 10:19:34 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.42 2014/10/20 10:16:18 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.43 2014/10/20 10:19:34 pacho Exp $
+
+  20 Oct 2014; Pacho Ramos <pacho@gentoo.org> lash-0.5.4-r2.ebuild:
+  x86 stable, bug #525804
 
   20 Oct 2014; Pacho Ramos <pacho@gentoo.org> lash-0.5.4-r2.ebuild:
   amd64 stable, bug #525804





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-10-21  9:27 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2014-10-21  9:27 UTC (permalink / raw
  To: gentoo-commits

jer         14/10/21 09:27:53

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #525804).
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.5                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- lash-0.5.4-r2.ebuild	20 Oct 2014 10:19:34 -0000	1.4
+++ lash-0.5.4-r2.ebuild	21 Oct 2014 09:27:53 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.4 2014/10/20 10:19:34 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.5 2014/10/21 09:27:53 jer Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 RDEPEND="dev-libs/libxml2



1.44                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	20 Oct 2014 10:19:34 -0000	1.43
+++ ChangeLog	21 Oct 2014 09:27:53 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.43 2014/10/20 10:19:34 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.44 2014/10/21 09:27:53 jer Exp $
+
+  21 Oct 2014; Jeroen Roovers <jer@gentoo.org> lash-0.5.4-r2.ebuild:
+  Stable for HPPA (bug #525804).
 
   20 Oct 2014; Pacho Ramos <pacho@gentoo.org> lash-0.5.4-r2.ebuild:
   x86 stable, bug #525804





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-10-27 16:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-27 16:08 UTC (permalink / raw
  To: gentoo-commits

ago         14/10/27 16:08:21

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #525804
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- lash-0.5.4-r2.ebuild	21 Oct 2014 09:27:53 -0000	1.5
+++ lash-0.5.4-r2.ebuild	27 Oct 2014 16:08:21 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.5 2014/10/21 09:27:53 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.6 2014/10/27 16:08:21 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ppc64 ~sparc x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 RDEPEND="dev-libs/libxml2



1.45                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	21 Oct 2014 09:27:53 -0000	1.44
+++ ChangeLog	27 Oct 2014 16:08:21 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.44 2014/10/21 09:27:53 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.45 2014/10/27 16:08:21 ago Exp $
+
+  27 Oct 2014; Agostino Sarubbo <ago@gentoo.org> lash-0.5.4-r2.ebuild:
+  Stable for ppc64, wrt bug #525804
 
   21 Oct 2014; Jeroen Roovers <jer@gentoo.org> lash-0.5.4-r2.ebuild:
   Stable for HPPA (bug #525804).





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-10-29  9:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-10-29  9:32 UTC (permalink / raw
  To: gentoo-commits

ago         14/10/29 09:32:56

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #525804
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- lash-0.5.4-r2.ebuild	27 Oct 2014 16:08:21 -0000	1.6
+++ lash-0.5.4-r2.ebuild	29 Oct 2014 09:32:56 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.6 2014/10/27 16:08:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.7 2014/10/29 09:32:56 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~ppc ppc64 sparc x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 RDEPEND="dev-libs/libxml2



1.46                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ChangeLog	27 Oct 2014 16:08:21 -0000	1.45
+++ ChangeLog	29 Oct 2014 09:32:56 -0000	1.46
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.45 2014/10/27 16:08:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.46 2014/10/29 09:32:56 ago Exp $
+
+  29 Oct 2014; Agostino Sarubbo <ago@gentoo.org> lash-0.5.4-r2.ebuild:
+  Stable for sparc, wrt bug #525804
 
   27 Oct 2014; Agostino Sarubbo <ago@gentoo.org> lash-0.5.4-r2.ebuild:
   Stable for ppc64, wrt bug #525804





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-11-01 17:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-01 17:52 UTC (permalink / raw
  To: gentoo-commits

ago         14/11/01 17:52:26

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #525804
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- lash-0.5.4-r2.ebuild	29 Oct 2014 09:32:56 -0000	1.7
+++ lash-0.5.4-r2.ebuild	1 Nov 2014 17:52:26 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.7 2014/10/29 09:32:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.8 2014/11/01 17:52:26 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 hppa ppc ppc64 sparc x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 RDEPEND="dev-libs/libxml2



1.47                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ChangeLog	29 Oct 2014 09:32:56 -0000	1.46
+++ ChangeLog	1 Nov 2014 17:52:26 -0000	1.47
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.46 2014/10/29 09:32:56 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.47 2014/11/01 17:52:26 ago Exp $
+
+  01 Nov 2014; Agostino Sarubbo <ago@gentoo.org> lash-0.5.4-r2.ebuild:
+  Stable for ppc, wrt bug #525804
 
   29 Oct 2014; Agostino Sarubbo <ago@gentoo.org> lash-0.5.4-r2.ebuild:
   Stable for sparc, wrt bug #525804





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

* [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog
@ 2014-11-02  9:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-11-02  9:03 UTC (permalink / raw
  To: gentoo-commits

ago         14/11/02 09:03:38

  Modified:             lash-0.5.4-r2.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #525804
  
  (Portage version: 2.2.8-r2/cvs/Linux x86_64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  media-sound/lash/lash-0.5.4-r2.ebuild

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

Index: lash-0.5.4-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- lash-0.5.4-r2.ebuild	1 Nov 2014 17:52:26 -0000	1.8
+++ lash-0.5.4-r2.ebuild	2 Nov 2014 09:03:38 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.8 2014/11/01 17:52:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.4-r2.ebuild,v 1.9 2014/11/02 09:03:38 ago Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 RDEPEND="dev-libs/libxml2



1.48                 media-sound/lash/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	1 Nov 2014 17:52:26 -0000	1.47
+++ ChangeLog	2 Nov 2014 09:03:38 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/lash
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.47 2014/11/01 17:52:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.48 2014/11/02 09:03:38 ago Exp $
+
+  02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> lash-0.5.4-r2.ebuild:
+  Stable for alpha, wrt bug #525804
 
   01 Nov 2014; Agostino Sarubbo <ago@gentoo.org> lash-0.5.4-r2.ebuild:
   Stable for ppc, wrt bug #525804





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

end of thread, other threads:[~2014-11-02  9:03 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-20 10:19 [gentoo-commits] gentoo-x86 commit in media-sound/lash: lash-0.5.4-r2.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-02  9:03 Agostino Sarubbo (ago)
2014-11-01 17:52 Agostino Sarubbo (ago)
2014-10-29  9:32 Agostino Sarubbo (ago)
2014-10-27 16:08 Agostino Sarubbo (ago)
2014-10-21  9:27 Jeroen Roovers (jer)
2014-10-20 10:16 Pacho Ramos (pacho)
2014-07-09 18:25 Samuli Suominen (ssuominen)
2014-05-03  8:27 Michal Gorny (mgorny)

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