Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/nss-mdns/
Date: Tue, 31 Aug 2021 19:03:12
Message-Id: 1630436053.8716e3b561d0cae69948547ff957ef4a2c899afa.mgorny@gentoo
1 commit: 8716e3b561d0cae69948547ff957ef4a2c899afa
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 31 18:54:13 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 31 18:54:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8716e3b5
7
8 sys-auth/nss-mdns: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-auth/nss-mdns/Manifest | 1 -
13 sys-auth/nss-mdns/nss-mdns-0.14.1.ebuild | 55 --------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/sys-auth/nss-mdns/Manifest b/sys-auth/nss-mdns/Manifest
17 index 5f3ccc6e197..5bf760aef39 100644
18 --- a/sys-auth/nss-mdns/Manifest
19 +++ b/sys-auth/nss-mdns/Manifest
20 @@ -1,2 +1 @@
21 -DIST nss-mdns-0.14.1.tar.gz 369978 BLAKE2B d1539ff5c1830a120d6ed4fafa36aa6effb9bb973b275317f5d8f4515aad7d2f69f095296a6b95ad8cc19d6eeb076b19b7987c5eabf29fd21f54cfe4a652ed3a SHA512 7c06b984443881a6c0a1f850ee33f14780562cc6168fe1cda176303eb799ece510d51d3830928616723bb95250ad6462978cd8b857f2b79d87116da2c1aeaa5e
22 DIST nss-mdns-0.15.1.tar.gz 375154 BLAKE2B d848be9d957f81b62627b3c507e9c503fde4a760cec45b4bacb7fe826f5a16c1a0053ab43887daa7e6dc4cb5fd7332bbc30b18113ee1cf911ee15d6dfac97e52 SHA512 11a82ae9f209326b4501c7e6d33c9932b370c4dcacb64d6783140e25688ad6391bbd113e51ee470fd8be12669124eac331593cfd02a040383b4f964ed6ec6154
23
24 diff --git a/sys-auth/nss-mdns/nss-mdns-0.14.1.ebuild b/sys-auth/nss-mdns/nss-mdns-0.14.1.ebuild
25 deleted file mode 100644
26 index fcab1f1874b..00000000000
27 --- a/sys-auth/nss-mdns/nss-mdns-0.14.1.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -inherit multilib-minimal
35 -
36 -DESCRIPTION="Name Service Switch module for Multicast DNS"
37 -HOMEPAGE="https://github.com/lathiat/nss-mdns"
38 -SRC_URI="https://github.com/lathiat/nss-mdns/releases/download/v${PV}/${P}.tar.gz"
39 -
40 -LICENSE="GPL-2+"
41 -SLOT="0"
42 -KEYWORDS="amd64 ~arm ~hppa ~mips ppc x86"
43 -IUSE="test"
44 -RESTRICT="!test? ( test )"
45 -
46 -RDEPEND=">=net-dns/avahi-0.6.31-r2[${MULTILIB_USEDEP}]"
47 -DEPEND="${RDEPEND}
48 - test? ( >=dev-libs/check-0.11[${MULTILIB_USEDEP}] )"
49 -
50 -multilib_src_configure() {
51 - local myconf=(
52 - # $(localstatedir)/run/... is used to locate avahi-daemon socket
53 - --localstatedir=/var
54 -
55 - $(use_enable test tests)
56 - )
57 -
58 - ECONF_SOURCE=${S} \
59 - econf "${myconf[@]}"
60 -}
61 -
62 -multilib_src_install_all() {
63 - dodoc *.md
64 -
65 - insinto /etc
66 - doins "${FILESDIR}"/mdns.allow
67 -}
68 -
69 -pkg_postinst() {
70 - ewarn "You have to modify your name service switch look up file to enable"
71 - ewarn "multicast DNS lookups. If you wish to resolve only IPv6 addresses"
72 - ewarn "use mdns6. For IPv4 addresses only, use mdns4. To resolve both"
73 - ewarn "use mdns. Keep in mind that mdns will be slower if there are no"
74 - ewarn "IPv6 addresses published via mDNS on the network. There are also"
75 - ewarn "minimal (mdns?_minimal) libraries which only lookup .local hosts"
76 - ewarn "and 169.254.x.x addresses."
77 - ewarn
78 - ewarn "Add the appropriate mdns into the hosts line in /etc/nsswitch.conf."
79 - ewarn "An example line looks like:"
80 - ewarn "hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4"
81 - ewarn
82 - ewarn "If you want to perform mDNS lookups for domains other than the ones"
83 - ewarn "ending in .local, add them to /etc/mdns.allow."
84 -}