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: net-client/offpunk/
Date: Sun, 20 Feb 2022 08:46:10
Message-Id: 1645132274.dae04355f9cd42e61c16a61a27e49e2f2f0b718e.flow@gentoo
1 commit: dae04355f9cd42e61c16a61a27e49e2f2f0b718e
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Mon Feb 14 14:57:59 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 17 21:11:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dae04355
7
8 net-client/offpunk: add 0.3
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 net-client/offpunk/Manifest | 1 +
13 net-client/offpunk/offpunk-0.3.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/net-client/offpunk/Manifest b/net-client/offpunk/Manifest
17 index 9864b4366..5cbd2dbfb 100644
18 --- a/net-client/offpunk/Manifest
19 +++ b/net-client/offpunk/Manifest
20 @@ -1 +1,2 @@
21 DIST offpunk-0.1.tar.gz 25356 BLAKE2B 45169fae6f566dfab0b8416442f220e62c49cd32ed020bb516f2474ebe7736fca413a68ecf3ec9d609897b02b9092dfe6c7d03dc403c52eaaf63541e4ce16a88 SHA512 5592a314bf3ebd91be083c5a8b43db483f80138113825cdfe0d141cecf0ca9482011eab1a05a7212323c2c1b5a95eb1dbdad4363a281e8229287d433552b6fd5
22 +DIST offpunk-0.3.tar.gz 37000 BLAKE2B b47fd241acef4155337a336d5a25b4a727849a28d2b1a9a9f3c2475960f472e238f5bc50ac59f582daf5ed3b1ec69edc1c6b4c6e5eebe64fd2c962eb7dbe00a2 SHA512 1336e7f0aab177a786c114143b5b8fa4eaa3a4b675581d2ec38d55268f8a006158a181b659732a89cf000f8be550ae38e222bbae827abaea2bc7a2875397acc9
23
24 diff --git a/net-client/offpunk/offpunk-0.3.ebuild b/net-client/offpunk/offpunk-0.3.ebuild
25 new file mode 100644
26 index 000000000..87e9e775a
27 --- /dev/null
28 +++ b/net-client/offpunk/offpunk-0.3.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
36 +DISTUTILS_SINGLE_IMPL=1
37 +inherit distutils-r1 optfeature
38 +
39 +MY_PN="av-98-offline"
40 +DESCRIPTION="A command-line, text-based and offline-first Gemini browser"
41 +HOMEPAGE="https://tildegit.org/ploum/AV-98-offline"
42 +SRC_URI="https://tildegit.org/ploum/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +S="${WORKDIR}/${MY_PN}"
44 +
45 +LICENSE="BSD-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +DOCS=( CHANGELOG README.md )
50 +
51 +pkg_postinst() {
52 + optfeature "better TOFU certificate validation" dev-python/cryptography
53 + #optfeature "ANSI escape codes support" dev-python/ansiwrap
54 + optfeature "MIME type detection support" dev-python/python-magic
55 + optfeature "clipboard support" x11-misc/xsel
56 +}