Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/tdrop/
Date: Mon, 30 Dec 2019 08:53:45
Message-Id: 1577696004.6614c968bd3506b7f048afd0d71ff6ffbda99629.gyakovlev@gentoo
1 commit: 6614c968bd3506b7f048afd0d71ff6ffbda99629
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 30 08:51:14 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 30 08:53:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6614c968
7
8 x11-misc/tdrop: new package, dropdown window creator
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 x11-misc/tdrop/Manifest | 1 +
14 x11-misc/tdrop/metadata.xml | 11 +++++++++++
15 x11-misc/tdrop/tdrop-0.3.0.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
16 3 files changed, 50 insertions(+)
17
18 diff --git a/x11-misc/tdrop/Manifest b/x11-misc/tdrop/Manifest
19 new file mode 100644
20 index 00000000000..cdd596c316d
21 --- /dev/null
22 +++ b/x11-misc/tdrop/Manifest
23 @@ -0,0 +1 @@
24 +DIST tdrop-0.3.0.tar.gz 19495 BLAKE2B 5f72090e6ccacaa4f708715cb1a2eb43bb8acec79f43301da67dbe0a8d81637806603d06b9ad0b2815e8aea1f481271f5b8f8adddba60079ad48ec621f8e8e8f SHA512 3e1c30e42ce96570fabd43b89fd9f17a23d74c4943ef9ab5d1edb4967ffa6c4c0259df4449ef2a18b396d1057f4a19a413fec817ff708d3e41906695cebb67ca
25
26 diff --git a/x11-misc/tdrop/metadata.xml b/x11-misc/tdrop/metadata.xml
27 new file mode 100644
28 index 00000000000..e22c540bc28
29 --- /dev/null
30 +++ b/x11-misc/tdrop/metadata.xml
31 @@ -0,0 +1,11 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>gyakovlev@g.o</email>
37 + <name>Georgy Yakovlev</name>
38 + </maintainer>
39 + <upstream>
40 + <remote-id type="github">octuid/tdrop</remote-id>
41 + </upstream>
42 +</pkgmetadata>
43
44 diff --git a/x11-misc/tdrop/tdrop-0.3.0.ebuild b/x11-misc/tdrop/tdrop-0.3.0.ebuild
45 new file mode 100644
46 index 00000000000..1031384a291
47 --- /dev/null
48 +++ b/x11-misc/tdrop/tdrop-0.3.0.ebuild
49 @@ -0,0 +1,38 @@
50 +# Copyright 2019 Gentoo Authors
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=7
54 +
55 +DESCRIPTION="WM-Independent Dropdown Creator"
56 +HOMEPAGE="https://github.com/noctuid/tdrop"
57 +
58 +if [[ ${PV} == "9999" ]]; then
59 + inherit git-r3
60 + EGIT_REPO_URI="https://github.com/noctuid/tdrop"
61 +else
62 + SRC_URI="https://github.com/noctuid/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
63 + KEYWORDS="~amd64 ~ppc64"
64 +fi
65 +
66 +LICENSE="BSD-2"
67 +SLOT="0"
68 +IUSE=""
69 +
70 +RDEPEND="
71 + app-shells/bash
72 + sys-process/procps
73 + x11-apps/xprop
74 + x11-apps/xrandr
75 + x11-apps/xwininfo
76 + x11-misc/xdotool
77 +"
78 +
79 +src_compile() {
80 + :
81 +}
82 +
83 +src_install() {
84 + dobin tdrop
85 + doman tdrop.1
86 + dodoc README.org
87 +}