diff options
author | Daniel Kenzelmann <gentoo@k8n.de> | 2020-05-09 19:35:08 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-05-14 18:20:02 -0400 |
commit | 707f5ee63a9472daf11c0c3b4b1f94b2ae496a4b (patch) | |
tree | 9659a9c3011c280128ce9b4deb0f62e3974537f7 /dev-libs/pigpio | |
parent | dev-texlive/texlive-pstricks: remove unused patch(es) (diff) | |
download | gentoo-707f5ee63a9472daf11c0c3b4b1f94b2ae496a4b.tar.gz gentoo-707f5ee63a9472daf11c0c3b4b1f94b2ae496a4b.tar.bz2 gentoo-707f5ee63a9472daf11c0c3b4b1f94b2ae496a4b.zip |
dev-libs/pigpio: cleanup old versions
cleanup all versions except latest v76
Signed-off-by: Daniel Kenzelmann <gentoo@k8n.de>
Closes: https://github.com/gentoo/gentoo/pull/15729
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-libs/pigpio')
-rw-r--r-- | dev-libs/pigpio/Manifest | 3 | ||||
-rw-r--r-- | dev-libs/pigpio/pigpio-72.ebuild | 39 | ||||
-rw-r--r-- | dev-libs/pigpio/pigpio-73.ebuild | 39 | ||||
-rw-r--r-- | dev-libs/pigpio/pigpio-74.ebuild | 36 |
4 files changed, 0 insertions, 117 deletions
diff --git a/dev-libs/pigpio/Manifest b/dev-libs/pigpio/Manifest index 0022787f3a5a..1bc5710b0362 100644 --- a/dev-libs/pigpio/Manifest +++ b/dev-libs/pigpio/Manifest @@ -1,4 +1 @@ -DIST pigpio-72.tar.gz 384220 BLAKE2B ff3466df80adb6ee9bb2f6bc8aa9589bb6789746eedfab410d2a23dcd4986c29297f71469c8330c55603d8aabba7a4b2171390a63c21a12464b45cc4e24645d8 SHA512 c090962cb11204774e4a97a3dec37146882d66abef4d3e4de62e116b64650d6c66f95646f6350e3a45d8b2ba261a8d16c74f7648869cd0e94f42a80d88bb6d6e -DIST pigpio-73.tar.gz 385233 BLAKE2B 5b58b399ffccab456d64decea4190e326c70cfe36b5513d0c69aa68c5ebfe2667ec5b4a028d19ec987d948c7b94dd23d67903bbae901d61f751dd606540324ea SHA512 bc6d2bbc2f2067c851a74a6137913b9abf2a7424bc2f78cf4086a1210f5c1116f71dcfa94a1268c137f4181e2db39af0bd2025caa1a7f98374b2043a166af746 -DIST pigpio-74.tar.gz 385851 BLAKE2B 7487808407972815a5c2123c8cf97f12aa241f4f7c8bc1610d8a31e11d5946aba52a9c452c6c552c27599a4f9f57ec1e03a17a6a5a4157bec7d3d302e9abf680 SHA512 8bd2c3a1c9b8e3287120f6c45d281e2e93020fe50080b3ba8d454a255a5b378b4d08f372bcc3ce407bf0579103916ff20b7741e1ed6c05e09b08a948827a7a60 DIST pigpio-76.tar.gz 2905839 BLAKE2B 7828a94fad9f110392dc114534a3b242f1f135d352885f3c4332a1d4a16f49d2fa58b57e9e3d64c2bf9b5f3bdd7e84a74775b518fc409daf75a55a87c5f3af57 SHA512 8cc1dc64ae32a07f4b6e200638065ba5fb26a94c1a730d81b64fa5f2bb9356b2b9910decb41def6932fc76f7ebd1df99a7966516ba3df9a09108de0afcd119d3 diff --git a/dev-libs/pigpio/pigpio-72.ebuild b/dev-libs/pigpio/pigpio-72.ebuild deleted file mode 100644 index af5f01ca226d..000000000000 --- a/dev-libs/pigpio/pigpio-72.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 systemd toolchain-funcs - -DESCRIPTION="A library for the Raspberry which allows control of the GPIOs" -HOMEPAGE="http://abyz.me.uk/rpi/pigpio/index.html" -SRC_URI="https://github.com/joan2937/pigpio/archive/V${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~arm" -IUSE="python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -src_prepare() { - eapply "${FILESDIR}/${PN}-70-makefile.patch" - eapply_user -} - -src_compile() { - emake CC="$(tc-getCC)" STRIP=: STRIPLIB=: SIZE=: - use python && distutils-r1_src_compile -} - -src_install() { - emake DESTDIR="${D}" LDCONFIG=: PYTHON2=: PYTHON3=: \ - libdir="${EPREFIX}/usr/$(get_libdir)" prefix="${EPREFIX}/usr" \ - mandir="${EPREFIX}/usr/share/man" install - einstalldocs - newinitd "${FILESDIR}"/pigpiod.initd pigpiod - newconfd "${FILESDIR}"/pigpiod.confd pigpiod - systemd_newunit "${FILESDIR}"/pigpiod.systemd pigpiod.service - use python && distutils-r1_src_install -} diff --git a/dev-libs/pigpio/pigpio-73.ebuild b/dev-libs/pigpio/pigpio-73.ebuild deleted file mode 100644 index ca8b1bd2909d..000000000000 --- a/dev-libs/pigpio/pigpio-73.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit distutils-r1 systemd toolchain-funcs - -DESCRIPTION="A library for the Raspberry which allows control of the GPIOs" -HOMEPAGE="http://abyz.me.uk/rpi/pigpio/index.html" -SRC_URI="https://github.com/joan2937/pigpio/archive/V${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~arm" -IUSE="python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -src_prepare() { - eapply "${FILESDIR}/${PN}-70-makefile.patch" - eapply_user -} - -src_compile() { - emake CC="$(tc-getCC)" STRIP=: STRIPLIB=: SIZE=: - use python && distutils-r1_src_compile -} - -src_install() { - emake DESTDIR="${D}" LDCONFIG=: PYTHON2=: PYTHON3=: \ - libdir="${EPREFIX}/usr/$(get_libdir)" prefix="${EPREFIX}/usr" \ - mandir="${EPREFIX}/usr/share/man" install - einstalldocs - newinitd "${FILESDIR}"/pigpiod.initd pigpiod - newconfd "${FILESDIR}"/pigpiod.confd pigpiod - systemd_newunit "${FILESDIR}"/pigpiod.systemd pigpiod.service - use python && distutils-r1_src_install -} diff --git a/dev-libs/pigpio/pigpio-74.ebuild b/dev-libs/pigpio/pigpio-74.ebuild deleted file mode 100644 index 738bf586aaa1..000000000000 --- a/dev-libs/pigpio/pigpio-74.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit distutils-r1 systemd toolchain-funcs - -DESCRIPTION="A library for the Raspberry which allows control of the GPIOs" -HOMEPAGE="http://abyz.me.uk/rpi/pigpio/index.html https://github.com/joan2937/pigpio" -SRC_URI="https://github.com/joan2937/pigpio/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Unlicense" -SLOT="0" -KEYWORDS="~arm" -IUSE="python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -PATCHES=( "${FILESDIR}/${PN}-70-makefile.patch" ) - -src_compile() { - emake CC="$(tc-getCC)" STRIP=: STRIPLIB=: SIZE=: - use python && distutils-r1_src_compile -} - -src_install() { - emake DESTDIR="${D}" LDCONFIG=: PYTHON2=: PYTHON3=: \ - libdir="${EPREFIX}/usr/$(get_libdir)" prefix="${EPREFIX}/usr" \ - mandir="${EPREFIX}/usr/share/man" install - einstalldocs - newinitd "${FILESDIR}"/pigpiod.initd pigpiod - newconfd "${FILESDIR}"/pigpiod.confd pigpiod - systemd_newunit "${S}"/util/pigpiod.service pigpiod.service - use python && distutils-r1_src_install -} |