update PySyncThru-0.7.10, remove olds

This commit is contained in:
Andreas Billmeier 2022-03-20 09:52:55 +01:00 committed by Andreas Billmeier
parent f75e5ce766
commit 9d172ce945
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 5 additions and 41 deletions

View File

@ -1,5 +1,3 @@
DIST PySyncThru-0.7.10.tar.gz 7016 BLAKE2B b3141a4b98a7b5febb7228de602b22553f1f0f411e0a0bf2dfdc95db179513eb423734c9f54d1e1fd7048a87590050ef0e2c522b6bc5fb3d05707d7adf1c31c1 SHA512 43a432af6d39ad7d106d0b3d2ad8e6fe8754b67c9a5e9df2d772f4f40318fd5bbef2a66038196396f7e3132dda6c061dbc04dafdecc8c184f31e5526e53973cc
DIST PySyncThru-0.7.3.tar.gz 4536 BLAKE2B 539c98bf45c24b99427543efd3e5610c9046623f41b1297f921bb3e60ee1cb5f44813c23cd35feb6cf9543e0a1f6a4a18d03560aaff86301ddbbd76b216cc976 SHA512 683cb8316d2149a82a43a207bc62880cfadb1955a5785a54398f2a7bb7af5ff0558c9047e43699dad7da592cb5832c8229d8adbb00fe84dd8fb07c17c0958654
EBUILD PySyncThru-0.7.10.ebuild 832 BLAKE2B 36f228277db961260322ae12d8e5fc3268e34ceb703a7c368200342746cd312a1c9adab171da81b4bdff2f038e82295d6f607a976261af65b2380b2cc1db9eea SHA512 d48c690f2e1769f2eb6282f1afbaccc7f9b8d26a397cef7e4e3636bb8343e1347ef67d88e8a2517d626007e219767efd882b74797a7a441d32d703635278c8a6
EBUILD PySyncThru-0.7.3.ebuild 832 BLAKE2B 36f228277db961260322ae12d8e5fc3268e34ceb703a7c368200342746cd312a1c9adab171da81b4bdff2f038e82295d6f607a976261af65b2380b2cc1db9eea SHA512 d48c690f2e1769f2eb6282f1afbaccc7f9b8d26a397cef7e4e3636bb8343e1347ef67d88e8a2517d626007e219767efd882b74797a7a441d32d703635278c8a6
EBUILD PySyncThru-0.7.10.ebuild 827 BLAKE2B 8699d6d63d89fc8a3f7a309ddcf25b36efd813b40941aa0e1e0214faff21742fc61406094305c367fc9829e0cfb5b981a732f44064591142e2af81c7f14e102c SHA512 5846b6cf545309b7dcc7f9a4cc305ec70d464329790d2e396abab15039bcf194ca7f85bbfe407a750591dccd43953d72707dbc7745c25420618acc533f848a7f
MISC metadata.xml 449 BLAKE2B 4c86cf00f3e33bf20aea0b6ad07ec30e1bde57555d4a212a2da1cc32808ee86bba8493a9779dc9383ff08c056fd981ab7320714934c1873003cdd80c7ac7dffd SHA512 1e508694300e5e34fa01fcc03b5554ab392cf1f04424b62a5e143fc92ebc007f1ab629680b143a4530f1fccf632e79e66b7806d53f4affc2c3143b70713587fc

View File

@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
@ -13,14 +13,14 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/demjson[${PYTHON_USEDEP}]"
dev-python/demjson3[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (

View File

@ -1,34 +0,0 @@
# 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="Automated JSON API based communication with Samsung SyncThru Web Service"
HOMEPAGE="https://github.com/nielstron/pysyncthru/ https://pypi.org/project/PySyncThru/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/demjson[${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
}