net-dns/knot: remove olds
authorPierre-Olivier Mercier <nemunaire@nemunai.re>
Mon, 6 Jan 2020 12:12:03 +0000 (13:12 +0100)
committerJoonas Niilola <juippis@gentoo.org>
Tue, 7 Jan 2020 06:20:01 +0000 (08:20 +0200)
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Pierre-Olivier Mercier <nemunaire@nemunai.re>
Closes: https://github.com/gentoo/gentoo/pull/14264
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
net-dns/knot/Manifest
net-dns/knot/knot-2.8.4.ebuild [deleted file]
net-dns/knot/knot-2.9.0.ebuild [deleted file]
net-dns/knot/knot-2.9.1.ebuild [deleted file]

index 5c6752b977a58f3f1cee000108aa14dfb8f4d3ef..c6eec7b10758f18591677792f4d858ab0c2905d8 100644 (file)
@@ -1,5 +1,2 @@
-DIST knot-2.8.4.tar.xz 1181812 BLAKE2B ff334ec3914ff682247b10719c9da28cdc1b353a24915204944ab2c010395a19d154ff1e1db399fa38df616c606574856f8ad69a144d56e4414a4c06dea9fe87 SHA512 8f826f0e2259b346c84212f9b58fe756044b2549ae84e42d929a0e01269d9f72bce1791c98327b02de375c739e77090d0ea9bacba9fa91ded5b2ea16154ac588
 DIST knot-2.8.5.tar.xz 1209076 BLAKE2B 7454499745caa04a9454f023bed0ce6d8ccc54fc2c264aada72a842c39b056a91caee908eb1b036fe77b97d8cea4f03b9afcd084a69846a2632e717f7c3591fd SHA512 f45e62816ddc1f534e724d2fa71831100efc01b415ec2ea8301d02cf44d8f104a248deccdb706ebad6853404aee2a209c2bf51b07076aa69340af6812e5a79de
-DIST knot-2.9.0.tar.xz 1210236 BLAKE2B 1cc461feff60ed15bb04438767b2d0fa069bec5f649fc703127950672af2235ec3cb5a84c900c4fc42acdc40ef55f8f17605077eafbb0c4a9aabfe3bd3ea2c83 SHA512 7584152d4fd01cea40a254b05d59971c7341cf612976104ddd857c4a1c637fc83ad93669fc943de3c1514122be793b78f8cc26fef4cc98f5a693640bb766f2b9
-DIST knot-2.9.1.tar.xz 1212460 BLAKE2B 7b025ab7fffddd6860cf4fa04386746c1e900d28bfc4322a021807c27f6c4621c0a19becbba07f9519c8fbb663b70c59b815ca566f6952edc3deb56b5658ae86 SHA512 467de157894c6d09f5ba0864f6c637f31f2cf4bcc612e1aa94a9f72395ce2f42dfe024818f84be5f3519af3d6421c771ad08f2dbf7ede6ff9ec7ec2a885178ff
 DIST knot-2.9.2.tar.xz 1181860 BLAKE2B 4c4a54624cc0c107517596efb3d4a4dc205dac488e293b594e93f8e73b1face3c0ac4ca94d5def68576f7b801540468a355e5b4bd06d7992edc3bce122952fd3 SHA512 7e09cd6e587342b0a213f7a108704fff7535d02dd47d662e60b96ae5d75d9745d659131622253f964deb1607f28d172d1d46dc3b5f61e2f6c70e5002e746da68
diff --git a/net-dns/knot/knot-2.8.4.ebuild b/net-dns/knot/knot-2.8.4.ebuild
deleted file mode 100644 (file)
index aa3b073..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd
-
-DESCRIPTION="High-performance authoritative-only DNS server"
-HOMEPAGE="https://www.knot-dns.cz/"
-SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-KNOT_MODULES=(
-       "+cookies"
-       "+dnsproxy"
-       "dnstap"
-       "geoip"
-       "+noudp"
-       "+onlinesign"
-       "+queryacl"
-       "+rrl"
-       "+stats"
-       "+synthrecord"
-       "+whoami"
-)
-IUSE="doc caps +fastparser idn +libidn2 systemd +utils ${KNOT_MODULES[@]}"
-
-RDEPEND="
-       acct-group/knot
-       acct-user/knot
-       dev-db/lmdb
-       dev-libs/libedit
-       dev-libs/userspace-rcu:=
-       dev-python/lmdb
-       net-libs/gnutls:=
-       caps? ( sys-libs/libcap-ng )
-       dnstap? (
-               dev-libs/fstrm
-               dev-libs/protobuf-c:=
-       )
-       geoip? ( dev-libs/libmaxminddb:= )
-       idn? (
-               !libidn2? ( net-dns/libidn:0= !net-dns/libidn2 )
-               libidn2? ( net-dns/libidn2:= )
-       )
-       systemd? ( sys-apps/systemd:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( dev-python/sphinx )
-"
-
-S="${WORKDIR}/${P/_/-}"
-
-src_configure() {
-       local u
-       local my_conf=(
-               --with-storage="${EPREFIX}/var/lib/${PN}"
-               --with-rundir="${EPREFIX}/var/run/${PN}"
-               $(use_enable fastparser)
-               $(use_enable dnstap)
-               $(use_enable doc documentation)
-               $(use_enable utils utilities)
-               --enable-systemd=$(usex systemd)
-               $(use_with idn libidn)
-       )
-
-       for u in "${KNOT_MODULES[@]#+}"; do
-               my_conf+=("$(use_with ${u} module-${u})")
-       done
-
-       econf "${my_conf[@]}"
-}
-
-src_compile() {
-       default
-
-       if use doc; then
-               emake -C doc html
-               HTML_DOCS=( doc/_build/html/{*.html,*.js,_sources,_static} )
-       fi
-}
-
-src_test() {
-       emake check
-}
-
-src_install() {
-       default
-
-       rmdir "${D}/var/run/${PN}" "${D}/var/run/" || die
-
-       newinitd "${FILESDIR}/knot.init" knot
-       if use systemd; then
-               systemd_newunit "${FILESDIR}/knot-1.service" knot.service
-       fi
-
-       find "${D}" -name '*.la' -delete || die
-}
diff --git a/net-dns/knot/knot-2.9.0.ebuild b/net-dns/knot/knot-2.9.0.ebuild
deleted file mode 100644 (file)
index aa3b073..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd
-
-DESCRIPTION="High-performance authoritative-only DNS server"
-HOMEPAGE="https://www.knot-dns.cz/"
-SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-KNOT_MODULES=(
-       "+cookies"
-       "+dnsproxy"
-       "dnstap"
-       "geoip"
-       "+noudp"
-       "+onlinesign"
-       "+queryacl"
-       "+rrl"
-       "+stats"
-       "+synthrecord"
-       "+whoami"
-)
-IUSE="doc caps +fastparser idn +libidn2 systemd +utils ${KNOT_MODULES[@]}"
-
-RDEPEND="
-       acct-group/knot
-       acct-user/knot
-       dev-db/lmdb
-       dev-libs/libedit
-       dev-libs/userspace-rcu:=
-       dev-python/lmdb
-       net-libs/gnutls:=
-       caps? ( sys-libs/libcap-ng )
-       dnstap? (
-               dev-libs/fstrm
-               dev-libs/protobuf-c:=
-       )
-       geoip? ( dev-libs/libmaxminddb:= )
-       idn? (
-               !libidn2? ( net-dns/libidn:0= !net-dns/libidn2 )
-               libidn2? ( net-dns/libidn2:= )
-       )
-       systemd? ( sys-apps/systemd:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( dev-python/sphinx )
-"
-
-S="${WORKDIR}/${P/_/-}"
-
-src_configure() {
-       local u
-       local my_conf=(
-               --with-storage="${EPREFIX}/var/lib/${PN}"
-               --with-rundir="${EPREFIX}/var/run/${PN}"
-               $(use_enable fastparser)
-               $(use_enable dnstap)
-               $(use_enable doc documentation)
-               $(use_enable utils utilities)
-               --enable-systemd=$(usex systemd)
-               $(use_with idn libidn)
-       )
-
-       for u in "${KNOT_MODULES[@]#+}"; do
-               my_conf+=("$(use_with ${u} module-${u})")
-       done
-
-       econf "${my_conf[@]}"
-}
-
-src_compile() {
-       default
-
-       if use doc; then
-               emake -C doc html
-               HTML_DOCS=( doc/_build/html/{*.html,*.js,_sources,_static} )
-       fi
-}
-
-src_test() {
-       emake check
-}
-
-src_install() {
-       default
-
-       rmdir "${D}/var/run/${PN}" "${D}/var/run/" || die
-
-       newinitd "${FILESDIR}/knot.init" knot
-       if use systemd; then
-               systemd_newunit "${FILESDIR}/knot-1.service" knot.service
-       fi
-
-       find "${D}" -name '*.la' -delete || die
-}
diff --git a/net-dns/knot/knot-2.9.1.ebuild b/net-dns/knot/knot-2.9.1.ebuild
deleted file mode 100644 (file)
index 832d155..0000000
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd
-
-DESCRIPTION="High-performance authoritative-only DNS server"
-HOMEPAGE="https://www.knot-dns.cz/"
-SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-KNOT_MODULES=(
-       "+cookies"
-       "+dnsproxy"
-       "dnstap"
-       "geoip"
-       "+noudp"
-       "+onlinesign"
-       "+queryacl"
-       "+rrl"
-       "+stats"
-       "+synthrecord"
-       "+whoami"
-)
-IUSE="doc caps +fastparser idn +libidn2 systemd +utils ${KNOT_MODULES[@]}"
-
-RDEPEND="
-       acct-group/knot
-       acct-user/knot
-       dev-db/lmdb
-       dev-libs/libedit
-       dev-libs/userspace-rcu:=
-       dev-python/lmdb
-       net-libs/gnutls:=
-       caps? ( sys-libs/libcap-ng )
-       dnstap? (
-               dev-libs/fstrm
-               dev-libs/protobuf-c:=
-       )
-       geoip? ( dev-libs/libmaxminddb:= )
-       idn? (
-               !libidn2? ( net-dns/libidn:0= !net-dns/libidn2 )
-               libidn2? ( net-dns/libidn2:= )
-       )
-       systemd? ( sys-apps/systemd:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-       virtual/pkgconfig
-       doc? ( dev-python/sphinx )
-"
-
-S="${WORKDIR}/${P/_/-}"
-
-src_configure() {
-       local u
-       local my_conf=(
-               --with-storage="${EPREFIX}/var/lib/${PN}"
-               --with-rundir="${EPREFIX}/var/run/${PN}"
-               $(use_enable fastparser)
-               $(use_enable dnstap)
-               $(use_enable doc documentation)
-               $(use_enable utils utilities)
-               --enable-systemd=$(usex systemd)
-               $(use_with idn libidn)
-       )
-
-       for u in "${KNOT_MODULES[@]#+}"; do
-               my_conf+=("$(use_with ${u} module-${u})")
-       done
-
-       econf "${my_conf[@]}"
-}
-
-src_compile() {
-       default
-
-       use doc && emake -C doc html
-}
-
-src_test() {
-       emake check
-}
-
-src_install() {
-       use doc && local HTML_DOCS=( doc/_build/html/{*.html,*.js,_sources,_static} )
-
-       default
-
-       rmdir "${D}/var/run/${PN}" "${D}/var/run/" || die
-
-       newinitd "${FILESDIR}/knot.init" knot
-       if use systemd; then
-               systemd_newunit "${FILESDIR}/knot-1.service" knot.service
-       fi
-
-       find "${D}" -name '*.la' -delete || die
-}