aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2016-08-22 08:05:26 +0000
committerFrancesco Colista <fcolista@alpinelinux.org>2016-08-22 08:12:51 +0000
commit1b54ef361d3f88a6303bdc6f034c427d3fc340cd (patch)
tree8601d0a539998f6deda00baac6c219fbb0e72107 /testing
parentf735580871e2f3203fbc3acc12e330ae4a09bbe8 (diff)
downloadaports-1b54ef361d3f88a6303bdc6f034c427d3fc340cd.tar.bz2
aports-1b54ef361d3f88a6303bdc6f034c427d3fc340cd.tar.xz
community/know: moved from testing, upgrade to 2.3.0
Diffstat (limited to 'testing')
-rw-r--r--testing/knot/APKBUILD72
-rw-r--r--testing/knot/knot.post-install10
-rw-r--r--testing/knot/knot.pre-install6
-rw-r--r--testing/knot/knotd.confd1
-rw-r--r--testing/knot/knotd.initd36
5 files changed, 0 insertions, 125 deletions
diff --git a/testing/knot/APKBUILD b/testing/knot/APKBUILD
deleted file mode 100644
index a98fccfb74..0000000000
--- a/testing/knot/APKBUILD
+++ /dev/null
@@ -1,72 +0,0 @@
-# Contributor: Francesco Colista <fcolista@alpinelinux.org>
-# Contributor: Dennis Przytarski <dennis@przytarski.com>
-# Contributor: Francesco Zanini <francesco@zanini.me>
-# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
-pkgname=knot
-pkgver=2.2.1
-pkgrel=0
-pkgdesc="An high-performance authoritative-only DNS server"
-url="https://www.knot-dns.cz"
-arch="all"
-license="GPL3"
-options=""
-depends=""
-depends_dev="gnutls-dev libedit-dev jansson-dev libcap-ng-dev
- libidn-dev openssl-dev userspace-rcu-dev zlib-dev"
-makedepends="$depends_dev m4 bison flex perl libtool"
-install="$pkgname.pre-install $pkgname.post-install"
-pkgusers="knot"
-pkggroups="knot"
-subpackages="$pkgname-dev $pkgname-doc"
-source="https://secure.nic.cz/files/knot-dns/${pkgname}-${pkgver}.tar.xz
- knotd.confd
- knotd.initd
- "
-_builddir="$srcdir"/$pkgname-$pkgver
-
-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"
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/lib/knot \
- --with-rundir=/var/run/knot \
- --with-storage=/var/lib/knot \
- --disable-silent-rules \
- || return 1
- make || return 1
- make check || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="${pkgdir}" install || return 1
- install -Dm 644 "${srcdir}/knotd.confd" "${pkgdir}/etc/conf.d/knotd"
- install -Dm 755 "${srcdir}/knotd.initd" "${pkgdir}/etc/init.d/knotd"
- chown $pkgusers:$pkggroups "${pkgdir}"/var/lib/$pkgname
- chmod 750 "${pkgdir}"/var/lib/$pkgname
- chown $pkgusers:$pkggroups "${pkgdir}"/var/run/$pkgname
- chmod 750 "${pkgdir}"/var/run/$pkgname
-}
-
-md5sums="d573ecadedf4f15ec1f02671443520cb knot-2.2.1.tar.xz
-66f3111080662280d95bc928d6ca92d5 knotd.confd
-5bdbc22866a28caae068e65d53916915 knotd.initd"
-sha256sums="4b587bd8299445a29990ba89087b156ab9b6bf85cbd68846766c078e5b3481d3 knot-2.2.1.tar.xz
-ff384d428c9e67139ed21b0c78eabf6a26d96f31775f6143ce0c4f9c4f6beaf3 knotd.confd
-c7690f1c4f748f436faa9e305ecbbb3d05e5cc50493eb10ca92bc73365578428 knotd.initd"
-sha512sums="040fa8824e250d359d74a9d731e6667367ea7e764b06f07f4e737ba4f6a56f4651cd3db6465f3c69e79c89b27edeea8161d049ef7083a5bb26941a201c17ccfd knot-2.2.1.tar.xz
-471d3c639a8235ba09491c99d36c0a4f1074d6055ccfd3807be02a30d3ed5bbe69a84f0414ea7810db6bbc1e38f5837108e5744fc59f949ed78a262a7de4597e knotd.confd
-b6cd5b52ba65f9726164b21003fe0a0fc54f4f51aa7bbbcfd5b83aa4466e5224567a26c9c8ede13ac6a8090706e975e3220456112b20eb45304c9d92be7fb3d3 knotd.initd"
diff --git a/testing/knot/knot.post-install b/testing/knot/knot.post-install
deleted file mode 100644
index 179e5fc92a..0000000000
--- a/testing/knot/knot.post-install
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-echo "*" >&2
-echo "* Before running knot, you must create a knot.conf file." >&2
-echo "* There is an example in the /etc/knot directory." >&2
-echo "* You can rename the example file and make the necessary adjustment." >&2
-echo "*" >&2
-
-exit 0
-
diff --git a/testing/knot/knot.pre-install b/testing/knot/knot.pre-install
deleted file mode 100644
index 6fc6e21461..0000000000
--- a/testing/knot/knot.pre-install
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-addgroup -S knot 2>/dev/null
-adduser -S -D -H -s /sbin/nologin -G knot -g knot knot 2>/dev/null
-
-exit 0
diff --git a/testing/knot/knotd.confd b/testing/knot/knotd.confd
deleted file mode 100644
index f7a0c2a47c..0000000000
--- a/testing/knot/knotd.confd
+++ /dev/null
@@ -1 +0,0 @@
-KNOTD_OPTS=""
diff --git a/testing/knot/knotd.initd b/testing/knot/knotd.initd
deleted file mode 100644
index 49309869e5..0000000000
--- a/testing/knot/knotd.initd
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/knot/files/knot.init,v 1.2 2013/08/21 09:23:59 scarabeus Exp $
-
-name="knotd"
-command="/usr/sbin/knotd"
-command_args="-d ${KNOTD_OPTS}"
-start_stop_daemon_args="--wait 5"
-required_files=/etc/knot/knot.conf
-extra_started_commands="reload"
-description_reload="Reload configuration and changed zones"
-
-depend() {
- need net
-}
-
-start_pre() {
- checkpath -d -m 0750 -o knot:knot /var/run/knot/ /var/lib/knot/
-}
-
-stop() {
- ebegin "Stopping ${name}"
- /usr/sbin/knotc stop >/dev/null 2>&1
- # Mark service as stopped if remote control was successful
- if [ 0 -eq $? ]; then
- start-stop-daemon --stop --quiet --pidfile /var/run/knot/knot.pid
- fi
- eend $?
-}
-
-reload() {
- ebegin "Reloading knot"
- /usr/sbin/knotc reload >/dev/null
- eend $?
-}