Python Azure

This commit is contained in:
Gerben Jan Dijkman
2021-07-08 23:55:07 +02:00
parent eccf7e3e78
commit 83357f9877
59 changed files with 827 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
DIST portalocker-1.7.0.tar.gz 24416 BLAKE2B afb3356a4caa8172195a2c5ea866a06ab9ad87cb0fbfdac8df86b54dbc101d497b524fd90279552dc3f30a27fb7816ae7413e13ac2b5e6f28997f0c400a71743 SHA512 45c180451dc141167fd5c56bfae68b7116c04cab3bcb62a845005ef28ba30fe808f1e65a7eff952c132928ed1101df29fd3a2ffd95db28b35ba5d5216991666e
DIST portalocker-2.3.0.tar.gz 29829 BLAKE2B f9e5ac0d0158b8528b4f2fde700b3f1d7501180464283a57021fdb498fa1323a37fdcbf6dad27296e125d4ba8be7d1792e3cbb883152352da47f24e6257fd56b SHA512 602eecfb1b6fdd6522cd769fb68757ffacfe2b5a9c4e40b215cead8b3bdd9a384cf82b3f435b9f24a92a049d02994c9e0d2d6d525dd0b92270009be9b7ece218
EBUILD portalocker-1.7.0.ebuild 762 BLAKE2B d1c7236e1a2d86ec1f544abdf5fb6bde225815e7432645b066857558307c0b31275cab1b53ef9d05b7cc47f0f9ba6747ef134a610fe915917b8633b328142e61 SHA512 2dca3e4b72c4a563477c762e3a1ce44c96e87eed1545894ee72b2828e6e3803c5a99014228bc1486dab5d9e73e4b5fd74ccb84d96dcb042619b489cb6ffc427a
EBUILD portalocker-2.3.0.ebuild 759 BLAKE2B da3da22e331f18fd79695a6ea09cbafe0eaae5a6cd56915f6876db7f1ddec7deaf983bb03b363a35c3cb42d17980d19693bdc0bd0c821fade6a4daf2a6031fa7 SHA512 ec9463cc35b80e31aafe444752319aab64a369b058abcd8e65f81fa594c3f484ecf22408349879ac820da7f49371e004677474c5003bb8f180b64bce72c73091
MISC metadata.xml 139 BLAKE2B b4a59c22790dfec3fbcfaea41ef363401766736b68a85bedae00e1944d0a848aa97104c2f34244c0fe7b6363029281f965fc1b3545301d341cda371eaa976274 SHA512 8be912ace7468a4396eb1da00a9785030a8ce35da4357a01591876a1056fd45e44da65de2af3e1eb0506ce6551714962c40c3ae5a3aefa2ad231de35af2519be

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
</pkgmetadata>

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
inherit distutils-r1
DESCRIPTION="Library to provide an easy API to file locking"
HOMEPAGE="https://github.com/WoLpH/portalocker"
SRC_URI="https://github.com/WoLpH/portalocker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="doc"
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
python_compile_all() {
if use doc; then
cd docs || die
emake html
fi
}
python_install_all() {
distutils-r1_python_install_all
dodoc README.rst CHANGELOG.rst
use doc && dodoc -r docs/_build/html
}

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} pypy3 )
inherit distutils-r1
DESCRIPTION="Library to provide an easy API to file locking"
HOMEPAGE="https://github.com/WoLpH/portalocker"
SRC_URI="https://github.com/WoLpH/portalocker/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="doc"
RDEPEND=""
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
python_compile_all() {
if use doc; then
cd docs || die
emake html
fi
}
python_install_all() {
distutils-r1_python_install_all
dodoc README.rst CHANGELOG.rst
use doc && dodoc -r docs/_build/html
}