diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-02-23 04:34:11 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-02-23 04:34:11 +0000 |
commit | 342391fba3cbadc0ff0c66a82e8fae45afce2972 (patch) | |
tree | 303ae76d133f16623725c9c64ed453d857bdd8fc /app-arch/tardy | |
parent | Restricting jython (diff) | |
download | gentoo-2-342391fba3cbadc0ff0c66a82e8fae45afce2972.tar.gz gentoo-2-342391fba3cbadc0ff0c66a82e8fae45afce2972.tar.bz2 gentoo-2-342391fba3cbadc0ff0c66a82e8fae45afce2972.zip |
Remove old.
(Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/tardy')
-rw-r--r-- | app-arch/tardy/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/tardy/files/tardy-1.16-gcc43.patch | 11 | ||||
-rw-r--r-- | app-arch/tardy/files/tardy-1.17-glibc-2.10.patch | 42 | ||||
-rw-r--r-- | app-arch/tardy/tardy-1.16.ebuild | 30 | ||||
-rw-r--r-- | app-arch/tardy/tardy-1.17-r1.ebuild | 36 | ||||
-rw-r--r-- | app-arch/tardy/tardy-1.23.ebuild | 33 | ||||
-rw-r--r-- | app-arch/tardy/tardy-1.24.ebuild | 33 |
7 files changed, 7 insertions, 187 deletions
diff --git a/app-arch/tardy/ChangeLog b/app-arch/tardy/ChangeLog index b1c52c8f7041..3a79ffaf6c67 100644 --- a/app-arch/tardy/ChangeLog +++ b/app-arch/tardy/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/tardy -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/ChangeLog,v 1.17 2011/11/22 17:43:47 pacho Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/ChangeLog,v 1.18 2012/02/23 04:34:10 radhermit Exp $ + + 23 Feb 2012; Tim Harder <radhermit@gentoo.org> -tardy-1.16.ebuild, + -files/tardy-1.16-gcc43.patch, -tardy-1.17-r1.ebuild, + -files/tardy-1.17-glibc-2.10.patch, -tardy-1.23.ebuild, -tardy-1.24.ebuild: + Remove old. 22 Nov 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, bug #82110 diff --git a/app-arch/tardy/files/tardy-1.16-gcc43.patch b/app-arch/tardy/files/tardy-1.16-gcc43.patch deleted file mode 100644 index 2801f15ba916..000000000000 --- a/app-arch/tardy/files/tardy-1.16-gcc43.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff --exclude='*~' -Naur tardy-1.16.orig/common/filenamelist/filter/progress.cc tardy-1.16/common/filenamelist/filter/progress.cc ---- tardy-1.16.orig/common/filenamelist/filter/progress.cc 2008-04-28 22:54:43.000000000 +0000 -+++ tardy-1.16/common/filenamelist/filter/progress.cc 2008-06-22 15:14:33.000000000 +0000 -@@ -23,6 +23,7 @@ - #include <ac/unistd.h> - #include <ac/sys/types.h> - #include <ac/sys/stat.h> -+#include <string.h> - - #include <filenamelist/filter/progress.h> - diff --git a/app-arch/tardy/files/tardy-1.17-glibc-2.10.patch b/app-arch/tardy/files/tardy-1.17-glibc-2.10.patch deleted file mode 100644 index 11a0b88258cc..000000000000 --- a/app-arch/tardy/files/tardy-1.17-glibc-2.10.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff -ur tardy-1.17.orig/common/arglex.cc tardy-1.17/common/arglex.cc ---- tardy-1.17.orig/common/arglex.cc 2008-06-23 05:50:02.000000000 +0300 -+++ tardy-1.17/common/arglex.cc 2009-08-09 19:46:21.000000000 +0300 -@@ -418,7 +418,7 @@ - { - char *eqp; - -- eqp = strchr(arg, '='); -+ eqp = const_cast<char*> (strchr(arg, '=')); - if (eqp) - { - pushback = eqp + 1; -diff -ur tardy-1.17.orig/common/trace.cc tardy-1.17/common/trace.cc ---- tardy-1.17.orig/common/trace.cc 2008-06-23 05:50:02.000000000 +0300 -+++ tardy-1.17/common/trace.cc 2009-08-09 19:48:36.000000000 +0300 -@@ -256,7 +256,7 @@ - trace_printf("%s = '", name); - if (*vp < ' ' || *vp > '~' || strchr("(){}[]", *vp)) - { -- char *s; -+ const char *s; - - s = strchr("\bb\nn\tt\rr\ff", *vp); - if (s) -@@ -283,7 +283,7 @@ - trace_printf("%s = '", name); - if (*vp < ' ' || *vp > '~' || strchr("(){}[]", *vp)) - { -- char *s; -+ const char *s; - - s = strchr("\bb\nn\tt\rr\ff", *vp); - if (s) -@@ -400,7 +400,7 @@ - c = *s; - if (c < ' ' || c > '~') - { -- char *cp; -+ const char *cp; - - cp = strchr("\bb\ff\nn\rr\tt", c); - if (cp) diff --git a/app-arch/tardy/tardy-1.16.ebuild b/app-arch/tardy/tardy-1.16.ebuild deleted file mode 100644 index f11df63aca50..000000000000 --- a/app-arch/tardy/tardy-1.16.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/tardy-1.16.ebuild,v 1.2 2011/10/12 01:59:02 jer Exp $ - -inherit eutils - -DESCRIPTION="A tar post-processor" -HOMEPAGE="http://tardy.sourceforge.net/" -SRC_URI="mirror://sourceforge/tardy/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i '/^CFLAGS/d' Makefile.in - epatch "${FILESDIR}"/${PN}-1.16-gcc43.patch -} - -src_test() { - make sure || die "test failed" -} - -src_install() { - make RPM_BUILD_ROOT="${D}" install || die "make install failed" - dodoc README -} diff --git a/app-arch/tardy/tardy-1.17-r1.ebuild b/app-arch/tardy/tardy-1.17-r1.ebuild deleted file mode 100644 index babc5be38a49..000000000000 --- a/app-arch/tardy/tardy-1.17-r1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/tardy-1.17-r1.ebuild,v 1.2 2011/10/12 01:59:02 jer Exp $ - -inherit eutils - -DESCRIPTION="A tar post-processor" -HOMEPAGE="http://tardy.sourceforge.net/" -SRC_URI="mirror://sourceforge/tardy/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i \ - -e '/^CFLAGS/d' \ - -e '/^LDFLAGS =/d' \ - -e 's/$(CXX) $(CFLAGS)/$(CXX) $(CXXFLAGS) -o $@/' \ - -e '/mv \(.*\)\.o \(.*\)\/\1\.o/d' \ - -e '/@sleep 1/d' \ - Makefile.in || die - epatch "${FILESDIR}"/${P}-glibc-2.10.patch -} - -src_test() { - make sure || die "test failed" -} - -src_install() { - make RPM_BUILD_ROOT="${D}" install || die "make install failed" - dodoc README -} diff --git a/app-arch/tardy/tardy-1.23.ebuild b/app-arch/tardy/tardy-1.23.ebuild deleted file mode 100644 index 49c0eca7d92b..000000000000 --- a/app-arch/tardy/tardy-1.23.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/tardy-1.23.ebuild,v 1.1 2011/09/10 10:06:35 radhermit Exp $ - -EAPI="4" - -inherit toolchain-funcs - -DESCRIPTION="A tar post-processor" -HOMEPAGE="http://tardy.sourceforge.net/" -SRC_URI="mirror://sourceforge/tardy/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="dev-libs/libexplain - sys-libs/zlib" -DEPEND="${RDEPEND}" - -src_prepare() { - sed -i \ - -e 's/$(CXX) .* $(CXXFLAGS) -I./\0 -o $@/' \ - -e '/mv \(.*\)\.o \(.*\)\/\1\.o/d' \ - -e '/@sleep 1/d' \ - -e 's#^\(install-man: $(mandir)/man1/tardy.1\).*#\1#' \ - Makefile.in || die -} - -src_compile() { - emake AR="$(tc-getAR)" -} diff --git a/app-arch/tardy/tardy-1.24.ebuild b/app-arch/tardy/tardy-1.24.ebuild deleted file mode 100644 index 48277e2cc89f..000000000000 --- a/app-arch/tardy/tardy-1.24.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tardy/tardy-1.24.ebuild,v 1.1 2011/10/04 03:36:39 radhermit Exp $ - -EAPI="4" - -inherit toolchain-funcs - -DESCRIPTION="A tar post-processor" -HOMEPAGE="http://tardy.sourceforge.net/" -SRC_URI="mirror://sourceforge/tardy/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="dev-libs/libexplain - sys-libs/zlib" -DEPEND="${RDEPEND}" - -src_prepare() { - sed -i \ - -e 's/$(CXX) .* $(CXXFLAGS) -I./\0 -o $@/' \ - -e '/mv \(.*\)\.o \(.*\)\/\1\.o/d' \ - -e '/@sleep 1/d' \ - -e 's#^\(install-man: $(mandir)/man1/tardy.1\).*#\1#' \ - Makefile.in || die -} - -src_compile() { - emake AR="$(tc-getAR)" -} |