From b554491f9cb3aec47125ff6d9340d221e4a6aeb3 Mon Sep 17 00:00:00 2001 From: Yuhang Zeng Date: Mon, 22 Jul 2024 16:37:20 +0800 Subject: [PATCH] app-emulation/wslu: add 4.1.3 Signed-off-by: Yuhang Zeng --- app-emulation/wslu/Manifest | 1 + app-emulation/wslu/wslu-4.1.3.ebuild | 29 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 app-emulation/wslu/wslu-4.1.3.ebuild diff --git a/app-emulation/wslu/Manifest b/app-emulation/wslu/Manifest index 542ac62c6d..6505da007a 100644 --- a/app-emulation/wslu/Manifest +++ b/app-emulation/wslu/Manifest @@ -1 +1,2 @@ DIST wslu-4.1.1.tar.gz 139919 BLAKE2B e38aad1d417b388c2f5c2a4f46f86419aa0975514d9a8f18b37c1412f17cc7e8bb0c3e9758aff8072a28426e469587f21ac9c711f42f8414c74c431646d98a8d SHA512 73e88d42206a0e4240ebcf8029dcfa06b83b94fdeba9bca86e98e31eadd47a38b3d93fe47d7fdf40239d76134ab65a1518b1ce15be0732651c2fa2df6c78d89e +DIST wslu-4.1.3.tar.gz 141228 BLAKE2B 777c65d5c3c06cff0175a353e985679f97b386b59fd6112710f7d0a6de0e49e1ade254dc29f22f20f0cc8ed4c71024146d09c684b8f5ddebd9f6e9302b868bdb SHA512 3fc735b185d9c84410f8608ab267387a0f854e21b5fa68cfa83d6d13bb0770ac67ca76f10ecda5c088e868006fa1da75a15628751170d54294113eab08fc5580 diff --git a/app-emulation/wslu/wslu-4.1.3.ebuild b/app-emulation/wslu/wslu-4.1.3.ebuild new file mode 100644 index 0000000000..d7525af896 --- /dev/null +++ b/app-emulation/wslu/wslu-4.1.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A collection of utilities for Windows Subsystem for Linux" +HOMEPAGE="https://wslutiliti.es/wslu/" +SRC_URI="https://github.com/wslutilities/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +RESTRICT="test" + +RDEPEND=" + app-shells/bash-completion + sys-devel/bc + sys-process/psmisc +" + +PATCHES=( + "${FILESDIR}"/${PN}-dont-compress-manpages.patch #916991 +) + +src_install() { + emake DESTDIR="${D}" install + dodoc README.md +}