public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/grilo: grilo-0.2.9.ebuild ChangeLog
@ 2014-02-22  8:23 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-02-22  8:23 UTC (permalink / raw
  To: gentoo-commits

pacho       14/02/22 08:23:51

  Modified:             ChangeLog
  Added:                grilo-0.2.9.ebuild
  Log:
  Version bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.33                 media-libs/grilo/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	11 Feb 2014 21:46:53 -0000	1.32
+++ ChangeLog	22 Feb 2014 08:23:51 -0000	1.33
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/grilo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.32 2014/02/11 21:46:53 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.33 2014/02/22 08:23:51 pacho Exp $
+
+*grilo-0.2.9 (22 Feb 2014)
+
+  22 Feb 2014; Pacho Ramos <pacho@gentoo.org> +grilo-0.2.9.ebuild:
+  Version bump
 
 *grilo-0.2.8 (11 Feb 2014)
 



1.1                  media-libs/grilo/grilo-0.2.9.ebuild

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

Index: grilo-0.2.9.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v 1.1 2014/02/22 08:23:51 pacho Exp $

EAPI="5"
GCONF_DEBUG="no" # --enable-debug only changes CFLAGS
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python2_{6,7} )
VALA_MIN_API_VERSION="0.12"
VALA_USE_DEPEND="vapigen"

inherit gnome2 python-any-r1 vala

DESCRIPTION="A framework for easy media discovery and browsing"
HOMEPAGE="https://wiki.gnome.org/Projects/Grilo"

LICENSE="LGPL-2.1+"
SLOT="0.2/1" # subslot is libgrilo-0.2 soname suffix
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"

IUSE="gtk examples +introspection +network playlist test vala"
REQUIRED_USE="test? ( introspection )"

RDEPEND="
	>=dev-libs/glib-2.32:2
	dev-libs/libxml2:2
	net-libs/liboauth
	gtk? ( >=x11-libs/gtk+-3:3 )
	introspection? ( >=dev-libs/gobject-introspection-0.9 )
	network? ( >=net-libs/libsoup-2.41.3:2.4 )
	playlist? ( >=dev-libs/totem-pl-parser-3.4.1 )
"
DEPEND="${RDEPEND}
	>=dev-util/gtk-doc-am-1.10
	>=dev-util/intltool-0.40
	virtual/pkgconfig
	vala? ( $(vala_depend) )
	test? (
		$(python_gen_any_dep '
			dev-python/pygobject:2[${PYTHON_USEDEP}]
			dev-python/pygobject:3[${PYTHON_USEDEP}]')
		media-plugins/grilo-plugins:0.2 )
"
# eautoreconf requires gnome-common

python_check_deps() {
	has_version "dev-python/pygobject:2[${PYTHON_USEDEP}]" && \
		has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]"
}

pkg_setup() {
	use test && python-any-r1_pkg_setup
}

src_prepare() {
	# Don't build examples
	sed -e '/SUBDIRS/s/examples//' \
		-i Makefile.am -i Makefile.in || die

	use vala && vala_src_prepare
	gnome2_src_prepare
}

src_configure() {
	# --enable-debug only changes CFLAGS, useless for us
	gnome2_src_configure \
		--disable-static \
		--disable-debug \
		$(use_enable gtk test-ui) \
		$(use_enable introspection) \
		$(use_enable network grl-net) \
		$(use_enable playlist grl-pls) \
		$(use_enable test tests) \
		$(use_enable vala)
}

src_install() {
	gnome2_src_install
	# Upstream made this conditional on gtk-doc build...
	emake -C doc install DESTDIR="${ED}"

	# Prevent file collision with other slot
	if use vala; then
		mv "${ED}usr/bin/grilo-simple-playlist" \
			"${ED}usr/bin/grilo-simple-playlist-${SLOT%/*}" || die
	fi

	if use examples; then
		# Install example code
		insinto /usr/share/doc/${PF}/examples
		doins "${S}"/examples/*.c
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in media-libs/grilo: grilo-0.2.9.ebuild ChangeLog
@ 2014-02-22 15:31 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-02-22 15:31 UTC (permalink / raw
  To: gentoo-commits

pacho       14/02/22 15:31:55

  Modified:             grilo-0.2.9.ebuild ChangeLog
  Log:
  arch stable, bug 888
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.2                  media-libs/grilo/grilo-0.2.9.ebuild

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

Index: grilo-0.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- grilo-0.2.9.ebuild	22 Feb 2014 08:23:51 -0000	1.1
+++ grilo-0.2.9.ebuild	22 Feb 2014 15:31:55 -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-libs/grilo/grilo-0.2.9.ebuild,v 1.1 2014/02/22 08:23:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v 1.2 2014/02/22 15:31:55 pacho Exp $
 
 EAPI="5"
 GCONF_DEBUG="no" # --enable-debug only changes CFLAGS
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0.2/1" # subslot is libgrilo-0.2 soname suffix
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 IUSE="gtk examples +introspection +network playlist test vala"
 REQUIRED_USE="test? ( introspection )"



1.34                 media-libs/grilo/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	22 Feb 2014 08:23:51 -0000	1.33
+++ ChangeLog	22 Feb 2014 15:31:55 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/grilo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.33 2014/02/22 08:23:51 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.34 2014/02/22 15:31:55 pacho Exp $
+
+  22 Feb 2014; Pacho Ramos <pacho@gentoo.org> grilo-0.2.9.ebuild:
+  arch stable, bug 888
 
 *grilo-0.2.9 (22 Feb 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in media-libs/grilo: grilo-0.2.9.ebuild ChangeLog
@ 2014-02-22 22:15 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-02-22 22:15 UTC (permalink / raw
  To: gentoo-commits

pacho       14/02/22 22:15:24

  Modified:             grilo-0.2.9.ebuild ChangeLog
  Log:
  Fix wrong commit, bug 502160
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.3                  media-libs/grilo/grilo-0.2.9.ebuild

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

Index: grilo-0.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- grilo-0.2.9.ebuild	22 Feb 2014 15:31:55 -0000	1.2
+++ grilo-0.2.9.ebuild	22 Feb 2014 22:15:24 -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-libs/grilo/grilo-0.2.9.ebuild,v 1.2 2014/02/22 15:31:55 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v 1.3 2014/02/22 22:15:24 pacho Exp $
 
 EAPI="5"
 GCONF_DEBUG="no" # --enable-debug only changes CFLAGS
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0.2/1" # subslot is libgrilo-0.2 soname suffix
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 IUSE="gtk examples +introspection +network playlist test vala"
 REQUIRED_USE="test? ( introspection )"



1.35                 media-libs/grilo/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	22 Feb 2014 15:31:55 -0000	1.34
+++ ChangeLog	22 Feb 2014 22:15:24 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/grilo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.34 2014/02/22 15:31:55 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.35 2014/02/22 22:15:24 pacho Exp $
+
+  22 Feb 2014; Pacho Ramos <pacho@gentoo.org> grilo-0.2.9.ebuild:
+  Fix wrong commit, bug 502160
 
   22 Feb 2014; Pacho Ramos <pacho@gentoo.org> grilo-0.2.9.ebuild:
   arch stable, bug 888





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

* [gentoo-commits] gentoo-x86 commit in media-libs/grilo: grilo-0.2.9.ebuild ChangeLog
@ 2014-03-09 10:52 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-09 10:52 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/09 10:52:59

  Modified:             grilo-0.2.9.ebuild ChangeLog
  Log:
  amd64 stable, bug 499954
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  media-libs/grilo/grilo-0.2.9.ebuild

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

Index: grilo-0.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- grilo-0.2.9.ebuild	22 Feb 2014 22:15:24 -0000	1.3
+++ grilo-0.2.9.ebuild	9 Mar 2014 10:52:59 -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-libs/grilo/grilo-0.2.9.ebuild,v 1.3 2014/02/22 22:15:24 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v 1.4 2014/03/09 10:52:59 pacho Exp $
 
 EAPI="5"
 GCONF_DEBUG="no" # --enable-debug only changes CFLAGS
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0.2/1" # subslot is libgrilo-0.2 soname suffix
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 IUSE="gtk examples +introspection +network playlist test vala"
 REQUIRED_USE="test? ( introspection )"



1.36                 media-libs/grilo/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	22 Feb 2014 22:15:24 -0000	1.35
+++ ChangeLog	9 Mar 2014 10:52:59 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/grilo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.35 2014/02/22 22:15:24 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.36 2014/03/09 10:52:59 pacho Exp $
+
+  09 Mar 2014; Pacho Ramos <pacho@gentoo.org> grilo-0.2.9.ebuild:
+  amd64 stable, bug 499954
 
   22 Feb 2014; Pacho Ramos <pacho@gentoo.org> grilo-0.2.9.ebuild:
   Fix wrong commit, bug 502160





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

* [gentoo-commits] gentoo-x86 commit in media-libs/grilo: grilo-0.2.9.ebuild ChangeLog
@ 2014-03-09 12:02 Pacho Ramos (pacho)
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos (pacho) @ 2014-03-09 12:02 UTC (permalink / raw
  To: gentoo-commits

pacho       14/03/09 12:02:13

  Modified:             grilo-0.2.9.ebuild ChangeLog
  Log:
  x86 stable, bug 499954
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.5                  media-libs/grilo/grilo-0.2.9.ebuild

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

Index: grilo-0.2.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- grilo-0.2.9.ebuild	9 Mar 2014 10:52:59 -0000	1.4
+++ grilo-0.2.9.ebuild	9 Mar 2014 12:02:13 -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-libs/grilo/grilo-0.2.9.ebuild,v 1.4 2014/03/09 10:52:59 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/grilo-0.2.9.ebuild,v 1.5 2014/03/09 12:02:13 pacho Exp $
 
 EAPI="5"
 GCONF_DEBUG="no" # --enable-debug only changes CFLAGS
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1+"
 SLOT="0.2/1" # subslot is libgrilo-0.2 soname suffix
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 IUSE="gtk examples +introspection +network playlist test vala"
 REQUIRED_USE="test? ( introspection )"



1.37                 media-libs/grilo/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/grilo/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	9 Mar 2014 10:52:59 -0000	1.36
+++ ChangeLog	9 Mar 2014 12:02:13 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/grilo
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.36 2014/03/09 10:52:59 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/grilo/ChangeLog,v 1.37 2014/03/09 12:02:13 pacho Exp $
+
+  09 Mar 2014; Pacho Ramos <pacho@gentoo.org> grilo-0.2.9.ebuild:
+  x86 stable, bug 499954
 
   09 Mar 2014; Pacho Ramos <pacho@gentoo.org> grilo-0.2.9.ebuild:
   amd64 stable, bug 499954





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

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

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-22  8:23 [gentoo-commits] gentoo-x86 commit in media-libs/grilo: grilo-0.2.9.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2014-02-22 15:31 Pacho Ramos (pacho)
2014-02-22 22:15 Pacho Ramos (pacho)
2014-03-09 10:52 Pacho Ramos (pacho)
2014-03-09 12:02 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