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/opentmpfiles/
Date: Fri, 24 Feb 2017 21:51:02
Message-Id: 1487972925.5459e21ba4c882b3b27e935a1baa165442d0c218.williamh@gentoo
1 commit: 5459e21ba4c882b3b27e935a1baa165442d0c218
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 24 21:29:13 2017 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 24 21:48:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5459e21b
7
8 sys-apps/opentmpfiles: 0.1.2 version bump for #610732
9
10 This is going direct to stable to fix stable 0.1.1.
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13 RepoMan-Options: --force
14
15 sys-apps/opentmpfiles/Manifest | 1 +
16 sys-apps/opentmpfiles/opentmpfiles-0.1.2.ebuild | 47 +++++++++++++++++++++++++
17 2 files changed, 48 insertions(+)
18
19 diff --git a/sys-apps/opentmpfiles/Manifest b/sys-apps/opentmpfiles/Manifest
20 index 7246ff8e66..b2902bc370 100644
21 --- a/sys-apps/opentmpfiles/Manifest
22 +++ b/sys-apps/opentmpfiles/Manifest
23 @@ -1,2 +1,3 @@
24 DIST opentmpfiles-0.1.1.tar.gz 5626 SHA256 903cdf8eca5ff9577b10fb569cf5f01a132d2c02769ba3536ecf1ba23b05e184 SHA512 9b8bc74c642c42e4591cc98df096f2d74d14acc5e795f49026b37401c795861ffcdf8d505f6e62980bab1cc4ee2b182668bcd5d4f4cea0984b46662643d6a0d5 WHIRLPOOL a2223a5a101b70442e8ac3fa393c93724589738bfe3d899c9843d1f8cfa42db602212771f58e8387083e7e4929dde4b2dc5439eaaf7e071be3e21b6284b81962
25 +DIST opentmpfiles-0.1.2.tar.gz 5614 SHA256 63f05adca95ea63fa555d371e8a5d74fe633088893be3a63bff2cdabb7b6bb3b SHA512 d86ba71e5fe96d7a8e1999e14b0b99c78e850c42fbfefd203916edca593d0269feaf2252aa01cc35a838906fc2909015430f72cde8370e2d5b1d478a11fe456d WHIRLPOOL ca349478cb0f0ca565c007b8315e7970c84d628edaf7088e53037679cafb46513cb284ac8c30cb383245368185a6ad6e27cd11c36f7c4c299a774fca856b0e4c
26 DIST opentmpfiles-0.1.tar.gz 5592 SHA256 0c7a52d6394dcbe78dd5b4f8fba6fcc66b207389b9a9b85e61a0ab8e9e375bb7 SHA512 f89e0b996a282ba39f5db7d5cf8e3b72672ba2a9f6013512b7169da9886d9d1d00d4de7c68aefdf2afcf24063283183c37a40864b89d25f68484b022fce58773 WHIRLPOOL 307e6094c0e74ceeb15fe84b09e5ea28b47584eb98a7384b9fa18e66ee7d2c2cc6e574fd2142d6373ff0cf8b302f266a2f277f74d6609d213daf0e92198caba4
27
28 diff --git a/sys-apps/opentmpfiles/opentmpfiles-0.1.2.ebuild b/sys-apps/opentmpfiles/opentmpfiles-0.1.2.ebuild
29 new file mode 100644
30 index 0000000000..0e879f6b3d
31 --- /dev/null
32 +++ b/sys-apps/opentmpfiles/opentmpfiles-0.1.2.ebuild
33 @@ -0,0 +1,47 @@
34 +# Copyright 1999-2017 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI=6
39 +
40 +if [[ ${PV} = 9999* ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="git://github.com/openrc/${PN}"
43 +else
44 + SRC_URI="https://github.com/openrc/${PN}/archive/${PV}.tar.gz ->
45 + ${P}.tar.gz"
46 + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86"
47 +fi
48 +
49 +DESCRIPTION="A standalone utility to process systemd-style tmpfiles.d files"
50 +HOMEPAGE="https://github.com/openrc/opentmpfiles"
51 +
52 +LICENSE="BSD-2"
53 +SLOT="0"
54 +IUSE=""
55 +
56 +RDEPEND="!<sys-apps/openrc-0.23"
57 +
58 +src_install() {
59 + default
60 + cd openrc
61 + for f in opentmpfiles-dev opentmpfiles-setup; do
62 + newconfd ${f}.confd ${f}
63 + newinitd ${f}.initd ${f}
64 + done
65 +}
66 +
67 +add_service() {
68 + local initd=$1
69 + local runlevel=$2
70 +
71 + elog "Auto-adding '${initd}' service to your ${runlevel} runlevel"
72 + ln -snf /etc/init.d/${initd} "${EROOT}"etc/runlevels/${runlevel}/${initd}
73 +}
74 +
75 +pkg_postinst() {
76 + if [[ -z $REPLACING_VERSIONS ]]; then
77 + add_service opentmpfiles-dev sysinit
78 + add_service opentmpfiles-setup boot
79 + fi
80 +}