Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-nim/ups/
Date: Wed, 29 Jun 2022 15:38:14
Message-Id: 1656503557.cea4d6431d8b92b9286521a3eea64bae43d009a2.flow@gentoo
1 commit: cea4d6431d8b92b9286521a3eea64bae43d009a2
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed Jun 29 09:15:15 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 11:52:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cea4d643
7
8 dev-nim/ups: new package, add 0.0.7
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 dev-nim/ups/Manifest | 1 +
13 dev-nim/ups/metadata.xml | 12 ++++++++++++
14 dev-nim/ups/ups-0.0.7.ebuild | 31 +++++++++++++++++++++++++++++++
15 3 files changed, 44 insertions(+)
16
17 diff --git a/dev-nim/ups/Manifest b/dev-nim/ups/Manifest
18 new file mode 100644
19 index 000000000..529aa4ef7
20 --- /dev/null
21 +++ b/dev-nim/ups/Manifest
22 @@ -0,0 +1 @@
23 +DIST ups-0.0.7.tar.gz 17748 BLAKE2B 97860035c5b7f121a6cc08702dd1eabbd6960e94439642bc969c3ffc3fcf0d5c9920fdac62182f63db7e8461a485924664c3d40650286d402dde00969b71f691 SHA512 9325f6cf3e1e3cfc9889e51ae10db92356260deaa432c51671c2c27b09b7b9d574690eeacaab7597a1f706bc5a913a7e4067dd005f3658a1e86cd8151ef68239
24
25 diff --git a/dev-nim/ups/metadata.xml b/dev-nim/ups/metadata.xml
26 new file mode 100644
27 index 000000000..94890ac8e
28 --- /dev/null
29 +++ b/dev-nim/ups/metadata.xml
30 @@ -0,0 +1,12 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>cyber+gentoo@×××××.in</email>
36 + <name>Anna</name>
37 + </maintainer>
38 + <upstream>
39 + <remote-id type="github">disruptek/ups</remote-id>
40 + <bugs-to>https://github.com/disruptek/ups/issues</bugs-to>
41 + </upstream>
42 +</pkgmetadata>
43
44 diff --git a/dev-nim/ups/ups-0.0.7.ebuild b/dev-nim/ups/ups-0.0.7.ebuild
45 new file mode 100644
46 index 000000000..35f517fdb
47 --- /dev/null
48 +++ b/dev-nim/ups/ups-0.0.7.ebuild
49 @@ -0,0 +1,31 @@
50 +# Copyright 2021 Gentoo Authors
51 +# Distributed under the terms of the GNU General Public License v2
52 +
53 +EAPI=8
54 +
55 +inherit edo nimble
56 +
57 +DESCRIPTION="a package handler"
58 +HOMEPAGE="https://github.com/disruptek/ups"
59 +SRC_URI="https://github.com/disruptek/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
60 +
61 +LICENSE="MIT"
62 +SLOT="${PV}"
63 +KEYWORDS="~amd64"
64 +
65 +IUSE="test"
66 +RESTRICT="!test? ( test )"
67 +
68 +RDEPEND="=dev-nim/npeg-0*"
69 +BDEPEND="
70 + test? (
71 + ${RDEPEND}
72 + dev-nim/balls
73 + )
74 +"
75 +
76 +set_package_url "https://github.com/disruptek/ups"
77 +
78 +src_test() {
79 + edo balls
80 +}