diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-01-07 08:14:51 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-01-07 08:14:51 +0000 |
commit | 95252593566c642657725a71dc43afb5f609c9b3 (patch) | |
tree | d67eada9de67493ec137bdc17001723c49cdce5e /sys-apps/attr | |
parent | Bump (diff) | |
download | gentoo-2-95252593566c642657725a71dc43afb5f609c9b3.tar.gz gentoo-2-95252593566c642657725a71dc43afb5f609c9b3.tar.bz2 gentoo-2-95252593566c642657725a71dc43afb5f609c9b3.zip |
Removed old versions and files
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-apps/attr')
-rw-r--r-- | sys-apps/attr/ChangeLog | 12 | ||||
-rw-r--r-- | sys-apps/attr/attr-2.4.43.ebuild | 63 | ||||
-rw-r--r-- | sys-apps/attr/attr-2.4.44-r1.ebuild | 53 | ||||
-rw-r--r-- | sys-apps/attr/attr-2.4.44.ebuild | 52 | ||||
-rw-r--r-- | sys-apps/attr/attr-2.4.46-r1.ebuild | 53 | ||||
-rw-r--r-- | sys-apps/attr/attr-2.4.46.ebuild | 53 | ||||
-rw-r--r-- | sys-apps/attr/attr-2.4.47.ebuild | 51 | ||||
-rw-r--r-- | sys-apps/attr/files/attr-2.4.24-only-symlink-when-needed.patch | 18 | ||||
-rw-r--r-- | sys-apps/attr/files/attr-2.4.39-gettext.patch | 73 | ||||
-rw-r--r-- | sys-apps/attr/files/attr-2.4.43-linguas.patch | 11 | ||||
-rw-r--r-- | sys-apps/attr/files/attr-2.4.44-headers.patch | 12 |
11 files changed, 10 insertions, 441 deletions
diff --git a/sys-apps/attr/ChangeLog b/sys-apps/attr/ChangeLog index 723c976e152c..89e578e3ccb9 100644 --- a/sys-apps/attr/ChangeLog +++ b/sys-apps/attr/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for sys-apps/attr -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.160 2013/11/24 08:38:45 mgorny Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/ChangeLog,v 1.161 2014/01/07 08:14:51 polynomial-c Exp $ + + 07 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> -attr-2.4.43.ebuild, + -attr-2.4.44.ebuild, -attr-2.4.44-r1.ebuild, -attr-2.4.46.ebuild, + -attr-2.4.46-r1.ebuild, -attr-2.4.47.ebuild, + -files/attr-2.4.24-only-symlink-when-needed.patch, + -files/attr-2.4.39-gettext.patch, -files/attr-2.4.43-linguas.patch, + -files/attr-2.4.44-headers.patch: + Removed old versions and files. 24 Nov 2013; Michał Górny <mgorny@gentoo.org> attr-2.4.47-r1.ebuild: Clean up manpages in the same code path as they are installed, bug #485494. diff --git a/sys-apps/attr/attr-2.4.43.ebuild b/sys-apps/attr/attr-2.4.43.ebuild deleted file mode 100644 index b8fff96ba383..000000000000 --- a/sys-apps/attr/attr-2.4.43.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.43.ebuild,v 1.9 2011/05/16 20:34:44 vapier Exp $ - -inherit eutils autotools toolchain-funcs - -MY_P="${PN}_${PV}-1" -DESCRIPTION="Extended attributes tools" -HOMEPAGE="http://oss.sgi.com/projects/xfs/" -SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${MY_P}.tar.gz - ftp://xfs.org/mirror/SGI/cmd_tars/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="nls" - -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/autoconf" -RDEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-2.4.39-gettext.patch - epatch "${FILESDIR}"/${PN}-2.4.43-linguas.patch #205948 - epatch "${FILESDIR}"/${PN}-2.4.24-only-symlink-when-needed.patch - sed -i \ - -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \ - -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \ - include/builddefs.in \ - || die "failed to update builddefs" - # libtool will clobber install-sh which is really a custom file - mv install-sh acl.install-sh || die - AT_M4DIR="m4" eautoreconf - mv acl.install-sh install-sh || die - strip-linguas -u po -} - -src_compile() { - unset PLATFORM #184564 - export OPTIMIZER=${CFLAGS} - export DEBUG=-DNDEBUG - - econf \ - $(use_enable nls gettext) \ - --libexecdir=/usr/$(get_libdir) \ - --bindir=/bin \ - || die - emake || die -} - -src_install() { - emake DIST_ROOT="${D}" install install-lib install-dev || die - # the man-pages packages provides the man2 files - rm -r "${D}"/usr/share/man/man2 - prepalldocs - - # move shared libs to / - dodir /$(get_libdir) - mv "${D}"/usr/$(get_libdir)/libattr.so* "${D}"/$(get_libdir)/ || die - gen_usr_ldscript libattr.so -} diff --git a/sys-apps/attr/attr-2.4.44-r1.ebuild b/sys-apps/attr/attr-2.4.44-r1.ebuild deleted file mode 100644 index 67c4a3cf0b10..000000000000 --- a/sys-apps/attr/attr-2.4.44-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.44-r1.ebuild,v 1.2 2011/05/16 20:34:44 vapier Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs - -DESCRIPTION="Extended attributes tools" -HOMEPAGE="http://savannah.nongnu.org/projects/attr" -SRC_URI="mirror://nongnu/${PN}/${P}.src.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="nls static-libs" - -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/autoconf" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.4.44-gettext.patch - epatch "${FILESDIR}"/${P}-headers.patch - sed -i \ - -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \ - -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \ - include/builddefs.in \ - || die "failed to update builddefs" - strip-linguas -u po -} - -src_configure() { - unset PLATFORM #184564 - export OPTIMIZER=${CFLAGS} - export DEBUG=-DNDEBUG - - econf \ - $(use_enable nls gettext) \ - --enable-shared $(use_enable static-libs static) \ - --libexecdir=/usr/$(get_libdir) \ - --bindir=/bin -} - -src_install() { - emake DIST_ROOT="${D}" install install-lib install-dev || die - use static-libs || find "${D}" -name '*.la' -delete - # the man-pages packages provides the man2 files - rm -r "${D}"/usr/share/man/man2 - - # we install attr into /bin, so we need the shared lib with it - gen_usr_ldscript -a attr -} diff --git a/sys-apps/attr/attr-2.4.44.ebuild b/sys-apps/attr/attr-2.4.44.ebuild deleted file mode 100644 index 3d24e1f72dad..000000000000 --- a/sys-apps/attr/attr-2.4.44.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.44.ebuild,v 1.8 2011/05/16 20:34:44 vapier Exp $ - -EAPI="2" - -inherit eutils toolchain-funcs - -DESCRIPTION="Extended attributes tools" -HOMEPAGE="http://savannah.nongnu.org/projects/attr" -SRC_URI="mirror://nongnu/${PN}/${P}.src.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="nls" - -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/autoconf" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.4.44-gettext.patch - epatch "${FILESDIR}"/${P}-headers.patch - sed -i \ - -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \ - -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \ - include/builddefs.in \ - || die "failed to update builddefs" - strip-linguas -u po -} - -src_configure() { - unset PLATFORM #184564 - export OPTIMIZER=${CFLAGS} - export DEBUG=-DNDEBUG - - econf \ - $(use_enable nls gettext) \ - --libexecdir=/usr/$(get_libdir) \ - --bindir=/bin -} - -src_install() { - emake DIST_ROOT="${D}" install install-lib install-dev || die - # the man-pages packages provides the man2 files - rm -r "${D}"/usr/share/man/man2 - prepalldocs - - # we install attr into /bin, so we need the shared lib with it - gen_usr_ldscript -a attr -} diff --git a/sys-apps/attr/attr-2.4.46-r1.ebuild b/sys-apps/attr/attr-2.4.46-r1.ebuild deleted file mode 100644 index 456c43935fb8..000000000000 --- a/sys-apps/attr/attr-2.4.46-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.46-r1.ebuild,v 1.8 2013/02/19 04:56:16 zmedico Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs - -DESCRIPTION="Extended attributes tools" -HOMEPAGE="http://savannah.nongnu.org/projects/attr" -SRC_URI="mirror://nongnu/${PN}/${P}.src.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux" -IUSE="nls static-libs" - -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/autoconf" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.4.44-gettext.patch - epatch "${FILESDIR}"/${PN}-2.4.46-config-shell.patch #366671 - sed -i \ - -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \ - -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \ - include/builddefs.in \ - || die "failed to update builddefs" - strip-linguas -u po -} - -src_configure() { - unset PLATFORM #184564 - export OPTIMIZER=${CFLAGS} - export DEBUG=-DNDEBUG - - econf \ - $(use_enable nls gettext) \ - --enable-shared $(use_enable static-libs static) \ - --libexecdir="${EPREFIX}"/usr/$(get_libdir) \ - --bindir="${EPREFIX}"/bin -} - -src_install() { - emake DIST_ROOT="${D}" install install-lib install-dev || die - use static-libs || find "${D}" -name '*.la' -delete - # the man-pages packages provides the man2 files - rm -r "${ED}"/usr/share/man/man2 - - # we install attr into /bin, so we need the shared lib with it - gen_usr_ldscript -a attr -} diff --git a/sys-apps/attr/attr-2.4.46.ebuild b/sys-apps/attr/attr-2.4.46.ebuild deleted file mode 100644 index 9899b50f8925..000000000000 --- a/sys-apps/attr/attr-2.4.46.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.46.ebuild,v 1.10 2011/12/29 20:45:55 halcy0n Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs - -DESCRIPTION="Extended attributes tools" -HOMEPAGE="http://savannah.nongnu.org/projects/attr" -SRC_URI="mirror://nongnu/${PN}/${P}.src.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="nls static-libs" - -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/autoconf" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.4.44-gettext.patch - epatch "${FILESDIR}"/${PN}-2.4.46-config-shell.patch #366671 - sed -i \ - -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \ - -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \ - include/builddefs.in \ - || die "failed to update builddefs" - strip-linguas -u po -} - -src_configure() { - unset PLATFORM #184564 - export OPTIMIZER=${CFLAGS} - export DEBUG=-DNDEBUG - - econf \ - $(use_enable nls gettext) \ - --enable-shared $(use_enable static-libs static) \ - --libexecdir=/usr/$(get_libdir) \ - --bindir=/bin -} - -src_install() { - emake DIST_ROOT="${D}" install install-lib install-dev || die - use static-libs || find "${D}" -name '*.la' -delete - # the man-pages packages provides the man2 files - rm -r "${D}"/usr/share/man/man2 - - # we install attr into /bin, so we need the shared lib with it - gen_usr_ldscript -a attr -} diff --git a/sys-apps/attr/attr-2.4.47.ebuild b/sys-apps/attr/attr-2.4.47.ebuild deleted file mode 100644 index 649467b3e935..000000000000 --- a/sys-apps/attr/attr-2.4.47.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/attr/attr-2.4.47.ebuild,v 1.1 2013/05/20 18:43:16 vapier Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs - -DESCRIPTION="Extended attributes tools" -HOMEPAGE="http://savannah.nongnu.org/projects/attr" -SRC_URI="mirror://nongnu/${PN}/${P}.src.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux" -IUSE="nls static-libs" - -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/autoconf" -RDEPEND="" - -src_prepare() { - sed -i \ - -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \ - -e '/HAVE_ZIPPED_MANPAGES/s:=.*:=false:' \ - include/builddefs.in \ - || die - strip-linguas -u po -} - -src_configure() { - unset PLATFORM #184564 - export OPTIMIZER=${CFLAGS} - export DEBUG=-DNDEBUG - - econf \ - $(use_enable nls gettext) \ - --enable-shared $(use_enable static-libs static) \ - --libexecdir="${EPREFIX}"/usr/$(get_libdir) \ - --bindir="${EPREFIX}"/bin -} - -src_install() { - emake DIST_ROOT="${D}" install install-lib install-dev - use static-libs || find "${ED}" -name '*.la' -delete - # the man-pages packages provides the man2 files - rm -r "${ED}"/usr/share/man/man2 || die - - # we install attr into /bin, so we need the shared lib with it - gen_usr_ldscript -a attr -} diff --git a/sys-apps/attr/files/attr-2.4.24-only-symlink-when-needed.patch b/sys-apps/attr/files/attr-2.4.24-only-symlink-when-needed.patch deleted file mode 100644 index 387a08352e16..000000000000 --- a/sys-apps/attr/files/attr-2.4.24-only-symlink-when-needed.patch +++ /dev/null @@ -1,18 +0,0 @@ -We dont want to generate symlinks when the libdir is the same as the -devlibdir, otherwise we clobber the real files with broken symlinks - ---- include/buildmacros -+++ include/buildmacros -@@ -102,9 +102,11 @@ - ../$(INSTALL) -m 644 $(LIBNAME).lai $(PKG_DEVLIB_DIR)/$(LIBNAME).la ; \ - ../$(INSTALL) -m 755 -d $(PKG_LIB_DIR); \ - ../$(INSTALL) -T so_base $(LIBNAME).lai $(PKG_LIB_DIR); \ -+ if test "x$(PKG_DEVLIB_DIR)" != "x$(PKG_LIB_DIR)" ; then \ - ../$(INSTALL) -S $(PKG_DEVLIB_DIR)/$(LIBNAME).a $(PKG_LIB_DIR)/$(LIBNAME).a; \ - ../$(INSTALL) -S $(PKG_DEVLIB_DIR)/$(LIBNAME).la $(PKG_LIB_DIR)/$(LIBNAME).la; \ -- ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).so $(PKG_DEVLIB_DIR)/$(LIBNAME).so -+ ../$(INSTALL) -S $(PKG_LIB_DIR)/$(LIBNAME).so $(PKG_DEVLIB_DIR)/$(LIBNAME).so; \ -+ fi - else - INSTALL_LTLIB_DEV = $(INSTALL_LTLIB_STATIC) - endif diff --git a/sys-apps/attr/files/attr-2.4.39-gettext.patch b/sys-apps/attr/files/attr-2.4.39-gettext.patch deleted file mode 100644 index f2b5fc1bf0ac..000000000000 --- a/sys-apps/attr/files/attr-2.4.39-gettext.patch +++ /dev/null @@ -1,73 +0,0 @@ ---- m4/package_utilies.m4 -+++ m4/package_utilies.m4 -@@ -100,6 +100,7 @@ - xgettext=$XGETTEXT - AC_SUBST(xgettext) - AC_PACKAGE_NEED_UTILITY($1, "$xgettext", xgettext, gettext) -+ AC_DEFINE([ENABLE_GETTEXT], 1, [enable gettext]) - fi - - if test -z "$RPM"; then ---- include/gettext.h -+++ include/gettext.h -@@ -0,0 +1,10 @@ -+#include <config.h> -+#ifdef ENABLE_GETTEXT -+# include <libintl.h> -+# define _(x) gettext(x) -+#else -+# define _(x) (x) -+# define textdomain(d) do { } while (0) -+# define bindtextdomain(d,dir) do { } while (0) -+#endif -+#include <locale.h> ---- attr/attr.c -+++ attr/attr.c -@@ -26,6 +26,7 @@ - #include <errno.h> - #include <string.h> - #include <locale.h> -+#include "gettext.h" - - #include <attr/attributes.h> - #include "config.h" ---- libattr/attr_copy_file.c.orig 2007-09-20 02:51:37.000000000 -0400 -+++ libattr/attr_copy_file.c 2007-09-20 02:51:51.000000000 -0400 -@@ -19,6 +19,7 @@ - - #if defined (HAVE_CONFIG_H) - #include "config.h" -+#include "gettext.h" - #endif - - #include <sys/types.h> ---- libattr/attr_copy_fd.c.orig 2007-09-20 02:52:23.000000000 -0400 -+++ libattr/attr_copy_fd.c 2007-09-20 02:52:31.000000000 -0400 -@@ -19,6 +19,7 @@ - - #if defined (HAVE_CONFIG_H) - #include "config.h" -+#include "gettext.h" - #endif - - #include <sys/types.h> ---- getfattr/getfattr.c.orig 2007-09-20 02:52:49.000000000 -0400 -+++ getfattr/getfattr.c 2007-09-20 02:52:59.000000000 -0400 -@@ -30,6 +30,7 @@ - #include <regex.h> - #include <ftw.h> - #include <locale.h> -+#include "gettext.h" - - #include <attr/xattr.h> - #include "config.h" ---- setfattr/setfattr.c.orig 2007-09-20 02:53:12.000000000 -0400 -+++ setfattr/setfattr.c 2007-09-20 02:53:20.000000000 -0400 -@@ -28,6 +28,7 @@ - #include <getopt.h> - #include <locale.h> - #include <ctype.h> -+#include "gettext.h" - - #include <attr/xattr.h> - #include "config.h" diff --git a/sys-apps/attr/files/attr-2.4.43-linguas.patch b/sys-apps/attr/files/attr-2.4.43-linguas.patch deleted file mode 100644 index 4bf35b1c3f52..000000000000 --- a/sys-apps/attr/files/attr-2.4.43-linguas.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- po/Makefile -+++ po/Makefile -@@ -6,7 +6,7 @@ - include $(TOPDIR)/include/builddefs - - POTHEAD = $(PKG_NAME).pot --LINGUAS = cs de es fr gl nl pl sv -+LINGUAS ?= cs de es fr gl nl pl sv - LSRCFILES = $(LINGUAS:%=%.po) $(POTHEAD) - LDIRT = $(POTHEAD) - diff --git a/sys-apps/attr/files/attr-2.4.44-headers.patch b/sys-apps/attr/files/attr-2.4.44-headers.patch deleted file mode 100644 index 9d97fd3ad3c7..000000000000 --- a/sys-apps/attr/files/attr-2.4.44-headers.patch +++ /dev/null @@ -1,12 +0,0 @@ -needs string.h for strchr() - ---- attr/libmisc/quote.c -+++ attr/libmisc/quote.c -@@ -19,6 +19,7 @@ - - #include <stdio.h> - #include <stdlib.h> -+#include <string.h> - #include <ctype.h> - #include "misc.h" - |