Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/systemd-sysv-utils: metadata.xml systemd-sysv-utils-37.ebuild ChangeLog
Date: Sat, 07 Jan 2012 22:38:31
Message-Id: 20120107223820.91E4A2004B@flycatcher.gentoo.org
1 mgorny 12/01/07 22:38:20
2
3 Added: metadata.xml systemd-sysv-utils-37.ebuild ChangeLog
4 Log:
5 Introduce an ebuild for systemd sysv-compat symlinks and manpages.
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-apps/systemd-sysv-utils/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-sysv-utils/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-sysv-utils/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <maintainer>
21 <email>systemd@g.o</email>
22 <name>Gentoo systemd team</name>
23 </maintainer>
24 </pkgmetadata>
25
26
27
28 1.1 sys-apps/systemd-sysv-utils/systemd-sysv-utils-37.ebuild
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-sysv-utils/systemd-sysv-utils-37.ebuild?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-sysv-utils/systemd-sysv-utils-37.ebuild?rev=1.1&content-type=text/plain
32
33 Index: systemd-sysv-utils-37.ebuild
34 ===================================================================
35 # Copyright 1999-2012 Gentoo Foundation
36 # Distributed under the terms of the GNU General Public License v2
37 # $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd-sysv-utils/systemd-sysv-utils-37.ebuild,v 1.1 2012/01/07 22:38:20 mgorny Exp $
38
39 EAPI=4
40
41 MY_P=systemd-${PV}
42
43 DESCRIPTION="sysvinit compatibility symlinks and manpages"
44 HOMEPAGE="http://www.freedesktop.org/wiki/Software/systemd"
45 SRC_URI="http://www.freedesktop.org/software/systemd/${MY_P}.tar.bz2"
46
47 LICENSE="GPL-2"
48 SLOT="0"
49 KEYWORDS="~amd64 ~x86"
50 IUSE=""
51
52 RDEPEND="!sys-apps/sysvinit
53 sys-apps/systemd"
54
55 S=${WORKDIR}/${MY_P}/man
56
57 src_install() {
58 for app in halt poweroff reboot runlevel shutdown telinit; do
59 doman ${app}.8
60 dosym ../usr/bin/systemctl /sbin/${app}
61 done
62
63 newman init.1 init.8
64 dosym ../usr/bin/systemd /sbin/init
65 }
66
67
68
69 1.1 sys-apps/systemd-sysv-utils/ChangeLog
70
71 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-sysv-utils/ChangeLog?rev=1.1&view=markup
72 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/systemd-sysv-utils/ChangeLog?rev=1.1&content-type=text/plain
73
74 Index: ChangeLog
75 ===================================================================
76 # ChangeLog for sys-apps/systemd-sysv-utils
77 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
78 # $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd-sysv-utils/ChangeLog,v 1.1 2012/01/07 22:38:20 mgorny Exp $
79
80 *systemd-sysv-utils-37 (07 Jan 2012)
81
82 07 Jan 2012; Michał Górny <mgorny@g.o>
83 +systemd-sysv-utils-37.ebuild, +metadata.xml:
84 Introduce an ebuild for systemd sysv-compat symlinks and manpages.