Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/python-dotenv/
Date: Wed, 29 Apr 2020 11:12:12
Message-Id: 1588093168.704186974ef5b8cb4fa6320618160abfbcd5a224.andrewammerlaan@gentoo
1 commit: 704186974ef5b8cb4fa6320618160abfbcd5a224
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Tue Apr 28 16:59:28 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Tue Apr 28 16:59:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=70418697
7
8 dev-python/python-dotenv: Get and set values in .env file in local/servers
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
12
13 dev-python/python-dotenv/Manifest | 1 +
14 dev-python/python-dotenv/metadata.xml | 13 +++++++++
15 .../python-dotenv/python-dotenv-0.13.0.ebuild | 33 ++++++++++++++++++++++
16 3 files changed, 47 insertions(+)
17
18 diff --git a/dev-python/python-dotenv/Manifest b/dev-python/python-dotenv/Manifest
19 new file mode 100644
20 index 0000000..476e0a9
21 --- /dev/null
22 +++ b/dev-python/python-dotenv/Manifest
23 @@ -0,0 +1 @@
24 +DIST python-dotenv-0.13.0.tar.gz 28679 BLAKE2B 068c4cb499956a14bb4c310d2c9a63f4c33b6621efd11c231eeea2808951530fa6e7bd5356973c19f7ba6f3693434ca46bfadd065c7369f95014389badb2a00c SHA512 a7e725fd0fcb262f240a8f9eb6cf9b73560d799a10ec946cf901f960cbfa972396ead1aca833808a1675ebaec0b89720c32b2fe957ef9805faa942b0df1a9608
25
26 diff --git a/dev-python/python-dotenv/metadata.xml b/dev-python/python-dotenv/metadata.xml
27 new file mode 100644
28 index 0000000..384f191
29 --- /dev/null
30 +++ b/dev-python/python-dotenv/metadata.xml
31 @@ -0,0 +1,13 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>andrewammerlaan@××××××.net</email>
38 + <name>Andrew Ammerlaan</name>
39 + </maintainer>
40 + <upstream>
41 + <remote-id type="github">theskumar/python-dotenv</remote-id>
42 + <remote-id type="pypi">python-dotenv</remote-id>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/dev-python/python-dotenv/python-dotenv-0.13.0.ebuild b/dev-python/python-dotenv/python-dotenv-0.13.0.ebuild
47 new file mode 100644
48 index 0000000..746e037
49 --- /dev/null
50 +++ b/dev-python/python-dotenv/python-dotenv-0.13.0.ebuild
51 @@ -0,0 +1,33 @@
52 +# Copyright 1999-2020 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=7
56 +
57 +PYTHON_COMPAT=( python3_{6,7} )
58 +
59 +DISTUTILS_USE_SETUPTOOLS=rdepend
60 +
61 +inherit distutils-r1
62 +
63 +# Some failures, likely an incompatibility with newer versions of sh (no old in ::gentoo)
64 +RESTRICT="test"
65 +
66 +DESCRIPTION="Get and set values in your .env file in local and production servers"
67 +HOMEPAGE="https://github.com/theskumar/python-dotenv"
68 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
69 +
70 +LICENSE="BSD"
71 +KEYWORDS="~amd64 ~x86"
72 +SLOT="0"
73 +
74 +distutils_enable_tests pytest
75 +
76 +DEPEND="test? (
77 + dev-python/ipython[${PYTHON_USEDEP}]
78 + dev-python/mock[${PYTHON_USEDEP}]
79 + dev-python/sh[${PYTHON_USEDEP}]
80 +)"
81 +
82 +RDEPEND="
83 + dev-python/click[${PYTHON_USEDEP}]
84 +"