dev-python/push-receiver: update SRC_URI

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-07-12 19:46:14 +02:00 committed by Andreas Billmeier
parent 3c42c58851
commit 17c9c506f4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 6 additions and 10 deletions

View File

@ -1,3 +1,3 @@
DIST push-receiver-0.1.1.tar.gz 15856 BLAKE2B 28763d2b48b240c7183845b623ca4d0495e399764841bd95ca313ab14dd5a04ae81319420d79dc36d48bd3581c0b885f750a4b0e6edc4fdd57699de5245e8e37 SHA512 4d1a3698165e3dcfadf28dd5a8ca66702f8373a4e3b354ba84e122ef7f2770e5b161beffebd50a5c3d41442bbf6bededf343d32fb0f2a34e2e1ea6276c9a1707
EBUILD push-receiver-0.1.1.ebuild 839 BLAKE2B cbf651160ec976ba5ec3037108e0f91a6f492b1d82cc7f63d6bf83a9cfd99c80d7bcd617512ab24b82913667d5ab807697c49fd6cf32a9fef7daed2c90d1883a SHA512 0cae838a4ee30896a223f3758b37c23ada599bffdd5a26a75bd5574c3924b85232b607423cf7d627edbcbb6caaf8401c768717a1b2d1a8a992278670049c233b
DIST push_receiver-0.1.1.tar.gz 15856 BLAKE2B 28763d2b48b240c7183845b623ca4d0495e399764841bd95ca313ab14dd5a04ae81319420d79dc36d48bd3581c0b885f750a4b0e6edc4fdd57699de5245e8e37 SHA512 4d1a3698165e3dcfadf28dd5a8ca66702f8373a4e3b354ba84e122ef7f2770e5b161beffebd50a5c3d41442bbf6bededf343d32fb0f2a34e2e1ea6276c9a1707
EBUILD push-receiver-0.1.1.ebuild 712 BLAKE2B fdf41bbc799049de1252b1fe1940b9a670b7aa114be7a93464c5db1b0019f298d32a3e786add8bf5248cbe9305d9d49201bdd6a479b53ced336c419db1102b11 SHA512 7857c67ee6baf6724261bd18f351e43395a9b08adfc0c8d2d0d23f134aacb3465bbb1f8952366eb739750700112209996eb04e0147d65d792f1a5029c26aaf5b
MISC metadata.xml 525 BLAKE2B d2a5e4818e9f13bfa4276bf5be4a2fba55d6fe5913db655592dd66432e22b7d75228b176328382b96f6b3e2b34799ba6a7db2ec99c69f5e1d10cf9c7eb345ff2 SHA512 1235c15185f04a38806b402df3fb59b5d6ffe18fe52faf7f39dfaabb67ec4d7c8d5ff9f049c2e8e344f47aafaa68a8c9ef84bd7fe35bc582a7d70432939b60a6

View File

@ -1,17 +1,14 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="subscribe to GCM/FCM and receive notifications"
HOMEPAGE="https://github.com/Francesco149/push_receiver https://pypi.org/project/push-receiver/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Unlicense"
SLOT="0"
@ -24,7 +21,6 @@ DOCS="README.rst"
RDEPEND="dev-python/oscrypto[${PYTHON_USEDEP}]
dev-python/protobuf-python[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"