diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2022-03-15 12:58:30 -0400 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2022-03-15 12:58:30 -0400 |
commit | e5b884a6f1caf966832a6519218107c23838b4d8 (patch) | |
tree | 74f82c845d50c39551ad80e6c168c74f6009460c /dev-db/pgagent | |
parent | acct-user/pgagent: Initial 0 release for GLEP-81 update (diff) | |
download | gentoo-e5b884a6f1caf966832a6519218107c23838b4d8.tar.gz gentoo-e5b884a6f1caf966832a6519218107c23838b4d8.tar.bz2 gentoo-e5b884a6f1caf966832a6519218107c23838b4d8.zip |
dev-db/pgagent: Bump to 4.2.1
Additionally migrates from cmake-utils and user to cmake and acct-user.
Bug: https://bugs.gentoo.org/781284
Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
Diffstat (limited to 'dev-db/pgagent')
-rw-r--r-- | dev-db/pgagent/Manifest | 1 | ||||
-rw-r--r-- | dev-db/pgagent/pgagent-4.2.1.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/dev-db/pgagent/Manifest b/dev-db/pgagent/Manifest index b88d3cf25a9b..d3bd5981bcec 100644 --- a/dev-db/pgagent/Manifest +++ b/dev-db/pgagent/Manifest @@ -1 +1,2 @@ DIST pgAgent-4.0.0-Source.tar.gz 63561 BLAKE2B 1731e748a6a5e76cd8b177162eb5b82ae633d1b507739e3193a8857a0eee0fe775fdaadb871eb5d708c0f7e80558680b5d7d246f4cb5d2bc1c10955bdf9cc09e SHA512 df2d6f5817d83d4cf60f0f1106718225870bcfd2f5b882765e5fd459e1614208225f90b29de492bec5284f3727f3d4be9f724b92ef503fea08029fab22a8fbb4 +DIST pgAgent-4.2.1-Source.tar.gz 65583 BLAKE2B ee75803475dfbb751f1a81da5c3a6bec82aee80e9ce7d0413f94395069b5c0cbb6ff8770083078ce0e3a571a4c1b6d2e6adf6af8f0bfa9e8adfc862fff38d0d3 SHA512 778ca020ec23b3d042760cdcf84d3c2da8da48c8a648a9999812c2e79edfcc8912ab23cc1a1c29f379d6a56960cdd876164397b8fe6b21dd386a917a80eaa71c diff --git a/dev-db/pgagent/pgagent-4.2.1.ebuild b/dev-db/pgagent/pgagent-4.2.1.ebuild new file mode 100644 index 000000000000..e6e675fbee11 --- /dev/null +++ b/dev-db/pgagent/pgagent-4.2.1.ebuild @@ -0,0 +1,48 @@ +# 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" +} |