diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-11 15:27:13 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-11 15:27:13 +0000 |
commit | 69bb20d0e5a0bf8a93f37dbf3add1a23ce32de95 (patch) | |
tree | b12c44a6fbead1d555f7d1e19813f1967439627e /net-www/roundup | |
parent | new release (Manifest recommit) (diff) | |
download | gentoo-2-69bb20d0e5a0bf8a93f37dbf3add1a23ce32de95.tar.gz gentoo-2-69bb20d0e5a0bf8a93f37dbf3add1a23ce32de95.tar.bz2 gentoo-2-69bb20d0e5a0bf8a93f37dbf3add1a23ce32de95.zip |
Version bump.
Diffstat (limited to 'net-www/roundup')
-rw-r--r-- | net-www/roundup/ChangeLog | 9 | ||||
-rw-r--r-- | net-www/roundup/Manifest | 4 | ||||
-rw-r--r-- | net-www/roundup/files/digest-roundup-0.6.4 | 1 | ||||
-rw-r--r-- | net-www/roundup/roundup-0.6.4.ebuild | 31 |
4 files changed, 41 insertions, 4 deletions
diff --git a/net-www/roundup/ChangeLog b/net-www/roundup/ChangeLog index 88d58761e1c8..d505eb793dae 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.8 2003/06/30 23:14:03 aliz Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/roundup/ChangeLog,v 1.9 2004/02/11 15:27:04 aliz Exp $ + +*roundup-0.6.4 (11 Feb 2004) + + 11 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> roundup-0.6.4.ebuild: + Version bump. Found by Tamer Fahmy <tamer@tammura.at> in #34314. *roundup-0.5.8 (30 Jun 2003) diff --git a/net-www/roundup/Manifest b/net-www/roundup/Manifest index dd349e67518a..14ddfc533365 100644 --- a/net-www/roundup/Manifest +++ b/net-www/roundup/Manifest @@ -1,7 +1,7 @@ MD5 4865423eb147fd384c6f6809c0f727a2 roundup-0.5.6.ebuild 843 -MD5 88732809bf129726589499c3c0c0444e roundup-0.6.4.ebuild 851 +MD5 26e2fd5ebd3660a34a27c3562bd66119 roundup-0.6.4.ebuild 906 MD5 4c91a415f5685442ec63211cc9cac82c roundup-0.5.8.ebuild 844 -MD5 177086aebe852cc8c86ec233cd5ed9f1 ChangeLog 904 +MD5 4f15d6a1c9f3c056c1d4a28b1ff4dcc6 ChangeLog 1072 MD5 7d5f9adaaa2f73b32c8dc22108358ba9 files/digest-roundup-0.5.6 65 MD5 25f3fa02512e6a3ba8561a8798073815 files/digest-roundup-0.5.8 65 MD5 4d7d00a2645573f2152a0a255fd9d1e1 files/digest-roundup-0.6.4 65 diff --git a/net-www/roundup/files/digest-roundup-0.6.4 b/net-www/roundup/files/digest-roundup-0.6.4 new file mode 100644 index 000000000000..3a5f2865945b --- /dev/null +++ b/net-www/roundup/files/digest-roundup-0.6.4 @@ -0,0 +1 @@ +MD5 15496f8df96a50f438c668a71a940465 roundup-0.6.4.tar.gz 598251 diff --git a/net-www/roundup/roundup-0.6.4.ebuild b/net-www/roundup/roundup-0.6.4.ebuild new file mode 100644 index 000000000000..95a76fa1ad55 --- /dev/null +++ b/net-www/roundup/roundup-0.6.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-www/roundup/roundup-0.6.4.ebuild,v 1.1 2004/02/11 15:27:04 aliz 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/roundup/${P}.tar.gz" +HOMEPAGE="http://roundup.sourceforge.net" +KEYWORDS="~x86 ~sparc ~amd64" +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 + einfo "See upgrading.txt for upgrading instructions." +} |