public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2011-06-03 15:50 Pacho Ramos (pacho)
  0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos (pacho) @ 2011-06-03 15:50 UTC (permalink / raw
  To: gentoo-commits

pacho       11/06/03 15:50:20

  Modified:             ChangeLog
  Added:                libgsf-1.14.21.ebuild
  Log:
  Version bump, including most of our patches.
  
  (Portage version: 2.1.9.50/cvs/Linux x86_64)

Revision  Changes    Path
1.176                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.176&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.176&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.175&r2=1.176

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog	26 Mar 2011 20:21:36 -0000	1.175
+++ ChangeLog	3 Jun 2011 15:50:19 -0000	1.176
@@ -1,6 +1,11 @@
 # ChangeLog for gnome-extra/libgsf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.175 2011/03/26 20:21:36 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.176 2011/06/03 15:50:19 pacho Exp $
+
+*libgsf-1.14.21 (03 Jun 2011)
+
+  03 Jun 2011; Pacho Ramos <pacho@gentoo.org> +libgsf-1.14.21.ebuild:
+  Version bump, including most of our patches.
 
 *libgsf-1.14.20 (26 Mar 2011)
 



1.1                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.1&content-type=text/plain

Index: libgsf-1.14.21.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.1 2011/06/03 15:50:19 pacho Exp $

EAPI="3"
GCONF_DEBUG="no"
PYTHON_DEPEND="python? 2:2.6"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.[45] 3.* *-jython"

inherit autotools eutils gnome2 python multilib

DESCRIPTION="The GNOME Structured File Library"
HOMEPAGE="http://projects.gnome.org/libgsf/"
SRC_URI="${SRC_URI}
	mirror://gentoo/gnome-mplayer-0.9.6-gconf-2.m4.tgz"

LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="bzip2 doc gnome gtk python thumbnail"

RDEPEND="
	>=dev-libs/glib-2.16:2
	>=dev-libs/libxml2-2.4.16:2
	sys-libs/zlib
	bzip2? ( app-arch/bzip2 )
	gnome? ( >=gnome-base/libbonobo-2 )
	gtk? ( x11-libs/gtk+:2 )
	python? (
		>=dev-python/pygobject-2.10:2
		>=dev-python/pygtk-2.10:2 )
	thumbnail? ( >=gnome-base/gconf-2:2 )"

DEPEND="${RDEPEND}
	dev-util/pkgconfig
	>=dev-util/intltool-0.35.0
	dev-util/gtk-doc-am
	doc? ( >=dev-util/gtk-doc-1 )"

PDEPEND="gnome? ( || (
	media-gfx/imagemagick
	media-gfx/graphicsmagick[imagemagick] ) )"

pkg_setup() {
	DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README TODO"
	G2CONF="${G2CONF}
		--with-gio
		--disable-static
		$(use_with bzip2 bz2)
		$(use_with gnome gnome-vfs)
		$(use_with gnome bonobo)
		$(use_with python)
		$(use_with gtk gdk-pixbuf)
		$(use_with thumbnail gconf)"

	if use python; then
		python_pkg_setup
	fi
}

src_prepare() {
	gnome2_src_prepare

	cp "${WORKDIR}/gnome-mplayer-0.9.6-gconf-2.m4" m4/ \
		|| die "failed to copy gconf macro"

	# Python bindings are built/installed manually.
	sed -e "/SUBDIRS += python/d" -i Makefile.am

	intltoolize --force --copy --automake || die "intltoolize failed"
	eautoreconf

	# disable pyc compiling
	mv py-compile py-compile.orig
	ln -s $(type -P true) py-compile
}

src_compile() {
	gnome2_src_compile

	if use python; then
		python_copy_sources python

		building() {
			emake \
				PYTHON_INCLUDES="-I$(python_get_includedir)" \
				pyexecdir="$(python_get_sitedir)" \
				pythondir="$(python_get_sitedir)"
		}
		python_execute_function -s --source-dir python building
	fi
}

src_install() {
	gnome2_src_install

	if use python; then
		installation() {
			emake \
				DESTDIR="${D}" \
				pyexecdir="$(python_get_sitedir)" \
				pythondir="$(python_get_sitedir)" \
				install
		}
		python_execute_function -s --source-dir python installation

		python_clean_installation_image
	fi
}

pkg_preinst() {
	gnome2_pkg_preinst
	preserve_old_lib /usr/$(get_libdir)/libgsf-1.so.1
	preserve_old_lib /usr/$(get_libdir)/libgsf-gnome-1.so.1
}

pkg_postinst() {
	gnome2_pkg_postinst

	if use python; then
		python_mod_optimize gsf
	fi

	preserve_old_lib_notify /usr/$(get_libdir)/libgsf-1.so.1
	preserve_old_lib_notify /usr/$(get_libdir)/libgsf-gnome-1.so.1
}

pkg_postrm() {
	gnome2_pkg_postrm

	if use python; then
		python_mod_cleanup gsf
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2011-10-14 21:25 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 8+ messages in thread
From: Samuli Suominen (ssuominen) @ 2011-10-14 21:25 UTC (permalink / raw
  To: gentoo-commits

ssuominen    11/10/14 21:25:56

  Modified:             ChangeLog libgsf-1.14.21.ebuild
  Log:
  amd64 stable wrt #385699
  
  (Portage version: 2.2.0_alpha64/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.184                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.184&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.184&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.183&r2=1.184

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- ChangeLog	10 Oct 2011 19:43:06 -0000	1.183
+++ ChangeLog	14 Oct 2011 21:25:55 -0000	1.184
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgsf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.183 2011/10/10 19:43:06 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.184 2011/10/14 21:25:55 ssuominen Exp $
+
+  14 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> libgsf-1.14.21.ebuild:
+  amd64 stable wrt #385699
 
   10 Oct 2011; Pacho Ramos <pacho@gentoo.org> -libgsf-1.14.19.ebuild,
   libgsf-1.14.21.ebuild:



1.3                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?r1=1.2&r2=1.3

Index: libgsf-1.14.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libgsf-1.14.21.ebuild	10 Oct 2011 19:43:06 -0000	1.2
+++ libgsf-1.14.21.ebuild	14 Oct 2011 21:25:55 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.2 2011/10/10 19:43:06 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.3 2011/10/14 21:25:55 ssuominen Exp $
 
 EAPI="3"
 GCONF_DEBUG="no"
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc gnome gtk python thumbnail"
 
 RDEPEND="






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2011-10-16 17:59 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 8+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-10-16 17:59 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/10/16 17:59:07

  Modified:             ChangeLog libgsf-1.14.21.ebuild
  Log:
  ppc/ppc64 stable wrt #385699
  
  (Portage version: 2.2.0_alpha63/cvs/Linux x86_64)

Revision  Changes    Path
1.185                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.185&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.185&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.184&r2=1.185

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ChangeLog	14 Oct 2011 21:25:55 -0000	1.184
+++ ChangeLog	16 Oct 2011 17:59:06 -0000	1.185
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgsf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.184 2011/10/14 21:25:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.185 2011/10/16 17:59:06 xarthisius Exp $
+
+  16 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> libgsf-1.14.21.ebuild:
+  ppc/ppc64 stable wrt #385699
 
   14 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> libgsf-1.14.21.ebuild:
   amd64 stable wrt #385699



1.4                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?r1=1.3&r2=1.4

Index: libgsf-1.14.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libgsf-1.14.21.ebuild	14 Oct 2011 21:25:55 -0000	1.3
+++ libgsf-1.14.21.ebuild	16 Oct 2011 17:59:06 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.3 2011/10/14 21:25:55 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.4 2011/10/16 17:59:06 xarthisius Exp $
 
 EAPI="3"
 GCONF_DEBUG="no"
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc gnome gtk python thumbnail"
 
 RDEPEND="






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2011-10-18 17:11 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2011-10-18 17:11 UTC (permalink / raw
  To: gentoo-commits

jer         11/10/18 17:11:44

  Modified:             ChangeLog libgsf-1.14.21.ebuild
  Log:
  Stable for HPPA (bug #385699).
  
  (Portage version: 2.2.0_alpha69/cvs/Linux x86_64)

Revision  Changes    Path
1.186                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.186&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.186&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.185&r2=1.186

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog	16 Oct 2011 17:59:06 -0000	1.185
+++ ChangeLog	18 Oct 2011 17:11:44 -0000	1.186
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgsf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.185 2011/10/16 17:59:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.186 2011/10/18 17:11:44 jer Exp $
+
+  18 Oct 2011; Jeroen Roovers <jer@gentoo.org> libgsf-1.14.21.ebuild:
+  Stable for HPPA (bug #385699).
 
   16 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> libgsf-1.14.21.ebuild:
   ppc/ppc64 stable wrt #385699



1.5                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?r1=1.4&r2=1.5

Index: libgsf-1.14.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libgsf-1.14.21.ebuild	16 Oct 2011 17:59:06 -0000	1.4
+++ libgsf-1.14.21.ebuild	18 Oct 2011 17:11:44 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.4 2011/10/16 17:59:06 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.5 2011/10/18 17:11:44 jer Exp $
 
 EAPI="3"
 GCONF_DEBUG="no"
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc gnome gtk python thumbnail"
 
 RDEPEND="






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2011-10-21 14:25 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 8+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-10-21 14:25 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/10/21 14:25:43

  Modified:             ChangeLog libgsf-1.14.21.ebuild
  Log:
  x86 stable wrt bug #385699
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.187                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.187&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.187&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.186&r2=1.187

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog	18 Oct 2011 17:11:44 -0000	1.186
+++ ChangeLog	21 Oct 2011 14:25:43 -0000	1.187
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgsf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.186 2011/10/18 17:11:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.187 2011/10/21 14:25:43 phajdan.jr Exp $
+
+  21 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> libgsf-1.14.21.ebuild:
+  x86 stable wrt bug #385699
 
   18 Oct 2011; Jeroen Roovers <jer@gentoo.org> libgsf-1.14.21.ebuild:
   Stable for HPPA (bug #385699).



1.6                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?r1=1.5&r2=1.6

Index: libgsf-1.14.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libgsf-1.14.21.ebuild	18 Oct 2011 17:11:44 -0000	1.5
+++ libgsf-1.14.21.ebuild	21 Oct 2011 14:25:43 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.5 2011/10/18 17:11:44 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.6 2011/10/21 14:25:43 phajdan.jr Exp $
 
 EAPI="3"
 GCONF_DEBUG="no"
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc gnome gtk python thumbnail"
 
 RDEPEND="






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2011-10-28 20:14 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2011-10-28 20:14 UTC (permalink / raw
  To: gentoo-commits

maekke      11/10/28 20:14:07

  Modified:             ChangeLog libgsf-1.14.21.ebuild
  Log:
  arm stable, bug #385699
  
  (Portage version: 2.1.10.30/cvs/Linux x86_64)

Revision  Changes    Path
1.188                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.188&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.188&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.187&r2=1.188

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.187
retrieving revision 1.188
diff -u -r1.187 -r1.188
--- ChangeLog	21 Oct 2011 14:25:43 -0000	1.187
+++ ChangeLog	28 Oct 2011 20:14:07 -0000	1.188
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgsf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.187 2011/10/21 14:25:43 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.188 2011/10/28 20:14:07 maekke Exp $
+
+  28 Oct 2011; Markus Meier <maekke@gentoo.org> libgsf-1.14.21.ebuild:
+  arm stable, bug #385699
 
   21 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> libgsf-1.14.21.ebuild:
   x86 stable wrt bug #385699



1.7                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?r1=1.6&r2=1.7

Index: libgsf-1.14.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libgsf-1.14.21.ebuild	21 Oct 2011 14:25:43 -0000	1.6
+++ libgsf-1.14.21.ebuild	28 Oct 2011 20:14:07 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.6 2011/10/21 14:25:43 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.7 2011/10/28 20:14:07 maekke Exp $
 
 EAPI="3"
 GCONF_DEBUG="no"
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc gnome gtk python thumbnail"
 
 RDEPEND="






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2011-10-30 16:25 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2011-10-30 16:25 UTC (permalink / raw
  To: gentoo-commits

armin76     11/10/30 16:25:13

  Modified:             ChangeLog libgsf-1.14.21.ebuild
  Log:
  alpha/ia64/sh/sparc stable wrt #385699
  
  (Portage version: 2.1.10.11/cvs/Linux ia64)

Revision  Changes    Path
1.189                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.189&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.189&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.188&r2=1.189

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog	28 Oct 2011 20:14:07 -0000	1.188
+++ ChangeLog	30 Oct 2011 16:25:12 -0000	1.189
@@ -1,6 +1,9 @@
 # ChangeLog for gnome-extra/libgsf
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.188 2011/10/28 20:14:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.189 2011/10/30 16:25:12 armin76 Exp $
+
+  30 Oct 2011; Raúl Porcel <armin76@gentoo.org> libgsf-1.14.21.ebuild:
+  alpha/ia64/sh/sparc stable wrt #385699
 
   28 Oct 2011; Markus Meier <maekke@gentoo.org> libgsf-1.14.21.ebuild:
   arm stable, bug #385699



1.8                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?r1=1.7&r2=1.8

Index: libgsf-1.14.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libgsf-1.14.21.ebuild	28 Oct 2011 20:14:07 -0000	1.7
+++ libgsf-1.14.21.ebuild	30 Oct 2011 16:25:12 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.7 2011/10/28 20:14:07 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.8 2011/10/30 16:25:12 armin76 Exp $
 
 EAPI="3"
 GCONF_DEBUG="no"
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc gnome gtk python thumbnail"
 
 RDEPEND="






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

* [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild
@ 2012-02-29  6:14 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 8+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-02-29  6:14 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/02/29 06:14:40

  Modified:             ChangeLog libgsf-1.14.21.ebuild
  Log:
  Empty py-compile script instead of symlinking it to /path/to/true. This is required for compability with recent automake.
  
  (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)

Revision  Changes    Path
1.191                gnome-extra/libgsf/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.191&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?rev=1.191&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/ChangeLog?r1=1.190&r2=1.191

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -r1.190 -r1.191
--- ChangeLog	31 Dec 2011 19:33:05 -0000	1.190
+++ ChangeLog	29 Feb 2012 06:14:39 -0000	1.191
@@ -1,6 +1,10 @@
 # ChangeLog for gnome-extra/libgsf
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.190 2011/12/31 19:33:05 pacho Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/ChangeLog,v 1.191 2012/02/29 06:14:39 ssuominen Exp $
+
+  29 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> libgsf-1.14.21.ebuild:
+  Empty py-compile script instead of symlinking it to /path/to/true. This is
+  required for compability with recent automake.
 
 *libgsf-1.14.22 (31 Dec 2011)
 



1.9                  gnome-extra/libgsf/libgsf-1.14.21.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild?r1=1.8&r2=1.9

Index: libgsf-1.14.21.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libgsf-1.14.21.ebuild	30 Oct 2011 16:25:12 -0000	1.8
+++ libgsf-1.14.21.ebuild	29 Feb 2012 06:14:39 -0000	1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.8 2011/10/30 16:25:12 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.21.ebuild,v 1.9 2012/02/29 06:14:39 ssuominen Exp $
 
 EAPI="3"
 GCONF_DEBUG="no"
@@ -73,8 +73,7 @@
 	eautoreconf
 
 	# disable pyc compiling
-	mv py-compile py-compile.orig
-	ln -s $(type -P true) py-compile
+	>py-compile
 }
 
 src_compile() {






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

end of thread, other threads:[~2012-02-29  6:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-14 21:25 [gentoo-commits] gentoo-x86 commit in gnome-extra/libgsf: ChangeLog libgsf-1.14.21.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2012-02-29  6:14 Samuli Suominen (ssuominen)
2011-10-30 16:25 Raul Porcel (armin76)
2011-10-28 20:14 Markus Meier (maekke)
2011-10-21 14:25 PaweA Hajdan (phajdan.jr)
2011-10-18 17:11 Jeroen Roovers (jer)
2011-10-16 17:59 Kacper Kowalik (xarthisius)
2011-06-03 15: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