public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in gnome-base/gvfs: gvfs-1.0.3-r12.ebuild ChangeLog gvfs-1.0.3-r2.ebuild
@ 2009-03-07 22:20 Daniel Gryniewicz (dang)
  0 siblings, 0 replies; only message in thread
From: Daniel Gryniewicz (dang) @ 2009-03-07 22:20 UTC (permalink / raw
  To: gentoo-commits

dang        09/03/07 22:20:54

  Modified:             ChangeLog
  Added:                gvfs-1.0.3-r12.ebuild gvfs-1.0.3-r2.ebuild
  Log:
  Fix URL parsing crash; bug #245204
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.51                 gnome-base/gvfs/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	6 Mar 2009 15:35:25 -0000	1.50
+++ ChangeLog	7 Mar 2009 22:20:53 -0000	1.51
@@ -1,6 +1,16 @@
 # ChangeLog for gnome-base/gvfs
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v 1.50 2009/03/06 15:35:25 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/ChangeLog,v 1.51 2009/03/07 22:20:53 dang Exp $
+
+*gvfs-1.0.3-r12 (07 Mar 2009)
+*gvfs-1.0.3-r2 (07 Mar 2009)
+
+  07 Mar 2009; Daniel Gryniewicz <dang@gentoo.org>
+  +files/gvfs-1.0.3-gmountspec-SIGSEGV.patch, +gvfs-1.0.3-r2.ebuild,
+  +gvfs-1.0.3-r12.ebuild:
+  Bump to gvfs-1.0.3-r2 and gvfs-1.0.3-r12
+
+  - Fix URL parsing crash; bug #245204
 
   06 Mar 2009; Brent Baude <ranger@gentoo.org> gvfs-1.0.3-r1.ebuild:
   Marking gvfs-1.0.3-r1 ppc stable for bug 260063



1.1                  gnome-base/gvfs/gvfs-1.0.3-r12.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/gvfs-1.0.3-r12.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/gvfs-1.0.3-r12.ebuild?rev=1.1&content-type=text/plain

Index: gvfs-1.0.3-r12.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-1.0.3-r12.ebuild,v 1.1 2009/03/07 22:20:53 dang Exp $

inherit autotools bash-completion gnome2 eutils

DESCRIPTION="GNOME Virtual Filesystem Layer"
HOMEPAGE="http://www.gnome.org"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="archive avahi bluetooth cdda doc fuse gnome gphoto2 hal gnome-keyring samba"

RDEPEND=">=dev-libs/glib-2.17.6
	>=sys-apps/dbus-1.0
	>=net-libs/libsoup-2.23.91
	dev-libs/libxml2
	net-misc/openssh
	archive? ( app-arch/libarchive )
	avahi? ( >=net-dns/avahi-0.6 )
	cdda?  (
		>=sys-apps/hal-0.5.10
		>=dev-libs/libcdio-0.78.2 )
	fuse? ( sys-fs/fuse )
	gnome? ( >=gnome-base/gconf-2.0 )
	hal? ( >=sys-apps/hal-0.5.10 )
	bluetooth? (
		dev-libs/dbus-glib
		net-wireless/bluez
		dev-libs/expat )
	gphoto2? ( >=media-libs/libgphoto2-2.4 )
	gnome-keyring? ( >=gnome-base/gnome-keyring-1.0 )
	samba? ( >=net-fs/samba-3 )"
DEPEND="${RDEPEND}
	>=dev-util/intltool-0.40
	>=dev-util/pkgconfig-0.19
	doc? ( >=dev-util/gtk-doc-1 )
	dev-util/gtk-doc-am"

DOCS="AUTHORS ChangeLog NEWS README TODO"

pkg_setup() {
	G2CONF="${G2CONF}
		--enable-http
		--disable-bash-completion
		$(use_enable archive)
		$(use_enable avahi)
		$(use_enable bluetooth obexftp)
		$(use_enable cdda)
		$(use_enable fuse)
		$(use_enable gnome gconf)
		$(use_enable gphoto2)
		$(use_enable hal)
		$(use_enable gnome-keyring keyring)
		$(use_enable samba)"

	if use cdda && built_with_use dev-libs/libcdio minimal; then
		ewarn
		ewarn "CDDA support in gvfs requires dev-libs/libcdio to be built"
		ewarn "without the minimal USE flag."
		die "Please re-emerge dev-libs/libcdio without the minimal USE flag"
	fi
}

src_unpack() {
	gnome2_src_unpack

	# Add support for bluez 4, bug #250615
	epatch "${FILESDIR}/${P}-bluez4.patch"

	# Fix non posixy tests, bug #256305
	epatch "${FILESDIR}/${P}-posixtest.patch"

	# Fix themed icon for obexftp, bug #256890
	epatch "${FILESDIR}/${P}-obexftp-icon.patch"

	# Fix HTTP leaks, bug #256892
	epatch "${FILESDIR}/${P}-http-leak.patch"

	# Fix URL crash; bug #245204
	epatch "${FILESDIR}"/${P}-gmountspec-SIGSEGV.patch

	eautoreconf
}

src_install() {
	gnome2_src_install
	use bash-completion && \
		dobashcompletion programs/gvfs-bash-completion.sh ${PN}
}

pkg_postinst() {
	gnome2_pkg_postinst
	use bash-completion && bash-completion_pkg_postinst
}



1.1                  gnome-base/gvfs/gvfs-1.0.3-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/gvfs-1.0.3-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-base/gvfs/gvfs-1.0.3-r2.ebuild?rev=1.1&content-type=text/plain

Index: gvfs-1.0.3-r2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-1.0.3-r2.ebuild,v 1.1 2009/03/07 22:20:54 dang Exp $

inherit autotools bash-completion gnome2 eutils

DESCRIPTION="GNOME Virtual Filesystem Layer"
HOMEPAGE="http://www.gnome.org"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="archive avahi bluetooth cdda doc fuse gnome gphoto2 hal gnome-keyring samba"

RDEPEND=">=dev-libs/glib-2.17.6
	>=sys-apps/dbus-1.0
	>=net-libs/libsoup-2.23.91
	dev-libs/libxml2
	net-misc/openssh
	archive? ( app-arch/libarchive )
	avahi? ( >=net-dns/avahi-0.6 )
	cdda?  (
		>=sys-apps/hal-0.5.10
		>=dev-libs/libcdio-0.78.2 )
	fuse? ( sys-fs/fuse )
	gnome? ( >=gnome-base/gconf-2.0 )
	hal? ( >=sys-apps/hal-0.5.10 )
	bluetooth? (
		dev-libs/dbus-glib
		>=net-wireless/bluez-libs-3.12
		dev-libs/expat )
	gphoto2? ( >=media-libs/libgphoto2-2.4 )
	gnome-keyring? ( >=gnome-base/gnome-keyring-1.0 )
	samba? ( >=net-fs/samba-3 )"
DEPEND="${RDEPEND}
	>=dev-util/intltool-0.40
	>=dev-util/pkgconfig-0.19
	doc? ( >=dev-util/gtk-doc-1 )
	dev-util/gtk-doc-am"

DOCS="AUTHORS ChangeLog NEWS README TODO"

pkg_setup() {
	G2CONF="${G2CONF}
		--enable-http
		--disable-bash-completion
		$(use_enable archive)
		$(use_enable avahi)
		$(use_enable bluetooth obexftp)
		$(use_enable cdda)
		$(use_enable fuse)
		$(use_enable gnome gconf)
		$(use_enable gphoto2)
		$(use_enable hal)
		$(use_enable gnome-keyring keyring)
		$(use_enable samba)"

	if use cdda && built_with_use dev-libs/libcdio minimal; then
		ewarn
		ewarn "CDDA support in gvfs requires dev-libs/libcdio to be built"
		ewarn "without the minimal USE flag."
		die "Please re-emerge dev-libs/libcdio without the minimal USE flag"
	fi
}

src_unpack() {
	gnome2_src_unpack

	# Fix non posixy tests, bug #256305
	epatch "${FILESDIR}/${P}-posixtest.patch"

	# Fix HTTP leaks, bug #256892
	epatch "${FILESDIR}/${P}-http-leak.patch"

	# Fix URL crash; bug #245204
	epatch "${FILESDIR}"/${P}-gmountspec-SIGSEGV.patch

	eautoreconf
}

src_install() {
	gnome2_src_install
	use bash-completion && \
		dobashcompletion programs/gvfs-bash-completion.sh ${PN}
}

pkg_postinst() {
	gnome2_pkg_postinst
	use bash-completion && bash-completion_pkg_postinst
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-07 22:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-07 22:20 [gentoo-commits] gentoo-x86 commit in gnome-base/gvfs: gvfs-1.0.3-r12.ebuild ChangeLog gvfs-1.0.3-r2.ebuild Daniel Gryniewicz (dang)

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