Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sdnotify/
Date: Tue, 01 Aug 2017 18:52:48
Message-Id: 1501613483.9347bdb6889ef19d790e7933be1878ac237c0e65.dolsen@gentoo
1 commit: 9347bdb6889ef19d790e7933be1878ac237c0e65
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 18:43:13 2017 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 1 18:51:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9347bdb6
7
8 dev-python/sdnotify: New pkg, dep of new pkg dev-python/crossbar
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 dev-python/sdnotify/Manifest | 1 +
13 dev-python/sdnotify/metadata.xml | 24 ++++++++++++++++++++++++
14 dev-python/sdnotify/sdnotify-0.3.1.ebuild | 22 ++++++++++++++++++++++
15 3 files changed, 47 insertions(+)
16
17 diff --git a/dev-python/sdnotify/Manifest b/dev-python/sdnotify/Manifest
18 new file mode 100644
19 index 00000000000..d26bbdd3aff
20 --- /dev/null
21 +++ b/dev-python/sdnotify/Manifest
22 @@ -0,0 +1 @@
23 +DIST sdnotify-0.3.1.tar.gz 2513 SHA256 e69220d4f6cbb02130f43f929350a80cf51033fde47dcb056fbda71e2dff2d5a SHA512 765e75e727ad5128269bfffd4d3f64666df654adc50965a54f3cd622933aca583faee5453f7fec3a23b6f754f4475522dd96a86ba643984cd72a575ec082709c WHIRLPOOL b43831604022cdd5f605138324cda4e43ee7021993e66afaa73b82eff98c11dc087d5f8f5d1b62073d750cfb84ac9168eca12640dc6149df68506826fcbfc0c4
24
25 diff --git a/dev-python/sdnotify/metadata.xml b/dev-python/sdnotify/metadata.xml
26 new file mode 100644
27 index 00000000000..24bc40f11d1
28 --- /dev/null
29 +++ b/dev-python/sdnotify/metadata.xml
30 @@ -0,0 +1,24 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>dolsen@g.o</email>
36 + <description>Primary maintainer</description>
37 + </maintainer>
38 + <upstream>
39 + <maintainer>
40 + <email>bbethke@×××××.com</email>
41 + <name>Brett Bethke</name>
42 + </maintainer>
43 + <remote-id type="pypi">sdnotify</remote-id>
44 + <remote-id type="github">bb4242/sdnotify</remote-id>
45 + </upstream>
46 + <longdescription>
47 + This is a pure Python implementation of the systemd sd_notify
48 + protocol. This protocol can be used to inform systemd about
49 + service start-up completion, watchdog events, and other service
50 + status changes. Thus, this package can be used to write system
51 + services in Python that play nicely with systemd. sdnotify is
52 + compatible with both Python 2 and Python 3.
53 + </longdescription>
54 +</pkgmetadata>
55
56 diff --git a/dev-python/sdnotify/sdnotify-0.3.1.ebuild b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
57 new file mode 100644
58 index 00000000000..7e034a96ad4
59 --- /dev/null
60 +++ b/dev-python/sdnotify/sdnotify-0.3.1.ebuild
61 @@ -0,0 +1,22 @@
62 +# Copyright 1999-2017 Gentoo Foundation
63 +# Distributed under the terms of the GNU General Public License v2
64 +
65 +EAPI=6
66 +
67 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
68 +
69 +inherit distutils-r1
70 +
71 +DESCRIPTION="A pure Python implementation of systemd's service notification protocol (sd_notify)"
72 +HOMEPAGE="
73 + https://github.com/bb4242/sdnotify
74 + https://pypi.python.org/pypi/sdnotify"
75 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
76 +
77 +LICENSE="MIT"
78 +SLOT="0"
79 +KEYWORDS="~amd64"
80 +IUSE=""
81 +
82 +RDEPEND=""
83 +DEPEND="${RDEPEND}"