Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lxcfs/
Date: Wed, 05 Aug 2020 07:09:52
Message-Id: 1596611380.c60c784a90b2e3ede466e98776c1890f5ea70ad4.juippis@gentoo
1 commit: c60c784a90b2e3ede466e98776c1890f5ea70ad4
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 5 07:09:10 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 5 07:09:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c60c784a
7
8 sys-fs/lxcfs: remove old 4.0.4-r2
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 sys-fs/lxcfs/Manifest | 1 -
13 sys-fs/lxcfs/lxcfs-4.0.4-r2.ebuild | 51 --------------------------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/sys-fs/lxcfs/Manifest b/sys-fs/lxcfs/Manifest
17 index b2286fe267f..2f478b27028 100644
18 --- a/sys-fs/lxcfs/Manifest
19 +++ b/sys-fs/lxcfs/Manifest
20 @@ -1,3 +1,2 @@
21 DIST lxcfs-4.0.3.tar.gz 100719 BLAKE2B 24371b921ad635f97c51ac8406c949e81330ae358b0166c2af295cb1f630594bb72da802aad41971c11303f393fd05bc9f1b109bd4da4953db2c3bb7e5189315 SHA512 0aaedfe826d982b9464dfb60fb57c58e34ea6022b8503bc858538b6634dc7d0845f65832d6f814043dbc0677f887e1b559549a8f3865c755970c6b47ba65eb2b
22 -DIST lxcfs-4.0.4.tar.gz 101546 BLAKE2B 1e84e3b75bfb39273539ea72f941442cc3c8574c0f55359a38edc04a98a45ea8680f9bf49c5974decf180a8ecf07cadccf4e732d1743c070a740c78b773a3ee8 SHA512 15bcebecc815310870aea58d995d605444b57583b7f1bb2d35b065256ea5f70b071d58887fbf1ca124ea84da99151bbd9dffcca37a2e151677d56229dc8961ce
23 DIST lxcfs-4.0.5.tar.gz 101842 BLAKE2B c916473e1b7ad42b8f69026a16810941c999d44ffcf1d456cb301411965f05e626338a5bde1e38fe99acd05f72bbcd5acbdcb2f65fa5ec183c967babcb8c70fd SHA512 5c44aa7f43071a4316cc8702928fde2c928bd5654c9ab4d540152839db0d7dd235a861f263da56f02611941d46d22eee98e0cdd52aeaeda99f3c79c754d420a1
24
25 diff --git a/sys-fs/lxcfs/lxcfs-4.0.4-r2.ebuild b/sys-fs/lxcfs/lxcfs-4.0.4-r2.ebuild
26 deleted file mode 100644
27 index ad87ebdf52b..00000000000
28 --- a/sys-fs/lxcfs/lxcfs-4.0.4-r2.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit autotools systemd
37 -
38 -DESCRIPTION="FUSE filesystem for LXC"
39 -HOMEPAGE="https://linuxcontainers.org/lxcfs/introduction/ https://github.com/lxc/lxcfs/"
40 -SRC_URI="https://github.com/lxc/lxcfs/archive/${P}.tar.gz"
41 -
42 -LICENSE="Apache-2.0"
43 -SLOT="0"
44 -KEYWORDS="~amd64"
45 -
46 -RDEPEND="dev-libs/glib:2
47 - sys-fs/fuse:0"
48 -DEPEND="${RDEPEND}"
49 -BDEPEND="sys-apps/help2man"
50 -
51 -RESTRICT="test"
52 -
53 -S="${WORKDIR}/${PN}-${P}"
54 -
55 -src_prepare() {
56 - default
57 - eautoreconf
58 -}
59 -
60 -src_configure() {
61 - # Without the localstatedir the filesystem isn't mounted correctly
62 - # Without with-distro ./configure will fail when cross-compiling
63 - econf --localstatedir=/var --with-distro=gentoo
64 -}
65 -
66 -src_test() {
67 - cd tests/ || die
68 - emake tests
69 - ./main.sh || die "Tests failed"
70 -}
71 -
72 -src_install() {
73 - default
74 -
75 - newconfd "${FILESDIR}"/lxcfs-4.0.0.confd lxcfs
76 - newinitd "${FILESDIR}"/lxcfs-4.0.0.initd lxcfs
77 -
78 - # Provide our own service file (copy of upstream) due to paths being different from upstream,
79 - # 728470
80 - systemd_newunit "${FILESDIR}"/lxcfs-4.0.0.service lxcfs.service
81 -}