diff options
author | 2011-08-15 14:48:40 +0000 | |
---|---|---|
committer | 2011-08-15 14:48:40 +0000 | |
commit | 9fc05b5c4d45e4e25b02a85c01ad7be37a4573f5 (patch) | |
tree | 6e8189c42ebb4bf9a254d19ef219d6101ac289c7 /app-arch | |
parent | Bump for #260823 (diff) | |
download | gentoo-2-9fc05b5c4d45e4e25b02a85c01ad7be37a4573f5.tar.gz gentoo-2-9fc05b5c4d45e4e25b02a85c01ad7be37a4573f5.tar.bz2 gentoo-2-9fc05b5c4d45e4e25b02a85c01ad7be37a4573f5.zip |
Remove old versions.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/lbzip2/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/lbzip2/files/0.20-Makefile.patch | 45 | ||||
-rw-r--r-- | app-arch/lbzip2/files/0.22-Makefile.patch | 45 | ||||
-rw-r--r-- | app-arch/lbzip2/lbzip2-0.20.ebuild | 57 | ||||
-rw-r--r-- | app-arch/lbzip2/lbzip2-0.22.ebuild | 57 | ||||
-rw-r--r-- | app-arch/lbzip2/lbzip2-0.23-r1.ebuild | 59 | ||||
-rw-r--r-- | app-arch/lbzip2/lbzip2-0.23-r2.ebuild | 4 | ||||
-rw-r--r-- | app-arch/lbzip2/lbzip2-0.23.ebuild | 58 |
8 files changed, 8 insertions, 324 deletions
diff --git a/app-arch/lbzip2/ChangeLog b/app-arch/lbzip2/ChangeLog index d97b78dacbfe..222e35b4dc2b 100644 --- a/app-arch/lbzip2/ChangeLog +++ b/app-arch/lbzip2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/lbzip2 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/lbzip2/ChangeLog,v 1.17 2011/08/14 23:35:13 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lbzip2/ChangeLog,v 1.18 2011/08/15 14:48:39 mattst88 Exp $ + + 15 Aug 2011; Matt Turner <mattst88@gentoo.org> -files/0.20-Makefile.patch, + -lbzip2-0.20.ebuild, -lbzip2-0.22.ebuild, -lbzip2-0.23.ebuild, + -lbzip2-0.23-r1.ebuild, -files/0.22-Makefile.patch, lbzip2-0.23-r2.ebuild: + Remove old versions. 14 Aug 2011; Matt Turner <mattst88@gentoo.org> +files/0.23-test.sh.patch, lbzip2-0.23-r2.ebuild: diff --git a/app-arch/lbzip2/files/0.20-Makefile.patch b/app-arch/lbzip2/files/0.20-Makefile.patch deleted file mode 100644 index 19f86380e5dd..000000000000 --- a/app-arch/lbzip2/files/0.20-Makefile.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- Makefile 2009-04-04 00:33:49.000000000 +0200 -+++ Makefile.new 2009-04-15 21:12:02.886390550 +0200 -@@ -1,34 +1,27 @@ - # Makefile,v 1.9 2009-04-03 22:33:49 lacos Exp - .POSIX: - --CC=gcc --CFLAGS=$$($(SHELL) lfs.sh CFLAGS) -D _XOPEN_SOURCE=500 -pipe -ansi -pedantic \ -- -O2 -- -- -- -- --LDFLAGS=-s $$($(SHELL) lfs.sh LDFLAGS) --LIBS=-l pthread -l bz2 $$($(SHELL) lfs.sh LIBS) -+CFLAGS += -D _XOPEN_SOURCE=500 -+LIBS=-lpthread -lbz2 - - lbzip2: main.o lbzip2.o lbunzip2.o lbunzip2_single.o lacos_rbtree.o -- $(CC) -o lbzip2 $(LDFLAGS) main.o lbzip2.o lbunzip2.o \ -+ $(CC) $(CPPFLAGS) $(LDFLAGS) -o lbzip2 main.o lbzip2.o lbunzip2.o \ - lbunzip2_single.o lacos_rbtree.o $(LIBS) - - main.o: main.c main.h lbunzip2_single.h lbunzip2.h lbzip2.h -- $(CC) $(CFLAGS) -c main.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c main.c - - lbzip2.o: lbzip2.c main.h lbzip2.h lacos_rbtree.h -- $(CC) $(CFLAGS) -c lbzip2.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lbzip2.c - - lbunzip2.o: lbunzip2.c main.h lbunzip2.h lacos_rbtree.h -- $(CC) $(CFLAGS) -c lbunzip2.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lbunzip2.c - - lbunzip2_single.o: lbunzip2_single.c main.h lbunzip2_single.h -- $(CC) $(CFLAGS) -c lbunzip2_single.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lbunzip2_single.c - - lacos_rbtree.o: lacos_rbtree.c lacos_rbtree.h -- $(CC) $(CFLAGS) -c lacos_rbtree.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lacos_rbtree.c - - clean: - rm -f lbzip2 main.o lbzip2.o lbunzip2.o lbunzip2_single.o \ diff --git a/app-arch/lbzip2/files/0.22-Makefile.patch b/app-arch/lbzip2/files/0.22-Makefile.patch deleted file mode 100644 index 19f86380e5dd..000000000000 --- a/app-arch/lbzip2/files/0.22-Makefile.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- Makefile 2009-04-04 00:33:49.000000000 +0200 -+++ Makefile.new 2009-04-15 21:12:02.886390550 +0200 -@@ -1,34 +1,27 @@ - # Makefile,v 1.9 2009-04-03 22:33:49 lacos Exp - .POSIX: - --CC=gcc --CFLAGS=$$($(SHELL) lfs.sh CFLAGS) -D _XOPEN_SOURCE=500 -pipe -ansi -pedantic \ -- -O2 -- -- -- -- --LDFLAGS=-s $$($(SHELL) lfs.sh LDFLAGS) --LIBS=-l pthread -l bz2 $$($(SHELL) lfs.sh LIBS) -+CFLAGS += -D _XOPEN_SOURCE=500 -+LIBS=-lpthread -lbz2 - - lbzip2: main.o lbzip2.o lbunzip2.o lbunzip2_single.o lacos_rbtree.o -- $(CC) -o lbzip2 $(LDFLAGS) main.o lbzip2.o lbunzip2.o \ -+ $(CC) $(CPPFLAGS) $(LDFLAGS) -o lbzip2 main.o lbzip2.o lbunzip2.o \ - lbunzip2_single.o lacos_rbtree.o $(LIBS) - - main.o: main.c main.h lbunzip2_single.h lbunzip2.h lbzip2.h -- $(CC) $(CFLAGS) -c main.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c main.c - - lbzip2.o: lbzip2.c main.h lbzip2.h lacos_rbtree.h -- $(CC) $(CFLAGS) -c lbzip2.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lbzip2.c - - lbunzip2.o: lbunzip2.c main.h lbunzip2.h lacos_rbtree.h -- $(CC) $(CFLAGS) -c lbunzip2.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lbunzip2.c - - lbunzip2_single.o: lbunzip2_single.c main.h lbunzip2_single.h -- $(CC) $(CFLAGS) -c lbunzip2_single.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lbunzip2_single.c - - lacos_rbtree.o: lacos_rbtree.c lacos_rbtree.h -- $(CC) $(CFLAGS) -c lacos_rbtree.c -+ $(CC) $(CFLAGS) $(CPPFLAGS) -c lacos_rbtree.c - - clean: - rm -f lbzip2 main.o lbzip2.o lbunzip2.o lbunzip2_single.o \ diff --git a/app-arch/lbzip2/lbzip2-0.20.ebuild b/app-arch/lbzip2/lbzip2-0.20.ebuild deleted file mode 100644 index 00b50fcbed9c..000000000000 --- a/app-arch/lbzip2/lbzip2-0.20.ebuild +++ /dev/null @@ -1,57 +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/lbzip2/lbzip2-0.20.ebuild,v 1.3 2011/06/10 07:19:46 jlec Exp $ - -EAPI="3" - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="Parallel bzip2 utility" -HOMEPAGE="http://lacos.hu/" -SRC_URI="http://lacos.web.elte.hu/pub/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="symlink test" - -RDEPEND="app-arch/bzip2" -DEPEND="${REDEPEND} - test? ( - app-shells/dash - sys-process/time - )" - -S=${WORKDIR}/${PN} - -src_prepare() { - epatch "${FILESDIR}"/${PV}-Makefile.patch -} - -src_compile() { - append-lfs-flags - emake CC=$(tc-getCC) || die "emake failed" -} - -src_test() { - if [ -t 0 ] || return; then - rm -rf "${T}/scratch" "${T}/results" "${T}/rnd" - hexdump -n 10485760 /dev/urandom > "${T}/rnd" - emake -j1 SHELL="${EPREFIX}"/bin/dash PATH="${S}:${PATH}" TESTFILE="${T}/rnd" check \ - || die "make check failed" - else - ewarn "make check must be run attached to a terminal" - fi -} - -src_install() { - dobin ${PN} || die "Installation of ${PN} failed" - dodoc ChangeLog README || die "no docs" - doman ${PN}.1 || die "no man" - insinto /usr/share/${PN} - doins corr-perf.sh malloc_trace.pl || die - - if use symlink; then - dosym ${PN} /usr/bin/bzip2 || die - fi -} diff --git a/app-arch/lbzip2/lbzip2-0.22.ebuild b/app-arch/lbzip2/lbzip2-0.22.ebuild deleted file mode 100644 index 61d675415761..000000000000 --- a/app-arch/lbzip2/lbzip2-0.22.ebuild +++ /dev/null @@ -1,57 +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/lbzip2/lbzip2-0.22.ebuild,v 1.3 2011/06/10 07:19:46 jlec Exp $ - -EAPI="3" - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="Parallel bzip2 utility" -HOMEPAGE="http://lacos.hu/" -SRC_URI="http://lacos.web.elte.hu/pub/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="symlink test" - -RDEPEND="app-arch/bzip2" -DEPEND="${REDEPEND} - test? ( - app-shells/dash - sys-process/time - )" - -S=${WORKDIR}/${PN} - -src_prepare() { - epatch "${FILESDIR}"/${PV}-Makefile.patch -} - -src_compile() { - append-lfs-flags - emake CC=$(tc-getCC) || die "emake failed" -} - -src_test() { - if [ -t 0 ] || return; then - rm -rf "${T}/scratch" "${T}/results" "${T}/rnd" - hexdump -n 10485760 /dev/urandom > "${T}/rnd" - emake -j1 SHELL="${EPREFIX}"/bin/dash PATH="${S}:${PATH}" TESTFILE="${T}/rnd" check \ - || die "make check failed" - else - ewarn "make check must be run attached to a terminal" - fi -} - -src_install() { - dobin ${PN} || die "Installation of ${PN} failed" - dodoc ChangeLog README || die "no docs" - doman ${PN}.1 || die "no man" - insinto /usr/share/${PN} - doins corr-perf.sh malloc_trace.pl || die - - if use symlink; then - dosym ${PN} /usr/bin/bzip2 || die - fi -} diff --git a/app-arch/lbzip2/lbzip2-0.23-r1.ebuild b/app-arch/lbzip2/lbzip2-0.23-r1.ebuild deleted file mode 100644 index caea9b7cdb55..000000000000 --- a/app-arch/lbzip2/lbzip2-0.23-r1.ebuild +++ /dev/null @@ -1,59 +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/lbzip2/lbzip2-0.23-r1.ebuild,v 1.9 2011/07/10 17:34:39 armin76 Exp $ - -EAPI="3" - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="Parallel bzip2 utility" -HOMEPAGE="http://lacos.hu/" -SRC_URI="http://lacos.web.elte.hu/pub/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="symlink test" - -RDEPEND="app-arch/bzip2" -DEPEND="${REDEPEND} - test? ( - app-shells/dash - sys-devel/bc - sys-process/time - )" - -S=${WORKDIR}/${PN} - -src_prepare() { - epatch "${FILESDIR}"/${PV}-s_isreg.patch - epatch "${FILESDIR}"/0.22-Makefile.patch -} - -src_compile() { - append-lfs-flags - emake CC=$(tc-getCC) || die "emake failed" -} - -src_test() { - if [ -t 0 ] || return; then - rm -rf "${T}/scratch" "${T}/results" "${T}/rnd" - hexdump -n 10485760 /dev/urandom > "${T}/rnd" - emake -j1 SHELL="${EPREFIX}"/bin/dash PATH="${S}:${PATH}" TESTFILE="${T}/rnd" check \ - || die "make check failed" - else - ewarn "make check must be run attached to a terminal" - fi -} - -src_install() { - dobin ${PN} || die "Installation of ${PN} failed" - dodoc ChangeLog README || die "no docs" - doman ${PN}.1 || die "no man" - insinto /usr/share/${PN} - doins corr-perf.sh malloc_trace.pl || die - - if use symlink; then - dosym ${PN} /usr/bin/bzip2 || die - fi -} diff --git a/app-arch/lbzip2/lbzip2-0.23-r2.ebuild b/app-arch/lbzip2/lbzip2-0.23-r2.ebuild index ea3f51cb17ca..f3f0ed9134cd 100644 --- a/app-arch/lbzip2/lbzip2-0.23-r2.ebuild +++ b/app-arch/lbzip2/lbzip2-0.23-r2.ebuild @@ -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/app-arch/lbzip2/lbzip2-0.23-r2.ebuild,v 1.2 2011/08/14 23:35:13 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/lbzip2/lbzip2-0.23-r2.ebuild,v 1.3 2011/08/15 14:48:39 mattst88 Exp $ EAPI="3" @@ -26,7 +26,7 @@ DEPEND="${REDEPEND} S=${WORKDIR}/${PN} src_prepare() { - epatch "${FILESDIR}"/${PV}-s_isreg.patch + epatch "${FILESDIR}"/0.23-s_isreg.patch epatch "${FILESDIR}"/0.23-Makefile.patch epatch "${FILESDIR}"/0.23-test.sh.patch } diff --git a/app-arch/lbzip2/lbzip2-0.23.ebuild b/app-arch/lbzip2/lbzip2-0.23.ebuild deleted file mode 100644 index 6ecdb782fd6d..000000000000 --- a/app-arch/lbzip2/lbzip2-0.23.ebuild +++ /dev/null @@ -1,58 +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/lbzip2/lbzip2-0.23.ebuild,v 1.3 2011/06/10 07:19:46 jlec Exp $ - -EAPI="3" - -inherit eutils flag-o-matic toolchain-funcs - -DESCRIPTION="Parallel bzip2 utility" -HOMEPAGE="http://lacos.hu/" -SRC_URI="http://lacos.web.elte.hu/pub/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="symlink test" - -RDEPEND="app-arch/bzip2" -DEPEND="${REDEPEND} - test? ( - app-shells/dash - sys-process/time - )" - -S=${WORKDIR}/${PN} - -src_prepare() { -# epatch "${FILESDIR}"/${PV}-Makefile.patch - epatch "${FILESDIR}"/0.22-Makefile.patch -} - -src_compile() { - append-lfs-flags - emake CC=$(tc-getCC) || die "emake failed" -} - -src_test() { - if [ -t 0 ] || return; then - rm -rf "${T}/scratch" "${T}/results" "${T}/rnd" - hexdump -n 10485760 /dev/urandom > "${T}/rnd" - emake -j1 SHELL="${EPREFIX}"/bin/dash PATH="${S}:${PATH}" TESTFILE="${T}/rnd" check \ - || die "make check failed" - else - ewarn "make check must be run attached to a terminal" - fi -} - -src_install() { - dobin ${PN} || die "Installation of ${PN} failed" - dodoc ChangeLog README || die "no docs" - doman ${PN}.1 || die "no man" - insinto /usr/share/${PN} - doins corr-perf.sh malloc_trace.pl || die - - if use symlink; then - dosym ${PN} /usr/bin/bzip2 || die - fi -} |