Gentoo Archives: gentoo-commits

From: Mattia Gasparotto <gasmat04@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/sway-launcher-desktop/
Date: Sun, 07 Nov 2021 09:16:07
Message-Id: 1636276536.513a3ab357315a78c748aa7ad45649ddfde93caa.gasmat04@gentoo
1 commit: 513a3ab357315a78c748aa7ad45649ddfde93caa
2 Author: Mattia Gasparotto <gasmat04 <AT> gmail <DOT> com>
3 AuthorDate: Sun Nov 7 09:15:36 2021 +0000
4 Commit: Mattia Gasparotto <gasmat04 <AT> gmail <DOT> com>
5 CommitDate: Sun Nov 7 09:15:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=513a3ab3
7
8 gui-apps/sway-launcher-desktop: new package
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Mattia Gasparotto <gasmat04 <AT> gmail.com>
12
13 gui-apps/sway-launcher-desktop/Manifest | 1 +
14 gui-apps/sway-launcher-desktop/metadata.xml | 11 ++++++++++
15 .../sway-launcher-desktop-1.5.4.ebuild | 25 ++++++++++++++++++++++
16 3 files changed, 37 insertions(+)
17
18 diff --git a/gui-apps/sway-launcher-desktop/Manifest b/gui-apps/sway-launcher-desktop/Manifest
19 new file mode 100644
20 index 000000000..f3c9d73ca
21 --- /dev/null
22 +++ b/gui-apps/sway-launcher-desktop/Manifest
23 @@ -0,0 +1 @@
24 +DIST v1.5.4.tar.gz 38905 BLAKE2B 3bcc1902f5cbc36a8fcdef290fd498046d4e74683aea1d2ee2a5e93470e0e0da7ce52c2aca8d417e067affba70a03183c4cb3b2d54a09be666b4ba1c722fa81b SHA512 8ff9b7b3bfe84d8b5d3ba0f27bf5a24159329fd4e0f9bb18de070b66e9339ac999afb4651cae3900f60e486e34a9dbac70081b93d46176133aa503d05f4efd9e
25
26 diff --git a/gui-apps/sway-launcher-desktop/metadata.xml b/gui-apps/sway-launcher-desktop/metadata.xml
27 new file mode 100644
28 index 000000000..b4e02597a
29 --- /dev/null
30 +++ b/gui-apps/sway-launcher-desktop/metadata.xml
31 @@ -0,0 +1,11 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <name>Mattia Gasparotto</name>
37 + <email>gasmat04@×××××.com</email>
38 + </maintainer>
39 + <upstream>
40 + <remote-id type="github">Biont/sway-launcher-desktop</remote-id>
41 + </upstream>
42 +</pkgmetadata>
43
44 diff --git a/gui-apps/sway-launcher-desktop/sway-launcher-desktop-1.5.4.ebuild b/gui-apps/sway-launcher-desktop/sway-launcher-desktop-1.5.4.ebuild
45 new file mode 100644
46 index 000000000..9c68ae6a1
47 --- /dev/null
48 +++ b/gui-apps/sway-launcher-desktop/sway-launcher-desktop-1.5.4.ebuild
49 @@ -0,0 +1,25 @@
50 +# Copyright 2021 Gentoo Authors
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=8
54 +
55 +DESCRIPTION="TUI Application launcher with Desktop Entry support"
56 +HOMEPAGE="https://github.com/Biont/sway-launcher-desktop"
57 +SRC_URI="https://github.com/Biont/${PN}/archive/refs/tags/v${PV}.tar.gz"
58 +
59 +LICENSE="GPL-3"
60 +SLOT="0"
61 +KEYWORDS="~amd64 ~x86"
62 +
63 +DEPEND="app-shells/fzf"
64 +RDEPEND="${DEPEND}"
65 +
66 +src_prepare() {
67 + default
68 + mv "${PN}.sh" "${PN}"
69 +}
70 +
71 +src_install() {
72 + exeinto "/usr/bin"
73 + doexe "${PN}"
74 +}