diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2010-08-20 12:30:05 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2010-08-20 12:30:05 +0000 |
commit | 439af9d9cc0950233f79e466609df461fbab38cb (patch) | |
tree | 53dc62c50efbf8e5c168c05b17bd8a26a3e001a1 /gnustep-base | |
parent | Drop old stable versions, security bug #325577 (diff) | |
download | gentoo-2-439af9d9cc0950233f79e466609df461fbab38cb.tar.gz gentoo-2-439af9d9cc0950233f79e466609df461fbab38cb.tar.bz2 gentoo-2-439af9d9cc0950233f79e466609df461fbab38cb.zip |
Drop old stable versions, security bug #325577
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'gnustep-base')
4 files changed, 7 insertions, 200 deletions
diff --git a/gnustep-base/gnustep-base/ChangeLog b/gnustep-base/gnustep-base/ChangeLog index e97f16e670f8..7c2c12c0975c 100644 --- a/gnustep-base/gnustep-base/ChangeLog +++ b/gnustep-base/gnustep-base/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnustep-base/gnustep-base # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.101 2010/08/13 17:29:16 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/ChangeLog,v 1.102 2010/08/20 12:30:03 voyageur Exp $ + + 20 Aug 2010; Bernard Cafarelli <voyageur@gentoo.org> + -gnustep-base-1.18.0-r4.ebuild, + -files/gnustep-base-1.18.0-mdns_configure.patch, + -gnustep-base-1.20.0.ebuild: + Drop old stable versions, security bug #325577 13 Aug 2010; Joseph Jezak <josejx@gentoo.org> gnustep-base-1.20.1.ebuild: Marked ppc stable for bug #325577. diff --git a/gnustep-base/gnustep-base/files/gnustep-base-1.18.0-mdns_configure.patch b/gnustep-base/gnustep-base/files/gnustep-base-1.18.0-mdns_configure.patch deleted file mode 100644 index 9f187e0913ba..000000000000 --- a/gnustep-base/gnustep-base/files/gnustep-base-1.18.0-mdns_configure.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- configure.ac.orig 2008-12-22 16:16:38.000000000 +0100 -+++ configure.ac 2009-03-11 13:50:03.000000000 +0100 -@@ -2376,12 +2376,18 @@ - # Check for NSNetServices - #-------------------------------------------------------------------- - HAVE_MDNS=0 --AC_CHECK_HEADERS(dns_sd.h, have_mdns=yes, have_mdns=no) --if test "$have_mdns" = "yes"; then -- AC_CHECK_LIB(dns_sd, DNSServiceBrowse, have_mdns=yes, have_mdns=no) -+AC_ARG_ENABLE(zeroconf, -+ [ --disable-zeroconf Disable NSNetServices support],, -+ enable_zeroconf=yes) -+ -+if test $enable_zeroconf = yes; then -+ AC_CHECK_HEADERS(dns_sd.h, have_mdns=yes, have_mdns=no) - if test "$have_mdns" = "yes"; then -- LIBS="-ldns_sd $LIBS" -- HAVE_MDNS=1 -+ AC_CHECK_LIB(dns_sd, DNSServiceBrowse, have_mdns=yes, have_mdns=no) -+ if test "$have_mdns" = "yes"; then -+ LIBS="-ldns_sd $LIBS" -+ HAVE_MDNS=1 -+ fi - fi - fi - AC_SUBST(HAVE_MDNS) diff --git a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r4.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.18.0-r4.ebuild deleted file mode 100644 index 703775fca5d4..000000000000 --- a/gnustep-base/gnustep-base/gnustep-base-1.18.0-r4.ebuild +++ /dev/null @@ -1,90 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.18.0-r4.ebuild,v 1.6 2010/01/16 14:38:00 armin76 Exp $ - -EAPI=2 - -inherit autotools gnustep-base - -DESCRIPTION="A library of general-purpose, non-graphical Objective C objects." - -HOMEPAGE="http://www.gnustep.org" -SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" -KEYWORDS="~alpha amd64 ppc ~ppc64 sparc x86 ~x86-fbsd" -SLOT="0" -LICENSE="GPL-2 LGPL-2.1" - -IUSE="libffi gnutls zeroconf" - -RDEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-2.0.8 - !libffi? ( dev-libs/ffcall - gnustep-base/gnustep-make[-native-exceptions] ) - libffi? ( virtual/libffi ) - gnutls? ( net-libs/gnutls ) - >=dev-libs/libxml2-2.6 - >=dev-libs/libxslt-1.1 - >=dev-libs/gmp-4.1 - >=dev-libs/openssl-0.9.7 - >=sys-libs/zlib-1.2 - zeroconf? ( || ( - net-dns/avahi[mdnsresponder-compat] - net-misc/mDNSResponder ) )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_prepare() { - # Automagic dependency on mdns-responder - epatch "${FILESDIR}"/${P}-mdns_configure.patch - - eautoreconf -} - -src_configure() { - egnustep_env - - local myconf - if use libffi; - then - myconf="--enable-libffi --disable-ffcall --with-ffi-include=$(pkg-config --variable=includedir libffi)" - else - myconf="--disable-libffi --enable-ffcall" - fi - - myconf="$myconf $(use_enable gnutls tls)" - myconf="$myconf $(use_enable zeroconf)" - myconf="$myconf --with-xml-prefix=/usr" - myconf="$myconf --with-gmp-include=/usr/include --with-gmp-library=/usr/lib" - myconf="$myconf --with-default-config=/etc/GNUstep/GNUstep.conf" - - econf $myconf || die "configure failed" -} - -src_install() { - # We need to set LD_LIBRARY_PATH because the doc generation program - # uses the gnustep-base libraries. Since egnustep_env "cleans the - # environment" including our LD_LIBRARY_PATH, we're left no choice - # but doing it like this. - - egnustep_env - egnustep_install - - if use doc ; then - export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}" - egnustep_doc - fi - egnustep_install_config - - dodir /etc/revdep-rebuild - sed -e 's|$GNUSTEP_SEARCH_DIRS|'"$GNUSTEP_SYSTEM_LIBRARIES $GNUSTEP_SYSTEM_TOOLS $GNUSTEP_LOCAL_LIBRARIES $GNUSTEP_LOCAL_TOOLS"'|' \ - "${FILESDIR}"/50-gnustep-revdep \ - > "${D}/etc/revdep-rebuild/50-gnustep-revdep" -} - -pkg_postinst() { - ewarn "The shared library version has changed in this release." - ewarn "You will need to recompile all Applications/Tools/etc in order" - ewarn "to use this library." - ewarn "Run:" - ewarn "revdep-rebuild --library \"libgnustep-base.so.1.1[0-6]\"" -} diff --git a/gnustep-base/gnustep-base/gnustep-base-1.20.0.ebuild b/gnustep-base/gnustep-base/gnustep-base-1.20.0.ebuild deleted file mode 100644 index ae49d6de2be6..000000000000 --- a/gnustep-base/gnustep-base/gnustep-base-1.20.0.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/gnustep-base/gnustep-base-1.20.0.ebuild,v 1.3 2010/07/23 09:18:34 voyageur Exp $ - -EAPI="3" - -inherit gnustep-base - -DESCRIPTION="A library of general-purpose, non-graphical Objective C objects." - -HOMEPAGE="http://www.gnustep.org" -SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz" -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" -SLOT="0" -LICENSE="GPL-2 LGPL-2.1" - -IUSE="+libffi gnutls zeroconf" - -RDEPEND="${GNUSTEP_CORE_DEPEND} - >=gnustep-base/gnustep-make-2.0.8 - !libffi? ( dev-libs/ffcall - gnustep-base/gnustep-make[-native-exceptions] ) - libffi? ( virtual/libffi ) - gnutls? ( net-libs/gnutls ) - >=dev-libs/libxml2-2.6 - >=dev-libs/libxslt-1.1 - >=dev-libs/gmp-4.1 - >=dev-libs/openssl-0.9.7 - >=sys-libs/zlib-1.2 - zeroconf? ( || ( - net-dns/avahi[mdnsresponder-compat] - net-misc/mDNSResponder ) )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_configure() { - egnustep_env - - local myconf - if use libffi; - then - myconf="--enable-libffi --disable-ffcall --with-ffi-include=$(pkg-config --variable=includedir libffi)" - else - myconf="--disable-libffi --enable-ffcall" - fi - - myconf="$myconf $(use_enable gnutls tls)" - myconf="$myconf $(use_enable zeroconf)" - myconf="$myconf --with-xml-prefix=${EPREFIX}/usr" - myconf="$myconf --with-gmp-include=${EPREFIX}/usr/include --with-gmp-library=${EPREFIX}/usr/lib" - myconf="$myconf --with-default-config=${EPREFIX}/etc/GNUstep/GNUstep.conf" - - econf $myconf || die "configure failed" -} - -src_install() { - # We need to set LD_LIBRARY_PATH because the doc generation program - # uses the gnustep-base libraries. Since egnustep_env "cleans the - # environment" including our LD_LIBRARY_PATH, we're left no choice - # but doing it like this. - - egnustep_env - egnustep_install - - if use doc ; then - export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}" - egnustep_doc - fi - egnustep_install_config - - dodir /etc/revdep-rebuild - sed -e 's|$GNUSTEP_SEARCH_DIRS|'"$GNUSTEP_SYSTEM_LIBRARIES $GNUSTEP_SYSTEM_TOOLS $GNUSTEP_LOCAL_LIBRARIES $GNUSTEP_LOCAL_TOOLS"'|' \ - "${FILESDIR}"/50-gnustep-revdep \ - > "${ED}/etc/revdep-rebuild/50-gnustep-revdep" -} - -pkg_postinst() { - ewarn "The shared library version has changed in this release." - ewarn "You will need to recompile all Applications/Tools/etc in order" - ewarn "to use this library." - ewarn "Run:" - ewarn "revdep-rebuild --library \"libgnustep-base.so.1.1[0-8]\"" -} |