diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-12-19 15:50:12 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-12-19 15:50:12 +0000 |
commit | 31da2c7bb13f12deea26c1415c783520f867305a (patch) | |
tree | af59aed535d71a020ee45616ebd79cd40e0b8332 /app-portage | |
parent | Version bump per bug #295160. Drop not-required ebuilds. (diff) | |
download | gentoo-2-31da2c7bb13f12deea26c1415c783520f867305a.tar.gz gentoo-2-31da2c7bb13f12deea26c1415c783520f867305a.tar.bz2 gentoo-2-31da2c7bb13f12deea26c1415c783520f867305a.zip |
Version bump with minor bug fixes and enhancements. Ebuild by Martin Väth
(Portage version: 2.1.7.14/cvs/Linux x86_64)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/eix/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/eix/eix-0.17.1.ebuild | 77 | ||||
-rw-r--r-- | app-portage/eix/eix-0.18.2.ebuild | 75 | ||||
-rw-r--r-- | app-portage/eix/eix-0.19.1.ebuild (renamed from app-portage/eix/eix-0.18.3.ebuild) | 20 |
4 files changed, 12 insertions, 168 deletions
diff --git a/app-portage/eix/ChangeLog b/app-portage/eix/ChangeLog index e7bbe7db54ef..4a729a404502 100644 --- a/app-portage/eix/ChangeLog +++ b/app-portage/eix/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/eix # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.313 2009/12/03 12:41:41 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.314 2009/12/19 15:50:12 darkside Exp $ + +*eix-0.19.1 (19 Dec 2009) + + 19 Dec 2009; Jeremy Olexa <darkside@gentoo.org> -eix-0.17.1.ebuild, + -eix-0.18.2.ebuild, -eix-0.18.3.ebuild, +eix-0.19.1.ebuild: + Version bump with minor bug fixes and enhancements. Ebuild by Martin Väth *eix-0.19.0-r1 (02 Dec 2009) diff --git a/app-portage/eix/eix-0.17.1.ebuild b/app-portage/eix/eix-0.17.1.ebuild deleted file mode 100644 index 3ab0905f7e9e..000000000000 --- a/app-portage/eix/eix-0.17.1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.17.1.ebuild,v 1.1 2009/09/08 15:40:46 darkside Exp $ - -EAPI="2" - -inherit multilib - -DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more" -HOMEPAGE="http://eix.sourceforge.net" -SRC_URI="mirror://sourceforge/eix/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" -IUSE="+bzip2 +deprecated doc nls sqlite tools" - -RDEPEND="sqlite? ( >=dev-db/sqlite-3 ) - nls? ( virtual/libintl ) - bzip2? ( app-arch/bzip2 )" -DEPEND="${RDEPEND} - app-arch/xz-utils - doc? ( dev-python/docutils ) - nls? ( sys-devel/gettext )" - -src_unpack() { - local i s - for i in ${A} - do - s="${DISTDIR%/}/${i}" - einfo "Unpacking ${s} to ${PWD}" - test -s "${s}" || die "${s} does not exist" - xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" - done -} - -src_configure() { - econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \ - $(use_enable nls) $(use_enable tools separate-tools) \ - --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \ - --with-portage-rootpath="${ROOTPATH}" \ - $(use_enable deprecated obsolete-reminder) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc AUTHORS ChangeLog doc/format.txt - use doc && dodoc doc/format.html -} - -pkg_postinst() { - elog "Ask your overlay maintainers to provide metadata or consider to run" - elog " egencache --repo=foo --update" - elog "after updates (e.g. in /etc/eix-sync)." - elog "This will speed up portage and eix-update (when the new default cache method" - elog "\"...#metadata-flat\" is used and file dates are correct) for those overlays." - elog "If metadata is provided but file dates are mangled during overlay updates," - elog "you may switch to cache method \"metadata-flat\" instead for that overlay:" - elog "This is even faster, but works only if metadata is actually up-to-date." - ewarn - ewarn "Security Warning:" - ewarn - ewarn "Since >=eix-0.12.0, eix uses by default OVERLAY_CACHE_METHOD=\"parse|ebuild*\"" - ewarn "(since >=eix-0.16.1 with automagic \"#metadata-flat\")." - ewarn "This is rather reliable, but ebuilds may be executed by user \"portage\". Set" - ewarn "OVERLAY_CACHE_METHOD=parse in /etc/eixrc if you do not trust the ebuilds." - if use deprecated; then - elog "ATTENTION: The old eix executable names will be going away in 6" - elog "months or the next major release, whichever is first. Update" - elog "your scripts" - else - elog "ATTENTION: The eix executable names have changed. Update your" - elog "scripts, if needed. This message will go away soon." - fi - -} diff --git a/app-portage/eix/eix-0.18.2.ebuild b/app-portage/eix/eix-0.18.2.ebuild deleted file mode 100644 index d40b07b4c19d..000000000000 --- a/app-portage/eix/eix-0.18.2.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.18.2.ebuild,v 1.1 2009/10/10 23:53:30 darkside Exp $ - -EAPI="2" - -inherit multilib - -DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more" -HOMEPAGE="http://eix.sourceforge.net" -SRC_URI="mirror://sourceforge/eix/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+bzip2 deprecated doc nls sqlite tools" - -RDEPEND="sqlite? ( >=dev-db/sqlite-3 ) - nls? ( virtual/libintl ) - bzip2? ( app-arch/bzip2 )" -DEPEND="${RDEPEND} - app-arch/xz-utils - doc? ( dev-python/docutils ) - nls? ( sys-devel/gettext )" - -src_unpack() { - local i s - for i in ${A} - do - s="${DISTDIR%/}/${i}" - einfo "Unpacking ${s} to ${PWD}" - test -s "${s}" || die "${s} does not exist" - xz -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" - done -} - -src_configure() { - econf $(use_with bzip2) $(use_with sqlite) $(use_with doc rst) \ - $(use_enable nls) $(use_enable tools separate-tools) \ - --with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \ - --with-portage-rootpath="${ROOTPATH}" \ - --with-eprefix-default="${EPREFIX}" \ - $(use_enable deprecated obsolete-reminder) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - prepalldocs -} - -pkg_postinst() { - elog "Ask your overlay maintainers to provide metadata or consider to run" - elog " egencache --repo=foo --update" - elog "after updates (e.g. in /etc/eix-sync)." - elog "This will speed up portage and eix-update (when the new default cache method" - elog "\"...#metadata-flat\" is used and file dates are correct) for those overlays." - elog "If metadata is provided but file dates are mangled during overlay updates," - elog "you may switch to cache method \"metadata-flat\" instead for that overlay:" - elog "This is even faster, but works only if metadata is actually up-to-date." - ewarn - ewarn "Security Warning:" - ewarn - ewarn "Since >=eix-0.12.0, eix uses by default OVERLAY_CACHE_METHOD=\"parse|ebuild*\"" - ewarn "(since >=eix-0.16.1 with automagic \"#metadata-flat\")." - ewarn "This is rather reliable, but ebuilds may be executed by user \"portage\". Set" - ewarn "OVERLAY_CACHE_METHOD=parse in /etc/eixrc if you do not trust the ebuilds." - if use deprecated; then - elog "ATTENTION: The old eix executable names will be going away soon" - elog "Update your scripts" - else - elog "ATTENTION: The eix executable names have changed. Update your" - elog "scripts, if needed. This message will go away soon." - fi - -} diff --git a/app-portage/eix/eix-0.18.3.ebuild b/app-portage/eix/eix-0.19.1.ebuild index 1ff2d5969a18..45767ae73357 100644 --- a/app-portage/eix/eix-0.18.3.ebuild +++ b/app-portage/eix/eix-0.19.1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.18.3.ebuild,v 1.1 2009/10/29 18:15:01 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.19.1.ebuild,v 1.1 2009/12/19 15:50:12 darkside Exp $ -EAPI="2" +EAPI=2 -inherit multilib autotools +inherit multilib DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more" HOMEPAGE="http://eix.sourceforge.net" @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/eix/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+bzip2 debug deprecated doc +hardened nls +optimization strong-optimization sqlite tools" +IUSE="+bzip2 debug doc hardened nls optimization strong-optimization sqlite tools" RDEPEND="sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) @@ -43,20 +43,10 @@ src_configure() { --with-portage-rootpath="${ROOTPATH}" \ --with-eprefix-default="${EPREFIX}" \ --docdir="${EPREFIX}/usr/share/doc/${PF}" \ - $(use_enable deprecated obsolete-reminder) + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" prepalldocs } - -pkg_postinst() { - if use deprecated; then - elog "ATTENTION: The old eix executable names will be going away soon" - elog "Update your scripts" - else - elog "ATTENTION: The eix executable names have changed. Update your" - elog "scripts, if needed. This message will go away soon." - fi -} |