commit: 4c5fbb6ac9b0d72f343150acc87682d666bd32d5 Author: Mazunki Hoksaas <rolferen <AT> gmail <DOT> com> AuthorDate: Tue Dec 27 17:14:59 2022 +0000 Commit: Mazunki Hoksaas <rolferen <AT> gmail <DOT> com> CommitDate: Tue Dec 27 17:14:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4c5fbb6a
gui-apps/wl-scripts: new package, add 1.0.0, 9999 Signed-off-by: Mazunki Hoksaas <rolferen <AT> gmail.com> gui-apps/wl-scripts/Manifest | 1 + gui-apps/wl-scripts/metadata.xml | 11 +++++++++++ gui-apps/wl-scripts/wl-scripts-1.0.0.ebuild | 28 ++++++++++++++++++++++++++++ gui-apps/wl-scripts/wl-scripts-9999.ebuild | 29 +++++++++++++++++++++++++++++ 4 files changed, 69 insertions(+) diff --git a/gui-apps/wl-scripts/Manifest b/gui-apps/wl-scripts/Manifest new file mode 100644 index 000000000..959a2ec76 --- /dev/null +++ b/gui-apps/wl-scripts/Manifest @@ -0,0 +1 @@ +DIST wl-scripts-1.0.0.tar.gz 13934 BLAKE2B 4f7e4ce844bfafa40310ea83a99d46933d70ab94f408ead881e9f98e8b103dce208395f1f9ba81cfec546924d38cb8c7cdc29cf28c22d100521ea2015e2ad632 SHA512 f49be27c952a04b7e563541147ffa769882beffdb2847bfeec6217e9eb7d133ed7ecf8441c11b7f788c3b6f7d156083597faed4325cfec2038bb087480dc9d99 diff --git a/gui-apps/wl-scripts/metadata.xml b/gui-apps/wl-scripts/metadata.xml new file mode 100644 index 000000000..bab29813d --- /dev/null +++ b/gui-apps/wl-scripts/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Mazunki Hoksaas</name> + </maintainer> + <upstream> + <remote-id type="github">mazunki/wl-scripts</remote-id> + </upstream> +</pkgmetadata> diff --git a/gui-apps/wl-scripts/wl-scripts-1.0.0.ebuild b/gui-apps/wl-scripts/wl-scripts-1.0.0.ebuild new file mode 100644 index 000000000..9501b4b7d --- /dev/null +++ b/gui-apps/wl-scripts/wl-scripts-1.0.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +SRC_URI="https://github.com/mazunki/wl-scripts/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +DESCRIPTION="A set of utils for wlroots window managers" +HOMEPAGE="https://github.com/mazunki/wl-scripts" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND=" + app-alternatives/awk + app-misc/jq + >=gui-apps/wofi-1.3 + gui-apps/slurp + gui-wm/sway +" +BDEPEND="" # scripts are just sh + +src_install() { + exeinto "/usr/bin/" + doexe "${S}"/src/* +} diff --git a/gui-apps/wl-scripts/wl-scripts-9999.ebuild b/gui-apps/wl-scripts/wl-scripts-9999.ebuild new file mode 100644 index 000000000..aa29056e2 --- /dev/null +++ b/gui-apps/wl-scripts/wl-scripts-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit git-r3 +EGIT_REPO_URI="https://github.com/mazunki/wl-scripts.git" + +DESCRIPTION="A set of utils for wlroots window managers" +HOMEPAGE="https://github.com/mazunki/wl-scripts" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" + +DEPEND="" +RDEPEND=" + app-alternatives/awk + app-misc/jq + >=gui-apps/wofi-1.3 + gui-apps/slurp + gui-wm/sway +" +BDEPEND="" # scripts are just sh + +src_install() { + exeinto "/usr/bin/" + doexe "${S}"/src/* +}
