public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cotyledon/
@ 2021-10-03 18:33 Alessandro Barbieri
  0 siblings, 0 replies; 3+ messages in thread
From: Alessandro Barbieri @ 2021-10-03 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     90284c01af76b7d4609d5e6b997627e02b526152
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Oct  3 16:21:25 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Oct  3 18:32:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=90284c01

dev-python/cotyledon: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/cotyledon/Manifest               |  1 +
 dev-python/cotyledon/cotyledon-1.7.3.ebuild | 32 +++++++++++++++++++++++++++++
 dev-python/cotyledon/metadata.xml           | 13 ++++++++++++
 3 files changed, 46 insertions(+)

diff --git a/dev-python/cotyledon/Manifest b/dev-python/cotyledon/Manifest
new file mode 100644
index 000000000..089a28088
--- /dev/null
+++ b/dev-python/cotyledon/Manifest
@@ -0,0 +1 @@
+DIST cotyledon-1.7.3.tar.gz 23354 BLAKE2B 9437ff26fb5b65420e2c45eb1d689e30350cef72bc92f3403d98ca9e6e92b93588764fa00a96ee26ea356283b87910dc2af05f989acb5e043572ab7bcbb651fb SHA512 28415bfa128c9f1760ece2707a4a3b67441f26e14125f322e8f23c4efaa65ea7e5a522378629a0d675ef1533ff21b4c252b36adf9ea38a70011d53af6e8ee06d

diff --git a/dev-python/cotyledon/cotyledon-1.7.3.ebuild b/dev-python/cotyledon/cotyledon-1.7.3.ebuild
new file mode 100644
index 000000000..b177fa74f
--- /dev/null
+++ b/dev-python/cotyledon/cotyledon-1.7.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Cotyledon provides a framework for defining long-running services"
+HOMEPAGE="
+	https://github.com/sileht/cotyledon
+	https://pypi.org/project/cotyledon
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="Apache-2.0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/setproctitle[${PYTHON_USEDEP}]
+"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/pytest-xdist[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest

diff --git a/dev-python/cotyledon/metadata.xml b/dev-python/cotyledon/metadata.xml
new file mode 100644
index 000000000..4a436b3cd
--- /dev/null
+++ b/dev-python/cotyledon/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <upstream>
+    <bugs-to>https://github.com/sileht/cotyledon/issues</bugs-to>
+    <remote-id type="pypi">cotyledon</remote-id>
+    <remote-id type="github">sileht/cotyledon</remote-id>
+  </upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cotyledon/
@ 2021-10-06 22:15 Alessandro Barbieri
  0 siblings, 0 replies; 3+ messages in thread
From: Alessandro Barbieri @ 2021-10-06 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     93bff9c449cd8e0ea71d3e56185a81ce76986bf5
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Wed Oct  6 14:33:17 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Wed Oct  6 22:15:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=93bff9c4

dev-python/cotyledon: add oslo-config test dep

Closes: https://bugs.gentoo.org/816627
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/cotyledon/cotyledon-1.7.3.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/cotyledon/cotyledon-1.7.3.ebuild b/dev-python/cotyledon/cotyledon-1.7.3.ebuild
index b177fa74f..2ffb23ff4 100644
--- a/dev-python/cotyledon/cotyledon-1.7.3.ebuild
+++ b/dev-python/cotyledon/cotyledon-1.7.3.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="8"
+EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_COMPAT=( python3_8 )
 
 inherit distutils-r1
 
@@ -26,6 +26,7 @@ DEPEND="
 	test? (
 		dev-python/mock[${PYTHON_USEDEP}]
 		dev-python/pytest-xdist[${PYTHON_USEDEP}]
+		dev-python/oslo-config[${PYTHON_USEDEP}]
 	)
 "
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cotyledon/
@ 2021-10-09  2:59 Alessandro Barbieri
  0 siblings, 0 replies; 3+ messages in thread
From: Alessandro Barbieri @ 2021-10-09  2:59 UTC (permalink / raw
  To: gentoo-commits

commit:     39ea7a659cda52e6ee87afa780e6d8a5317b5e26
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Oct  9 02:57:55 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Oct  9 02:57:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=39ea7a65

dev-python/cotyledon: enable py3.9

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/cotyledon/cotyledon-1.7.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cotyledon/cotyledon-1.7.3.ebuild b/dev-python/cotyledon/cotyledon-1.7.3.ebuild
index 2ffb23ff4..12d80c5d4 100644
--- a/dev-python/cotyledon/cotyledon-1.7.3.ebuild
+++ b/dev-python/cotyledon/cotyledon-1.7.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_8 )
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-10-09  2:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-06 22:15 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cotyledon/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2021-10-09  2:59 Alessandro Barbieri
2021-10-03 18:33 Alessandro Barbieri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox