diff options
author | Cédric Krier <cedk@gentoo.org> | 2019-02-16 14:02:50 +0100 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2019-02-16 14:02:50 +0100 |
commit | afd5351d68a10538a6598be35bfdc6abfbe51abe (patch) | |
tree | 7650924d57ee7be80e6c6e4da3981145893c259b /www-apps | |
parent | sys-devel/binutils-hppa64: bump up to 2.32, patchset 1 (diff) | |
download | gentoo-afd5351d68a10538a6598be35bfdc6abfbe51abe.tar.gz gentoo-afd5351d68a10538a6598be35bfdc6abfbe51abe.tar.bz2 gentoo-afd5351d68a10538a6598be35bfdc6abfbe51abe.zip |
www-apps/roundup: Version bump to 1.6.0
Signed-off-by: Cédric Krier <cedk@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/roundup/Manifest | 1 | ||||
-rw-r--r-- | www-apps/roundup/roundup-1.6.0.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/www-apps/roundup/Manifest b/www-apps/roundup/Manifest index 85f9a98fa166..07f3cccfd454 100644 --- a/www-apps/roundup/Manifest +++ b/www-apps/roundup/Manifest @@ -1 +1,2 @@ DIST roundup-1.5.1.tar.gz 2618886 BLAKE2B 5ccca10ce7f30b35b0875340c4cae87aa19e5384e6e5973576ea8e2de79eb83d32447580944f472d73e7cdb5f43a4ed7f805d51242e22cc2f756b3deae4004b2 SHA512 d7cdeaafb682ce7f202cacddeb1a42312f22778a2c83b52b4e838c27b1e7141a94b2ac2b670b0edee0efcfe27d74e31e6f267ae1380e90359def27385ca68d58 +DIST roundup-1.6.0.tar.gz 2893499 BLAKE2B 5fe75b0953d16cebe52a25379d5a13f7745eb87e4a6a46f17945c3655394c1d1d2aff9e74783ee3e4757fc407ca2b46a7c3ef6d20eedbfb695783302fb64bf1f SHA512 1a8e9c0c7a6e607953ee91ce750f72bf53b5c6dc4bbd6d001570dd77abf396d4de2c832ef45495b87890a3c11b158be9e7a8eed635f63b5586b7bb9399856dcc diff --git a/www-apps/roundup/roundup-1.6.0.ebuild b/www-apps/roundup/roundup-1.6.0.ebuild new file mode 100644 index 000000000000..93f94d136de3 --- /dev/null +++ b/www-apps/roundup/roundup-1.6.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Issue-tracking system with command-line, web, and e-mail interfaces" +HOMEPAGE="http://roundup.sourceforge.net https://pypi.org/project/roundup/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT ZPL" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +DEPEND="" +RDEPEND="${DEPEND}" + +DOCS="CHANGES.txt doc/*.txt" + +python_install_all() { + distutils-r1_python_install_all + rm -r "${ED}"/usr/share/doc/${PN} || die +} + +pkg_postinst() { + ewarn "As a non privileged user! (not root)" + ewarn "Run 'roundup-admin install' to set up a roundup instance" + ewarn "Then edit your config.ini file in the tracker home you setup" + ewarn "Run 'roundup-admin initialise' to setup the admin pass" + ewarn "run /usr/bin/roundup start port host \"your tracker name\" [your tracker home], and all should work!" + ewarn "run /usr/bin/roundup stop [your tracker home] to stop the server" + ewarn "log is in [tracker home]/roundup.log" + ewarn "pid file is in [tracker home]/roundup.pid" + ewarn + ewarn "See upgrading.txt for upgrading instructions." +} |