dev-python/simplepush: add 2.1.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 17:34:00 +01:00 committed by Andreas Billmeier
parent d132e1e529
commit f84bbbae44
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 2 deletions

View File

@ -548,11 +548,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1493 Ebuilds in total, 1486 of them have in total 1495 (34 different) licenses assigned.
There are 1494 Ebuilds in total, 1487 of them have in total 1496 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|870|
|MIT|871|
|Apache-2.0|302|
|GPL-3|93|
|BSD|87|

View File

@ -1,3 +1,5 @@
DIST simplepush-1.1.4.tar.gz 1992 BLAKE2B 6de44cab6a6a3c04ffd51779818b802cb60fb29bebddba16f342d922a901df4bc747c86b250be03522d83b53a21820a4d0451cfe01732d0ed837ccf415a1183e SHA512 e6646b02b84a4cc7298aea13c63f29066e0eec1eade15d039c9690bd6cdf5b40ab79542b7efb9d538590dc43849fe6552a3e40a0e1dd851c61c4488fc261ad0f
DIST simplepush-2.1.1.tar.gz 3264 BLAKE2B 0be78bf578a33532efac94fc5e8b96e0af4581818fed738c29b31957e981f93fc2b2ea02f81e3f31e77f68089b527a8507c3951236fc59d8a0356062a5f7a07f SHA512 1d783014acd41996390a1cd46d504a39c0149f3379bac3185d08636f1558e9164be312bf9935ab4ad0eaaa89f436d66cbf38f78ab6c4fe39a03389f0d5d627c7
EBUILD simplepush-1.1.4.ebuild 759 BLAKE2B 94307574f83cbbbdf48965390c1052c00a727db284c4873f0943eba424428d05cd255b102ff334cfb73f1adb56fa2fe3a5d496af9a1f2ebecc8b122cc6673758 SHA512 c9d81b0177ca881205431e78d4ef2bf4df3af9e226881e9b60e3858188afc7942eeb1ad7aca61efc0363b5050b1fb724fabcc01f2e5cb3ea8526743e2d3f3efe
EBUILD simplepush-2.1.1.ebuild 797 BLAKE2B 77332a0e4d645c64c03a00162bc3697c7eecc41cd1a3ebc7f9b1460128a2d64b02d7e41982b98b9bfd18c7a6f152a434027566cd2499ae05614774264ed14184 SHA512 c12a90d76e7d8bfa44148e1c59e7112612d27730f3366ac8c518f1454ff87092ef92d9bd10428c7a7e782f51b430ba61939eaad0bc858c9e0379fddf34a23567
MISC metadata.xml 458 BLAKE2B eb663adfe63c466f7424efb48153f4cc8d148f36e2c076cf3835867292aa2ccfcd934a1b46b30dbee49c552b84eac79b1bdd8b76214e46fc97749d3b6089cd26 SHA512 2cd6dcdb667be16cf958642f55a8d4b14b5d8473057110171b811b2d462e3cdaa7542f179f23100cd918f87ab29a7c1995d436a255a7da5777cb263bdd0f7da9

View File

@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Simplepush python library"
HOMEPAGE="https://github.com/simplepush/simplepush-python https://simplepush.io https://pypi.org/project/simplepush/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
#DOCS="README.rst"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest