public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sebastian Pipping" <sping@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ansi2html/
Date: Sat, 20 Oct 2018 15:09:40 +0000 (UTC)	[thread overview]
Message-ID: <1540048172.61638b0fa524b41e9d2791bdf52af7215a2f3e46.sping@gentoo> (raw)

commit:     61638b0fa524b41e9d2791bdf52af7215a2f3e46
Author:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 20 15:02:46 2018 +0000
Commit:     Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Oct 20 15:09:32 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61638b0f

dev-python/ansi2html: 1.5.1

Re-enable test suite, add Python 3.7, EAPI 7, man page now shipped

Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 dev-python/ansi2html/Manifest               |  1 +
 dev-python/ansi2html/ansi2html-1.5.1.ebuild | 45 +++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/ansi2html/Manifest b/dev-python/ansi2html/Manifest
index 4422a783d86..8324d79b618 100644
--- a/dev-python/ansi2html/Manifest
+++ b/dev-python/ansi2html/Manifest
@@ -2,3 +2,4 @@ DIST ansi2html-1.1.1.tar.gz 46591 BLAKE2B e2eb3d9b2665fd495ee8591a3cbfebcd1d565e
 DIST ansi2html-1.2.0.tar.gz 46748 BLAKE2B c5ea7d35640f93562f6098a46dbeff9248e25b6210bfa5e71265d529599eea7713581ef986faa5afefb445492fe09d2170d164a63b2a602c57a79f2c72cbe118 SHA512 3106488da19cd093d7ae2a7499a66baf77877f47da0e497791cea2a63079c184f1d36743e78116b3faf08ab145ca97b5774151114b9ca193020578c8a3bdc860
 DIST ansi2html-1.3.0.tar.gz 35989 BLAKE2B b2f949e2c559b2da91d3095b4d8ac2091bd15aad46b178a01aa59d4c900917e733f6ab3884d9c4c7c46bfa530936339d9b105a0471a09eb7a01693c43e8a87dd SHA512 73d1b3431e22146c4fe18fef4b05413231d79d627c396d67528d0aa1ab07a7ef4bcfeff56829b85d9fe9ad508599b782318911f7b10d6b9a1bc98780e31389d7
 DIST ansi2html-1.4.2.tar.gz 25485 BLAKE2B 93f3bbd307b916c9ca60379235600606dbe16f1b6e423d0d2615f7825e92a6d7a8469ae7d60cf5131b4c3431897b3161bfcd2a0327525a332bcd6a6980dad5c9 SHA512 29c569839788968ba5a1fed8dddd4cc92f40ca88b4135b597815012ea44a44e8b7a3c2259d2d5d5f3cc690400be882236b88c0764a649da5679431501aab0b1c
+DIST ansi2html-1.5.1.tar.gz 27133 BLAKE2B 8a8017b8f4edb878b105138ec0dfe3fbde8647315382d763eeae7f90f094b60f0cb7205718c75930ccb7ca1183e40e5205eca6f8362e20445d930d92db23bc22 SHA512 367fa9721de65a6e14118d65de9ea8ede1ecc9f0809115ecccf481947aa442409ca972442e51a75bc4f14913566255142da4e411fe060dfda5e55f84a7ac67af

diff --git a/dev-python/ansi2html/ansi2html-1.5.1.ebuild b/dev-python/ansi2html/ansi2html-1.5.1.ebuild
new file mode 100644
index 00000000000..076a1f0115a
--- /dev/null
+++ b/dev-python/ansi2html/ansi2html-1.5.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="Convert text with ANSI color codes to HTML"
+HOMEPAGE="https://pypi.org/project/ansi2html/ https://github.com/ralphbean/ansi2html"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test"
+
+RDEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	>=dev-python/six-1.7.3[${PYTHON_USEDEP}]"
+DEPEND="
+	test? (
+		${RDEPEND}
+		dev-python/nose[${PYTHON_USEDEP}]
+		$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy)
+	)
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	"
+
+src_compile() {
+	distutils-r1_src_compile
+}
+
+python_test() {
+	chmod -x "${S}"/tests/* || die
+	esetup.py check
+	esetup.py test
+}
+
+python_install_all() {
+	doman man/${PN}.1
+	DOCS=( README.rst man/${PN}.1.txt )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2018-10-20 15:09 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-20 15:09 Sebastian Pipping [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-13  8:01 [gentoo-commits] repo/gentoo:master commit in: dev-python/ansi2html/ Michał Górny
2024-07-13  7:27 Arthur Zamarin
2024-06-22 19:09 Sebastian Pipping
2024-05-17 14:26 Michał Górny
2023-12-30 22:23 Sam James
2023-12-30 14:40 Michał Górny
2023-12-11 17:42 Michał Górny
2023-12-05  4:20 Michał Górny
2023-11-05 18:04 Michał Górny
2023-11-05 17:55 Michał Górny
2023-11-05 16:47 Arthur Zamarin
2023-11-05 14:45 Sebastian Pipping
2023-03-16  3:44 Michał Górny
2022-08-09  5:51 Michał Górny
2022-08-08 19:50 Arthur Zamarin
2022-07-09 16:12 Sebastian Pipping
2022-07-07 19:11 Arthur Zamarin
2022-07-07 19:11 Arthur Zamarin
2022-06-25 16:37 Jakov Smolić
2022-04-30 17:43 Sebastian Pipping
2022-03-15 11:16 Michał Górny
2022-03-15  9:59 Jakov Smolić
2022-02-04 12:04 Michał Górny
2022-01-31 18:15 Sebastian Pipping
2021-06-05 12:36 Michał Górny
2020-12-22 18:24 Michał Górny
2020-12-22 17:08 Thomas Deutschmann
2020-12-21 22:36 Sam James
2020-12-21 22:36 Sam James
2020-11-18 14:21 Sebastian Pipping
2020-10-25 21:48 Sam James
2020-10-25 21:34 Thomas Deutschmann
2020-10-21 21:45 Michał Górny
2020-09-16 22:31 Louis Sautier
2020-07-08 13:08 Michał Górny
2020-05-21  0:36 Sebastian Pipping
2020-05-10  9:26 Mikle Kolyada
2020-05-10  9:26 Mikle Kolyada
2020-05-10  9:26 Mikle Kolyada
2020-03-17  7:23 Michał Górny
2019-12-29 13:06 David Seifert
2018-10-22 18:51 Sebastian Pipping
2018-06-26 16:15 Mikle Kolyada
2018-06-24 12:37 Jason Zaman
2018-04-25 12:58 Sebastian Pipping
2018-04-14  0:10 Sebastian Pipping
2018-01-14 23:58 Sebastian Pipping
2017-12-05  5:44 Markus Meier
2017-10-21 16:17 Pacho Ramos
2017-02-22 22:18 Sebastian Pipping
2016-07-23 18:40 Patrice Clement
2016-07-23 18:40 Patrice Clement
2016-03-12 11:40 Patrick Lauer

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=1540048172.61638b0fa524b41e9d2791bdf52af7215a2f3e46.sping@gentoo \
    --to=sping@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