update praw-7.4.0

This commit is contained in:
2021-10-02 13:34:54 +02:00
committed by Andreas Billmeier
parent f6eb4694a9
commit 3104427bc4
5 changed files with 56 additions and 5 deletions

View File

@@ -0,0 +1,3 @@
DIST prawcore-2.3.0.tar.gz 1163513 BLAKE2B 9e8bf7477bbdaf2b8f9f2c8e044ec8200a5265b90ba8be92137d9032a68d6384e57d8e6987a2a2aeeb777d6c6ab9a238322a13e6f944d8dc0ad606ae6ae61dad SHA512 d0d2d54bae1e1d31e50bad8094fee9b448f952d62d7306752f1de4450dea4ec0dc2030d273561a8775c9034ade527d115ccf4043c47def42a50169fed7b97b0d
EBUILD prawcore-2.3.0.ebuild 760 BLAKE2B a626a9ee32835d4584b329897b086be9116ff2a8a1785b3c6b3fb27000a931ba0d259e5833e0fa2e3f4066e121bc148f4ab919b79adb2e417d99ddda965c0776 SHA512 32bb591d5d16ab9a5f81bb6227408778227214ad0dc9c005dd8f9ef047c7f27ec2a158b78a83729f17ecc542f62bb2681cbbfb9907fcae2406e093f390d0a4c8
MISC metadata.xml 448 BLAKE2B 203e03eac568fcc503d8b4cf2f0cb502ea623e1644644f7afea19a813aa8875bace8cd53fe7b6381967e55adb2b608b0091d251e2c86e02cf4eae7d3aca2917b SHA512 b03cdfa2150e5d2f7e37d64f5edda11eaedd182d721e8f34c80bb2de5e72bb2ee259a7fe1085beee69dbef61ada59a926f4581144d734e35ce339bf917213ef0

View File

@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">prawcore</remote-id>
<maintainer status="unknown">
<email>bbzbryce@gmail.com</email>
<name>Bryce Boe</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Low-level communication layer for PRAW 4+."
HOMEPAGE="https://github.com/praw-dev/prawcore https://pypi.org/project/prawcore/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Simplified BSD License"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/requests-2.6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}