dev-python/posix-ipc: new pkg; add 1.0.5

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
This commit is contained in:
Maciej Barć 2020-12-24 23:12:13 +01:00
parent 6478e788ac
commit d02fa42859
No known key found for this signature in database
GPG Key ID: 031C9FE65BED714A
3 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST posix-ipc-1.0.5.tar.gz 96859 BLAKE2B de4fe580fddefcfaea7562c9e40833f06a945029c0df0a9cec3e4b5851b5e74f507db56515ca71853ada234e2333a4bcd56e210d17d852e8527932ae4d4ffa0e SHA512 ea44314c34291ad0ef5d98ccf7b13ce216964dd084f681613b91c573be472297145cd46e990bab4746f09cb0cf0788a6d5f6423a15255e198f8e5772eec14717

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>xgqt@protonmail.com</email>
<name>Maciej Barć</name>
</maintainer>
<upstream>
<remote-id type="github">osvenskan/posix_ipc</remote-id>
<remote-id type="pypi">posix-ipc</remote-id>
</upstream>
<longdescription>
POSIX IPC primitives (semaphores, shared memory and message queues)
for Python
posix_ipc is a Python module (written in C) that permits creation
and manipulation of POSIX inter-process semaphores,
shared memory and message queues on platforms supporting
the POSIX Realtime Extensions a.k.a. POSIX 1003.1b-1993
</longdescription>
</pkgmetadata>

View File

@ -0,0 +1,22 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_PN="${PN/-/_}"
MY_P="${MY_PN}-${PV}"
PYTHON_COMPAT=( python3_{7,8,9} )
inherit distutils-r1
DESCRIPTION="POSIX IPC primitives for Python"
HOMEPAGE="http://semanchuk.com/philip/posix_ipc/"
SRC_URI="http://semanchuk.com/philip/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
RESTRICT="mirror test"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
S="${WORKDIR}/${MY_P}"