Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/protonvpn-cli/
Date: Thu, 27 Feb 2020 13:55:04
Message-Id: 1582811682.aa88a21f94ec09fafb4319f286f343e3ab637e37.juippis@gentoo
1 commit: aa88a21f94ec09fafb4319f286f343e3ab637e37
2 Author: ILMostro <ilmostro7 <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 21 04:55:54 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 27 13:54:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa88a21f
7
8 net-vpn/protonvpn-cli: new package for protonvpn commandline client
9
10 Closes: https://bugs.gentoo.org/710622
11 Package-Manager: Portage-2.3.84, Repoman-2.3.20
12 Signed-off-by: Amel Hodzic <ilmostro7 <AT> gmail.com>
13 Closes: https://github.com/gentoo/gentoo/pull/14725
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 net-vpn/protonvpn-cli/Manifest | 1 +
17 net-vpn/protonvpn-cli/metadata.xml | 11 ++++++++++
18 net-vpn/protonvpn-cli/protonvpn-cli-2.2.0.ebuild | 28 ++++++++++++++++++++++++
19 3 files changed, 40 insertions(+)
20
21 diff --git a/net-vpn/protonvpn-cli/Manifest b/net-vpn/protonvpn-cli/Manifest
22 new file mode 100644
23 index 00000000000..5fe2f600f0b
24 --- /dev/null
25 +++ b/net-vpn/protonvpn-cli/Manifest
26 @@ -0,0 +1 @@
27 +DIST protonvpn-cli-2.2.0.tar.gz 42694 BLAKE2B fb32401580090401cd6c2c3c692313992c62ed24b383c88e006f69f99a6b96e7081d6927778817245c604cb978b2157e88288ab5236211297258b02dc63a197a SHA512 9ff188ddba679187cf69ab2a18023bd030ff8e734cc5f8516cd93490e601cf21482573b2ab0b7586e371c1f83955db1ad66fa98203f3abdf848a0755484c079e
28
29 diff --git a/net-vpn/protonvpn-cli/metadata.xml b/net-vpn/protonvpn-cli/metadata.xml
30 new file mode 100644
31 index 00000000000..6ad1720cb5c
32 --- /dev/null
33 +++ b/net-vpn/protonvpn-cli/metadata.xml
34 @@ -0,0 +1,11 @@
35 +<?xml version="1.0" encoding="UTF-8"?>
36 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 + <maintainer type="person">
39 + <email>ilmostro7@×××××.com</email>
40 + </maintainer>
41 + <maintainer type="project">
42 + <email>proxy-maint@g.o</email>
43 + <name>Proxy Maintainers</name>
44 + </maintainer>
45 +</pkgmetadata>
46
47 diff --git a/net-vpn/protonvpn-cli/protonvpn-cli-2.2.0.ebuild b/net-vpn/protonvpn-cli/protonvpn-cli-2.2.0.ebuild
48 new file mode 100644
49 index 00000000000..d1f445f5b0e
50 --- /dev/null
51 +++ b/net-vpn/protonvpn-cli/protonvpn-cli-2.2.0.ebuild
52 @@ -0,0 +1,28 @@
53 +# Copyright 1999-2020 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +PYTHON_COMPAT=( python3_6 )
59 +
60 +DISTUTILS_USE_SETUPTOOLS=rdepend
61 +
62 +inherit distutils-r1
63 +
64 +DESCRIPTION="A VPN command-line tool from protonvpn - python rewrite"
65 +HOMEPAGE="https://protonvpn.com https://github.com/ProtonVPN/protonvpn-cli-ng"
66 +SRC_URI="https://github.com/ProtonVPN/${PN}-ng/archive/v${PV}.tar.gz -> ${P}.tar.gz"
67 +
68 +LICENSE="GPL-3"
69 +KEYWORDS="~amd64"
70 +SLOT="0"
71 +
72 +RDEPEND="dev-python/docopt[${PYTHON_USEDEP}]
73 + dev-python/requests[${PYTHON_USEDEP}]
74 + dev-python/pythondialog:0[${PYTHON_USEDEP}]
75 + net-vpn/openvpn"
76 +DEPEND="${RDEPEND}"
77 +
78 +S="${WORKDIR}/${PN}-ng-${PV}"
79 +
80 +DOCS=( CHANGELOG.md README.md USAGE.md )