dev-python/sdnotify: update to python 3.7 and prepare next removal from tree

This commit is contained in:
nemunaire 2020-05-15 16:41:44 +02:00
parent db75a3169f
commit be3867c294
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST sdnotify-0.3.2.tar.gz 2459 BLAKE2B 1d1846e37889c36cfa7242d14e4040ebb9b73d3e53f5a3423447ae1a4912373e4249faa7803ac212e3c7d64371d1fe9e1be2d56f8604791cead2cbe22e422053 SHA512 f7e7d38c8d7f56ebad8b0343361a0bf6177208b94916430343a0a392015622d7bb62aa391e17956e5aa9a0d7189c79268cb86c46bb52b36488df5aebca5cfbd3
EBUILD sdnotify-0.3.2.ebuild 520 BLAKE2B 36981afc5ed58c3a8e1db4929c482beebf7b9c06a30399e8228af8781f64b556373bda09110560a36db3b98b86bf4034d3f163743054c2698dcdab0a42663dbd SHA512 29a12bd1c71229ffa8154590d3f771ae9a0759c6545fd56499e78d9f6b0f5cc4c91b49ccfcbb8ac34681cf0eb7915c07a7ca997ff8f6fda88c1f3813ea92cbd7
MISC metadata.xml 800 BLAKE2B 3841a502690a98b0fd6ab419349f359dd167899f5c7b8f53e610a7677d060fba149338196a1108ef66bdf62fc42acaea6aee03169e6020d2eea1db83b54b6cff SHA512 2ad4766fb8ef7abcd0a5444aab298d97f66fd84d5dc6e24e6e597f075fc82273d7991e5186b08a2f1ff0040675a8066b3046f1761c4a8200a4894f66990c8a3e

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<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>

View File

@ -0,0 +1,21 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="Python implementation of systemd's service notification protocol (sd_notify)"
HOMEPAGE="https://github.com/bb4242/sdnotify
https://pypi.org/project/sdnotify/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE=""
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}"