public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/farstream: farstream-0.1.2-r2.ebuild ChangeLog
@ 2014-11-30 11:19 Michal Gorny (mgorny)
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Gorny (mgorny) @ 2014-11-30 11:19 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/11/30 11:19:07

  Modified:             ChangeLog
  Added:                farstream-0.1.2-r2.ebuild
  Log:
  Convert the old slot into python-single-r1.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.41                 net-libs/farstream/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog	7 Aug 2014 19:19:28 -0000	1.40
+++ ChangeLog	30 Nov 2014 11:19:07 -0000	1.41
@@ -1,6 +1,11 @@
 # ChangeLog for net-libs/farstream
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.40 2014/08/07 19:19:28 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.41 2014/11/30 11:19:07 mgorny Exp $
+
+*farstream-0.1.2-r2 (30 Nov 2014)
+
+  30 Nov 2014; Michał Górny <mgorny@gentoo.org> +farstream-0.1.2-r2.ebuild:
+  Convert the old slot into python-single-r1.
 
   07 Aug 2014; Jeroen Roovers <jer@gentoo.org> farstream-0.2.4.ebuild:
   Stable for HPPA (bug #512012).



1.1                  net-libs/farstream/farstream-0.1.2-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.1&content-type=text/plain

Index: farstream-0.1.2-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.1 2014/11/30 11:19:07 mgorny Exp $

EAPI="5"

PYTHON_COMPAT=( python2_7 )

inherit eutils python-single-r1

DESCRIPTION="Audio/video conferencing framework specifically designed for instant messengers"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/Farstream"
SRC_URI="http://freedesktop.org/software/farstream/releases/${PN}/${P}.tar.gz"

LICENSE="LGPL-2.1+"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="+introspection python msn test upnp"

SLOT="0.1"

# Tests need shmsink from gst-plugins-bad, which isn't packaged
RESTRICT="test"

COMMONDEPEND="
	>=media-libs/gstreamer-0.10.33:0.10
	>=media-libs/gst-plugins-base-0.10.33:0.10
	>=dev-libs/glib-2.30:2
	>=net-libs/libnice-0.1.0
	introspection? ( >=dev-libs/gobject-introspection-0.10.11 )
	python? ( ${PYTHON_DEPS}
		>=dev-python/pygobject-2.16:2[${PYTHON_USEDEP}]
		>=dev-python/gst-python-0.10.10:0.10[${PYTHON_USEDEP}] )
	upnp? ( net-libs/gupnp-igd )
"
RDEPEND="${COMMONDEPEND}
	>=media-libs/gst-plugins-good-0.10.17:0.10
	>=media-libs/gst-plugins-bad-0.10.17:0.10
	|| (
		>=media-plugins/gst-plugins-libnice-0.1.0:0.10
		<=net-libs/libnice-0.1.3[gstreamer] )
	msn? ( >=media-plugins/gst-plugins-mimic-0.10.17:0.10 )
	!net-libs/farsight2
"
# This package is just a rename from farsight2

MAKEOPTS="${MAKEOPTS} -j1" # Parallel is completely broken on this slot, bug #434618

DEPEND="${COMMONDEPEND}
	dev-util/gtk-doc-am
	virtual/pkgconfig
	test? (
		media-libs/gst-plugins-good:0.10
		media-plugins/gst-plugins-vorbis:0.10 )"

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

src_prepare() {
	# Fix building with gobject-introspection-1.33.x, bug #425096
	epatch "${FILESDIR}/${P}-introspection-tag-order.patch"
}

src_configure() {
	plugins="fsrawconference,fsrtpconference,fsfunnel,fsrtcpfilter,fsvideoanyrate"
	use msn && plugins="${plugins},fsmsnconference"
	econf --disable-static \
		$(use_enable introspection) \
		$(use_enable python) \
		$(use_enable upnp gupnp) \
		--with-plugins=${plugins}
}

src_install() {
	# Parallel install fails, bug #434618 (fixed in latest slot)
	emake -j1 install DESTDIR="${D}"
	dodoc AUTHORS README ChangeLog

	# Remove .la files since static libs are no longer being installed
	find "${D}" -name '*.la' -exec rm -f '{}' + || die
}

src_test() {
	# FIXME: do an out-of-tree build for tests if USE=-msn
	if ! use msn; then
		elog "Tests disabled without msn use flag"
		return
	fi

	emake -j1 check
}





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

* [gentoo-commits] gentoo-x86 commit in net-libs/farstream: farstream-0.1.2-r2.ebuild ChangeLog
@ 2014-11-30 15:47 Michal Gorny (mgorny)
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Gorny (mgorny) @ 2014-11-30 15:47 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/11/30 15:47:15

  Modified:             farstream-0.1.2-r2.ebuild ChangeLog
  Log:
  Add missing REQUIRED_USE.
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.2                  net-libs/farstream/farstream-0.1.2-r2.ebuild

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

Index: farstream-0.1.2-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- farstream-0.1.2-r2.ebuild	30 Nov 2014 11:19:07 -0000	1.1
+++ farstream-0.1.2-r2.ebuild	30 Nov 2014 15:47:14 -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/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.1 2014/11/30 11:19:07 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.2 2014/11/30 15:47:14 mgorny Exp $
 
 EAPI="5"
 
@@ -52,6 +52,8 @@
 		media-libs/gst-plugins-good:0.10
 		media-plugins/gst-plugins-vorbis:0.10 )"
 
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
 pkg_setup() {
 	use python && python-single-r1_pkg_setup
 }



1.42                 net-libs/farstream/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	30 Nov 2014 11:19:07 -0000	1.41
+++ ChangeLog	30 Nov 2014 15:47:14 -0000	1.42
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/farstream
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.41 2014/11/30 11:19:07 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.42 2014/11/30 15:47:14 mgorny Exp $
+
+  30 Nov 2014; Michał Górny <mgorny@gentoo.org> farstream-0.1.2-r2.ebuild:
+  Add missing REQUIRED_USE.
 
 *farstream-0.1.2-r2 (30 Nov 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in net-libs/farstream: farstream-0.1.2-r2.ebuild ChangeLog
@ 2015-01-19 10:40 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2015-01-19 10:40 UTC (permalink / raw
  To: gentoo-commits

jer         15/01/19 10:40:36

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

Revision  Changes    Path
1.3                  net-libs/farstream/farstream-0.1.2-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?r1=1.2&r2=1.3

Index: farstream-0.1.2-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- farstream-0.1.2-r2.ebuild	30 Nov 2014 15:47:14 -0000	1.2
+++ farstream-0.1.2-r2.ebuild	19 Jan 2015 10:40:36 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.2 2014/11/30 15:47:14 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.3 2015/01/19 10:40:36 jer Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 SRC_URI="http://freedesktop.org/software/farstream/releases/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+introspection python msn test upnp"
 
 SLOT="0.1"



1.43                 net-libs/farstream/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ChangeLog	30 Nov 2014 15:47:14 -0000	1.42
+++ ChangeLog	19 Jan 2015 10:40:36 -0000	1.43
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/farstream
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.42 2014/11/30 15:47:14 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.43 2015/01/19 10:40:36 jer Exp $
+
+  19 Jan 2015; Jeroen Roovers <jer@gentoo.org> farstream-0.1.2-r2.ebuild:
+  Stable for HPPA (bug #536694).
 
   30 Nov 2014; Michał Górny <mgorny@gentoo.org> farstream-0.1.2-r2.ebuild:
   Add missing REQUIRED_USE.





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

* [gentoo-commits] gentoo-x86 commit in net-libs/farstream: farstream-0.1.2-r2.ebuild ChangeLog
@ 2015-02-08 21:04 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2015-02-08 21:04 UTC (permalink / raw
  To: gentoo-commits

maekke      15/02/08 21:04:34

  Modified:             farstream-0.1.2-r2.ebuild ChangeLog
  Log:
  arm stable, bug #536694
  
  (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.4                  net-libs/farstream/farstream-0.1.2-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?r1=1.3&r2=1.4

Index: farstream-0.1.2-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- farstream-0.1.2-r2.ebuild	19 Jan 2015 10:40:36 -0000	1.3
+++ farstream-0.1.2-r2.ebuild	8 Feb 2015 21:04:34 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.3 2015/01/19 10:40:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.4 2015/02/08 21:04:34 maekke Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 SRC_URI="http://freedesktop.org/software/farstream/releases/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+introspection python msn test upnp"
 
 SLOT="0.1"



1.45                 net-libs/farstream/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	26 Jan 2015 12:31:05 -0000	1.44
+++ ChangeLog	8 Feb 2015 21:04:34 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/farstream
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.44 2015/01/26 12:31:05 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.45 2015/02/08 21:04:34 maekke Exp $
+
+  08 Feb 2015; Markus Meier <maekke@gentoo.org> farstream-0.1.2-r2.ebuild:
+  arm stable, bug #536694
 
 *farstream-0.2.6 (26 Jan 2015)
 





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

* [gentoo-commits] gentoo-x86 commit in net-libs/farstream: farstream-0.1.2-r2.ebuild ChangeLog
@ 2015-03-02  9:31 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-03-02  9:31 UTC (permalink / raw
  To: gentoo-commits

ago         15/03/02 09:31:15

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

Revision  Changes    Path
1.5                  net-libs/farstream/farstream-0.1.2-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?r1=1.4&r2=1.5

Index: farstream-0.1.2-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- farstream-0.1.2-r2.ebuild	8 Feb 2015 21:04:34 -0000	1.4
+++ farstream-0.1.2-r2.ebuild	2 Mar 2015 09:31:15 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.4 2015/02/08 21:04:34 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.5 2015/03/02 09:31:15 ago Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 SRC_URI="http://freedesktop.org/software/farstream/releases/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+introspection python msn test upnp"
 
 SLOT="0.1"



1.49                 net-libs/farstream/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	16 Feb 2015 10:28:16 -0000	1.48
+++ ChangeLog	2 Mar 2015 09:31:15 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/farstream
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.48 2015/02/16 10:28:16 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.49 2015/03/02 09:31:15 ago Exp $
+
+  02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> farstream-0.1.2-r2.ebuild:
+  Stable for ppc, wrt bug #540648
 
   16 Feb 2015; Pacho Ramos <pacho@gentoo.org> farstream-0.2.7.ebuild:
   Allow fake access to /dev as upstream thinks this is not a bug and it depends





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

* [gentoo-commits] gentoo-x86 commit in net-libs/farstream: farstream-0.1.2-r2.ebuild ChangeLog
@ 2015-03-15 11:50 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-15 11:50 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/15 11:50:10

  Modified:             farstream-0.1.2-r2.ebuild ChangeLog
  Log:
  ppc64 stable, bug 534012
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.7                  net-libs/farstream/farstream-0.1.2-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild?r1=1.6&r2=1.7

Index: farstream-0.1.2-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- farstream-0.1.2-r2.ebuild	14 Mar 2015 18:43:05 -0000	1.6
+++ farstream-0.1.2-r2.ebuild	15 Mar 2015 11:50:10 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.6 2015/03/14 18:43:05 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/farstream-0.1.2-r2.ebuild,v 1.7 2015/03/15 11:50:10 pacho Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 SRC_URI="http://freedesktop.org/software/farstream/releases/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+introspection python msn test upnp"
 
 SLOT="0.1"



1.51                 net-libs/farstream/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/farstream/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	14 Mar 2015 18:43:05 -0000	1.50
+++ ChangeLog	15 Mar 2015 11:50:10 -0000	1.51
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/farstream
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.50 2015/03/14 18:43:05 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/farstream/ChangeLog,v 1.51 2015/03/15 11:50:10 pacho Exp $
+
+  15 Mar 2015; Pacho Ramos <pacho@gentoo.org> farstream-0.1.2-r2.ebuild:
+  ppc64 stable, bug 534012
 
   14 Mar 2015; Pacho Ramos <pacho@gentoo.org> farstream-0.1.2-r2.ebuild,
   farstream-0.2.7.ebuild:





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

end of thread, other threads:[~2015-03-15 11:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-30 11:19 [gentoo-commits] gentoo-x86 commit in net-libs/farstream: farstream-0.1.2-r2.ebuild ChangeLog Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-30 15:47 Michal Gorny (mgorny)
2015-01-19 10:40 Jeroen Roovers (jer)
2015-02-08 21:04 Markus Meier (maekke)
2015-03-02  9:31 Agostino Sarubbo (ago)
2015-03-15 11:50 Pacho Ramos (pacho)

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