public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/
@ 2017-08-01 18:52 Brian Dolbec
  0 siblings, 0 replies; 6+ messages in thread
From: Brian Dolbec @ 2017-08-01 18:52 UTC (permalink / raw
  To: gentoo-commits

commit:     9347bdb6889ef19d790e7933be1878ac237c0e65
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 18:43:13 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 18:51:23 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9347bdb6

dev-python/sdnotify: New pkg, dep of new pkg dev-python/crossbar

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/sdnotify/Manifest              |  1 +
 dev-python/sdnotify/metadata.xml          | 24 ++++++++++++++++++++++++
 dev-python/sdnotify/sdnotify-0.3.1.ebuild | 22 ++++++++++++++++++++++
 3 files changed, 47 insertions(+)

diff --git a/dev-python/sdnotify/Manifest b/dev-python/sdnotify/Manifest
new file mode 100644
index 00000000000..d26bbdd3aff
--- /dev/null
+++ b/dev-python/sdnotify/Manifest
@@ -0,0 +1 @@
+DIST sdnotify-0.3.1.tar.gz 2513 SHA256 e69220d4f6cbb02130f43f929350a80cf51033fde47dcb056fbda71e2dff2d5a SHA512 765e75e727ad5128269bfffd4d3f64666df654adc50965a54f3cd622933aca583faee5453f7fec3a23b6f754f4475522dd96a86ba643984cd72a575ec082709c WHIRLPOOL b43831604022cdd5f605138324cda4e43ee7021993e66afaa73b82eff98c11dc087d5f8f5d1b62073d750cfb84ac9168eca12640dc6149df68506826fcbfc0c4

diff --git a/dev-python/sdnotify/metadata.xml b/dev-python/sdnotify/metadata.xml
new file mode 100644
index 00000000000..24bc40f11d1
--- /dev/null
+++ b/dev-python/sdnotify/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>dolsen@gentoo.org</email>
+		<description>Primary maintainer</description>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<email>bbethke@gmail.com</email>
+			<name>Brett Bethke</name>
+		</maintainer>
+		<remote-id type="pypi">sdnotify</remote-id>
+		<remote-id type="github">bb4242/sdnotify</remote-id>
+	</upstream>
+	<longdescription>
+		This is a pure Python implementation of the systemd sd_notify 
+		protocol. This protocol can be used to inform systemd about 
+		service start-up completion, watchdog events, and other service 
+		status changes. Thus, this package can be used to write system 
+		services in Python that play nicely with systemd. sdnotify is 
+		compatible with both Python 2 and Python 3.
+	</longdescription>
+</pkgmetadata>

diff --git a/dev-python/sdnotify/sdnotify-0.3.1.ebuild b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
new file mode 100644
index 00000000000..7e034a96ad4
--- /dev/null
+++ b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="A pure Python implementation of systemd's service notification protocol (sd_notify)"
+HOMEPAGE="
+	https://github.com/bb4242/sdnotify
+	https://pypi.python.org/pypi/sdnotify"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/
@ 2017-08-01 22:18 Manuel Rüger
  0 siblings, 0 replies; 6+ messages in thread
From: Manuel Rüger @ 2017-08-01 22:18 UTC (permalink / raw
  To: gentoo-commits

commit:     f66404427c3f8f1efc07dda744c188d324d8d869
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 22:18:40 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 22:18:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6640442

dev-python/sdnotify: Fix description

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/sdnotify/sdnotify-0.3.1.ebuild b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
index 7e034a96ad4..fe6f98641f0 100644
--- a/dev-python/sdnotify/sdnotify-0.3.1.ebuild
+++ b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 
 inherit distutils-r1
 
-DESCRIPTION="A pure Python implementation of systemd's service notification protocol (sd_notify)"
+DESCRIPTION="Python implementation of systemd's service notification protocol (sd_notify)"
 HOMEPAGE="
 	https://github.com/bb4242/sdnotify
 	https://pypi.python.org/pypi/sdnotify"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/
@ 2017-10-19 14:28 Manuel Rüger
  0 siblings, 0 replies; 6+ messages in thread
From: Manuel Rüger @ 2017-10-19 14:28 UTC (permalink / raw
  To: gentoo-commits

commit:     c952e2db7b2090099fc259ba58b3046745a19076
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 19 14:27:50 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Oct 19 14:27:50 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c952e2db

dev-python/sdnotify: Version bump to 0.3.2

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 dev-python/sdnotify/Manifest              |  1 +
 dev-python/sdnotify/sdnotify-0.3.2.ebuild | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/dev-python/sdnotify/Manifest b/dev-python/sdnotify/Manifest
index d26bbdd3aff..62d020c3ae2 100644
--- a/dev-python/sdnotify/Manifest
+++ b/dev-python/sdnotify/Manifest
@@ -1 +1,2 @@
 DIST sdnotify-0.3.1.tar.gz 2513 SHA256 e69220d4f6cbb02130f43f929350a80cf51033fde47dcb056fbda71e2dff2d5a SHA512 765e75e727ad5128269bfffd4d3f64666df654adc50965a54f3cd622933aca583faee5453f7fec3a23b6f754f4475522dd96a86ba643984cd72a575ec082709c WHIRLPOOL b43831604022cdd5f605138324cda4e43ee7021993e66afaa73b82eff98c11dc087d5f8f5d1b62073d750cfb84ac9168eca12640dc6149df68506826fcbfc0c4
+DIST sdnotify-0.3.2.tar.gz 2459 SHA256 73977fc746b36cc41184dd43c3fe81323e7b8b06c2bb0826c4f59a20c56bb9f1 SHA512 f7e7d38c8d7f56ebad8b0343361a0bf6177208b94916430343a0a392015622d7bb62aa391e17956e5aa9a0d7189c79268cb86c46bb52b36488df5aebca5cfbd3 WHIRLPOOL 4885e8381f83db3901553ea6ab7c49e4c7b64aea73d5ac75fd6ff42c8acf4db578b0f211c6535bd868ff4fc968ace1c94d20b1f6297fea458abbbbcc794e5c9a

diff --git a/dev-python/sdnotify/sdnotify-0.3.2.ebuild b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
new file mode 100644
index 00000000000..4d0b1c61f19
--- /dev/null
+++ b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python implementation of systemd's service notification protocol (sd_notify)"
+HOMEPAGE="https://github.com/bb4242/sdnotify
+	https://pypi.python.org/pypi/sdnotify"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/
@ 2017-11-29 16:35 Brian Dolbec
  0 siblings, 0 replies; 6+ messages in thread
From: Brian Dolbec @ 2017-11-29 16:35 UTC (permalink / raw
  To: gentoo-commits

commit:     a2002b3d92ef80be82b2f5208997b841affef6de
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 16:33:52 2017 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 16:34:32 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2002b3d

dev-python/sdnotify: Add missing setuptools dep bug 626946

Package-Manager: Portage-2.3.16_p45, Repoman-2.3.6_p57

 dev-python/sdnotify/Manifest              | 2 +-
 dev-python/sdnotify/sdnotify-0.3.1.ebuild | 2 +-
 dev-python/sdnotify/sdnotify-0.3.2.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/sdnotify/Manifest b/dev-python/sdnotify/Manifest
index 62d020c3ae2..cf1a3df0ebd 100644
--- a/dev-python/sdnotify/Manifest
+++ b/dev-python/sdnotify/Manifest
@@ -1,2 +1,2 @@
-DIST sdnotify-0.3.1.tar.gz 2513 SHA256 e69220d4f6cbb02130f43f929350a80cf51033fde47dcb056fbda71e2dff2d5a SHA512 765e75e727ad5128269bfffd4d3f64666df654adc50965a54f3cd622933aca583faee5453f7fec3a23b6f754f4475522dd96a86ba643984cd72a575ec082709c WHIRLPOOL b43831604022cdd5f605138324cda4e43ee7021993e66afaa73b82eff98c11dc087d5f8f5d1b62073d750cfb84ac9168eca12640dc6149df68506826fcbfc0c4
+DIST sdnotify-0.3.1.tar.gz 2513 BLAKE2B cbce1d3c2bae3b3a02102cfea9ac104e7c2839b784a78309cfad0a66fc8b13bba66ae4bdb8dcf1d2171378e04f2c18e3697b22545a3e3f0593edff8adcc19dc3 SHA512 765e75e727ad5128269bfffd4d3f64666df654adc50965a54f3cd622933aca583faee5453f7fec3a23b6f754f4475522dd96a86ba643984cd72a575ec082709c
 DIST sdnotify-0.3.2.tar.gz 2459 SHA256 73977fc746b36cc41184dd43c3fe81323e7b8b06c2bb0826c4f59a20c56bb9f1 SHA512 f7e7d38c8d7f56ebad8b0343361a0bf6177208b94916430343a0a392015622d7bb62aa391e17956e5aa9a0d7189c79268cb86c46bb52b36488df5aebca5cfbd3 WHIRLPOOL 4885e8381f83db3901553ea6ab7c49e4c7b64aea73d5ac75fd6ff42c8acf4db578b0f211c6535bd868ff4fc968ace1c94d20b1f6297fea458abbbbcc794e5c9a

diff --git a/dev-python/sdnotify/sdnotify-0.3.1.ebuild b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
index fe6f98641f0..c037e2b33e9 100644
--- a/dev-python/sdnotify/sdnotify-0.3.1.ebuild
+++ b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
@@ -18,5 +18,5 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-RDEPEND=""
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"

diff --git a/dev-python/sdnotify/sdnotify-0.3.2.ebuild b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
index 4d0b1c61f19..41b30305da7 100644
--- a/dev-python/sdnotify/sdnotify-0.3.2.ebuild
+++ b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
@@ -17,5 +17,5 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-RDEPEND=""
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/
@ 2019-05-21 15:29 Stephen Klimaszewski
  0 siblings, 0 replies; 6+ messages in thread
From: Stephen Klimaszewski @ 2019-05-21 15:29 UTC (permalink / raw
  To: gentoo-commits

commit:     fc805078504bf1231aab7a15962d31822f2816e2
Author:     Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
AuthorDate: Tue May 21 15:28:44 2019 +0000
Commit:     Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
CommitDate: Tue May 21 15:28:55 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc805078

dev-python/sdnotify: add ~arm64 keyword

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Stephen Klimaszewski <steev <AT> gentoo.org>

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

diff --git a/dev-python/sdnotify/sdnotify-0.3.2.ebuild b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
index f6cc282c1fd..877af9d028a 100644
--- a/dev-python/sdnotify/sdnotify-0.3.2.ebuild
+++ b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE=""
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/
@ 2020-02-06  5:59 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2020-02-06  5:59 UTC (permalink / raw
  To: gentoo-commits

commit:     f834c32a2e170b5396f8d13a880396479bc06931
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  6 05:44:56 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb  6 05:59:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f834c32a

dev-python/sdnotify: Remove py2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/sdnotify/sdnotify-0.3.1.ebuild | 2 +-
 dev-python/sdnotify/sdnotify-0.3.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/sdnotify/sdnotify-0.3.1.ebuild b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
index 3ffa5081818..c4f63855c60 100644
--- a/dev-python/sdnotify/sdnotify-0.3.1.ebuild
+++ b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 

diff --git a/dev-python/sdnotify/sdnotify-0.3.2.ebuild b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
index d278fda3980..87c06d0f9ff 100644
--- a/dev-python/sdnotify/sdnotify-0.3.2.ebuild
+++ b/dev-python/sdnotify/sdnotify-0.3.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 
 inherit distutils-r1
 


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

end of thread, other threads:[~2020-02-06  5:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-01 22:18 [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/ Manuel Rüger
  -- strict thread matches above, loose matches on Subject: below --
2020-02-06  5:59 Michał Górny
2019-05-21 15:29 Stephen Klimaszewski
2017-11-29 16:35 Brian Dolbec
2017-10-19 14:28 Manuel Rüger
2017-08-01 18:52 Brian Dolbec

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