aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/pgagent
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
commit3ce3c4fd596debefbad77328a9b62a39eccf753c (patch)
tree8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/pgagent
parent62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff)
downloadaports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2
aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to periodically purge aports in unmaintained that haven't been touched in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/pgagent')
-rw-r--r--unmaintained/pgagent/APKBUILD64
-rw-r--r--unmaintained/pgagent/pgagent.confd22
-rw-r--r--unmaintained/pgagent/pgagent.initd25
3 files changed, 0 insertions, 111 deletions
diff --git a/unmaintained/pgagent/APKBUILD b/unmaintained/pgagent/APKBUILD
deleted file mode 100644
index ae9eaea343..0000000000
--- a/unmaintained/pgagent/APKBUILD
+++ /dev/null
@@ -1,64 +0,0 @@
-# Contributor: Rafal Rzepecki <rafal@conjur.net>
-# Maintainer:
-pkgname=pgagent
-pkgver=3.4.0
-pkgrel=0
-pkgdesc="a job scheduler for PostgreSQL"
-url="http://www.pgadmin.org/docs/dev/pgagent.html"
-arch="all"
-license="POSTGRESQL"
-depends="wxgtk2.8-base postgresql"
-depends_dev="wxgtk2.8-dev postgresql-dev"
-makedepends="$depends_dev cmake"
-install=""
-subpackages="$pkgname-doc"
-source="
- https://ftp.postgresql.org/pub/pgadmin3/release/pgagent/pgAgent-$pkgver-Source.tar.gz
- pgagent.initd
- pgagent.confd
-"
-
-_builddir="$srcdir"/pgAgent-$pkgver-Source
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DSTATIC_BUILD:BOOLEAN=FALSE
- make || return 1
-}
-
-package() {
- cd "$_builddir"
-
- make DESTDIR="$pkgdir" install
-
- # remove useless doc files
- rm "$pkgdir"/usr/README
- rm "$pkgdir"/usr/LICENSE
-
- install -m755 -D "$srcdir"/$pkgname.initd \
- "$pkgdir"/etc/init.d/$pkgname || return 1
- install -m644 -D "$srcdir"/$pkgname.confd \
- "$pkgdir"/etc/conf.d/$pkgname || return 1
-
- install -Dm644 "$_builddir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
- install -Dm644 "$_builddir"/README "$pkgdir"/usr/share/doc/$pkgname/README
-}
-
-md5sums="187caa1843f0d82f6caa1be0f80d6232 pgAgent-3.4.0-Source.tar.gz
-c719d251f7617583864b9b5f7128bf6f pgagent.initd
-c64e1925e38a93ad66f701d3015ae970 pgagent.confd"
-sha256sums="0da0ac8f453cf34ab6f708eee036bed0fd0e5fa311de283b92d2ff06600bbb3d pgAgent-3.4.0-Source.tar.gz
-b37ac8a8e95144e19c04cc02fd508515b44ef4ac74b2572e48c55d91b04d679f pgagent.initd
-2bdf4166ff53c57b382788b89818e6c3298fbaa291092236883bd03e08970d4b pgagent.confd"
-sha512sums="3b068fc6f5e51ff20604f8cec3e067d04b5b1537229da15ee442000f5fe834697a4eae86be0e9a58b8ee5da24cc985c8c9804d71cb2a50e93ec4cf9a424a4ff0 pgAgent-3.4.0-Source.tar.gz
-e84bf6c3a2bb9d2d8afad2dda7ebcac80ede19a5595ccbe31251731917c3f2337ca3fca68bc47ca8f51bb6e765a0c1e54eabf60466a42d1a6938399d13b71a79 pgagent.initd
-fe9fcdd33225a361cbd007ac5bef439946714da9a990169222b8ba88e63362a753e80490ab9402f146ec6a6782b3457846039cc0ad84bf0cdf0c231deec1c286 pgagent.confd"
diff --git a/unmaintained/pgagent/pgagent.confd b/unmaintained/pgagent/pgagent.confd
deleted file mode 100644
index a85be20614..0000000000
--- a/unmaintained/pgagent/pgagent.confd
+++ /dev/null
@@ -1,22 +0,0 @@
-# Pool time interval
-PGA_POLL="10"
-
-# Retry period
-PGA_RETRY="30"
-
-# Log file
-PGA_LOG="/var/log/pgagent.log"
-
-# Logging verbosity
-# ERROR=0, WARNING=1, DEBUG=2
-PGA_LEVEL="1"
-
-# Server parameters
-# Host address
-PG_HOST="localhost"
-
-# DB name
-PG_DBNAME="postgres"
-
-# Username
-PG_USER="postgres"
diff --git a/unmaintained/pgagent/pgagent.initd b/unmaintained/pgagent/pgagent.initd
deleted file mode 100644
index 0e37fcc6b5..0000000000
--- a/unmaintained/pgagent/pgagent.initd
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/pgagent/files/pgagent.initd,v 1.1 2012/04/28 18:34:11 titanofold Exp $
-
-PGAGENTOPT="-t ${PGA_POLL} -r ${PGA_RETRY} -s ${PGA_LOG} -l ${PGA_LEVEL}"
-
-PGOPT="hostaddr=${PG_HOST} dbname=${PG_DBNAME} user=${PG_USER}"
-
-depend() {
- use net
- need postgresql
-}
-
-start() {
- ebegin "Starting pgagent"
- start-stop-daemon --start --exec /usr/bin/pgagent -- ${PGAGENTOPT} ${PGOPT}
- eend $?
-}
-
-stop() {
- ebegin "Stopping pgagent"
- start-stop-daemon --stop --name pgagent
- eend $?
-}