Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-python/gadfly
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gadfly/ChangeLog,v 1.11 2006/07/12 15:21:01 agriffis Exp $
12 Jul 2006; Aron Griffis
Mark 1.0.0 stable on ia64
01 Apr 2006; Aron Griffis
Mark 1.0.0 ~ia64
24 Apr 2005; Simon Stelling
stable on amd64
24 Apr 2005; Michael Hanselmann
Stable on ppc.
30 Dec 2004; Ciaran McCreesh
Change encoding to UTF-8 for GLEP 31 compliance
03 Jun 2004; David Holm
Added to ~ppc.
04 May 2004; Bryan Østergaard
Add missing IUSE.
*gadfly-1.0.0 (17 Dec 2002)
25 Mar 2003; Alastair Tse
bump to stable
17 Dec 2002; B.Lauwers
Initial submit per #8359, thanks Ollie Rutherfurd!
DIST gadfly-1.0.0.tar.gz 309201 RMD160 8040e6666812756a7b376c576dd6fe1b34c98ad9 SHA1 a37e42a88a5552f993f8db8a4f7f891b336d7f78 SHA256 1f15dde23eb38a8e7087f9538586e1065eb19c53532aad58f6be5cbc1341e3a6
EBUILD gadfly-1.0.0.ebuild 761 RMD160 f0dffcf4aa332ce2ed9960d740e666950cfe33c6 SHA1 1c3eb9c151310095a3bb37b283e453593c781db6 SHA256 5152ebb40f0174d2d889f97d7622eeebd4b8d7e1c0a2234bfb5f4e10b9d3c49d
MISC ChangeLog 1086 RMD160 4c404064a3ee5ba7af99060133ea6cd7b2898c76 SHA1 d55dd9129f2d73c8aa0a76f6706347f828e30076 SHA256 96ee2e985191cf0081e7bb00c12b9977e21f24fc9189458b5e7eced3b005be5d
MISC metadata.xml 159 RMD160 900a8c55d7a7d2f6312594769aaf941bf9e99c7f SHA1 c8e604d56dae898258b5254d78cfeac0b981e288 SHA256 9f01104d3484792496faff4805eed0ecea2352a897151f3397d49a13800037b4
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gadfly/gadfly-1.0.0.ebuild,v 1.15 2006/07/12 15:21:01 agriffis Exp $
DESCRIPTION="relational database system implemented in Python"
HOMEPAGE="http://gadfly.sourceforge.net/"
SRC_URI="mirror://sourceforge/gadfly/${P}.tar.gz"
KEYWORDS="amd64 ia64 ppc x86"
SLOT="0"
LICENSE="BSD"
IUSE=""
DEPEND="virtual/python"
src_compile() {
python setup.py build || die "gadfly compilation failed"
cd kjbuckets
python setup.py build || die "kjbuckets compilation failed"
}
src_install() {
dodoc *.txt doc/*.txt
python setup.py install --root=${D} || die
cd kjbuckets
python setup.py install --root=${D} || die
}