rhill 15/05/08 06:42:11 Modified: ChangeLog Added: abs-guide-10.ebuild Log: Version bump to final release. Change license to public-domain. Signed-off-by: Ryan Hill <rh...@gentoo.org> (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 957A8463)
Revision Changes Path 1.92 app-doc/abs-guide/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/abs-guide/ChangeLog?rev=1.92&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/abs-guide/ChangeLog?rev=1.92&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/abs-guide/ChangeLog?r1=1.91&r2=1.92 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v retrieving revision 1.91 retrieving revision 1.92 diff -u -r1.91 -r1.92 --- ChangeLog 11 Mar 2013 00:57:27 -0000 1.91 +++ ChangeLog 8 May 2015 06:42:11 -0000 1.92 @@ -1,6 +1,11 @@ # ChangeLog for app-doc/abs-guide -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.91 2013/03/11 00:57:27 dirtyepic Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/ChangeLog,v 1.92 2015/05/08 06:42:11 rhill Exp $ + +*abs-guide-10 (08 May 2015) + + 08 May 2015; Ryan Hill <rh...@gentoo.org> +abs-guide-10.ebuild: + Version bump to final release. Change license to public-domain. 11 Mar 2013; Ryan Hill <dirtye...@gentoo.org> -abs-guide-6.5.ebuild, abs-guide-6.6.ebuild: 1.1 app-doc/abs-guide/abs-guide-10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/abs-guide/abs-guide-10.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-doc/abs-guide/abs-guide-10.ebuild?rev=1.1&content-type=text/plain Index: abs-guide-10.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-doc/abs-guide/abs-guide-10.ebuild,v 1.1 2015/05/08 06:42:11 rhill Exp $ EAPI="5" DESCRIPTION="An in-depth exploration of the art of shell scripting" HOMEPAGE="http://www.tldp.org/LDP/abs/html" SRC_URI="http://bash.deta.in/abs-guide-final.tar.bz2 pdf? ( http://bash.deta.in/abs-guide.pdf )" LICENSE="public-domain" IUSE="pdf" SLOT="0" KEYWORDS="alpha amd64 hppa ~mips ppc sparc x86" DEPEND="" RDEPEND="" S="${WORKDIR}/abs" src_unpack() { unpack abs-guide-final.tar.bz2 use pdf && cp "${DISTDIR}"/abs-guide.pdf "${S}" } src_install() { dodoc -r * docompress -x /usr/share/doc/${PF} } pkg_postinst() { echo elog "The HTML docs can be accessed through /usr/share/doc/${P}/HTML/index.html" elog "Example scripts from the book are installed in /usr/share/doc/${P}/" use pdf && elog "along with the pdf version." echo }