sys-apps/s6-linux-utils: 2.2.0.0 version bump
authorSamuel Holland <samuel@sholland.org>
Mon, 9 Jan 2017 21:45:23 +0000 (15:45 -0600)
committerWilliam Hubbs <williamh@gentoo.org>
Wed, 11 Jan 2017 23:33:06 +0000 (17:33 -0600)
Closes: https://github.com/gentoo/gentoo/pull/3407

sys-apps/s6-linux-utils/Manifest
sys-apps/s6-linux-utils/metadata.xml
sys-apps/s6-linux-utils/s6-linux-utils-2.2.0.0.ebuild [new file with mode: 0644]

index 12e9831d95a6ba630f047509262feb7bef07b22f..c48715ad7c9a9c55bb49c0b56a346b11fdb2c3bc 100644 (file)
@@ -1,2 +1,3 @@
 DIST s6-linux-utils-2.0.2.3.tar.gz 40050 SHA256 f959ffb9bb79865018becc6664d29faef22cb747a43db252879e11886b1b8cc3 SHA512 10d919c67036dbd57ed8d0e2ba46e1957c621414cae2326c2c696a27b46496d928aa768465236585ed8be279a2866cc9a519f9feb51b9757f999e9b8b80faf2d WHIRLPOOL 7c5515d65fc2f5db1a0b14abedfd2ea462e621a6a16200da162487b0a57d1adce6f5ecc034524b1e8f066e531413f5a9c528187dee38b1980d3826a3a970d6c8
 DIST s6-linux-utils-2.1.0.0.tar.gz 40996 SHA256 3523ba84ba524198711b2de3edaaf620381a4e95d78ec6d13dcb7aba42397ead SHA512 a2bd997334b69c7d864ea14dd27af7b62c8a7b6ccf8f9431ed87f46590546e540a06577f04d2cf3e52299cd9819a31e926326862d751b8528bc98ec2f4e93913 WHIRLPOOL 3718fc4260b3ea1fe04d8b05021ce1a8ad2b1099e780da646df53d7174cabbe536c2e366f2b725a049258bcc057cdf9e226bd81a0fe575ad184f3df866112847
+DIST s6-linux-utils-2.2.0.0.tar.gz 40863 SHA256 587745abfbf2cc631bb54dd2b3fd29f39b723e3c50e28165138a85c98fda35f9 SHA512 5d0fcd29f7a03146b5296d7164326f76af95a8632df4204021d9ae30b1f03590e7f25d410f07639cf741a455f9624f9410b2e7836ae6838916da50be1527ae7f WHIRLPOOL 49f3ff3882100cc0176915bcc17f824b7b49c0e2bef8037c0643b1bf6e88df2221d5cdd8144110e03631433d80a0d35283b3fa8d338c3ecf2681c756c193280a
index 7ac867bbd037551f9dbb04cf512618eb4f4e39a5..1bf18c1a375e6f3e2f023e6ef076731c45554a8f 100644 (file)
@@ -6,6 +6,10 @@
                <name>Luis Ressel</name>
                <description>Proxied maintainer; set to assignee in all bugs</description>
        </maintainer>
+       <maintainer type="person">
+               <email>samuel@sholland.org</email>
+               <name>Samuel Holland</name>
+       </maintainer>
        <maintainer type="person">
                <email>williamh@gentoo.org</email>
                <name>William Hubbs</name>
diff --git a/sys-apps/s6-linux-utils/s6-linux-utils-2.2.0.0.ebuild b/sys-apps/s6-linux-utils/s6-linux-utils-2.2.0.0.ebuild
new file mode 100644 (file)
index 0000000..9a9738b
--- /dev/null
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="set of tiny linux utilities"
+HOMEPAGE="http://www.skarnet.org/software/s6-linux-utils/"
+SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="static"
+
+DEPEND=">=sys-devel/make-3.81
+       static? (
+               >=dev-libs/skalibs-2.4.0.0[static-libs]
+       )
+       !static? (
+               >=dev-libs/skalibs-2.4.0.0
+       )
+"
+RDEPEND="
+       !static? (
+               >=dev-libs/skalibs-2.4.0.0:=
+       )
+"
+
+HTML_DOCS="doc/*"
+
+src_prepare() {
+       default
+
+       # Remove QA warning about LDFLAGS addition
+       sed -i "s/tryldflag LDFLAGS_AUTO -Wl,--hash-style=both/:/" "${S}/configure" || die
+}
+
+src_configure() {
+       econf \
+               --bindir=/bin \
+               --dynlibdir=/$(get_libdir) \
+               --libdir=/usr/$(get_libdir)/${PN} \
+               --with-dynlib=/$(get_libdir) \
+               --with-lib=/usr/$(get_libdir)/skalibs \
+               --with-sysdeps=/usr/$(get_libdir)/skalibs \
+               $(use_enable static allstatic) \
+               $(use_enable static static-libc)
+}