summaryrefslogtreecommitdiff
path: root/dev-python/blurb
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-04-09 13:43:44 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-04-09 13:43:44 +0000
commit90960fa67aeeb922c0726a5c5f25b31d4269d3ed (patch)
treea3df6ca4214c0489c7780638142e1e9db433023b /dev-python/blurb
parentc01a758716f56e7d098a9e228d06e104ad173e41 (diff)
downloadbaldeagleos-repo-90960fa67aeeb922c0726a5c5f25b31d4269d3ed.tar.gz
baldeagleos-repo-90960fa67aeeb922c0726a5c5f25b31d4269d3ed.tar.xz
baldeagleos-repo-90960fa67aeeb922c0726a5c5f25b31d4269d3ed.zip
Adding metadata
Diffstat (limited to 'dev-python/blurb')
-rw-r--r--dev-python/blurb/Manifest1
-rw-r--r--dev-python/blurb/blurb-1.1.0.ebuild27
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/blurb/Manifest b/dev-python/blurb/Manifest
index 1ed516f24b62..ecdea896bd85 100644
--- a/dev-python/blurb/Manifest
+++ b/dev-python/blurb/Manifest
@@ -1 +1,2 @@
DIST blurb-1.0.8.tar.gz 21519 BLAKE2B 4e76fad58821662b0a97dbde63e0fe7f3e82676ea1f22a3effdc118a014fff2b17995252bca900f495d66df36712122e7a50e95b3ebfcff7d39f8d005ef8456d SHA512 63bba016cfc293923da1cf7cc5f64e8881bf28237faf9908a484d55ff435df71c30544a751e0f167ed82d1f363dca48f53be67a25adc3ebc728c88b31186abac
+DIST blurb-1.1.0.tar.gz 25064 BLAKE2B 4fbdd0d068cc7abb1ffa78dff70bd83feccc1bcfbf8ebb085c9f7e77e0f330d3759f10a94a5ca024b465c01f9d659496ae55162a52b7158a06caf2d114d36806 SHA512 9397173e7bf5babf02c96df27983462e7dd2a729e9eb0cacdf23ca3778336902d5c611ab5e2432bbc877344426d7c62ea8ae77719aa08da98f9b44365583b7ee
diff --git a/dev-python/blurb/blurb-1.1.0.ebuild b/dev-python/blurb/blurb-1.1.0.ebuild
new file mode 100644
index 000000000000..82db1bae4466
--- /dev/null
+++ b/dev-python/blurb/blurb-1.1.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2018-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{7,8,9,10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Tool to create and manage NEWS blurbs for CPython"
+HOMEPAGE="https://github.com/python/core-workflow/tree/master/blurb"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_test() {
+ # Tests expect to be run from github repo, in which code is inside dir
+ ln -s . blurb || die
+ distutils-r1_src_test
+}
+
+python_test() {
+ "${EPYTHON}" -m blurb test || die "Tests failed with ${EPYTHON}"
+}