diff options
author | Matthias Gerstner <Matthias.Gerstner@nefkom.net> | 2023-02-16 17:18:33 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-02-17 05:22:20 +0000 |
commit | d0b6c49b9213ae4f67fffa4c7ef32e5ab2696947 (patch) | |
tree | 57fcb94bc146289491e0d2d7b35067e359103c38 /sys-fs | |
parent | dev-util/geany-plugins: support net-libs/webkit-gtk:4.1 (diff) | |
download | gentoo-d0b6c49b9213ae4f67fffa4c7ef32e5ab2696947.tar.gz gentoo-d0b6c49b9213ae4f67fffa4c7ef32e5ab2696947.tar.bz2 gentoo-d0b6c49b9213ae4f67fffa4c7ef32e5ab2696947.zip |
sys-fs/xwmfs: add 0.92
Closes: https://bugs.gentoo.org/894722
Signed-off-by: Matthias Gerstner <Matthias.Gerstner@nefkom.net>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/xwmfs/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/xwmfs/xwmfs-0.92.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/sys-fs/xwmfs/Manifest b/sys-fs/xwmfs/Manifest index c22623b64c51..f9fa5657d24f 100644 --- a/sys-fs/xwmfs/Manifest +++ b/sys-fs/xwmfs/Manifest @@ -1 +1,2 @@ DIST xwmfs-0.91.tar.gz 205380 BLAKE2B fe16fb42c255c8aa3f3a89c494ee9a0d89a4ec1f7d09299374b8891ecc03fe41bb676e2a65112d60abf7ea7e7c2b173aa1333969b445814b07f5c972c001969b SHA512 a2f86b614364c1ffd5fa591bdabd8940f9f317f07e5c4ddc45e8da44de1ae434cbe0336fd1ef7f25027c390388943a8cd03991546ffa640ffe5800a66792ac17 +DIST xwmfs-0.92.tar.gz 205449 BLAKE2B b94992eae262487578832483afd5121583cbaabf1fd36f1775845a30d4d593300b19db2a8c6df39f9be6a918438af59b16104f6bf234978f88095a9e7b8ac1e8 SHA512 27f6166d3ac5abdd25e9333547f8f42a08b86e530a893eb2c028792405c0aac43e7a6583ee6bb3daeb327dee63c808e9098d95b114359fe44c2b6580b682208c diff --git a/sys-fs/xwmfs/xwmfs-0.92.ebuild b/sys-fs/xwmfs/xwmfs-0.92.ebuild new file mode 100644 index 000000000000..b626506f9f37 --- /dev/null +++ b/sys-fs/xwmfs/xwmfs-0.92.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="FUSE-based X11 Window-Manager file system" +HOMEPAGE="https://github.com/gerstner-hub/xwmfs" +SRC_URI="https://github.com/gerstner-hub/${PN}/releases/download/v${PV}/${P}-dist.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~x86" +SLOT="0" + +RDEPEND=" + sys-fs/fuse:0= + >=x11-libs/libX11-1.6.5" + +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_test() { + # unset display to avoid testing errors, tests rely on X11 and a window + # manager environment + unset DISPLAY + + default +} |