commit: bc8617ed804c90997359b8a4b46bb82825523efc Author: Steven Stallion <sstallion <AT> gmail <DOT> com> AuthorDate: Mon Nov 6 01:24:53 2023 +0000 Commit: Steven Stallion <sstallion <AT> gmail <DOT> com> CommitDate: Mon Nov 6 01:25:17 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc8617ed
app-emulation/wslu: new package, add 4.1.1 Signed-off-by: Steven Stallion <sstallion <AT> gmail.com> app-emulation/wslu/Manifest | 1 + app-emulation/wslu/metadata.xml | 16 ++++++++++++++++ app-emulation/wslu/wslu-4.1.1.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/app-emulation/wslu/Manifest b/app-emulation/wslu/Manifest new file mode 100644 index 0000000000..542ac62c6d --- /dev/null +++ b/app-emulation/wslu/Manifest @@ -0,0 +1 @@ +DIST wslu-4.1.1.tar.gz 139919 BLAKE2B e38aad1d417b388c2f5c2a4f46f86419aa0975514d9a8f18b37c1412f17cc7e8bb0c3e9758aff8072a28426e469587f21ac9c711f42f8414c74c431646d98a8d SHA512 73e88d42206a0e4240ebcf8029dcfa06b83b94fdeba9bca86e98e31eadd47a38b3d93fe47d7fdf40239d76134ab65a1518b1ce15be0732651c2fa2df6c78d89e diff --git a/app-emulation/wslu/metadata.xml b/app-emulation/wslu/metadata.xml new file mode 100644 index 0000000000..34fe89e521 --- /dev/null +++ b/app-emulation/wslu/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'> +<pkgmetadata> + <maintainer type="person"> + <email>sstall...@gmail.com</email> + <name>Steven Stallion</name> + </maintainer> + <longdescription> + This is a collection of utilities for the Linux Subsystem for Windows + (WSL), such as converting Linux paths to Windows paths or creating + Linux application shortcuts on the Windows Desktop. + </longdescription> + <upstream> + <remote-id type="github">wslutilities/wslu</remote-id> + </upstream> +</pkgmetadata> diff --git a/app-emulation/wslu/wslu-4.1.1.ebuild b/app-emulation/wslu/wslu-4.1.1.ebuild new file mode 100644 index 0000000000..0888e9ec2a --- /dev/null +++ b/app-emulation/wslu/wslu-4.1.1.ebuild @@ -0,0 +1,23 @@ +# 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" + +RDEPEND=" + app-shells/bash-completion + sys-devel/bc + sys-process/psmisc +" + +src_install() { + emake DESTDIR="${D}" install + dodoc README.md +}