From d02fa42859af38764ed98805a04133477e50c768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Thu, 24 Dec 2020 23:12:13 +0100 Subject: [PATCH] dev-python/posix-ipc: new pkg; add 1.0.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Maciej Barć --- dev-python/posix-ipc/Manifest | 1 + dev-python/posix-ipc/metadata.xml | 20 +++++++++++++++++++ dev-python/posix-ipc/posix-ipc-1.0.5.ebuild | 22 +++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 dev-python/posix-ipc/Manifest create mode 100644 dev-python/posix-ipc/metadata.xml create mode 100644 dev-python/posix-ipc/posix-ipc-1.0.5.ebuild diff --git a/dev-python/posix-ipc/Manifest b/dev-python/posix-ipc/Manifest new file mode 100644 index 0000000..e4f2428 --- /dev/null +++ b/dev-python/posix-ipc/Manifest @@ -0,0 +1 @@ +DIST posix-ipc-1.0.5.tar.gz 96859 BLAKE2B de4fe580fddefcfaea7562c9e40833f06a945029c0df0a9cec3e4b5851b5e74f507db56515ca71853ada234e2333a4bcd56e210d17d852e8527932ae4d4ffa0e SHA512 ea44314c34291ad0ef5d98ccf7b13ce216964dd084f681613b91c573be472297145cd46e990bab4746f09cb0cf0788a6d5f6423a15255e198f8e5772eec14717 diff --git a/dev-python/posix-ipc/metadata.xml b/dev-python/posix-ipc/metadata.xml new file mode 100644 index 0000000..c6bec52 --- /dev/null +++ b/dev-python/posix-ipc/metadata.xml @@ -0,0 +1,20 @@ + + + + + xgqt@protonmail.com + Maciej Barć + + + osvenskan/posix_ipc + posix-ipc + + + 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 + + diff --git a/dev-python/posix-ipc/posix-ipc-1.0.5.ebuild b/dev-python/posix-ipc/posix-ipc-1.0.5.ebuild new file mode 100644 index 0000000..26eaea9 --- /dev/null +++ b/dev-python/posix-ipc/posix-ipc-1.0.5.ebuild @@ -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}"