Merge updates from master

This commit is contained in:
Repository mirror & CI
2022-04-05 02:21:06 +00:00
170 changed files with 1267 additions and 203 deletions

View File

@@ -6,7 +6,7 @@ EAPI=8
inherit go-module bash-completion-r1
DESCRIPTION="Manage your dotfiles across multiple machines, securely"
HOMEPAGE="https://chezmoi.io"
HOMEPAGE="https://chezmoi.io/"
# Building this list can be done by:
# cd $(mktemp -d)

View File

@@ -5,7 +5,7 @@ EAPI=7
MY_P="CUSTOMRESCUECD-x86"
DESCRIPTION="A system rescue cd or usbstick for desktop and server based on gentoo"
HOMEPAGE="https://sourceforge.net/projects/customrescuecd"
HOMEPAGE="https://sourceforge.net/projects/customrescuecd/"
SRC_URI="mirror://sourceforge/customrescuecd/"${MY_P}"-"${PV}".iso"
LICENSE="GPL-3"

View File

@@ -5,7 +5,7 @@ EAPI=7
MY_P="CUSTOMRESCUECD-x86_64"
DESCRIPTION="A system rescue cd or usbstick for desktop and server based on gentoo"
HOMEPAGE="https://sourceforge.net/projects/customrescuecd"
HOMEPAGE="https://sourceforge.net/projects/customrescuecd/"
SRC_URI="mirror://sourceforge/customrescuecd/"${MY_P}"-"${PV}".iso"
LICENSE="GPL-3"

View File

@@ -1 +1 @@
DIST glance-23.0.0.tar.gz 2095878 BLAKE2B 9c47dc3005828d1d6e8e194d641abea67d1fc05cb4fd76a4f70c8906a036df2c5501984e1f81050e0c8719410b6226a699ead8b91a9ae14a9a5cd491743d3adf SHA512 97c11c95c8957fece373f009644e192468b0e2f74bd8ed78e5a99c549890a432c96e4a8a85c66bbcdac1278b3a2db1c3b7a01f779cfcf939a830557414f8cc14
DIST glance-24.0.0.tar.gz 2100290 BLAKE2B 3f9774a1ff30974bf5986b9c64bd3b7aef63427ef75449daf29bd217b8a87d6edc9696e338d5f30abcc289e6d2f7fde25893c619ddd49acf483ebdf765663324 SHA512 a5a9a9d91f14f485cdebe6b2b96a0712b09cfbf2f03b13c3919d597dbef1bd58b0ab2b4aac386c52a25e6059c03d2e1a821b28827b7689c3272cde51d80f3809

View File

@@ -0,0 +1,8 @@
/var/log/glance/*.log {
daily
missingok
compress
delaycompress
notifempty
copytruncate
}

View File

@@ -0,0 +1,3 @@
Defaults:glance !requiretty
glance ALL = (root) NOPASSWD: /usr/bin/glance-rootwrap /etc/glance/rootwrap.conf *

View File

@@ -0,0 +1,2 @@
d /var/lib/glance 0750 glance glance -
d /var/log/glance 0750 glance glance -

View File

@@ -0,0 +1,16 @@
[Unit]
Description=OpenStack Image Service API server
After=network.target httpd.service memcached.service etcd.service mysqld.service redis.service rabbitmq.service
[Service]
LimitNOFILE=131072
LimitNPROC=131072
Type=simple
User=glance
ExecStart=/usr/bin/glance-api --log-file=/var/log/glance/api.log
PrivateTmp=true
Restart=on-failure
[Install]
WantedBy=multi-user.target

View File

@@ -1,11 +1,11 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_8 )
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
inherit distutils-r1 systemd tmpfiles
DESCRIPTION="Services for discovering, registering, and retrieving VM images"
HOMEPAGE="
@@ -23,17 +23,6 @@ IUSE="mysql postgres +sqlite +swift"
RDEPEND="
>=dev-python/pbr-3.1.1[${PYTHON_USEDEP}]
>=dev-python/defusedxml-0.6.0[${PYTHON_USEDEP}]
sqlite? (
>=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
)
mysql? (
>=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
)
postgres? (
>=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
)
>=dev-python/eventlet-0.25.1[${PYTHON_USEDEP}]
>=dev-python/pastedeploy-1.5.0[${PYTHON_USEDEP}]
>=dev-python/routes-2.3.1[${PYTHON_USEDEP}]
@@ -50,16 +39,16 @@ RDEPEND="
>=dev-python/futurist-1.2.0[${PYTHON_USEDEP}]
>=dev-python/taskflow-4.0.0[${PYTHON_USEDEP}]
>=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
>=dev-python/keystonemiddleware-5.17.0[${PYTHON_USEDEP}]
>=dev-python/keystonemiddleware-5.1.0[${PYTHON_USEDEP}]
>=dev-python/WSME-0.8.0[${PYTHON_USEDEP}]
>=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
>=dev-python/paste-2.0.2[${PYTHON_USEDEP}]
>=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
>=dev-python/python-keystoneclient-3.8.0[${PYTHON_USEDEP}]
>=dev-python/pyopenssl-17.1.0[${PYTHON_USEDEP}]
>=dev-python/six-1.11.0[${PYTHON_USEDEP}]
>=dev-python/oslo-db-5.0.0[${PYTHON_USEDEP}]
>=dev-python/oslo-i18n-5.0.0[${PYTHON_USEDEP}]
>=dev-python/oslo-limit-1.4.0[${PYTHON_USEDEP}]
>=dev-python/oslo-log-4.3.0[${PYTHON_USEDEP}]
>=dev-python/oslo-messaging-5.29.0[${PYTHON_USEDEP}]
>=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}]
@@ -74,6 +63,19 @@ RDEPEND="
>=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
>=dev-python/os-win-4.0.1[${PYTHON_USEDEP}]
>=dev-python/castellan-0.17.0[${PYTHON_USEDEP}]
sqlite? (
>=dev-python/sqlalchemy-1.0.10[sqlite,${PYTHON_USEDEP}]
)
mysql? (
>=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
)
postgres? (
>=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-1.0.10[${PYTHON_USEDEP}]
)
acct-user/glance
acct-group/glance
"
@@ -108,6 +110,15 @@ REQUIRED_USE="
distutils_enable_tests pytest
python_compile_all() {
oslo-config-generator --config-file etc/oslo-config-generator/glance-api.conf || die
oslo-config-generator --config-file etc/oslo-config-generator/glance-scrubber.conf || die
oslo-config-generator --config-file etc/oslo-config-generator/glance-cache.conf || die
oslo-config-generator --config-file etc/oslo-config-generator/glance-manage.conf || die
oslo-config-generator --config-file etc/oslo-config-generator/glance-image-import.conf || die
oslopolicy-sample-generator --config-file=etc/glance-policy-generator.conf || die
}
python_prepare_all() {
sed -i '/pysendfile/d' test-requirements.txt || die
sed -i '/^hacking/d' test-requirements.txt || die
@@ -126,6 +137,16 @@ python_install_all() {
keepdir /var/lib/glance/images
keepdir /var/lib/glance/scrubber
systemd_dounit "${FILESDIR}/openstack-glance-api.service"
newtmpfiles "${FILESDIR}/glance.tmpfiles" glance.conf
insinto /etc/logrotate.d
newins "${FILESDIR}/glance.logrotate" glance
insinto /etc/sudoers.d
insopts -m 0440 -o root -g root
newins "${FILESDIR}/glance.sudoers" glance
insinto /etc/glance
insopts -m 0640 -o glance -g glance
doins -r etc/*.ini etc/*.conf etc/*.sample etc/*.json etc/meta*

View File

@@ -9,7 +9,7 @@ DISTUTILS_USE_SETUPTOOLS=bdepend
inherit distutils-r1 xdg
DESCRIPTION="Krapplet (keyring applet): a Linux graphical password manager"
HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet"
HOMEPAGE="https://gitlab.com/hfernh/krapplet https://pypi.org/project/krapplet/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"

View File

@@ -8,7 +8,7 @@ inherit distutils-r1
DESCRIPTION="deSEC DNS Authenticator plugin for Certbot"
HOMEPAGE="
https://pypi.org/project/certbot-dns-desec
https://pypi.org/project/certbot-dns-desec/
https://github.com/desec-io/certbot-dns-desec
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -6,7 +6,7 @@ EAPI=7
inherit autotools
DESCRIPTION="The original U.S. Gazetteer Place and Zipcode Files for dict"
HOMEPAGE="https://sourceforge.net/projects/dict-gazetteer"
HOMEPAGE="https://sourceforge.net/projects/dict-gazetteer/"
SRC_URI="mirror://sourceforge/project/dict-gazetteer/dict-gazetteer_${PV}.orig.tar.gz"
S="${WORKDIR}/dict-gazetteer-${PV}"
LICENSE="GPL-2 public-domain"

View File

@@ -9,7 +9,7 @@ COMMIT="35275a68c37bbc39d8b2b0e4664a0c2f5451e5f6"
DESCRIPTION="Fill your console with Hollywood melodrama technobabble"
HOMEPAGE="
https://hollywood.computer
https://hollywood.computer/
https://github.com/dustinkirkland/hollywood
"
SRC_URI="https://github.com/dustinkirkland/hollywood/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"

View File

@@ -8,7 +8,7 @@ CMAKE_IN_SOURCE_BUILD=1
inherit cmake
DESCRIPTION="Check your gentoo installation for unwanted cruft, forgotten files"
HOMEPAGE="https://sourceforge.net/projects/gentoo-sweep"
HOMEPAGE="https://sourceforge.net/projects/gentoo-sweep/"
SRC_URI="mirror://sourceforge/gentoo-sweep/${P}.tar.gz"
S="${WORKDIR}/${PN}"
LICENSE="GPL-2"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Bring your ZSH history to Fish shell"
HOMEPAGE="
https://github.com/rsalmei/zsh-history-to-fish
https://pypi.org/project/portio
https://pypi.org/project/portio/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -1 +1 @@
DIST RColorBrewer_1.1-2.tar.gz 11532 BLAKE2B b1f52ee7732b6a94056a547148fb4d3125ea7c34b845474ffc4d2abcebc7bbf32557022454ced9b0c8cd2307e62c56cedceb5386adfd962b95e1748384e1f5fd SHA512 29eeecae274c57f2af3366d072fb6a61a1e0be64aae9393e10c7e92c3b98473b60b7042b532c49e0ce2f53e6dce1a728ddd6937bbc64cedcb3664a429c3e54da
DIST RColorBrewer_1.1-3.tar.gz 11638 BLAKE2B f5d3c2ae82be0e46c1c7ca2d39ecbc63559a607d062e7ec2ad62c1cebe8327f81193edf8d7de88c1948a5e5507a290c4f1519fe9bed33792980d1526d9687c54 SHA512 1a5941906959f4f76570cad8a1b9b672e975195268ea30dc739d8381edc09299098df9d9612174bcef91d1190797cdb43ed0a5f7e7f2cb37625b2462c5f936d5

View File

@@ -1,11 +1,13 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages
MYPV=$(ver_rs 2 -)
DESCRIPTION='ColorBrewer Palettes'
SRC_URI="mirror://cran/src/contrib/RColorBrewer_1.1-2.tar.gz"
SRC_URI="mirror://cran/src/contrib/${PN}_${MYPV}.tar.gz"
KEYWORDS="~amd64"
LICENSE='Apache-2.0'

View File

@@ -1 +1 @@
DIST RInside_0.2.16.tar.gz 80576 BLAKE2B ac61f01e0de6c4099db97753a4af93aa84a4ea84728e6e029bb31bb1fe76be1afc12aa0aa781a4049b512e85c7188bfa9d8a6172d869336fbe30a3d75e5d2c0b SHA512 367430d2243864532688aea17cabca45e9dfcaa357b5a19dfd8fa3c8878d0c38e55815feba00c27541e1a908507766bbe5a4b87274734fa1b66581da254fc215
DIST RInside_0.2.17.tar.gz 81202 BLAKE2B 604b21535b6cc9be4dbe8e3822f76658adaf2f612ea4dd1db5baa2654e3c1cb447a9ff58d3b715ece27bae2922e720b09b09ac20121ba8e73fbd491e7f3cf231 SHA512 c055306162db6f725e890afc2cc6b6d1921f57249cd1b4c2188e7c5314436ae53861f36698e463b44e0dc7b94dd36bc90e8846b37af261571caadd2d792a631d

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7

View File

@@ -1 +1 @@
DIST rprojroot_2.0.2.tar.gz 59967 BLAKE2B d07ca0631aca99c5ee167cb2410c97c2980be4e15a12e4d5e2123993572e5fdc7d1aff2be7afc9e806af19b719ea7f8c670b2e0785388dd4b06864fc67a75867 SHA512 36f9bcf1435709eea2325e2a0f681782083ae158eaca485af5fb9871c9a3429e8a3a94c4dae1741905d37d8e9538d35d6588fa3e901ef60601de344282497629
DIST rprojroot_2.0.3.tar.gz 59939 BLAKE2B ccb1d8f06ada72aa666e7f81cfdf5ce77596fce543c525c80f6eb91a5239c78d42aa16f192d900f9a90fc98d8c283af1ec2eada755a2dff9147bcd03002ceca3 SHA512 ffe7e82e3647760f29a57ffa341026df76888ad4ff4cc29443c878b1f5b268f60b68d374f3579e4101601cdf84fbbbd8a9c996d3d84b23aa98ffe3710b82b73d

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -11,3 +11,13 @@ LICENSE='MIT'
DEPEND=">=dev-lang/R-3.0.0"
RDEPEND="${DEPEND}"
SUGGESTED_PACKAGES="
dev-R/covr
dev-R/knitr
dev-R/lifecycle
dev-R/mockr
dev-R/rmarkdown
>=dev-R/testthat-3.0.0
dev-R/withr
"

View File

@@ -9,7 +9,7 @@ inherit cmake docs
CATCH_PV=2.13.6
DESCRIPTION="Command line parser for C++11"
HOMEPAGE="https://github.com/CLIUtils/CLI11 https://cliutils.github.io/CLI11/book"
HOMEPAGE="https://github.com/CLIUtils/CLI11 https://cliutils.github.io/CLI11/book/"
SRC_URI="https://github.com/CLIUtils/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/CLI11-${PV}"

View File

@@ -9,7 +9,7 @@ inherit cmake docs
CATCH_PV=2.13.6
DESCRIPTION="Command line parser for C++11"
HOMEPAGE="https://github.com/CLIUtils/CLI11 https://cliutils.github.io/CLI11/book"
HOMEPAGE="https://github.com/CLIUtils/CLI11 https://cliutils.github.io/CLI11/book/"
SRC_URI="https://github.com/CLIUtils/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/CLI11-${PV}"

View File

@@ -10,7 +10,7 @@ inherit multiprocessing
SRC_URI="https://pkg.cppget.org/1/beta/${PN}/${MY_P}.tar.gz"
KEYWORDS='~amd64 ~x86'
DESCRIPTION='Streaming XML pull parser/serializer for modern C++'
HOMEPAGE='https://www.codesynthesis.com/projects/libstudxml'
HOMEPAGE='https://www.codesynthesis.com/projects/libstudxml/'
LICENSE='MIT'
SLOT='0'

View File

@@ -4,7 +4,7 @@
EAPI=8
DESCRIPTION="C++17 header-only implementation of the XDG Base Directory Specification"
HOMEPAGE="https://sr.ht/~danyspin97/xdgpp"
HOMEPAGE="https://sr.ht/~danyspin97/xdgpp/"
SRC_URI="
https://git.sr.ht/~danyspin97/xdgpp/commit/d41f2b8189619f27aca1b6f1bf7b1ef4af8bb482.patch -> ${PN}-01.patch
https://git.sr.ht/~danyspin97/xdgpp/commit/3ca427d179412892a111b879a4253b146ba94b0c.patch -> ${PN}-02.patch

View File

@@ -8,7 +8,7 @@ COMMIT="13e5b90eecc79ec6704efb333c4c100187520e80"
inherit autotools elisp-common java-pkg-opt-2 toolchain-funcs
DESCRIPTION="The Aldor Programming Language"
HOMEPAGE="http://pippijn.github.io/aldor"
HOMEPAGE="http://pippijn.github.io/aldor/"
SRC_URI="
https://github.com/pippijn/aldor/archive/${COMMIT}.tar.gz -> ${P}.tar.gz
doc? (

View File

@@ -6,7 +6,7 @@ EAPI=7
inherit flag-o-matic perl-module toolchain-funcs
DESCRIPTION="Connect to and exchange data with Siemens PLCs"
HOMEPAGE="https://sourceforge.net/projects/libnodave"
HOMEPAGE="https://sourceforge.net/projects/libnodave/"
SRC_URI="mirror://sourceforge/libnodave/libnodave-${PV}.tar.gz"
LICENSE="LGPL-2+"

View File

@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit autotools linux-info python-any-r1 toolchain-funcs
DESCRIPTION="user extensible heap manager built on top of jemalloc"
HOMEPAGE="https://memkind.github.io/memkind"
HOMEPAGE="https://memkind.github.io/memkind/"
SRC_URI="https://github.com/memkind/memkind/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"

View File

@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit autotools linux-info python-any-r1 toolchain-funcs
DESCRIPTION="user extensible heap manager built on top of jemalloc"
HOMEPAGE="https://memkind.github.io/memkind"
HOMEPAGE="https://memkind.github.io/memkind/"
SRC_URI="https://github.com/memkind/memkind/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"

View File

@@ -1 +1 @@
DIST ocaml-ctruct-6.0.0.tar.gz 242357 BLAKE2B e3f86f134cbae8724c392ba4e4a2c178cc49150758e995c24069a061e420ea2d53b26242d62397efb6e4cd5ba114f197fcab573bd831627bda833be16eaac668 SHA512 5dae3fe9f35d02ca0dedef1a01ad1ed2f7d52b167248b3badbcf3cf88d94104d4b6974b225d199a36a96c2282b5fbcc92baa00f98d3895d98472300ad0f50b1e
DIST ocaml-ctruct-6.0.1.tar.gz 243082 BLAKE2B 874ba34583bbc8b53c5b50ba038e2aa423fd704711194dcf99899239015d5fb383242b1d4654c1be2705fd80465e6da7e8eaa5265eceebca7b09dc036d4ebf40 SHA512 2f696b9dca1426d57f60fd4e997ee0c89b1af1a49e186e08c16911ceb03e9f89518a63faf4407b4a7e3c5f391d51979019e47a77f33961624d767a9e36146ca4

View File

@@ -1 +1 @@
DIST ocaml-ipaddr-5.0.1.tar.gz 32964 BLAKE2B cd4f2ba145973c258b564752b3ea5bcd555aae466548d8745bd7a6219dc6d16350698eebcd7994a167e4166cffd822ac7bdc3316e2969a4185cc77d90d7aa267 SHA512 0e7984e2911d2a8aaba8ee28661288e7a1ce87bdb993bd910206e513a40c4fcf7272c73be72295a739f1254ccf9622e8b4aa448db0f599508c1e814020410ec8
DIST ocaml-ipaddr-5.3.0.tar.gz 34247 BLAKE2B de7c059649ed1dfd32e02e7ec27d2c86cb470e7a3cdd3dd79ef4a5d935962970d5384e871c788f114309b3133e09b46cb7e647ace92a2e700edad9d863e016bc SHA512 ef7d720d4625fc0e147ac517efbfc8e4269b1ad2b864099e6552303784591c9fec5662177db31c64bf9e740bb834196a603bd97437499acd6d6c9b80f51818d5

View File

@@ -1 +1 @@
DIST mirage-profile-0.9.0.tar.gz 11633 BLAKE2B d55b73be2df42230666577be11e1c9138cadc8e1d895a1b58cec342adfac165c76a405298cd24d2d21e6caad12b9593599ba4c62c459e51cf9be58409edfb425 SHA512 9a1ba91cfe1454aa85a6f1f72c934d413a8bc4f4793689f309abeca9be22c66c3c3213e8d360ea62813c019e064573cb250d835656c6302429b8e7cbdb39fa2c
DIST mirage-profile-0.9.1.tar.gz 11717 BLAKE2B decec88c0fd0eacbfe6a81c0d56c1d27c87a169ca6e4dec65cc7a15bfab600ad8ed11f46b428c4f3bdb2a915dc97d7a3cf40192b540a7246ff34ee3d77bc5330 SHA512 df13d3467309b62e05d34ac2161e6f575ec71c3eed647fc563e52419a9520e19584fa3647403ae0a94c185456a9558a4cafd11da5babfa5e41c7e85978fcd0fd

View File

@@ -1 +1 @@
DIST xmlm-1.3.0.tbz 25176 BLAKE2B 546f433386101c2460b0a8cadf94e383269e81792d068fa4c85d78117a5e65a64bd5e2fac0a5857d6bdefc7c511ae98cc77410b276ecb0300baf73d70ccb2251 SHA512 fd3b9ba8cd12321fd8d56e9ce829a7c8b121bff11cbf7ede58fa0280302fe0ba64f510360ff5b5182591faef660792db66db36e45f6355e3d22bb521f8e308fe
DIST xmlm-1.4.0.tbz 26122 BLAKE2B dcc75836199eeca49967c4245b793b612c3ac83677dc4185d956437af63802759cc99190ad3ad036227706b4ecd4af938ed76d2f049b1273e81bf13b79e6316b SHA512 69f6112e6466952256d670fe1751fe4ae79e20d50f018ece1709eb2240cb1b00968ac7cee110771e0617a38ebc1cdb43e9d146471ce66ac1b176e4a1660531eb

View File

@@ -7,10 +7,10 @@ inherit findlib opam
DESCRIPTION="Ocaml XML manipulation module"
HOMEPAGE="
http://erratique.ch/software/xmlm
https://erratique.ch/software/xmlm
https://github.com/dbuenzli/xmlm
"
SRC_URI="http://erratique.ch/software/${PN}/releases/${P}.tbz"
SRC_URI="https://erratique.ch/software/${PN}/releases/${P}.tbz"
LICENSE="BSD"
SLOT="0/${PV}"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Distributed object middleware for Python (RPC)"
HOMEPAGE="
https://pyro5.readthedocs.io
https://pypi.org/project/Pyro5
https://pypi.org/project/Pyro5/
https://github.com/irmen/Pyro5
"
SRC_URI="https://github.com/irmen/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="Various utility functions and datatypes for SQLAlchemy"
HOMEPAGE="
https://github.com/kvesteri/sqlalchemy-utils
https://pypi.org/project/SQLAlchemy-Utils
https://pypi.org/project/SQLAlchemy-Utils/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Simplify the writing of REST APIs, and extend them with additional protocols"
HOMEPAGE="
https://opendev.org/x/wsme
https://pypi.org/project/WSME
https://pypi.org/project/WSME/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -9,9 +9,9 @@ inherit distutils-r1
DESCRIPTION="Xen API SDK, for communication with Citrix XenServer and Xen Cloud Platform"
HOMEPAGE="
https://xenproject.org/developers/teams/xen-api
https://xenproject.org/developers/teams/xen-api/
https://github.com/xapi-project/xen-api
https://pypi.org/project/XenAPI
https://pypi.org/project/XenAPI/
"
SRC_URI="mirror://pypi/X/${PN}/${P}.tar.gz"

View File

@@ -10,9 +10,9 @@ inherit bash-completion-r1 distutils-r1 dune pam systemd
DESCRIPTION="Xen API SDK, for communication with Citrix XenServer and Xen Cloud Platform"
HOMEPAGE="
https://xenproject.org/developers/teams/xen-api
https://xenproject.org/developers/teams/xen-api/
https://github.com/xapi-project/xen-api
https://pypi.org/project/XenAPI
https://pypi.org/project/XenAPI/
"
SRC_URI="https://github.com/xapi-project/xen-api/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/xen-api-${PV}"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="asyncio bridge to the standard sqlite3 module"
HOMEPAGE="
https://aiosqlite.omnilib.dev
https://pypi.org/project/aiosqlite
https://pypi.org/project/aiosqlite/
https://github.com/jreese/aiosqlite
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"

View File

@@ -12,7 +12,7 @@ inherit distutils-r1
DESCRIPTION="A helper for approximate comparison"
HOMEPAGE="
https://github.com/sublee/almost
https://pypi.org/project/almost
https://pypi.org/project/almost/
"
SRC_URI="https://github.com/sublee/almost/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="An aspect-oriented programming, monkey-patch and decorators library"
HOMEPAGE="
https://github.com/ionelmc/python-aspectlib
https://pypi.org/project/python-aspectlib
https://pypi.org/project/python-aspectlib/
"
SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Removes unused imports and unused variables as reported by pyflakes"
HOMEPAGE="
https://github.com/myint/autoflake
https://pypi.org/project/autoflake
https://pypi.org/project/autoflake/
"
SRC_URI="https://github.com/myint/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Friendly state machines for python."
HOMEPAGE="
https://pypi.org/project/automaton
https://pypi.org/project/automaton/
https://opendev.org/openstack/automaton
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Apache Avro is a data serialization system"
HOMEPAGE="
https://pypi.org/project/avro
https://pypi.org/project/avro/
https://avro.apache.org
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -7,7 +7,7 @@ PYTHON_COMPAT=( pypy3 python3_{8..10} )
inherit distutils-r1 optfeature
DESCRIPTION="A set of third-party serializers for Betamax"
HOMEPAGE="https://pypi.org/project/betamax-serializers https://gitlab.com/betamax/serializers"
HOMEPAGE="https://pypi.org/project/betamax-serializers/ https://gitlab.com/betamax/serializers"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Python multiprocessing fork"
HOMEPAGE="
https://pypi.org/project/billiard
https://pypi.org/project/billiard/
https://github.com/celery/billiard
"
SRC_URI="https://github.com/celery/billiard/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="Tool to check the completeness of MANIFEST.in for Python packages"
HOMEPAGE="
https://github.com/mgedmin/check-manifest
https://pypi.org/project/check-manifest
https://pypi.org/project/check-manifest/
"
SRC_URI="https://github.com/mgedmin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Enable git-like did-you-mean feature in click"
HOMEPAGE="
https://github.com/click-contrib/click-didyoumean
https://pypi.org/project/click-didyoumean
https://pypi.org/project/click-didyoumean/
"
SRC_URI="https://github.com/click-contrib/click-didyoumean/archive/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Subcommand REPL for click apps"
HOMEPAGE="
https://github.com/click-contrib/click-repl
https://pypi.org/project/click-repl
https://pypi.org/project/click-repl/
"
SRC_URI="https://github.com/click-contrib/click-repl/archive/${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1 toolchain-funcs
DESCRIPTION="X11 & Windows cursor building API"
HOMEPAGE="https://github.com/ful1e5/clickgen https://pypi.org/project/clickgen"
HOMEPAGE="https://github.com/ful1e5/clickgen https://pypi.org/project/clickgen/"
SRC_URI="https://github.com/ful1e5/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Cotyledon provides a framework for defining long-running services"
HOMEPAGE="
https://github.com/sileht/cotyledon
https://pypi.org/project/cotyledon
https://pypi.org/project/cotyledon/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Curio is a coroutine-based library for concurrent systems programming"
HOMEPAGE="
https://github.com/dabeaz/curio
https://pypi.org/project/curio
https://pypi.org/project/curio/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="Curio is a coroutine-based library for concurrent systems programming"
HOMEPAGE="
https://github.com/dabeaz/curio
https://pypi.org/project/curio
https://pypi.org/project/curio/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="Curio is a coroutine-based library for concurrent systems programming"
HOMEPAGE="
https://github.com/dabeaz/curio
https://pypi.org/project/curio
https://pypi.org/project/curio/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Python library to easily setup basic logging functionality"
HOMEPAGE="
https://pypi.org/project/daiquiri
https://pypi.org/project/daiquiri/
https://github.com/jd/daiquiri
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="desktop-notifier is a Python library for cross-platform desktop notifications"
HOMEPAGE="
https://desktop-notifier.readthedocs.io
https://pypi.org/project/desktop-notifier
https://pypi.org/project/desktop-notifier/
https://github.com/samschott/desktop-notifier
"
SRC_URI="https://github.com/samschott/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="desktop-notifier is a Python library for cross-platform desktop notifications"
HOMEPAGE="
https://desktop-notifier.readthedocs.io
https://pypi.org/project/desktop-notifier
https://pypi.org/project/desktop-notifier/
https://github.com/samschott/desktop-notifier
"
SRC_URI="https://github.com/samschott/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -1,2 +1,2 @@
DIST dotmap-1.3.25.tar.gz 12043 BLAKE2B e534f321786a14abb6cd1775b33cb51b332340febdbd44c13d6ccf4b4b679e5b52348e1e21e9e6458b5dc45299a2335bf05551794e3ddd668748c1b28543f393 SHA512 8270b9b042847565e21ede4ec29c00a51a84f9c819f6f0d80b24cc6e8d3524c3c09ca6bf7beeaf05a03b8a51e5d239d52996a55593a19326d8ebbbba349e2853
DIST dotmap-1.3.26.tar.gz 12070 BLAKE2B 28023eebf6437530f3f1ee541f138eaffbc632f441bc9698e2329ab8d9894510e04122f797a77416cbe498fde5092f5c0a821615c4e9fbd1959c75cce94f7cfc SHA512 5083fec8f9e909f68f0fa12db8709ca064d0fd134230f6d0fe315c66613983290bf7de35db29d805013b13024babf250e9110308817265d4e70b9dea5b9a132f
DIST dotmap-1.3.28.tar.gz 12097 BLAKE2B c172a3c4b8f4b10e2351d342cf38eed1ea8cac510eb4a66fa7df5660628fcf57056083af519f8360e78dce1d494185d2b09edfc7a4e7e604af658af15335fcc3 SHA512 9d16b1886884464cbe9df5d0af6426c869969767b9fee527cf108551d8f0d5d81f479d429350e31c89b9db2d3cc6d395945321f56688850dca7bfa2bbf273451

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="Dot access dictionary with dynamic hierarchy creation and ordered iteration"
HOMEPAGE="
https://github.com/drgrib/dotmap
https://pypi.org/project/dotmap
https://pypi.org/project/dotmap/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_8 )
inherit distutils-r1
DESCRIPTION="A python client for etcd3 grpc-gateway v3 API"
HOMEPAGE="https://pypi.org/project/etcd3gw"
HOMEPAGE="https://pypi.org/project/etcd3gw/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"

View File

@@ -11,7 +11,7 @@ inherit distutils-r1
DESCRIPTION="Easy to use Python module to extract Exif metadata from tiff and jpeg files"
HOMEPAGE="
https://pypi.org/project/ExifRead
https://pypi.org/project/ExifRead/
https://github.com/ianare/exif-py
"
SRC_URI="https://github.com/ianare/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Up to date simple useragent faker with real world database"
HOMEPAGE="
https://github.com/hellysmile/fake-useragent
https://pypi.org/project/fake-useragent
https://pypi.org/project/fake-useragent/
"
SRC_URI="https://github.com/hellysmile/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -18,7 +18,7 @@ inherit distutils-r1
DESCRIPTION="Fast Avro for Python"
HOMEPAGE="
https://github.com/fastavro/fastavro
https://pypi.org/project/fastavro
https://pypi.org/project/fastavro/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python port of LLVM's FileCheck, flexible pattern matching file verifier"
HOMEPAGE="https://pypi.org/project/filecheck"
HOMEPAGE="https://pypi.org/project/filecheck/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"

View File

@@ -7,7 +7,7 @@ inherit distutils-r1
MY_PV=${PV/_/}
DESCRIPTION="Free Google Translate API for Python. Translates totally free of charge."
HOMEPAGE="https://pypi.org/project/googletrans https://github.com/ssut/py-googletrans"
HOMEPAGE="https://pypi.org/project/googletrans/ https://github.com/ssut/py-googletrans"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_PV}"

View File

@@ -10,7 +10,7 @@ PYTHON_COMPAT=( python3_{8,9} )
inherit distutils-r1
DESCRIPTION="Free Google Translate API for Python. Translates totally free of charge."
HOMEPAGE="https://pypi.org/project/googletransx"
HOMEPAGE="https://pypi.org/project/googletransx/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="GPX file parser and GPS track manipulation library"
HOMEPAGE="
https://github.com/tkrajina/gpxpy
https://pypi.org/project/gpxpy
https://pypi.org/project/gpxpy/
"
SRC_URI="https://github.com/tkrajina/gpxpy/archive/v${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -12,7 +12,7 @@ MY_P="${PN}-${MY_PV}"
DESCRIPTION="GraphQL Framework for Python"
HOMEPAGE="https://graphene-python.org
https://pypi.org/project/graphene
https://pypi.org/project/graphene/
https://github.com/graphql-python/graphene
"
SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz

View File

@@ -12,7 +12,7 @@ MY_P="${PN}-${MY_PV}"
DESCRIPTION="GraphQL Framework for Python"
HOMEPAGE="https://graphene-python.org
https://pypi.org/project/graphene
https://pypi.org/project/graphene/
https://github.com/graphql-python/graphene
"
SRC_URI="https://github.com/graphql-python/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz

View File

@@ -11,7 +11,7 @@ DESCRIPTION="Chromium HSTS Preload list as a Python package"
HOMEPAGE="
https://hstspreload.org
https://github.com/sethmlarson/hstspreload
https://pypi.org/project/hstspreload
https://pypi.org/project/hstspreload/
"
SRC_URI="https://github.com/sethmlarson/hstspreload/archive/${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="httptools is a Python binding for the nodejs HTTP parser"
HOMEPAGE="
https://github.com/MagicStack/httptools
https://pypi.org/project/httptools
https://pypi.org/project/httptools/
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Hunter is a flexible code tracing toolkit"
HOMEPAGE="
https://github.com/ionelmc/python-hunter
https://pypi.org/project/hunter
https://pypi.org/project/hunter/
"
SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/python-${P}"

View File

@@ -8,7 +8,7 @@ inherit distutils-r1
DESCRIPTION="Python dependency injection framework"
HOMEPAGE="
https://pypi.org/project/injector
https://pypi.org/project/injector/
https://github.com/alecthomas/injector
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Transliterate Cyrillic to Latin in every possible way"
HOMEPAGE="
https://dangry.ru/iuliia/
https://pypi.org/project/iuliia
https://pypi.org/project/iuliia/
https://github.com/nalgeon/iuliia-py
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Transliterate Cyrillic to Latin in every possible way"
HOMEPAGE="
https://dangry.ru/iuliia/
https://pypi.org/project/iuliia
https://pypi.org/project/iuliia/
https://github.com/nalgeon/iuliia-py
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
DESCRIPTION="Pure-python wrapper for libusb-1.0"
HOMEPAGE="https://github.com/vpelletier/python-libusb1 https://pypi.org/project/libusb1"
HOMEPAGE="https://github.com/vpelletier/python-libusb1 https://pypi.org/project/libusb1/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1+"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Debugging manhole for python application"
HOMEPAGE="
https://github.com/ionelmc/python-manhole
https://pypi.org/project/manhole
https://pypi.org/project/manhole/
"
SRC_URI="https://github.com/ionelmc/python-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/python-${P}"

View File

@@ -1 +1,2 @@
DIST os-testr-2.0.1.tar.gz 50884 BLAKE2B f709b33b168fade7faf8e13d0dbf3309cb9aa8e543133138cf7a3ac1d642670cbf803ea5e3b19a4cb2db9b5237837ea89835133e30fa09565af11b52385366cd SHA512 d4c5b84a18d05c0da8a017c045e7304b8fe6a3afc3295a76fa3ba192873f0e507e2fa6c3da423f7d77a82eb3e141225b1abd6875acd56c5a2a9d77a32476deff
DIST os-testr-3.0.0.tar.gz 38684 BLAKE2B 4089416f1abb78a90848a5bfbcf38f8f6ac404e1776d3eae2d178aa6afc60f5408bce8787d6540eb987d9922706e0e2ec84b1879265b9ab8f62cc36ffa5ef9c0 SHA512 707515153f73cb02df138bfc3211f5309b7e2ed0a283c6bf0bd62e4666250b91353a5ac1adaaac750f5c3970ca40531f65574900d2797004815a945504f8e5fc

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
DESCRIPTION="A testr wrapper to provide functionality for OpenStack projects"
HOMEPAGE="
https://opendev.org/openstack/os-testr
https://pypi.org/project/os-testr/
https://launchpad.net/os-testr
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/os-testr-${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
>=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
>=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
>=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
"
DEPEND="
${RDEPEND}
test? (
>=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
>=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
>=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]
)
"
distutils_enable_tests --install pytest

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="A Pure-Python PostgreSQL Driver"
HOMEPAGE="
https://github.com/tlocke/pg8000
https://pypi.org/project/pg8000
https://pypi.org/project/pg8000/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Python fixtures and daemon managing tools for functional testing"
HOMEPAGE="
https://pypi.org/project/pifpaf
https://pypi.org/project/pifpaf/
https://github.com/jd/pifpaf
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Python low level port I/O for Linux x86"
HOMEPAGE="
http://portio.inrim.it
https://pypi.org/project/portio
https://pypi.org/project/portio/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1 optfeature
DESCRIPTION="TCP/UDP asynchronous tunnel proxy implemented in Python3 asyncio"
HOMEPAGE="
https://github.com/qwj/python-proxy
https://pypi.org/project/pproxy
https://pypi.org/project/pproxy/
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"

View File

@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python Reddit API Wrapper"
HOMEPAGE="https://pypi.org/project/praw https://github.com/praw-dev/praw"
HOMEPAGE="https://pypi.org/project/praw/ https://github.com/praw-dev/praw"
SRC_URI="https://github.com/praw-dev/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"

View File

@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Low-level communication layer for PRAW"
HOMEPAGE="https://pypi.org/project/prawcore https://github.com/praw-dev/prawcore"
HOMEPAGE="https://pypi.org/project/prawcore/ https://github.com/praw-dev/prawcore"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD-2"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Implementation of the psycopg2 module using cffi. Compatible with Psycopg 2.5."
HOMEPAGE="
https://github.com/chtd/psycopg2cffi
https://pypi.org/project/psycopg2cffi
https://pypi.org/project/psycopg2cffi/
"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"

View File

@@ -8,7 +8,7 @@ inherit distutils-r1
DESCRIPTION="Python 3 Bindings for the NVIDIA Management Library"
HOMEPAGE="
https://pypi.org/project/py3nvml
https://pypi.org/project/py3nvml/
https://github.com/fbcotter/py3nvml
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Python package providing assets from https://github.com/Kozea/pygal.js"
HOMEPAGE="
https://github.com/ionelmc/python-pygaljs
https://pypi.org/project/pygaljs
https://pypi.org/project/pygaljs/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -1 +1,2 @@
DIST pymemcache-3.5.1.tar.gz 65073 BLAKE2B cc3e5c6db665716c9f2eb6d99a53108484827fe38b51bdfff7799354a08b212064c71801d50683ea45c0a753ee787a634ef98adb69795e7245c5596a7716a162 SHA512 da69189e7fadc8417395075d033ed3cb72a485d4f2c4ec4deb5e2ec3cb43a34ee5558111903399f27b70f618be771f8c686513c7334d2ef507a0db959c4aa27b
DIST pymemcache-3.5.2.tar.gz 65351 BLAKE2B e515629ffb483ece7b59c43b1cb3bd41ee70a8c1cbbc3b0cde5d41d7a5aa2f74f04a0f1d7eb4c82d77384cc32d3e8199cc78408b29ba689b19f5cd040e97c2f6 SHA512 7089b3fdf424735a1922685022a30f7984686f13401a13101e4745ea1c38a3888b1c380f859653da85889e95829f3b7c6226c3c55f838baf783465321433fda5

View File

@@ -0,0 +1,38 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A comprehensive, fast, pure-Python memcached client"
HOMEPAGE="
https://github.com/pinterest/pymemcache
https://pypi.org/project/pymemcache/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=""
DEPEND="
${RDEPEND}
dev-python/six[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/future[${PYTHON_USEDEP}]
>=dev-python/gevent-21.12.0[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
>=dev-python/pylibmc-1.6.1[${PYTHON_USEDEP}]
>=dev-python/python-memcached-1.59[${PYTHON_USEDEP}]
)
"
PATCHES=( "${FILESDIR}/${PN}-3.5.1-no-coverage.patch" )
distutils_enable_tests pytest

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="A Python MP4 Parser and toolkit"
HOMEPAGE="
https://github.com/beardypig/pymp4
https://pypi.org/project/pymp4
https://pypi.org/project/pymp4/
"
SRC_URI="https://github.com/beardypig/pymp4/archive/${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="A connection oriented messaging framework using QPID Proton"
HOMEPAGE="
https://github.com/kgiusti/pyngus
https://pypi.org/project/pyngus
https://pypi.org/project/pyngus/
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"

View File

@@ -10,7 +10,7 @@ inherit distutils-r1
DESCRIPTION="Python library for the NMEA 0183 protcol"
HOMEPAGE="
https://github.com/Knio/pynmea2
https://pypi.org/project/pynmea2
https://pypi.org/project/pynmea2/
"
SRC_URI="https://github.com/Knio/pynmea2/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"

View File

@@ -1,2 +1,2 @@
DIST pypandoc-1.7.2.tar.gz 27900 BLAKE2B f09d1e3431717be44ea396ee44d2d00c11ed0e181d7f79d6be98536b9474972efe146e7c94eb571ab3f7dd2acf32ed53581d4b738497650c37a91e54ead5985e SHA512 95387c18768e480869eac334e5dcfc4ea978033d423de055d616a4a1ef015fe1fbc6a25405c086811621f4ad2d599c9fa245e740de5504baaf801bc522a6fb29
DIST pypandoc-1.7.4.tar.gz 30526 BLAKE2B 44ea2083e014874e4fc5ce9ce8d2dcff64319e7d0d77baffc61fa0d0c2a7fd209642f706eaf4ad258b65a4f0ad8851a9ea02d38d0db4e71c136b972a5934cb79 SHA512 01a7165974ca844b55c387e8ed9b5278c43b5879ca6ea51e0aafab9f035667d37fc06a52a5c0820e18b321ddd5185e53a49561c84e157cb0ead76c7f84d0bcc1
DIST pypandoc-1.7.5.tar.gz 23186705 BLAKE2B 2718e2c4485a10e2a1f78e59b893b8041fcbfd6fd3393c8fcf429625fb0fbe0a0f83229323579e58fb40b6fb85fe018ecc7b597de7774e20e2736f301761fc9f SHA512 bbd5e96a98b1030aa7dfbeaea12dc5c053e9b3182c0feca6d6cec6eba9c148662a628cbe12b1ddf8a4f2891df98fe8f60fc1bde0d5d2f60664dd3e412974655f

View File

@@ -32,6 +32,7 @@ DEPEND="
dev-python/urllib3[${PYTHON_USEDEP}]
"
PATCHES=( "${FILESDIR}/${PN}-1.7.4-dont-install-examples.patch" )
PROPERTIES="test_network"
RESTRICT="test"

View File

@@ -9,7 +9,7 @@ inherit distutils-r1
DESCRIPTION="Plugin for pytest that shows failures and errors instantly"
HOMEPAGE="
https://github.com/pytest-dev/pytest-instafail
https://pypi.org/project/pytest-instafail
https://pypi.org/project/pytest-instafail/
"
SRC_URI="https://github.com/pytest-dev/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

Some files were not shown because too many files have changed in this diff Show More