Gentoo Archives: gentoo-commits

From: "Cédric Krier" <cedk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/roundup/
Date: Sat, 16 Feb 2019 13:03:19
Message-Id: 1550322170.afd5351d68a10538a6598be35bfdc6abfbe51abe.cedk@gentoo
1 commit: afd5351d68a10538a6598be35bfdc6abfbe51abe
2 Author: Cédric Krier <cedk <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 16 13:02:50 2019 +0000
4 Commit: Cédric Krier <cedk <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 16 13:02:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afd5351d
7
8 www-apps/roundup: Version bump to 1.6.0
9
10 Signed-off-by: Cédric Krier <cedk <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 www-apps/roundup/Manifest | 1 +
14 www-apps/roundup/roundup-1.6.0.ebuild | 38 +++++++++++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/www-apps/roundup/Manifest b/www-apps/roundup/Manifest
18 index 85f9a98fa16..07f3cccfd45 100644
19 --- a/www-apps/roundup/Manifest
20 +++ b/www-apps/roundup/Manifest
21 @@ -1 +1,2 @@
22 DIST roundup-1.5.1.tar.gz 2618886 BLAKE2B 5ccca10ce7f30b35b0875340c4cae87aa19e5384e6e5973576ea8e2de79eb83d32447580944f472d73e7cdb5f43a4ed7f805d51242e22cc2f756b3deae4004b2 SHA512 d7cdeaafb682ce7f202cacddeb1a42312f22778a2c83b52b4e838c27b1e7141a94b2ac2b670b0edee0efcfe27d74e31e6f267ae1380e90359def27385ca68d58
23 +DIST roundup-1.6.0.tar.gz 2893499 BLAKE2B 5fe75b0953d16cebe52a25379d5a13f7745eb87e4a6a46f17945c3655394c1d1d2aff9e74783ee3e4757fc407ca2b46a7c3ef6d20eedbfb695783302fb64bf1f SHA512 1a8e9c0c7a6e607953ee91ce750f72bf53b5c6dc4bbd6d001570dd77abf396d4de2c832ef45495b87890a3c11b158be9e7a8eed635f63b5586b7bb9399856dcc
24
25 diff --git a/www-apps/roundup/roundup-1.6.0.ebuild b/www-apps/roundup/roundup-1.6.0.ebuild
26 new file mode 100644
27 index 00000000000..93f94d136de
28 --- /dev/null
29 +++ b/www-apps/roundup/roundup-1.6.0.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python2_7 )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Issue-tracking system with command-line, web, and e-mail interfaces"
40 +HOMEPAGE="http://roundup.sourceforge.net https://pypi.org/project/roundup/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="MIT ZPL"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
46 +
47 +DEPEND=""
48 +RDEPEND="${DEPEND}"
49 +
50 +DOCS="CHANGES.txt doc/*.txt"
51 +
52 +python_install_all() {
53 + distutils-r1_python_install_all
54 + rm -r "${ED}"/usr/share/doc/${PN} || die
55 +}
56 +
57 +pkg_postinst() {
58 + ewarn "As a non privileged user! (not root)"
59 + ewarn "Run 'roundup-admin install' to set up a roundup instance"
60 + ewarn "Then edit your config.ini file in the tracker home you setup"
61 + ewarn "Run 'roundup-admin initialise' to setup the admin pass"
62 + ewarn "run /usr/bin/roundup start port host \"your tracker name\" [your tracker home], and all should work!"
63 + ewarn "run /usr/bin/roundup stop [your tracker home] to stop the server"
64 + ewarn "log is in [tracker home]/roundup.log"
65 + ewarn "pid file is in [tracker home]/roundup.pid"
66 + ewarn
67 + ewarn "See upgrading.txt for upgrading instructions."
68 +}