diff --git a/dev-python/gphotos-sync/Manifest b/dev-python/gphotos-sync/Manifest new file mode 100644 index 0000000..c85b428 --- /dev/null +++ b/dev-python/gphotos-sync/Manifest @@ -0,0 +1,2 @@ +DIST gphotos-sync-3.1.3.tar.gz 12556308 BLAKE2B d63c9095585a3ff9f0a084997513a3c994d5cd403218bc8b796db1363e907af66b1908197685a55c1aea67b8331c349f3b049db25d0da6040b7a4f8940fddfc5 SHA512 ff26036d109f92f57ddcbc996b9008a131b1cecde076a3ca285b3d1ef6dec4298aca9e0a0ffc563d41e247a53407d3ef420cfb14689ce85672d9512083e4441a +EBUILD gphotos-sync-3.1.3.ebuild 800 BLAKE2B d12c81629f8f616dedfe0e2415e83a8dfef10c46faba8ce805c4f4ddd97ecd91f1cf5bc8baf35125088412d0f39d82e868ecc7c1a30596bc87dcd0ff3dfa963b SHA512 80ad1439ee9780a2c717359a30d240166f1c159b32eee0c1ade9fd97c91ca7c328a2a4dbfcb28a29d9fa6849b2fe13884c6415652162991eb6dfa6eb413adf06 diff --git a/dev-python/gphotos-sync/gphotos-sync-3.1.3.ebuild b/dev-python/gphotos-sync/gphotos-sync-3.1.3.ebuild new file mode 100644 index 0000000..2cb3336 --- /dev/null +++ b/dev-python/gphotos-sync/gphotos-sync-3.1.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 2018-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="RFC-compliant FQDN validation and manipulation for Python" +HOMEPAGE=" + https://github.com/gilesknap/gphotos-sync/ + https://pypi.org/project/gphotos-sync/ +" +SRC_URI=" + https://github.com/gilesknap/${PN}/archive/v${PV}.tar.gz + -> ${P}.tar.gz +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos" + +distutils_enable_tests pytest +distutils_enable_sphinx docs + +python_prepare_all() { + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + distutils-r1_python_prepare_all +}