Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: x11-apps/xcur2png/
Date: Thu, 21 May 2020 11:24:17
Message-Id: 1590020875.1d31e158b8666868e62553a2e82a37d40145c2e2.andrewammerlaan@gentoo
1 commit: 1d31e158b8666868e62553a2e82a37d40145c2e2
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Thu May 21 00:27:55 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Thu May 21 00:27:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1d31e158
7
8 x11-apps/xcur2png: New package.
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 x11-apps/xcur2png/Manifest | 1 +
13 x11-apps/xcur2png/metadata.xml | 15 +++++++++++++++
14 x11-apps/xcur2png/xcur2png-0.7.1.ebuild | 18 ++++++++++++++++++
15 3 files changed, 34 insertions(+)
16
17 diff --git a/x11-apps/xcur2png/Manifest b/x11-apps/xcur2png/Manifest
18 new file mode 100644
19 index 0000000..fc11f5b
20 --- /dev/null
21 +++ b/x11-apps/xcur2png/Manifest
22 @@ -0,0 +1 @@
23 +DIST xcur2png-0.7.1.tar.gz 99826 BLAKE2B 4ea7497e5e1520216d487e1e43af6f44cc1ff48b78750aaa7a9f2f82d93b009c8deaccd6229606a7bcd19881828d1a1cc8f72fe5981acb67d1510d20b7280a86 SHA512 7a979b4f696810c217f7e2b93d30ecf4f1674bdf1c6483da8aa54ad96ad81f9f720ebd8ef81802a1e7e99747d2f7ea5af4b06a6104a53819b1ce621d3b534c94
24
25 diff --git a/x11-apps/xcur2png/metadata.xml b/x11-apps/xcur2png/metadata.xml
26 new file mode 100644
27 index 0000000..36d51d4
28 --- /dev/null
29 +++ b/x11-apps/xcur2png/metadata.xml
30 @@ -0,0 +1,15 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>gentoo@××××××××.de</email>
36 + <name>Ronny (tastytea) Gutbrod</name>
37 + </maintainer>
38 + <longdescription lang="en">
39 + xcur2png is a program which lets you convert X cursors to PNG images and
40 + generates a config-file which is reusable by xcursorgen.
41 + </longdescription>
42 + <upstream>
43 + <remote-id type="github">eworm-de/xcur2png</remote-id>
44 + </upstream>
45 +</pkgmetadata>
46
47 diff --git a/x11-apps/xcur2png/xcur2png-0.7.1.ebuild b/x11-apps/xcur2png/xcur2png-0.7.1.ebuild
48 new file mode 100644
49 index 0000000..00e8b42
50 --- /dev/null
51 +++ b/x11-apps/xcur2png/xcur2png-0.7.1.ebuild
52 @@ -0,0 +1,18 @@
53 +# Copyright 2020 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +DESCRIPTION="Convert X cursors to PNG images"
59 +HOMEPAGE="https://github.com/eworm-de/xcur2png"
60 +SRC_URI="https://github.com/eworm-de/xcur2png/releases/download/${PV}/${P}.tar.gz"
61 +
62 +LICENSE="GPL-3"
63 +SLOT="0"
64 +KEYWORDS="~amd64"
65 +IUSE=""
66 +
67 +DEPEND="
68 + media-libs/libpng
69 + x11-libs/libXcursor
70 +"