Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/openresolv/
Date: Sun, 11 Oct 2020 09:30:25
Message-Id: 1602408599.ff9303fe5433928a53c64ebfbd98d0560caf89f4.juippis@gentoo
1 commit: ff9303fe5433928a53c64ebfbd98d0560caf89f4
2 Author: Andrea Cerisara <andreacerisara <AT> gmail <DOT> com>
3 AuthorDate: Sun Oct 4 20:27:23 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 11 09:29:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff9303fe
7
8 net-dns/openresolv: remove old unstable version
9
10 Signed-off-by: Andrea Cerisara <andreacerisara <AT> gmail.com>
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Closes: https://github.com/gentoo/gentoo/pull/17774
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 net-dns/openresolv/Manifest | 1 -
16 net-dns/openresolv/openresolv-3.9.2.ebuild | 40 ------------------------------
17 2 files changed, 41 deletions(-)
18
19 diff --git a/net-dns/openresolv/Manifest b/net-dns/openresolv/Manifest
20 index 8c719faa916..f0769c6400b 100644
21 --- a/net-dns/openresolv/Manifest
22 +++ b/net-dns/openresolv/Manifest
23 @@ -1,4 +1,3 @@
24 DIST openresolv-3.10.0.tar.xz 20296 BLAKE2B 2e4fc22aebeb345fcdcc5395603a183a978e2ea24a4b419d76ab41e5179b640e3a317d5f1ef36bc6901d933b20daaca615489c785a41d76a89abc938c20e2723 SHA512 f28fc43887f18f6cbdcdabbb48777fc704ed653e77f34caf349b5c4e5f5f6e7686242ea9f2617f2f65d40d14c794ce28cffee0ec5e5c7b8a19566f3bd72e9ec5
25 DIST openresolv-3.11.0.tar.xz 20552 BLAKE2B 5564ecac60124fa391a13979da533c4f7cf99601acc896cb5d3cc029bff15ef48ea36e867a0fc6d1e6e475a7536660fbd819120b3066dd2aadc12abf0e16c8ff SHA512 09708b8a1abf7de926f75a1825d4243be6e59fc1de7cc3d7ab7f5a317e11175bd24af03bff2c878ccc54c96913feed27630765647c70fec8a9f9aa7370744e24
26 DIST openresolv-3.9.0.tar.xz 18844 BLAKE2B 0aa2125d79305aab04a8d052d56328493d51aa6ff5b44fdfe08e96ccc78ae1d84f2115e5d59940e7e1cedf7e4fe7dc36a461839bcef8fc2c5b2e21242e441f36 SHA512 4498db60f0b5a762194dd3651b94cc8b01a349a8cfb891e10d040cd6b8e22fa0e9897909517831591787ad22ffad97c78d3281e32296aa1ee67de5dff9bf765e
27 -DIST openresolv-3.9.2.tar.xz 20200 BLAKE2B 25cb56fd85114c3866207a3bf83d1295eb135f1746f141d8cb8f0fb18cdd96e184ad3fbb47d1f65ce4193b57da61e918ca4306a502eaba650ca438589be9a29b SHA512 2f88ccbb53c6e830eeb7dd53666ee72b9fa30f38324766e1d1734896bc9b7f531e42e234c882b921c79604a3bde2877db2681bab9dd8c590f02779da908d0649
28
29 diff --git a/net-dns/openresolv/openresolv-3.9.2.ebuild b/net-dns/openresolv/openresolv-3.9.2.ebuild
30 deleted file mode 100644
31 index 763dc738699..00000000000
32 --- a/net-dns/openresolv/openresolv-3.9.2.ebuild
33 +++ /dev/null
34 @@ -1,40 +0,0 @@
35 -# Copyright 1999-2020 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -
40 -DESCRIPTION="A framework for managing DNS information"
41 -HOMEPAGE="https://roy.marples.name/projects/openresolv"
42 -SRC_URI="https://roy.marples.name/downloads/${PN}/${P}.tar.xz"
43 -
44 -LICENSE="BSD-2"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
47 -IUSE="selinux"
48 -
49 -RDEPEND="selinux? ( sec-policy/selinux-resolvconf )"
50 -
51 -src_configure() {
52 - local myeconfargs=(
53 - --prefix="${EPREFIX}"
54 - --rundir="${EPREFIX}"/var/run
55 - --libexecdir="${EPREFIX}"/lib/resolvconf
56 - )
57 - econf "${myeconfargs[@]}"
58 -}
59 -
60 -pkg_config() {
61 - if [[ ${ROOT} != / ]]; then
62 - eerror "We cannot configure unless \$ROOT=/"
63 - return 1
64 - fi
65 -
66 - if [[ -n "$(resolvconf -l)" ]]; then
67 - einfo "${PN} already has DNS information"
68 - else
69 - ebegin "Copying /etc/resolv.conf to resolvconf -a dummy"
70 - resolvconf -a dummy </etc/resolv.conf
71 - eend $? || return $?
72 - einfo "The dummy interface will disappear when you next reboot"
73 - fi
74 -}