# HG changeset patch # User Nathan Phillip Brink # Date 2010-06-28 00:38:06 # Node ID ad659a41390b924b3ece7863760022ec35f6065e # Parent 465bebc5372c13ab0abe3fecf3691b4c246a06ac dev-libs/liblist: in portage diff --git a/dev-libs/liblist/ChangeLog b/dev-libs/liblist/ChangeLog deleted file mode 100644 --- a/dev-libs/liblist/ChangeLog +++ /dev/null @@ -1,46 +0,0 @@ -# ChangeLog for dev-libs/liblist -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/ChangeLog,v 1.2 2009/12/05 22:32:30 nerdboy Exp $ - - 09 Jan 2010; Nathan Phillip Brink (ohnobinki) - liblist-2.2.1.ebuild: - Add ~ppc - -*liblist-2.2.1 (29 Dec 2009) - - 29 Dec 2009; Nathan Phillip Brink (ohnobinki) - +liblist-2.2.1.ebuild: - Added liblist-2.2.1, the first worthwhile release. - - 29 Dec 2009; Nathan Phillip Brink (ohnobinki) - liblist-9999.ebuild, - -files/liblist-9999-sharedlib.patch: - Simplified and compatible with newer Mercurial (Remove patch, let - autotools install files). Fixed HOMEPAGE URL. - - 23 Dec 2009; Nathan Phillip Brink (ohnobinki) - liblist-9999.ebuild: - Fix installation of the cache manpage. - - 23 Dec 2009; Nathan Phillip Brink (ohnobinki) - -liblist-2.1.ebuild, - -liblist-2.1-r1.ebuild, -files/liblist-2.1-sharedlib.patch, - +liblist-9999.ebuild, +files/liblist-9999-sharedlib.patch: - Added live ebuild -- removed in-portage ebuilds. Fixed dynamic lib patch - to work with the mercurial version. - -*liblist-2.1-r1 (05 Dec 2009) - - 05 Dec 2009; Steve Arnold +liblist-2.1-r1.ebuild, - +files/liblist-2.1-sharedlib.patch: - Lemony-fresh rev-bump, now with shared library support. Closes bug #294788. - Manifest issue also fixed (closes bug #294785). - -*liblist-2.1 (20 Apr 2009) - - 20 Apr 2009; Steve Arnold +metadata.xml, - +liblist-2.1.ebuild: - New ebuild for a generic list library, a required dependency for ferret. - Updated source code hosted by me (no upstream URL anymore). Comes with - a nice technical paper and example routines. - diff --git a/dev-libs/liblist/Manifest b/dev-libs/liblist/Manifest deleted file mode 100644 --- a/dev-libs/liblist/Manifest +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -DIST liblist-2.3.1.tar.bz2 257253 RMD160 f42ea23c7a6ba46e8361e3c3fb06852308abc212 SHA1 377bb4a18ab04eae938265226c9d73ac24bb0876 SHA256 a956e9c48a5aadecafdc3916eacf2b6cff1eb23e1c40a3119bba2f2a1b4d82a3 -EBUILD liblist-2.3.1.ebuild 1359 RMD160 a042064ab3ed2b4a9ae84357102e605abcf281d1 SHA1 30233374929ae6aee348752202dd33f1e17e0856 SHA256 5c0d1a2414a369b23e2eb8e0d5fb747ebf3d1ada8c465aa292ac79ce4287695b -EBUILD liblist-9999.ebuild 1231 RMD160 7a98a5ee9f636b08c2f14d49781da63535015c3a SHA1 682a874f9495d01e2adac08cf1c39558fd7c59b1 SHA256 605219a0f4e05d57914795cbfba6e8694d106a7877b31ece00c86a6bc56cb3eb -MISC ChangeLog 1833 RMD160 b3d15c3bb30db187c0f25a661ff128e643adec67 SHA1 1b82bf2a103822037a003192a5b79729a621c2a8 SHA256 47d3dae709a4624fcef8eea971d436d6c4843d39fe257d0180e96e3a68eb4758 -MISC metadata.xml 473 RMD160 97667dfa400a624c3ba66fbaefa5bb5bf592c485 SHA1 8ab2e330cbc7993d95c0492ae14540ab5e0177ac SHA256 197f1543dd37a80c8de5ee4083d4eb659c8be038483895e11225c68e93da11f1 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.14 (GNU/Linux) - -iEYEARECAAYFAkwAwOkACgkQni8M22OVw8CFowCgqTOQfPQrzeyIhkoKthrYMihc -xfEAn3tRlckNduFPAcDU50sMS6hEcb9b -=puqp ------END PGP SIGNATURE----- diff --git a/dev-libs/liblist/liblist-2.3.1.ebuild b/dev-libs/liblist/liblist-2.3.1.ebuild deleted file mode 100644 --- a/dev-libs/liblist/liblist-2.3.1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/liblist-2.1-r1.ebuild,v 1.1 2009/12/05 22:32:30 nerdboy Exp $ - -EAPI=2 - -inherit multilib - -DESCRIPTION="This package provides generic linked-list manipulation routines, plus queues and stacks" -HOMEPAGE="http://ohnopub.net/liblist" -SRC_URI="ftp://ohnopublishing.net/mirror/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="doc examples static-libs" - -src_configure() { - econf $(use_enable doc docs) \ - $(use_enable examples) \ - $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc README || die - - if use examples; then - insinto /usr/share/doc/${P}/examples - doins examples/{*.c,Makefile,README} || die - insinto /usr/share/doc/${P}/examples/cache - doins examples/cache/{*.c,README} || die - fi - - if ! use static-libs; then - rm -v "${D}"/usr/$(get_libdir)/liblist.la || die - if use examples; then - rm -v "${D}"/usr/$(get_libdir)/libcache.la || die - fi - fi -} - -pkg_postinst() { - elog "Note the man pages for this package have been renamed to avoid" - elog "name collisions with some system functions, however, the libs" - elog "and header files have not been changed." - elog "The new names are llist, lcache, lqueue, and lstack." -} diff --git a/dev-libs/liblist/liblist-9999.ebuild b/dev-libs/liblist/liblist-9999.ebuild deleted file mode 100644 --- a/dev-libs/liblist/liblist-9999.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/liblist-2.1-r1.ebuild,v 1.1 2009/12/05 22:32:30 nerdboy Exp $ - -EAPI="2" - -inherit autotools mercurial - -DESCRIPTION="This package provides generic linked-list manipulation routines, plus queues and stacks." -HOMEPAGE="http://ohnopub.net/hg/liblist-unbased" -SRC_URI="" -EHG_REPO_URI="http://ohnopub.net/hg/liblist-unbased" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="doc examples" - -S=${WORKDIR}/${PN}-unbased - -src_prepare() { - eautoreconf -} - -src_configure() { - econf $(use_enable doc docs) \ - $(use_enable examples) -} - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc README || die - - if use examples; then - insinto /usr/share/doc/${P}/examples - doins examples/{*.c,Makefile,README} || die - insinto /usr/share/doc/${P}/examples/cache - doins examples/cache/{*.c,Makefile,README} || die - fi -} - -pkg_postinst() { - elog "Note the man pages for this package have been renamed to avoid" - elog "name collisions with some system functions, however, the libs" - elog "and header files have not been changed." - elog "The new names are llist, lcache, lqueue, and lstack." -} diff --git a/dev-libs/liblist/metadata.xml b/dev-libs/liblist/metadata.xml deleted file mode 100644 --- a/dev-libs/liblist/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - dev-tools - - nerdboy@gentoo.org - Primary maintainer - - - This package provides generic linked-list manipulation routines. In addition, - queue and stack abstractions are provided by single header files. - -