Update many, many packages in order to get rid of warning from pkgdev / pkgcheck.
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Manuel Friedli 2022-09-20 13:33:15 +02:00
parent 0f6733533a
commit 52bf607626
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
86 changed files with 650 additions and 770 deletions

View file

@ -1,6 +1,4 @@
DIST maxminddb-2.0.2.tar.gz 285717 BLAKE2B 230afe8eb51ea0fa52174a4d43e9cc1cd53ddc3b4afb1ee1ab1522a9525d83203c0313f43f59b17c693c5c25e6e9f674769d1431fb0f39fa8e930bc414703a66 SHA512 096dc951f4806d91168848aa46861c2f20e8e3005b353a9fbf79d2cd11de7fad5959c5294dda2f9c8a5b0a29196f95a8810f8854642902d44395f3598f02f46b
DIST maxminddb-2.0.3.tar.gz 286098 BLAKE2B c4729ba0e89033d8038348d760280e4848b0e7a31572cd888f9c659d10a513cae0e64b106a73258fcb503d38e1f4bc6c2a608e840c4369e2759e1bde414097c3 SHA512 6feb8a2f7a9ba4b089142d1bb909b05f44dc82c309fdbfecd077217e388fb547cfc252ef19b8f89bf271ea1729fe74572fd9345944595b7553296b1bcb166619
EBUILD maxminddb-2.0.2-r2.ebuild 485 BLAKE2B 71c94d4be5a176f718601e89bde63150107627f5daa68d81ca996e15c1ae07f54935b2790c80de712c35a06aabbf18b5d9cda2d399078b97bb128f8d4cadc4c9 SHA512 7c99190ad2ec16d76cd2b37aed6e852b6c9a36290348c189b1ed63867ac3c413266b5018c83043b51828df4f8cfbd9bf432cb771c4a4a3160b43bb9fc3be0f54
EBUILD maxminddb-2.0.3-r2.ebuild 485 BLAKE2B 71c94d4be5a176f718601e89bde63150107627f5daa68d81ca996e15c1ae07f54935b2790c80de712c35a06aabbf18b5d9cda2d399078b97bb128f8d4cadc4c9 SHA512 7c99190ad2ec16d76cd2b37aed6e852b6c9a36290348c189b1ed63867ac3c413266b5018c83043b51828df4f8cfbd9bf432cb771c4a4a3160b43bb9fc3be0f54
DIST maxminddb-2.2.0.tar.gz 330865 BLAKE2B ee1fc40945f834d7d2b08e7b48eaafbcdd4ced86c0e484c0b05a81ef4724cc735dc75136f914904c3e21718f93c6f54a006b6d5edb2b7dbf4cf418d71c42b50c SHA512 b5526bfe37a846aa9ff49dde0daa87eeef491fd16f6c275efc22eb194bb71dfc9f4fabccb553d575827cd1e2aff20d796a0d6a2ac6b74c54ffbf48401b935bbd
EBUILD maxminddb-2.2.0.ebuild 488 BLAKE2B 514fd4e1b6a6dc9d2f9ff670e3462ab95e021f671fc5367a9a7014467816841af64a65e8a09d7dd817c651c585c0651279441ed836ad8ffb9d2c407202b55d92 SHA512 f31325c2444423609a357568c26ef000f4acbbdf0e4fb7e5057130b4febb08c45748228655e9f32305998697bc1fbdcd513ec23d97d55bf34eb752e6df002dbe
MISC ChangeLog 623 BLAKE2B 5dc58925a20d08e0ad1e83c5bdb555a812d86b54ed88cca489ffc283c22ddc77ee9e0c25fcf564e56677781af5ba9ada9dc243b36cc3ff29d2dff7f034090f87 SHA512 9449e563127e6b1db426df8a4f7eca8f534e136e8baa4c6be49cf9118c69b456006fa2a9024d993a0f2c3c4b9b7f8ac0c4dcaa71dfcbf42b709a03a0ba15fc5b
MISC metadata.xml 392 BLAKE2B 80ee8b6d41e2c55629eeb9d57d6c280e70bf21ee0d7af48b4f295db55117b9f2409340df26226ff4d51e680c8b1afe4d2664558872a18b38f4786f6943a92b31 SHA512 0b7723429e3137409159f75f2c37f29982a4bb034f68395cde63a9c7a825626b986277b9bec551f24b895d7731735bfae726cd64abb1d4c8b043122ad6e0eff5

View file

@ -1,22 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8,9,10} )
inherit distutils-r1
DESCRIPTION="Python MaxMind DB reader extension"
HOMEPAGE="https://github.com/maxmind/MaxMind-DB-Reader-python"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
RESTRICT="mirror"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="
dev-libs/libmaxminddb
"

View file

@ -1,9 +1,9 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
PYTHON_COMPAT=( python3_{8,9,10} )
PYTHON_COMPAT=( python3_{8,9,10,11} )
inherit distutils-r1