Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/s6-linux-utils/
Date: Wed, 29 Jun 2016 17:45:25
Message-Id: 1467221737.11916da9a785a783d1ae6acdbae7284abc35712c.williamh@gentoo
1 commit: 11916da9a785a783d1ae6acdbae7284abc35712c
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 17:22:17 2016 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 17:35:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11916da9
7
8 sys-apps/s6-linux-utils: 2.1.0.0 version bump
9
10 Package-Manager: portage-2.2.28
11
12 sys-apps/s6-linux-utils/Manifest | 1 +
13 .../s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/sys-apps/s6-linux-utils/Manifest b/sys-apps/s6-linux-utils/Manifest
17 index e879374..12e9831 100644
18 --- a/sys-apps/s6-linux-utils/Manifest
19 +++ b/sys-apps/s6-linux-utils/Manifest
20 @@ -1 +1,2 @@
21 DIST s6-linux-utils-2.0.2.3.tar.gz 40050 SHA256 f959ffb9bb79865018becc6664d29faef22cb747a43db252879e11886b1b8cc3 SHA512 10d919c67036dbd57ed8d0e2ba46e1957c621414cae2326c2c696a27b46496d928aa768465236585ed8be279a2866cc9a519f9feb51b9757f999e9b8b80faf2d WHIRLPOOL 7c5515d65fc2f5db1a0b14abedfd2ea462e621a6a16200da162487b0a57d1adce6f5ecc034524b1e8f066e531413f5a9c528187dee38b1980d3826a3a970d6c8
22 +DIST s6-linux-utils-2.1.0.0.tar.gz 40996 SHA256 3523ba84ba524198711b2de3edaaf620381a4e95d78ec6d13dcb7aba42397ead SHA512 a2bd997334b69c7d864ea14dd27af7b62c8a7b6ccf8f9431ed87f46590546e540a06577f04d2cf3e52299cd9819a31e926326862d751b8528bc98ec2f4e93913 WHIRLPOOL 3718fc4260b3ea1fe04d8b05021ce1a8ad2b1099e780da646df53d7174cabbe536c2e366f2b725a049258bcc057cdf9e226bd81a0fe575ad184f3df866112847
23
24 diff --git a/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild b/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild
25 new file mode 100644
26 index 0000000..49c46a6
27 --- /dev/null
28 +++ b/sys-apps/s6-linux-utils/s6-linux-utils-2.1.0.0.ebuild
29 @@ -0,0 +1,48 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +DESCRIPTION="Set of tiny linux utilities"
37 +HOMEPAGE="http://www.skarnet.org/software/s6-linux-utils/"
38 +SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz"
39 +
40 +LICENSE="ISC"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="static"
44 +
45 +DEPEND="
46 + static? ( >=dev-libs/skalibs-2.3.10.0[static-libs] )
47 + !static? ( >=dev-libs/skalibs-2.3.10.0 )
48 + "
49 +RDEPEND="
50 + !static? ( >=dev-libs/skalibs-2.3.10.0 )
51 + "
52 +
53 +HTML_DOCS="doc/."
54 +
55 +src_prepare()
56 +{
57 + # Remove QA warning about LDFLAGS addition
58 + sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" "${S}/configure" || die
59 +
60 + eapply_user
61 +}
62 +
63 +src_configure()
64 +{
65 + econf \
66 + $(use_enable !static shared) \
67 + $(use_enable static allstatic) \
68 + $(use_enable static) \
69 + --bindir=/bin \
70 + --sbindir=/sbin \
71 + --dynlibdir=/$(get_libdir) \
72 + --libdir=/usr/$(get_libdir)/${PN} \
73 + --datadir=/etc \
74 + --sysdepdir=/usr/$(get_libdir)/${PN} \
75 + --with-dynlib=/$(get_libdir) \
76 + --with-sysdeps=/usr/$(get_libdir)/skalibs
77 +}