ChangeLog

# ChangeLog for dev-python/generator
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/generator/ChangeLog,v 1.9 2007/02/21 16:49:58 lucass Exp $

21 Feb 2007; Lukasz Strzygowski
files/digest-generator-1.0.1, files/digest-generator-1.2.3, Manifest:
Convert to Manifest2.

01 Apr 2006; Aron Griffis generator-1.2.3.ebuild:
Mark 1.2.3 ~ia64

30 Apr 2004; David Holm generator-1.2.3.ebuild:
Added to ~ppc.

22 Mar 2004; generator-1.0.1.ebuild,
generator-1.2.3.ebuild:
QA, bug #45343.

*generator-1.2.3 (19 Jan 2004)

19 Jan 2004; Heinrich Wendel generator-1.0.1.ebuild,
generator-1.2.3.ebuild:
added homepage

19 Jan 2004; Heinrich Wendel generator-1.0.ebuild:
version bump

*generator-1.0.1 (11 Oct 2003)

11 Oct 2003; Robin H. Johnson generator-1.0.1.ebuild,
generator-1.0.ebuild:
version bump, source is now inside archetypes

*generator-1.0 (10 Oct 2003)

10 Oct 2003; Robin H. Johnson generator-1.0.ebuild,
metadata.xml:
initial commit, bug #27496, submission by duchier@ps.uni-sb.de

Manifest

DIST archetypes-1.0.1.tgz 342999 RMD160 8a5cdbec8161dc08a174a0b6ab4cf85aadb2f7b0 SHA1 dbb58ee1880864f6af7f77b21d32424425fc7b4a SHA256 f333a6bb6e518c1d5b3321228d27c3be342ef5a192c56a962f519f452b2fb4d9
DIST archetypes-1.2.3_final.tgz 320874 RMD160 f9b7c851663ca8d8d09df151a5aba934f79432a9 SHA1 14e3d4734db0c480b71ffbf8c8b2ad517f0afe84 SHA256 fce0999e705d093f9e49ac6a49020b0019b19af3321f8076173ed8c61188b3cd
EBUILD generator-1.0.1.ebuild 1274 RMD160 c18dbc4e377b12b22ff68f09b33919d292d22818 SHA1 76c11865f7885d8e3bf42fd581aec39b863f6bf6 SHA256 d83b9068d41ecf8c9ecc11c93721c5b6773fac51b9d18efc9e9d5367f04addbd
EBUILD generator-1.2.3.ebuild 1291 RMD160 7490273dd52c82637dc538b53f337c629b383950 SHA1 e87cee7bbbd8457c2d37e5ed30a9363886775872 SHA256 7247733ea40dd0beb49dce64e981d51b05df8ccf3218614f4a26bdc570efd71e
MISC ChangeLog 1258 RMD160 a70ec71ba5bfad26871a5606fea87db8562ddbea SHA1 88c9532b0b38e4c4dec8ccde57c1b9274f19002c SHA256 eca37470d5a8f26b1aa50ad10a998ca58e8ad92b16acd8e9405da9b6ed6371ae
MISC metadata.xml 161 RMD160 5e136d45f811478292bd2ee1798a9b0229ffe468 SHA1 9755179a2dee0511818b1f6738ded28e335e1b9a SHA256 e69ac7205cbc2e42a297e20d8f08922003390a345bbf50ccf00d1158a1c97cc5

generator-1.0.1.ebuild

# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/generator/generator-1.0.1.ebuild,v 1.5 2007/06/26 01:59:18 mr_bones_ Exp $
SLOT="0"
IUSE=""
DESCRIPTION="Widget generator for Archetypes"
HOMEPAGE="http://www.sourceforge.net/projects/archetypes"
SRC_PN=archetypes
SRC_PV=1.0.1
SRC_P=${SRC_PN}-${SRC_PV}
SRC_URI="mirror://sourceforge/${SRC_PN}/${SRC_P}.tgz"
S=${WORKDIR}/${SRC_P}/${PN}
LICENSE="GPL-2"
KEYWORDS="~x86"
if [ "${PYTHON_SLOT_VERSION}" = 'VIRTUAL' ] ; then
DEPEND="virtual/python"
else
DEPEND="dev-lang/python"
fi

src_install() {
local python=""
if [ "${PYTHON_SLOT_VERSION}" = 'VIRTUAL' ] ; then
python='python'
einfo "Building with virtual python"
else
if has_version '=dev-lang/python-2.1*'; then
python="${python} python2.1"
einfo "Building with Python 2.1"
fi
if has_version '=dev-lang/python-2.2*'; then
python="${python} python2.2"
einfo "Building with Python 2.2"
fi
fi

for i in ${python}; do
$i setup.py clean
# ok, so this actually compiles them here, but it was the only way I could find to
# compile both versions
$i setup.py build install --prefix=${D}/usr || die
done;
dodoc ChangeLog PKG-INFO README
}

generator-1.2.3.ebuild

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/generator/generator-1.2.3.ebuild,v 1.7 2007/06/26 01:59:18 mr_bones_ Exp $
SLOT="0"
IUSE=""
DESCRIPTION="Widget generator for Archetypes"
HOMEPAGE="http://www.sourceforge.net/projects/archetypes"
SRC_PN=archetypes
SRC_PV=1.2.3_final
SRC_P=${SRC_PN}-${SRC_PV}
SRC_URI="mirror://sourceforge/${SRC_PN}/${SRC_P}.tgz"
S=${WORKDIR}/${SRC_P}/${PN}
LICENSE="GPL-2"
KEYWORDS="~ia64 ~ppc ~x86"
if [ "${PYTHON_SLOT_VERSION}" = 'VIRTUAL' ] ; then
DEPEND="virtual/python"
else
DEPEND="dev-lang/python"
fi

src_install() {
local python=""
if [ "${PYTHON_SLOT_VERSION}" = 'VIRTUAL' ] ; then
python='python'
einfo "Building with virtual python"
else
if has_version '=dev-lang/python-2.1*'; then
python="${python} python2.1"
einfo "Building with Python 2.1"
fi
if has_version '=dev-lang/python-2.2*'; then
python="${python} python2.2"
einfo "Building with Python 2.2"
fi
fi

for i in ${python}; do
$i setup.py clean
# ok, so this actually compiles them here, but it was the only way I could find to
# compile both versions
$i setup.py build install --prefix=${D}/usr || die
done;
dodoc ChangeLog PKG-INFO README
}

metadata.xml




net-zope