public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Cédric Krier" <cedk@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/roundup/
Date: Tue, 30 Jun 2020 08:56:39 +0000 (UTC)	[thread overview]
Message-ID: <1593507312.33c253fdeddb6c2175affffe85bd9cc214a68e0f.cedk@gentoo> (raw)

commit:     33c253fdeddb6c2175affffe85bd9cc214a68e0f
Author:     Cédric Krier <cedk <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 30 08:52:30 2020 +0000
Commit:     Cédric Krier <cedk <AT> gentoo <DOT> org>
CommitDate: Tue Jun 30 08:55:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c253fd

www-apps/roundup: version bumps with Py3 support

Closes: https://bugs.gentoo.org/709008
Closes: https://bugs.gentoo.org/710054
Closes: https://bugs.gentoo.org/722520
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Cédric Krier <cedk <AT> gentoo.org>

 www-apps/roundup/Manifest                   |  1 +
 www-apps/roundup/metadata.xml               |  3 ++
 www-apps/roundup/roundup-2.0.0_beta0.ebuild | 47 +++++++++++++++++++++++++++++
 3 files changed, 51 insertions(+)

diff --git a/www-apps/roundup/Manifest b/www-apps/roundup/Manifest
index b97d22ec510..512d93ded07 100644
--- a/www-apps/roundup/Manifest
+++ b/www-apps/roundup/Manifest
@@ -1,2 +1,3 @@
 DIST roundup-1.5.1.tar.gz 2618886 BLAKE2B 5ccca10ce7f30b35b0875340c4cae87aa19e5384e6e5973576ea8e2de79eb83d32447580944f472d73e7cdb5f43a4ed7f805d51242e22cc2f756b3deae4004b2 SHA512 d7cdeaafb682ce7f202cacddeb1a42312f22778a2c83b52b4e838c27b1e7141a94b2ac2b670b0edee0efcfe27d74e31e6f267ae1380e90359def27385ca68d58
 DIST roundup-1.6.1.tar.gz 3128618 BLAKE2B 7fa87006582feac74f0fc455bc201f2485326b8f6ed616164f667992da114d45e8d8cef370a825450b5a4cb757ba0453d5fe3ace47164bd83e78a8c6f28b9d05 SHA512 b7666c5515c76baa4fa3ac3d0efea82feace6270af55bbc70e603b2ce0c617b4a303a15133310c1e00d3b6442baa58060d5387f568014652b1b781d9248f0052
+DIST roundup-2.0.0beta0.tar.gz 3461319 BLAKE2B 713f454bf289b27c9a14b4446ab65313a2fb6a0e754ee3e4217bfc2146b8bb2f3ddfce7472fb30041aff2e44e48888893b592b8447945bcb4ad2d3409e8ace84 SHA512 3e9b4a12ee172964f35bbcef6ae07153e76060531e92d78a2c8852d088395067cf933d141e26bdbb6462df15652d5c2a5fa5ee82288c7e85667b87df6a7f55f8

diff --git a/www-apps/roundup/metadata.xml b/www-apps/roundup/metadata.xml
index 499f901ab9c..424a6ed97c3 100644
--- a/www-apps/roundup/metadata.xml
+++ b/www-apps/roundup/metadata.xml
@@ -17,5 +17,8 @@
 		<flag name="tz">Enable full support of timezone</flag>
 		<flag name="xapian">Enable Xapian full-text indexer</flag>
 		<flag name="whoosh">Enable Whoosh full-text indexer</flag>
+		<flag name="jinja">Enable Jinja2 support</flag>
+		<flag name="pyjwt">Enable jwt tokens for login</flag>
+		<flag name="markdown">Enable markdown rendering</flag>
 	</use>
 </pkgmetadata>

diff --git a/www-apps/roundup/roundup-2.0.0_beta0.ebuild b/www-apps/roundup/roundup-2.0.0_beta0.ebuild
new file mode 100644
index 00000000000..e5a9ee447a2
--- /dev/null
+++ b/www-apps/roundup/roundup-2.0.0_beta0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..8} )
+
+inherit distutils-r1
+MY_P=${P/_/}
+
+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}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT ZPL"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="+tz sqlite mysql postgres xapian whoosh ssl jinja pyjwt markdown"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+	tz? ( dev-python/pytz[$PYTHON_USEDEP] )
+	sqlite? ( dev-lang/python:*[sqlite] )
+	mysql? ( dev-python/mysqlclient[$PYTHON_USEDEP] )
+	postgres? ( >=dev-python/psycopg-2.8[$PYTHON_USEDEP] )
+	xapian? ( >=dev-libs/xapian-bindings-1.0.0[python,$PYTHON_USEDEP] )
+	whoosh? ( >=dev-python/whoosh-2.5.7[$PYTHON_USEDEP] )
+	ssl? ( dev-python/pyopenssl[$PYTHON_USEDEP] )
+	jinja? ( dev-python/jinja[$PYTHON_USEDEP] )
+	pyjwt? ( dev-python/pyjwt[$PYTHON_USEDEP] )
+	markdown? (
+		dev-python/markdown[$PYTHON_USEDEP]
+		dev-python/markdown2[$PYTHON_USEDEP]
+		dev-python/mistune[$PYTHON_USEDEP]
+		)"
+
+DOCS="CHANGES.txt doc/*.txt"
+
+python_install_all() {
+	distutils-r1_python_install_all
+	rm -r "${ED}"/usr/share/doc/${PN} || die
+}
+
+pkg_postinst() {
+	ewarn "See installation.txt for initialisation instructions."
+	ewarn "See upgrading.txt for upgrading instructions."
+}


             reply	other threads:[~2020-06-30  8:56 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-30  8:56 Cédric Krier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-03 19:31 [gentoo-commits] repo/gentoo:master commit in: www-apps/roundup/ Sam James
2024-07-03 16:31 Jakov Smolić
2024-07-03 16:31 Jakov Smolić
2024-04-20 12:07 Viorel Munteanu
2023-05-01  9:39 Sam James
2023-05-01  9:39 Sam James
2023-05-01  1:53 Sam James
2023-04-02 11:05 Viorel Munteanu
2023-03-16 18:52 Michał Górny
2022-07-01  7:20 Cédric Krier
2022-06-04  7:42 Michał Górny
2022-02-05  9:42 Jakov Smolić
2021-11-21 17:49 Cédric Krier
2021-03-13  9:10 Cédric Krier
2021-01-10 22:27 Sam James
2020-09-20 21:38 Cédric Krier
2020-09-20 13:11 Michał Górny
2020-09-20 12:58 Sam James
2020-09-20 12:56 Sam James
2020-09-20 12:54 Sam James
2020-09-20 12:49 Michał Górny
2020-07-26  8:35 Cédric Krier
2020-07-26  8:35 Cédric Krier
2020-07-14 16:58 Sergei Trofimovich
2020-07-13 18:08 Sam James
2020-06-30 17:28 Thomas Deutschmann
2020-01-21  8:52 Agostino Sarubbo
2020-01-21  8:46 Agostino Sarubbo
2020-01-20 11:51 Agostino Sarubbo
2020-01-18 23:15 Thomas Deutschmann
2019-11-24 11:24 Cédric Krier
2019-02-16 16:25 Cédric Krier
2019-02-16 13:03 Cédric Krier
2018-03-05 20:26 Sergei Trofimovich
2017-06-17 21:41 Thomas Deutschmann
2017-06-17 21:41 Thomas Deutschmann
2017-03-11 23:53 Michael Weber
2017-02-17 23:31 Cédric Krier
2017-01-15 11:20 Pacho Ramos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1593507312.33c253fdeddb6c2175affffe85bd9cc214a68e0f.cedk@gentoo \
    --to=cedk@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox