Gentoo Archives: gentoo-commits

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-client/offpunk/
Date: Thu, 06 Jan 2022 14:14:56
Message-Id: 1641478203.12352b53d278f8dcd971db57684de3312c696d08.cybertailor@gentoo
1 commit: 12352b53d278f8dcd971db57684de3312c696d08
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed Jan 5 19:20:16 2022 +0000
4 Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
5 CommitDate: Thu Jan 6 14:10:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=12352b53
7
8 net-client/offpunk: initial import
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 net-client/offpunk/Manifest | 1 +
13 net-client/offpunk/metadata.xml | 14 ++++++++++++++
14 net-client/offpunk/offpunk-0.1.ebuild | 25 +++++++++++++++++++++++++
15 3 files changed, 40 insertions(+)
16
17 diff --git a/net-client/offpunk/Manifest b/net-client/offpunk/Manifest
18 new file mode 100644
19 index 000000000..9864b4366
20 --- /dev/null
21 +++ b/net-client/offpunk/Manifest
22 @@ -0,0 +1 @@
23 +DIST offpunk-0.1.tar.gz 25356 BLAKE2B 45169fae6f566dfab0b8416442f220e62c49cd32ed020bb516f2474ebe7736fca413a68ecf3ec9d609897b02b9092dfe6c7d03dc403c52eaaf63541e4ce16a88 SHA512 5592a314bf3ebd91be083c5a8b43db483f80138113825cdfe0d141cecf0ca9482011eab1a05a7212323c2c1b5a95eb1dbdad4363a281e8229287d433552b6fd5
24
25 diff --git a/net-client/offpunk/metadata.xml b/net-client/offpunk/metadata.xml
26 new file mode 100644
27 index 000000000..2e253c1bf
28 --- /dev/null
29 +++ b/net-client/offpunk/metadata.xml
30 @@ -0,0 +1,14 @@
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 + <maintainer>
40 + <email>offpunk@×××××.eu</email>
41 + <name>Ploum</name>
42 + </maintainer>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/net-client/offpunk/offpunk-0.1.ebuild b/net-client/offpunk/offpunk-0.1.ebuild
47 new file mode 100644
48 index 000000000..6a48ea1ec
49 --- /dev/null
50 +++ b/net-client/offpunk/offpunk-0.1.ebuild
51 @@ -0,0 +1,25 @@
52 +# Copyright 2022 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=8
56 +
57 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
58 +DISTUTILS_SINGLE_IMPL=1
59 +inherit distutils-r1 optfeature
60 +
61 +MY_PN="av-98-offline"
62 +DESCRIPTION="A command-line, text-based and offline-first Gemini browser"
63 +HOMEPAGE="https://tildegit.org/ploum/AV-98-offline"
64 +SRC_URI="https://tildegit.org/ploum/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
65 +S="${WORKDIR}/${MY_PN}"
66 +
67 +LICENSE="BSD-2"
68 +SLOT="0"
69 +KEYWORDS="~amd64"
70 +
71 +pkg_postinst() {
72 + optfeature "better TOFU certificate validation" dev-python/cryptography
73 + #optfeature "ANSI escape codes support" dev-python/ansiwrap
74 + optfeature "MIME type detection support" dev-python/python-magic
75 + optfeature "clipboard support" x11-misc/xsel
76 +}