ChangeLog

# ChangeLog for app-portage/eclass-manpages
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/ChangeLog,v 1.14 2008/06/02 05:57:55 zmedico Exp $

02 Jun 2008; Zac Medico
eclass-manpages-20070615.ebuild, eclass-manpages-20080531.ebuild:
Bug #224421 - Drop the webapp-config blocker since it no longer
installs webapp.eclass.5.

*eclass-manpages-20080531 (01 Jun 2008)

01 Jun 2008; Mike Frysinger
+eclass-manpages-20080531.ebuild:
Bump to push out accumulated changes in the tree.

25 May 2008; Zac Medico
eclass-manpages-20070615.ebuild:
Block app-admin/webapp-config due to webapp.eclass.5 file collision.

19 Feb 2008; Doug Klima metadata.xml:
fix herd

19 Feb 2008; Mike Frysinger
files/eclass-to-manpage.awk:
Add a new "@DEAD" tag so we skip dead eclasses.

19 Feb 2008; Mike Frysinger
files/eclass-to-manpage.awk:
Do not abort if @DESCRIPTION is not set #209665 by mren.

01 Sep 2007; Mike Frysinger
files/eclass-to-manpage.awk:
Add support for global-scope variables #190871 and improve handling of
variables and errors in general.

30 Aug 2007; Ulrich Mueller files/eclass-to-manpage.awk:
Finally fix whitespace issues of bug #184779.

07 Aug 2007; Mike Frysinger
files/eclass-to-manpage.awk:
Add support for @VARIABLE descriptions.
Add support for @RETURN values.
Add support for @CODE and re-order trailing sections.

02 Aug 2007; Zac Medico eclass-manpages-20070615.ebuild:
Block app-portage/portage-manpages due to eutils.eclass.5 file collision.

24 Jul 2007; Mike Frysinger
files/eclass-to-manpage.awk:
Dont require trailing whitespace to continue paragraphs as that just sets
off QA checkers #184779 by Ulrich Mueller.

*eclass-manpages-20070615 (16 Jun 2006)

16 Jun 2006; Mike Frysinger :
Initial import. Ebuild submitted by me.

Manifest

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

AUX eclass-to-manpage.awk 6255 RMD160 1670a0fe24fd5e8057b972f86c31b9d32f7ca496 SHA1 57e913da2128598ed0965e6647d2edccc5ea6476 SHA256 27789461d9ed983c0e8457e1a9b3e8897ef2dfc19ace61c038f11e983c799c51
EBUILD eclass-manpages-20070615.ebuild 741 RMD160 5cf918985b13e77766fef63f00a448ca1e122f14 SHA1 b029ae960b7e66266bebd9577c46bf1152967502 SHA256 676157b47d3d9dbdfe8d87954651d92a6b19c8c1b389d659c4cc9dd6b80029eb
EBUILD eclass-manpages-20080531.ebuild 741 RMD160 23782e818c2c1ab577bf5d6792ee3c1ab4731592 SHA1 3b52b753b33d9554bbdc34c8a390db62b4a54e23 SHA256 0356dddb2f40f2b99510e87536eb7dc82cabd86e05b92f9244cd260562318b24
MISC ChangeLog 2143 RMD160 eb1f17f51bd20ba1630365747b5470871c0ace8a SHA1 66ca363825db4e4e323558d3a461a3cf6fee1165 SHA256 99b7c4c7800bfa94539598d96fc1eb7ccb9f8e0b0d5a3787a66696023b2f962b
MISC metadata.xml 227 RMD160 e9d4b9c272d9395c188eb8ac590098a9cfee2b22 SHA1 ce478b95eb207bece7803c6970ea3f02eb471fdf SHA256 9daef2a3e592faedde6cab7914f5245c20b2ba43533ece96dfb84ea875cef96b
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)

iEYEARECAAYFAkhDi+gACgkQ/ejvha5XGaOxHQCffZW1E17zGRRsP6vJw+8rmDJA
K64AnjJN4REcmHlyOfqpkUUkBk6zhmxz
=3RMD
-----END PGP SIGNATURE-----

eclass-manpages-20070615.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/eclass-manpages-20070615.ebuild,v 1.6 2008/06/02 05:57:55 zmedico Exp $

DESCRIPTION="collection of Gentoo eclass manpages"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI=""

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE=""

DEPEND=""
RDEPEND="!app-portage/portage-manpages"

S=${WORKDIR}

src_compile() {
local e
for e in "${ECLASSDIR}"/*.eclass ; do
awk -f "${FILESDIR}"/eclass-to-manpage.awk ${e} > ${e##*/}.5 || rm -f ${e##*/}.5
done
}

src_install() {
doman *.5 || die
}

eclass-manpages-20080531.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eclass-manpages/eclass-manpages-20080531.ebuild,v 1.2 2008/06/02 05:57:55 zmedico Exp $

DESCRIPTION="collection of Gentoo eclass manpages"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI=""

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
IUSE=""

DEPEND=""
RDEPEND="!app-portage/portage-manpages"

S=${WORKDIR}

src_compile() {
local e
for e in "${ECLASSDIR}"/*.eclass ; do
awk -f "${FILESDIR}"/eclass-to-manpage.awk ${e} > ${e##*/}.5 || rm -f ${e##*/}.5
done
}

src_install() {
doman *.5 || die
}

files

metadata.xml




tools-portage

vapier@gentoo.org