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

3
dev-python/fdb/Manifest Normal file
View File

@@ -0,0 +1,3 @@
DIST fdb-2.0.1.tar.gz 894688 BLAKE2B b3ea5b5d0c3b303adea6a3d3fcafb605afbc817cbc8a909bb6166a39494ce07e90b000742dad2d6609933476f132827c3187c24d9c07e66b07f4c0312a2b84ac SHA512 1194aa860613f45621b549bb01251fde7e4f8db4dd7ffdd8f428888b5239379a45094e27b753edbb053aea82f3def942dfc4713d31fd8bbf25e48dfed686205b
EBUILD fdb-2.0.1-r1.ebuild 447 BLAKE2B 256c2798a5b1e5ce4ee8f4b1c55421d5b375dab8124ea163cd02dc6a87a373055cf1401829376c84601b54414ba1431b67e328d4aa8172bcd0330fa576a5ff06 SHA512 cf25e24adea1a1a9d6e854354d5c90172939466531a2a165321d4c784eef610b297ef25f79d44646cbaa84bb8e1503462cb2e14050f23863dc241c1b09969265
MISC metadata.xml 722 BLAKE2B 883a4fec8069cd84dc3ed6c9d79aeda826347083a64d6e42b51792d9b1cd6bf0881695ef38f7274408c079f2574740b0986f0675141ed7151d8d541c07b29eac SHA512 1a4e623295649b60c5d901db9e02dd801b2e6cdc98ed6b5371f50e31b79ba2046901f277b3031653e998ffbbe9939ce875929eb1c074e69645e5ad3795390472

View File

@@ -0,0 +1,21 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Firebird RDBMS bindings for Python."
HOMEPAGE="https://pypi.org/project/fdb"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="BSD"
SLOT="0"
RDEPEND="dev-db/firebird"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>vincent.hardy@linuxunderground.be</email>
<name>Vincent Hardy</name>
</maintainer>
<upstream>
<remote-id type="pypi">fdb</remote-id>
<remote-id type="github">FirebirdSQL/fdb</remote-id>
</upstream>
<longdescription>
FDB is a Python library package that implements Python Database
API 2.0-compliant support for the open source relational database
Firebird. In addition to the minimal feature set of the standard
Python DB API, FDB also exposes nearly the entire native client
API of the database engine
</longdescription>
</pkgmetadata>