diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/psycopg2cffi | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-python/psycopg2cffi')
| -rw-r--r-- | dev-python/psycopg2cffi/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/psycopg2cffi/files/psycopg2cffi-2.9.0-include-tests.patch | 10 | ||||
| -rw-r--r-- | dev-python/psycopg2cffi/metadata.xml | 10 | ||||
| -rw-r--r-- | dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild | 57 |
4 files changed, 0 insertions, 78 deletions
diff --git a/dev-python/psycopg2cffi/Manifest b/dev-python/psycopg2cffi/Manifest deleted file mode 100644 index d267c2e4016f..000000000000 --- a/dev-python/psycopg2cffi/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST psycopg2cffi-2.9.0.gh.tar.gz 117682 BLAKE2B 9fe983f8f72fe384b1946143331b17dbcd03d12579241c7444d0d1c8bb7d51ed9576eace780ae3dd58c2d621b21f045347e25692514fa2fbbee2aac21ef89adb SHA512 520c4aaad33916ff5e1a7089888e04134bd5ad6f3115415a3dd04fb48afdc8ad0c68bf9e71d9158640392d3a2cd0b280eea8fa7a3d2ed63944e234d52f8cce43 diff --git a/dev-python/psycopg2cffi/files/psycopg2cffi-2.9.0-include-tests.patch b/dev-python/psycopg2cffi/files/psycopg2cffi-2.9.0-include-tests.patch deleted file mode 100644 index 1237fa7d56a8..000000000000 --- a/dev-python/psycopg2cffi/files/psycopg2cffi-2.9.0-include-tests.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/setup.py -+++ b/setup.py -@@ -57,7 +57,7 @@ setup_kwargs = dict( - description=README[0].strip(), - long_description=''.join(README), - test_suite='psycopg2cffi.tests.suite', -- packages=['psycopg2cffi', 'psycopg2cffi._impl', 'psycopg2cffi.tests'], -+ packages=['psycopg2cffi', 'psycopg2cffi._impl', 'psycopg2cffi.tests', 'psycopg2cffi.tests.psycopg2_tests'], - install_requires=['six'], - ) diff --git a/dev-python/psycopg2cffi/metadata.xml b/dev-python/psycopg2cffi/metadata.xml deleted file mode 100644 index 984630c12899..000000000000 --- a/dev-python/psycopg2cffi/metadata.xml +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <bugs-to>https://github.com/chtd/psycopg2cffi/issues</bugs-to> - <remote-id type="pypi">psycopg2cffi</remote-id> - <remote-id type="github">chtd/psycopg2cffi</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild b/dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild deleted file mode 100644 index 39a699fe19fc..000000000000 --- a/dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 2019-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{13..14} ) -DISTUTILS_USE_PEP517=setuptools -inherit databases distutils-r1 edo - -DESCRIPTION="Implementation of the psycopg2 module using cffi. Compatible with Psycopg 2.5." -HOMEPAGE=" - https://pypi.org/project/psycopg2cffi/ - https://github.com/chtd/psycopg2cffi -" -SRC_URI="https://github.com/chtd/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz" - -LICENSE="LGPL-3+" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND="dev-db/postgresql:=" -RDEPEND=" - ${DEPEND} - dev-python/six[${PYTHON_USEDEP}] -" -BDEPEND=" - $(python_gen_cond_dep 'dev-python/cffi[${PYTHON_USEDEP}]' 'python*') - test? ( ${DATABASES_DEPEND[postgres]} ) -" - -PATCHES=( "${FILESDIR}"/${P}-include-tests.patch ) - -EPYTEST_DESELECT=( - # hang - tests/psycopg2_tests/test_cancel.py::CancelTests::test_async_cancel - # fail - tests/psycopg2_tests/test_dates.py::FromTicksTestCase::test_date_value_error_sec_59_99 - tests/psycopg2_tests/test_types_basic.py::TypesBasicTests::testEmptyArray -) - -distutils_enable_tests pytest - -python_test() { - cd "${T}" || die - epytest --pyargs ${PN} -} - -src_test() { - local -x PSYCOPG2_TESTDB_HOST="localhost" - local -x PSYCOPG2_TESTDB_PORT="55432" - local -x PSYCOPG2_TESTDB_USER="postgres" - epostgres --start ${PSYCOPG2_TESTDB_PORT} - edo createdb -h ${PSYCOPG2_TESTDB_HOST} -p ${PSYCOPG2_TESTDB_PORT} -U postgres psycopg2_test - - distutils-r1_src_test - epostgres --stop -} |
