Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/s6-dns/
Date: Thu, 29 Mar 2018 13:26:05
Message-Id: 1522329889.361fbcadcbe8a5dfc912f4573b46d429b6ef5dba.williamh@gentoo
1 commit: 361fbcadcbe8a5dfc912f4573b46d429b6ef5dba
2 Author: Luis Ressel <aranea <AT> aixah <DOT> de>
3 AuthorDate: Thu Nov 16 01:18:49 2017 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 29 13:24:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=361fbcad
7
8 net-dns/s6-dns: Clean up old versions
9
10 net-dns/s6-dns/Manifest | 2 --
11 net-dns/s6-dns/s6-dns-2.1.0.0.ebuild | 52 ------------------------------------
12 net-dns/s6-dns/s6-dns-2.2.0.0.ebuild | 52 ------------------------------------
13 3 files changed, 106 deletions(-)
14
15 diff --git a/net-dns/s6-dns/Manifest b/net-dns/s6-dns/Manifest
16 index d559498039e..75fdb3660b5 100644
17 --- a/net-dns/s6-dns/Manifest
18 +++ b/net-dns/s6-dns/Manifest
19 @@ -1,4 +1,2 @@
20 -DIST s6-dns-2.1.0.0.tar.gz 77415 BLAKE2B fb8e8910b3fc656f514a1341c80950eca8cb5ac9cfdc88e8d48d134cbe30e9108114bcca214a428b02cdccdf18111f190e6216db1711d43eb02e59851e4f6107 SHA512 c75722b3ddd9d1646116654983558efde22d0d5d3ff1c296a8d5e2ba44abe0d5a86fc86804cf90bea2ee8c3e82028e182d28cdbf5155d46c6b3d8f4d1c3387fc
21 -DIST s6-dns-2.2.0.0.tar.gz 76702 BLAKE2B d8aed72b466f5c8720e301bf97ed3ee14546fd5e468366421526c059713a7bc1f3a674e2980bcddc794192423ea09f3455094ccb31a3893e620c6fcccb1c065e SHA512 55cc0a4e677a28d5ebeeab1f995ee8d03c6aaa0c839ad420e006468c0712f45e638a3d32e082a34e09098d20c3bb08496afcefbec4c58f7674017e22732b1cda
22 DIST s6-dns-2.2.0.1.tar.gz 76046 BLAKE2B c7c7e94fa47fc20e2a328f2fc22650585e9bd0260f4676c5ef6078097a62c43d75b18977e31187008b9fb90bebefc9ffb8d999395b012d85bdef9a4220aa7a6d SHA512 9b62ddec94be86d186520f0240dafda95861c54345f92a1fac3251f8560e70932bc5915cca4136d428ed02d0718e8082ad382bffd0c707ae867f1896d93ecaed
23 DIST s6-dns-2.3.0.0.tar.gz 76476 BLAKE2B 6896bf534d872aac19dd6b2ad819d7aee6d52737f33106640ad1c3afc7f8857e5672f3e35f7f2064cb8085a79adc33bdd33a99dc656a656040a93f813a986717 SHA512 9afa98d0a7a9d84311f6f93d5c1742f7dcfb84c76ca363f9e09b3b40cd3faa1721aebb6e974a98991c037d82b2540c1edbc3cc13ea5f7e3dd95a96d14918e454
24
25 diff --git a/net-dns/s6-dns/s6-dns-2.1.0.0.ebuild b/net-dns/s6-dns/s6-dns-2.1.0.0.ebuild
26 deleted file mode 100644
27 index be37a922239..00000000000
28 --- a/net-dns/s6-dns/s6-dns-2.1.0.0.ebuild
29 +++ /dev/null
30 @@ -1,52 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit versionator
37 -
38 -DESCRIPTION="suite of DNS client programs and libraries for Unix systems"
39 -HOMEPAGE="http://www.skarnet.org/software/s6-dns/"
40 -SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="ISC"
43 -SLOT="0/$(get_version_component_range 1-2)"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="static static-libs"
46 -
47 -DEPEND=">=sys-devel/make-3.81
48 - static? (
49 - >=dev-libs/skalibs-2.4.0.0[static-libs]
50 - )
51 - !static? (
52 - >=dev-libs/skalibs-2.4.0.0
53 - )
54 -"
55 -RDEPEND="
56 - !static? (
57 - >=dev-libs/skalibs-2.4.0.0:=
58 - )
59 -"
60 -
61 -HTML_DOCS="doc/*"
62 -
63 -src_prepare() {
64 - default
65 -
66 - # Remove QA warning about LDFLAGS addition
67 - sed -i "s/tryldflag LDFLAGS_AUTO -Wl,--hash-style=both/:/" "${S}/configure" || die
68 -}
69 -
70 -src_configure() {
71 - econf \
72 - --bindir=/bin \
73 - --dynlibdir=/$(get_libdir) \
74 - --libdir=/usr/$(get_libdir)/${PN} \
75 - --with-dynlib=/$(get_libdir) \
76 - --with-lib=/usr/$(get_libdir)/skalibs \
77 - --with-sysdeps=/usr/$(get_libdir)/skalibs \
78 - $(use_enable !static shared) \
79 - $(use_enable static allstatic) \
80 - $(use_enable static static-libc) \
81 - $(use_enable static-libs static)
82 -}
83
84 diff --git a/net-dns/s6-dns/s6-dns-2.2.0.0.ebuild b/net-dns/s6-dns/s6-dns-2.2.0.0.ebuild
85 deleted file mode 100644
86 index a77493930c3..00000000000
87 --- a/net-dns/s6-dns/s6-dns-2.2.0.0.ebuild
88 +++ /dev/null
89 @@ -1,52 +0,0 @@
90 -# Copyright 1999-2017 Gentoo Foundation
91 -# Distributed under the terms of the GNU General Public License v2
92 -
93 -EAPI=6
94 -
95 -inherit versionator
96 -
97 -DESCRIPTION="suite of DNS client programs and libraries for Unix systems"
98 -HOMEPAGE="https://www.skarnet.org/software/s6-dns/"
99 -SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz"
100 -
101 -LICENSE="ISC"
102 -SLOT="0/$(get_version_component_range 1-2)"
103 -KEYWORDS="~amd64 ~x86"
104 -IUSE="static static-libs"
105 -
106 -DEPEND=">=sys-devel/make-3.81
107 - static? (
108 - >=dev-libs/skalibs-2.5.0.0[static-libs]
109 - )
110 - !static? (
111 - >=dev-libs/skalibs-2.5.0.0
112 - )
113 -"
114 -RDEPEND="
115 - !static? (
116 - >=dev-libs/skalibs-2.5.0.0:=
117 - )
118 -"
119 -
120 -HTML_DOCS="doc/*"
121 -
122 -src_prepare() {
123 - default
124 -
125 - # Remove QA warning about LDFLAGS addition
126 - sed -i "s/tryldflag LDFLAGS_AUTO -Wl,--hash-style=both/:/" "${S}/configure" || die
127 -}
128 -
129 -src_configure() {
130 - econf \
131 - --bindir=/bin \
132 - --dynlibdir=/$(get_libdir) \
133 - --libdir=/usr/$(get_libdir)/${PN} \
134 - --with-dynlib=/$(get_libdir) \
135 - --with-lib=/usr/$(get_libdir)/skalibs \
136 - --with-sysdeps=/usr/$(get_libdir)/skalibs \
137 - $(use_enable !static shared) \
138 - $(use_enable static allstatic) \
139 - $(use_enable static static-libc) \
140 - $(use_enable static-libs static)
141 -}