diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-04-28 19:23:52 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-04-28 19:23:52 +0000 |
commit | 39c1041a69720a9cc1ff574706759210758ce8c7 (patch) | |
tree | 440ca93c0f30d02a68830e3f6c1bdbd3392c6f03 /net-www | |
parent | Version bumped. Closes #20005. (diff) | |
download | gentoo-2-39c1041a69720a9cc1ff574706759210758ce8c7.tar.gz gentoo-2-39c1041a69720a9cc1ff574706759210758ce8c7.tar.bz2 gentoo-2-39c1041a69720a9cc1ff574706759210758ce8c7.zip |
Version bumped. Closes #20005.
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/roundup/ChangeLog | 7 | ||||
-rw-r--r-- | net-www/roundup/Manifest | 4 | ||||
-rw-r--r-- | net-www/roundup/files/digest-roundup-0.5.6 | 1 | ||||
-rw-r--r-- | net-www/roundup/roundup-0.5.6.ebuild | 30 |
4 files changed, 39 insertions, 3 deletions
diff --git a/net-www/roundup/ChangeLog b/net-www/roundup/ChangeLog index a76ae30a2ff2..90a93ce22c54 100644 --- a/net-www/roundup/ChangeLog +++ b/net-www/roundup/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-www/roundup # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/roundup/ChangeLog,v 1.6 2003/02/14 17:00:15 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/roundup/ChangeLog,v 1.7 2003/04/28 19:23:35 mholzer Exp $ + +*roundup-0.5.6 (28 Apr 2003) + + 28 Apr 2003; Martin Holzer <mholzer@gentoo.org> roundup-0.5.6.ebuild: + Version bumped. Closes #20005. *roundup-0.5.5 (14 Feb 2003) diff --git a/net-www/roundup/Manifest b/net-www/roundup/Manifest index 59773bd98ea1..ade591fc0f92 100644 --- a/net-www/roundup/Manifest +++ b/net-www/roundup/Manifest @@ -1,7 +1,7 @@ -MD5 c2ee96233ae11cfc6aa32a7901655a31 ChangeLog 653 +MD5 a6a21d1c5141f8caf1f85fd6e035b15e ChangeLog 789 MD5 8346cfa2978494ab9f738d68709394a7 roundup-0.4.2.ebuild 854 MD5 dd79ce3837c690a056f992fce5f28267 roundup-0.5.5.ebuild 843 -MD5 dd79ce3837c690a056f992fce5f28267 roundup-0.5.6.ebuild 843 +MD5 4865423eb147fd384c6f6809c0f727a2 roundup-0.5.6.ebuild 843 MD5 c6290a7ef23235c3710bd5255c92c6d2 files/digest-roundup-0.4.2 65 MD5 3b375fdb6e3dfc5cb978e3030657236b files/digest-roundup-0.5.5 65 MD5 7d5f9adaaa2f73b32c8dc22108358ba9 files/digest-roundup-0.5.6 65 diff --git a/net-www/roundup/files/digest-roundup-0.5.6 b/net-www/roundup/files/digest-roundup-0.5.6 new file mode 100644 index 000000000000..2c3cdbcc7817 --- /dev/null +++ b/net-www/roundup/files/digest-roundup-0.5.6 @@ -0,0 +1 @@ +MD5 1462897cd16316412d7b1c28e45952d9 roundup-0.5.6.tar.gz 447716 diff --git a/net-www/roundup/roundup-0.5.6.ebuild b/net-www/roundup/roundup-0.5.6.ebuild new file mode 100644 index 000000000000..9ca97046ef14 --- /dev/null +++ b/net-www/roundup/roundup-0.5.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/roundup/roundup-0.5.6.ebuild,v 1.1 2003/04/28 19:23:35 mholzer Exp $ + +S="${WORKDIR}/${P}" +DESCRIPTION="Simple-to-use and -install issue-tracking system with command-line, web, and e-mail interfaces." +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://roundup.sourceforge.net" +KEYWORDS="x86 sparc" +LICENSE="as-is" +SLOT="0" + +DEPEND=">=dev-lang/python-2.2 + >=sys-libs/db-3.2.9" + +src_compile() { + python setup.py build || die +} + +src_install() { + python setup.py install --root=${D} --prefix=/usr || die + dodoc CHANGES.txt PKG-INFO README.txt doc/*.txt + dohtml doc/*.html +} + +pkg_postinst() { + einfo + einfo "Run 'roundup-admin install' to set up a roundup instance" + einfo +} |