summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-05-13 22:11:53 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2024-05-13 22:11:53 +0300
commitffced18f99132a3bcae867a44b25d648827457e4 (patch)
tree48106f8f372e4d23abe926bc21e53e6bd64d45c3
parentnet-misc/pedro: Stabilize 1.14 amd64, #931883 (diff)
downloadgentoo-ffced18f99132a3bcae867a44b25d648827457e4.tar.gz
gentoo-ffced18f99132a3bcae867a44b25d648827457e4.tar.bz2
gentoo-ffced18f99132a3bcae867a44b25d648827457e4.zip
net-misc/pedro: drop 1.12
Closes: https://bugs.gentoo.org/913494 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r--net-misc/pedro/Manifest1
-rw-r--r--net-misc/pedro/pedro-1.12.ebuild58
2 files changed, 0 insertions, 59 deletions
diff --git a/net-misc/pedro/Manifest b/net-misc/pedro/Manifest
index c7d6532e9f82..ea0c572650c4 100644
--- a/net-misc/pedro/Manifest
+++ b/net-misc/pedro/Manifest
@@ -1,3 +1,2 @@
-DIST pedro-1.12.tgz 1181678 BLAKE2B ed882ab3dae0912519283229d10ff6f12ef4f623d72beaf22b8467e8072752fbd57836a0ebbad0f0ce3da1b4837049161bcb12673e3c38c94eb167e16c0c0a1e SHA512 936b2c6cac526d9d3c0e146b53dc65ed0508c6abd1b66c97656fa5b4011d7dd11912d1c0bf091a29b56e13c3e19ec3e0ad7760d44d4887b939699cdd2389c819
DIST pedro-1.14.tgz 1213309 BLAKE2B 104f3816d79534411ba5d78517a744d9a0bf892cf99a1c654a94b9041f4ff038c00d029b182b8f825cfe80cb9861e9440b4e73de3be1f74945a34dbaefb995e7 SHA512 ffe32c296c8325ea31a4bf5d937504e9076654253f19dea17b234f53ba62a4b96e8611cab1dbf545f30734cfd8924e4140b08956180886ac21849546b9ad0cad
DIST pedro-manual-1.x.tar.gz 222863 BLAKE2B 085b118585808aced9217a8001080b589d9dad958ad14787f929a4808b10bb2be80ae7bc04c07b676e41aed9e2ec916215c5d15dda2317f71ecebbc7c1737d96 SHA512 87f8e07e3a687d12e366f1974398996f2346e417680ab534622f901c0c7e1efeb171f0c0dadad46b578122c9e98531570c303d2d3ce04b1cd8150816d6138f99
diff --git a/net-misc/pedro/pedro-1.12.ebuild b/net-misc/pedro/pedro-1.12.ebuild
deleted file mode 100644
index e66bf2c9ece4..000000000000
--- a/net-misc/pedro/pedro-1.12.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="Pedro is a subscription/notification communications system"
-HOMEPAGE="https://staff.itee.uq.edu.au/pjr/HomePages/PedroHome.html"
-SRC_URI="https://staff.itee.uq.edu.au/pjr/HomePages/PedroFiles/${P}.tgz
- doc? ( https://dev.gentoo.org/~keri/distfiles/pedro/${PN}-manual-1.x.tar.gz )"
-S="${WORKDIR}"/${P}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc examples"
-
-RDEPEND="dev-libs/glib:2"
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}"/${P}-portage.patch
-)
-
-src_prepare() {
- default
-
- eautoreconf
-}
-
-src_configure() {
- tc-export PKG_CONFIG
-
- default
-}
-
-src_install() {
- default
-
- if use doc ; then
- dodoc "${WORKDIR}"/${PN}.pdf
- fi
-
- if use examples ; then
- docinto examples
- dodoc src/examples/*.{c,tcl}
-
- docinto examples/java_api
- dodoc src/java_api/*.java
-
- docinto examples/python_api
- dodoc src/python_api/*.py
- fi
-}