summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2018-08-10 21:52:09 +1000
committerMichael Palimaka <kensington@gentoo.org>2018-08-10 21:52:23 +1000
commit761c4aad3fef5f33b6fc1cbe2d70c0b00c457516 (patch)
tree16e85263d592262d438218779d026427823400c0 /sys-auth/elogind/files
parentx11-misc/albert: remove old (diff)
downloadgentoo-761c4aad3fef5f33b6fc1cbe2d70c0b00c457516.tar.gz
gentoo-761c4aad3fef5f33b6fc1cbe2d70c0b00c457516.tar.bz2
gentoo-761c4aad3fef5f33b6fc1cbe2d70c0b00c457516.zip
sys-auth/elogind: remove old
Package-Manager: Portage-2.3.44, Repoman-2.3.10
Diffstat (limited to 'sys-auth/elogind/files')
-rw-r--r--sys-auth/elogind/files/elogind-235.2-docs.patch19
-rw-r--r--sys-auth/elogind/files/elogind-235.2-drop-logintest.patch17
-rw-r--r--sys-auth/elogind/files/elogind-235.2-legacy-cgroupmode.patch56
3 files changed, 0 insertions, 92 deletions
diff --git a/sys-auth/elogind/files/elogind-235.2-docs.patch b/sys-auth/elogind/files/elogind-235.2-docs.patch
deleted file mode 100644
index 7fbb4594bdc4..000000000000
--- a/sys-auth/elogind/files/elogind-235.2-docs.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/meson.build 2018-01-14 18:59:36.141461154 +0100
-+++ b/meson.build 2018-01-14 19:00:46.208461781 +0100
-@@ -2634,16 +2634,5 @@
- # install_data('modprobe.d/systemd.conf',
- # install_dir : modprobedir)
- #endif // 0
--install_data('README',
-- 'NEWS',
-- 'CODING_STYLE',
--#if 0 /// UNNEEDED by elogind
--# 'DISTRO_PORTING',
--# 'ENVIRONMENT.md',
--#endif // 0
-- 'LICENSE.GPL2',
-- 'LICENSE.LGPL2.1',
-- 'src/libelogind/sd-bus/GVARIANT-SERIALIZATION',
-- install_dir : docdir)
-
- meson.add_install_script('sh', '-c', mkdir_p.format(systemdstatedir))
diff --git a/sys-auth/elogind/files/elogind-235.2-drop-logintest.patch b/sys-auth/elogind/files/elogind-235.2-drop-logintest.patch
deleted file mode 100644
index 45f17f1b843a..000000000000
--- a/sys-auth/elogind/files/elogind-235.2-drop-logintest.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/src/test/meson.build 2018-01-15 20:34:18.000000000 +0100
-+++ b/src/test/meson.build 2018-01-31 15:11:33.342989914 +0100
-@@ -868,10 +868,10 @@
- # [],
- # [threads]],
- #endif // 0
--
-- [['src/libelogind/sd-login/test-login.c'],
-- [],
-- []],
-+# Broken in chroot; needs elogind at runtime?
-+# [['src/libelogind/sd-login/test-login.c'],
-+# [],
-+# []],
- ]
-
- #if 0 /// UNNEEDED in elogind
diff --git a/sys-auth/elogind/files/elogind-235.2-legacy-cgroupmode.patch b/sys-auth/elogind/files/elogind-235.2-legacy-cgroupmode.patch
deleted file mode 100644
index eb86e930f6f8..000000000000
--- a/sys-auth/elogind/files/elogind-235.2-legacy-cgroupmode.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From 003ece760231aba0c661e2390dfd11075d72a8da Mon Sep 17 00:00:00 2001
-From: Sven Eden <yamakuzure@gmx.net>
-Date: Thu, 18 Jan 2018 23:01:12 +0100
-Subject: [PATCH] Prep v235.3 : Fix cgroup hierarchy detection code
-
-There is no sub-grouping with elogind, so /sys/fs/cgroup/elogind is
-not needed to be mounted as cgroup fs in legacy mode.
-
-Fixes Bug https://bugs.gentoo.org/644834
----
- src/basic/cgroup-util.c | 17 ++++++++++-------
- 1 file changed, 10 insertions(+), 7 deletions(-)
-
-diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c
-index 7f86c532c..cb60108ef 100644
---- a/src/basic/cgroup-util.c
-+++ b/src/basic/cgroup-util.c
-@@ -2550,28 +2550,31 @@ static int cg_unified_update(void) {
-
- if (F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC))
- unified_cache = CGROUP_UNIFIED_ALL;
-+#if 0 /// The handling of cgroups is a bit different with elogind
- else if (F_TYPE_EQUAL(fs.f_type, TMPFS_MAGIC)) {
-+#else
-+ else if (F_TYPE_EQUAL(fs.f_type, CGROUP_SUPER_MAGIC)
-+ || F_TYPE_EQUAL(fs.f_type, TMPFS_MAGIC)) {
-+#endif // 0
- if (statfs("/sys/fs/cgroup/unified/", &fs) == 0 &&
- F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC)) {
- unified_cache = CGROUP_UNIFIED_SYSTEMD;
- unified_systemd_v232 = false;
- #if 0 /// elogind uses its own name
- } else if (statfs("/sys/fs/cgroup/systemd/", &fs) == 0 &&
-- F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC)) {
-- unified_cache = CGROUP_UNIFIED_SYSTEMD;
-- unified_systemd_v232 = true;
-- } else {
-- if (statfs("/sys/fs/cgroup/systemd/", &fs) < 0)
-- return -errno;
- #else
- } else if (statfs("/sys/fs/cgroup/elogind/", &fs) == 0 &&
-+#endif // 0
- F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC)) {
- unified_cache = CGROUP_UNIFIED_SYSTEMD;
- unified_systemd_v232 = true;
- } else {
--#endif // 0
-+#if 0 /// There is no sub-grouping within elogind
-+ if (statfs("/sys/fs/cgroup/systemd/", &fs) < 0)
-+ return -errno;
- if (!F_TYPE_EQUAL(fs.f_type, CGROUP_SUPER_MAGIC))
- return -ENOMEDIUM;
-+#endif // 0
- unified_cache = CGROUP_UNIFIED_NONE;
- }
- } else