diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2011-08-31 00:59:25 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2011-08-31 00:59:25 +0000 |
commit | fe7ffade8568255c324b231778f77d132e798d1f (patch) | |
tree | efd84b1da1c949c94b95fe8c2fc7d3c04a6b9c3f /app-doc | |
parent | Version bump (diff) | |
download | gentoo-2-fe7ffade8568255c324b231778f77d132e798d1f.tar.gz gentoo-2-fe7ffade8568255c324b231778f77d132e798d1f.tar.bz2 gentoo-2-fe7ffade8568255c324b231778f77d132e798d1f.zip |
Version bump, remove old. Stabilize previous version everywhere.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/abs-guide/ChangeLog | 8 | ||||
-rw-r--r-- | app-doc/abs-guide/abs-guide-6.3.ebuild | 4 | ||||
-rw-r--r-- | app-doc/abs-guide/abs-guide-6.4.ebuild (renamed from app-doc/abs-guide/abs-guide-6.2.ebuild) | 17 |
3 files changed, 16 insertions, 13 deletions
diff --git a/app-doc/abs-guide/ChangeLog b/app-doc/abs-guide/ChangeLog index 50f5d528497c..3d2440061496 100644 --- a/app-doc/abs-guide/ChangeLog +++ b/app-doc/abs-guide/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-doc/abs-guide # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.83 2011/06/16 05:34:13 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.84 2011/08/31 00:59:25 dirtyepic Exp $ + +*abs-guide-6.4 (31 Aug 2011) + + 31 Aug 2011; Ryan Hill <dirtyepic@gentoo.org> -abs-guide-6.2.ebuild, + abs-guide-6.3.ebuild, +abs-guide-6.4.ebuild: + Version bump, remove old. Stabilize previous version everywhere. *abs-guide-6.3 (16 Jun 2011) diff --git a/app-doc/abs-guide/abs-guide-6.3.ebuild b/app-doc/abs-guide/abs-guide-6.3.ebuild index b90ec4a88c9f..39b4e654b6a9 100644 --- a/app-doc/abs-guide/abs-guide-6.3.ebuild +++ b/app-doc/abs-guide/abs-guide-6.3.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-doc/abs-guide/abs-guide-6.3.ebuild,v 1.1 2011/06/16 05:34:13 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-6.3.ebuild,v 1.2 2011/08/31 00:59:25 dirtyepic Exp $ EAPI="4" @@ -16,7 +16,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2 LICENSE="OPL" IUSE="pdf" SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" +KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86" DEPEND="" RDEPEND="" diff --git a/app-doc/abs-guide/abs-guide-6.2.ebuild b/app-doc/abs-guide/abs-guide-6.4.ebuild index 4932df61589f..25928342de40 100644 --- a/app-doc/abs-guide/abs-guide-6.2.ebuild +++ b/app-doc/abs-guide/abs-guide-6.4.ebuild @@ -1,23 +1,22 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-6.2.ebuild,v 1.2 2011/01/23 06:53:14 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-6.4.ebuild,v 1.1 2011/08/31 00:59:25 dirtyepic Exp $ -KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86" +EAPI="4" DESCRIPTION="An advanced reference and a tutorial on bash shell scripting" HOMEPAGE="http://www.tldp.org/LDP/abs/html" # Upstream likes to update the tarball without changing the name. # - fetch http://bash.webofcrafts.net/abs-guide-latest.tar.bz2 -# rename to abs-guide-${PV}.tar.bz2 # - fetch http://bash.webofcrafts.net/abs-guide.pdf -# rename to abs-guide-${PV}.pdf -SRC_URI="mirror://gentoo/${P}.tar.bz2 - pdf? ( mirror://gentoo/${P}.pdf )" +SRC_URI="http://dev.gentoo.org/~dirtyepic/dist/${P}.tar.bz2 + pdf? ( http://dev.gentoo.org/~dirtyepic/dist/${P}.pdf )" LICENSE="OPL" IUSE="pdf" SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" DEPEND="" RDEPEND="" @@ -27,11 +26,9 @@ S="${WORKDIR}/abs" src_unpack() { unpack ${P}.tar.bz2 use pdf && cp "${DISTDIR}"/${P}.pdf "${S}" - cd "${S}" } src_install() { - dodir /usr/share/doc/${P} || die "dodir failed" - cp -R * "${D}"/usr/share/doc/${P} || die "cp failed" - use pdf && { cp ${P}.pdf "${D}"/usr/share/doc/${P} || die "pdf failed"; } + dodoc -r * + docompress -x /usr/share/doc/${PF} } |