public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Brian Dolbec" <dolsen@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txaio/
Date: Sat,  9 May 2020 00:51:13 +0000 (UTC)	[thread overview]
Message-ID: <1588985450.aa8ad5ac1c1caaf95f4635e2fd69c08583a8e264.dolsen@gentoo> (raw)

commit:     aa8ad5ac1c1caaf95f4635e2fd69c08583a8e264
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 28 01:23:35 2020 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat May  9 00:50:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa8ad5ac

dev-python/txaio: Version bump, Adds python 3.7, 3.8

metadata.xml: take maintainership

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>

 dev-python/txaio/Manifest            |  1 +
 dev-python/txaio/metadata.xml        |  5 +++-
 dev-python/txaio/txaio-20.4.1.ebuild | 49 ++++++++++++++++++++++++++++++++++++
 3 files changed, 54 insertions(+), 1 deletion(-)

diff --git a/dev-python/txaio/Manifest b/dev-python/txaio/Manifest
index def694fd9f6..bc247feb763 100644
--- a/dev-python/txaio/Manifest
+++ b/dev-python/txaio/Manifest
@@ -1 +1,2 @@
 DIST txaio-2.9.0.tar.gz 44195 BLAKE2B 6c62fc6f17ee860aead90cf5f5d02c7c0d9709adf7bcecbb6a7c1723abf0d8672dbc0b869dfe4683bc26c9608e94c41364add18c22e8e98678de8e10018d991c SHA512 ee07d776fa5894b716fdced36aaa6436336a1f1db97dedb0fd0575d61a7b48b12dfc90ed6078602d7a2c2a00bfa7f815ca76cd75e472a27ff7bfdb56291efa46
+DIST txaio-20.4.1.tar.gz 52580 BLAKE2B 28d745eb9e8a0df1ca8748ce455eb122e240505f31464fcc0e66bafcefa8a01a356e44a46d9a5a1b1c670df46ca0c2ea9e66d29436bf2668e5614c5aa8726cee SHA512 da0269d13d72f4ea14f2e67585cdb74ec5105884c31d81157fb85e92d4eb935b1c13eb1222bd5ecd57a8caa36008cf49de85321e7b67e94159330e1d592d42c4

diff --git a/dev-python/txaio/metadata.xml b/dev-python/txaio/metadata.xml
index e0888e19380..e8669e1d3fa 100644
--- a/dev-python/txaio/metadata.xml
+++ b/dev-python/txaio/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!--maintainer-needed-->
+	<maintainer type="person">
+		<email>dolsen@gentoo.org</email>
+		<name>Brian Dolbec</name>
+	</maintainer>
 	<upstream>
 		<maintainer>
 			<email>autobahnws@googlegroups.com</email>

diff --git a/dev-python/txaio/txaio-20.4.1.ebuild b/dev-python/txaio/txaio-20.4.1.ebuild
new file mode 100644
index 00000000000..f5c3f1f1cd6
--- /dev/null
+++ b/dev-python/txaio/txaio-20.4.1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Compatibility API between asyncio/Twisted/Trollius"
+HOMEPAGE="https://github.com/crossbario/txaio https://pypi.org/project/txaio/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	doc? (
+		>=dev-python/sphinx-1.2.3[${PYTHON_USEDEP}]
+		>=dev-python/sphinxcontrib-spelling-2.1.2[${PYTHON_USEDEP}]
+		>=dev-python/sphinx_rtd_theme-0.1.9[${PYTHON_USEDEP}]
+	)
+	test? ( >=dev-python/pytest-2.6.4[${PYTHON_USEDEP}]
+		>=dev-python/mock-1.3.0[${PYTHON_USEDEP}]
+	)
+"
+
+src_prepare() {
+	default_src_prepare
+	# Take out failing tests known to pass when run manually
+	# we certainly don't need to test "python setup.py sdist" here
+	rm "${S}/test/test_packaging.py" || die
+}
+
+python_compile_all() {
+	use doc && emake -C docs html
+}
+
+python_test() {
+	pytest -v || die "Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && HTML_DOCS=( docs/_build/html/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2020-05-09  0:51 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-09  0:51 Brian Dolbec [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-05  8:43 [gentoo-commits] repo/gentoo:master commit in: dev-python/txaio/ Michał Górny
2024-06-20  9:50 Petr Vaněk
2024-01-26 21:21 Arthur Zamarin
2023-03-17 15:58 Michał Górny
2023-03-17 15:54 Arthur Zamarin
2023-03-04  6:37 Arthur Zamarin
2023-01-16  6:11 Michał Górny
2022-05-19 15:23 Michał Górny
2022-04-15 15:12 Arthur Zamarin
2022-04-15 15:11 Arthur Zamarin
2022-03-14 10:32 Yixun Lan
2022-02-23 21:30 Michał Górny
2021-09-16  4:53 Arthur Zamarin
2021-03-30 19:12 Michał Górny
2021-03-30 17:35 Sam James
2021-02-26  8:30 Michał Górny
2021-01-18 14:44 Michał Górny
2021-01-18 14:10 Sam James
2021-01-18 12:01 Michał Górny
2020-12-27  3:40 Sam James
2020-12-19 22:17 Michał Górny
2020-12-19 22:17 Michał Górny
2020-07-20 11:45 Sam James
2020-05-21  8:06 Agostino Sarubbo
2020-05-21  7:57 Agostino Sarubbo
2020-05-21  7:53 Agostino Sarubbo
2020-04-26 15:51 Michał Górny
2020-03-17  8:08 Michał Górny
2020-02-06  6:18 Michał Górny
2019-12-02 10:57 Mikle Kolyada
2019-11-14 15:41 Agostino Sarubbo
2019-11-14 12:30 Agostino Sarubbo
2019-06-25 12:09 Michael Haubenwallner
2019-06-25  9:05 Michael Haubenwallner
2019-05-21 14:54 Stephen Klimaszewski
2018-10-15 23:37 Virgil Dupras
2018-10-15 23:37 Virgil Dupras
2018-10-15 23:37 Virgil Dupras
2018-08-11 23:11 Virgil Dupras
2018-03-13 23:56 Brian Dolbec
2018-01-06 14:13 Michał Górny
2017-09-28 13:42 Michael Palimaka
2017-09-20 20:11 Brian Dolbec
2017-09-08 20:53 Markus Meier
2017-08-01 18:52 Brian Dolbec
2017-07-31  9:33 Tobias Klausmann
2017-04-15 20:37 Patrice Clement
2016-10-07 18:11 Brian Dolbec
2016-09-23 18:52 Brian Dolbec
2016-08-31  1:18 Brian Dolbec
2016-04-20  7:52 Patrick Lauer
2016-03-02 16:53 Patrick Lauer
2016-01-03 16:08 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=1588985450.aa8ad5ac1c1caaf95f4635e2fd69c08583a8e264.dolsen@gentoo \
    --to=dolsen@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