sys-apps/systemd-sysv-utils: delete unnecessary package

This commit is contained in:
Dongsu Park 2021-09-02 17:34:31 +02:00
parent c8210e51c2
commit 83fc14f479
4 changed files with 0 additions and 64 deletions

View File

@ -1,20 +0,0 @@
# ChangeLog for sys-apps/systemd-sysv-utils
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd-sysv-utils/ChangeLog,v 1.3 2013/09/20 16:37:33 mgorny Exp $
*systemd-sysv-utils-207 (20 Sep 2013)
20 Sep 2013; Michał Górny <mgorny@gentoo.org> +systemd-sysv-utils-207.ebuild,
-systemd-sysv-utils-194.ebuild, -systemd-sysv-utils-37.ebuild:
Version bump, remove old. Fix init symlink wrt bug #485446.
*systemd-sysv-utils-194 (04 Oct 2012)
04 Oct 2012; Michał Górny <mgorny@gentoo.org> +systemd-sysv-utils-194.ebuild:
Version bump, as requested per bug #430876.
*systemd-sysv-utils-37 (07 Jan 2012)
07 Jan 2012; Michał Górny <mgorny@gentoo.org>
+systemd-sysv-utils-37.ebuild, +metadata.xml:
Introduce an ebuild for systemd sysv-compat symlinks and manpages.

View File

@ -1 +0,0 @@
DIST systemd-207.tar.xz 2363804 SHA256 ac1f8120315e7969063bbb0c181c8dc59509aeaf10c4266077c257a182ad5942 SHA512 566c6126fea038cb182608f7b9c3bb4410d0622cb637f30c60fba73c9052f7a36d2b0f790e3d94bb751080448ba14cee600481da378f5e97b0f5becfc849be54 WHIRLPOOL 823c3064e1e961599011d4cd027f5e2d0ba3b434c67b880d1a541720220f40c7cc82211f3f086042dbb440b2c7e11e1379aa0d656e33a2a7ba5b1d7e45b904f7

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>systemd@gentoo.org</email>
<name>Gentoo systemd team</name>
</maintainer>
</pkgmetadata>

View File

@ -1,35 +0,0 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd-sysv-utils/systemd-sysv-utils-207.ebuild,v 1.1 2013/09/20 16:37:33 mgorny Exp $
EAPI=5
MY_P=systemd-${PV}
DESCRIPTION="sysvinit compatibility symlinks and manpages"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/systemd"
SRC_URI="http://www.freedesktop.org/software/systemd/${MY_P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 arm ppc ppc64 x86"
IUSE="symlink-usr"
RDEPEND="!sys-apps/sysvinit
>=sys-apps/systemd-201"
S=${WORKDIR}/${MY_P}/man
src_install() {
local prefix=""
if use symlink-usr ; then
prefix="/usr"
fi
for app in halt poweroff reboot runlevel shutdown telinit; do
doman ${app}.8
dosym /usr/bin/systemctl ${prefix}/sbin/${app}
done
newman init.1 init.8
dosym /usr/lib/systemd/systemd ${prefix}/sbin/init
}