commit: c39088421dcbda549de47d05fb8f7dd88ca64171
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 19 21:19:54 2026 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jan 26 18:21:23 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3908842
dev-db/pgagent: drop 4.2.1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-db/pgagent/Manifest | 1 -
dev-db/pgagent/pgagent-4.2.1.ebuild | 48 -------------------------------------
2 files changed, 49 deletions(-)
diff --git a/dev-db/pgagent/Manifest b/dev-db/pgagent/Manifest
index 896754a76129..ced8c2aed58f 100644
--- a/dev-db/pgagent/Manifest
+++ b/dev-db/pgagent/Manifest
@@ -1,2 +1 @@
-DIST pgAgent-4.2.1-Source.tar.gz 65583 BLAKE2B
ee75803475dfbb751f1a81da5c3a6bec82aee80e9ce7d0413f94395069b5c0cbb6ff8770083078ce0e3a571a4c1b6d2e6adf6af8f0bfa9e8adfc862fff38d0d3
SHA512
778ca020ec23b3d042760cdcf84d3c2da8da48c8a648a9999812c2e79edfcc8912ab23cc1a1c29f379d6a56960cdd876164397b8fe6b21dd386a917a80eaa71c
DIST pgagent-4.2.3.tar.gz 53108 BLAKE2B
ed51c0da86794674c09242bb87398ad9cac836fac7d88b72939257a277fcb8b96a3adc9c06598eefae0dee1e7c7f759231fb8dc306371755747e9b575cd52cd3
SHA512
f255c414f28b6f5e46162584919c6cc7da010c652827780ba350d19225f69539ab28144e3dde57879487c8c713d54001db890528e69926dd3823f122b91d3d7f
diff --git a/dev-db/pgagent/pgagent-4.2.1.ebuild
b/dev-db/pgagent/pgagent-4.2.1.ebuild
deleted file mode 100644
index e6e675fbee11..000000000000
--- a/dev-db/pgagent/pgagent-4.2.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-CMAKE_IN_SOURCE_BUILD=1
-
-inherit cmake
-
-MY_PN=${PN/a/A}
-
-KEYWORDS="amd64 x86"
-
-DESCRIPTION="${MY_PN} is a job scheduler for PostgreSQL"
-HOMEPAGE="https://www.pgadmin.org/download/pgagent-source-code/"
-SRC_URI="https://ftp.postgresql.org/pub/pgadmin/${PN}/${MY_PN}-${PV}-Source.tar.gz"
-
-LICENSE="POSTGRESQL GPL-2"
-SLOT="0"
-
-RDEPEND="
- acct-user/pgagent
- dev-db/postgresql:*
- dev-libs/boost
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_PN}-${PV}-Source"
-
-src_prepare() {
- cmake_src_prepare
-
- sed -e "s:share):share/${P}):" \
- -i CMakeLists.txt || die "failed to patch CMakeLists.txt"
-}
-
-src_configure() {
- local mycmakeargs=( "-DSTATIC_BUILD:BOOLEAN=FALSE" )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
-
- newinitd "${FILESDIR}/pgagent.initd-r1" "${PN}"
- newconfd "${FILESDIR}/pgagent.confd" "${PN}"
-
- rm "${ED}"/usr/{LICENSE,README} || die "failed to remove useless docs"
-}