summaryrefslogtreecommitdiff
path: root/sys-apps/opentmpfiles
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-10-16 16:00:40 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-10-16 16:00:40 +0100
commit7f1592d914f244f1c2ab9e4bf84c003131f6d3b8 (patch)
tree7bce2dbb6156f707d739cb9fc044116fe4325dd6 /sys-apps/opentmpfiles
parent5a2a5572ac35843b9cd1c9369bd96e117647d24f (diff)
gentoo auto-resync : 16:10:2023 - 16:00:40
Diffstat (limited to 'sys-apps/opentmpfiles')
-rw-r--r--sys-apps/opentmpfiles/Manifest3
-rw-r--r--sys-apps/opentmpfiles/metadata.xml15
-rw-r--r--sys-apps/opentmpfiles/opentmpfiles-0.2-r1.ebuild59
3 files changed, 0 insertions, 77 deletions
diff --git a/sys-apps/opentmpfiles/Manifest b/sys-apps/opentmpfiles/Manifest
deleted file mode 100644
index 1563eda7778a..000000000000
--- a/sys-apps/opentmpfiles/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST opentmpfiles-0.2.tar.gz 5711 BLAKE2B e1ee7820b2d184d18e63e7e9d93227bb301eb82be8c2b6021c7a1092f55a4ca2bb5dfb7494ff00c3b6debace1963f6c89011ff557f665f0a93c907bd759a4c6f SHA512 bc384cc9156ba6c54d3308ddad4d26b1877f020aa8558e82df2ed49ffa65e0fed5a49eaa11b27193bfe2ad11a4d7368f7cdbc225b820b309af3b299327ddb07b
-EBUILD opentmpfiles-0.2-r1.ebuild 1356 BLAKE2B 37a7344d7e9ad3b105fc278bcba568a63426843e7493fd74a4bc02fcbcc129f9e3275e696ff1f22afa5aa6740b383e04d8022cd72eecf710a14b062abaeb1cfc SHA512 de150e3baeae8f659d324edf7ba2e5cc01c4981fb397239bb5bd552b4d22e31740edb747b5087182e73ac6326a0cfa7b2f9655f025943b95ac1de579870b709f
-MISC metadata.xml 446 BLAKE2B 08d2c0005d37e4d78742c2ad30d4306aa8c06864dae20b23a0f84daacf87c7fccd6bd1baa423a5279e41a3d01796f444ba7ab495daec88a6eee5ededdabc7a16 SHA512 8323232b38eebf3b0714153f1d4fdf877b63391b23dff0fa4c00651e2c3300ec0e8125533b1feadaba54ca9aed92b8812562d87b02ea3c5c3fbabcbb79b1af91
diff --git a/sys-apps/opentmpfiles/metadata.xml b/sys-apps/opentmpfiles/metadata.xml
deleted file mode 100644
index ca72dc232abf..000000000000
--- a/sys-apps/opentmpfiles/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>williamh@gentoo.org</email>
- <name>William Hubbs</name>
- </maintainer>
- <maintainer type="project">
- <email>openrc@gentoo.org</email>
- <name>Gentoo OpenRC Team</name>
- </maintainer>
- <upstream>
- <remote-id type="github">openrc/opentmpfiles</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sys-apps/opentmpfiles/opentmpfiles-0.2-r1.ebuild b/sys-apps/opentmpfiles/opentmpfiles-0.2-r1.ebuild
deleted file mode 100644
index 4d7f08882975..000000000000
--- a/sys-apps/opentmpfiles/opentmpfiles-0.2-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit prefix
-
-if [[ ${PV} = 9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/openrc/${PN}"
-else
- SRC_URI="https://github.com/openrc/${PN}/archive/${PV}.tar.gz ->
- ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-fi
-
-DESCRIPTION="A standalone utility to process systemd-style tmpfiles.d files"
-HOMEPAGE="https://github.com/openrc/opentmpfiles"
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="selinux"
-
-RDEPEND="
- !<sys-apps/openrc-0.23
- selinux? ( sec-policy/selinux-base-policy )"
-
-src_prepare() {
- default
- hprefixify tmpfiles
-}
-
-src_install() {
- emake DESTDIR="${ED}" install
- einstalldocs
-
- cd openrc || die
- local f
- for f in opentmpfiles-dev opentmpfiles-setup; do
- newconfd ${f}.confd ${f}
- newinitd ${f}.initd ${f}
- done
-}
-
-pkg_postinst() {
- add_service() {
- local initd=$1
- local runlevel=$2
-
- elog "Auto-adding '${initd}' service to your ${runlevel} runlevel"
- mkdir -p "${EROOT}"/etc/runlevels/${runlevel}
- ln -snf /etc/init.d/${initd} "${EROOT}"/etc/runlevels/${runlevel}/${initd}
- }
-
- if [[ -z $REPLACING_VERSIONS ]]; then
- add_service opentmpfiles-dev sysinit
- add_service opentmpfiles-setup boot
- fi
-}