summaryrefslogtreecommitdiff
path: root/dev-python/hiredis
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/hiredis
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/hiredis')
-rw-r--r--dev-python/hiredis/Manifest2
-rw-r--r--dev-python/hiredis/files/hiredis-2.4.0-system-libs.patch33
-rw-r--r--dev-python/hiredis/hiredis-3.3.1.ebuild45
-rw-r--r--dev-python/hiredis/hiredis-3.4.0.ebuild45
-rw-r--r--dev-python/hiredis/metadata.xml16
5 files changed, 0 insertions, 141 deletions
diff --git a/dev-python/hiredis/Manifest b/dev-python/hiredis/Manifest
deleted file mode 100644
index aa8b650c356f..000000000000
--- a/dev-python/hiredis/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST hiredis-py-3.3.1.gh.tar.gz 20064 BLAKE2B 9b49159291e21f00561a75e89c443fd879e6cc74a215d68768a54e9ca18e5e60057e236ea1dc40d09efb0cbf1fb38440f323ae1156b0213cb6cf351c72e23016 SHA512 02160cb5200f9741b81e9871944adc106f7fe61fdd749dde948ce9881a15b81bebc5e21047c60ad9bc164ee994fc517015b47282930c195b7c051c15d5b97fcf
-DIST hiredis-py-3.4.0.gh.tar.gz 20142 BLAKE2B 2f008475f266c965ef3b9918cefe7071f140cf4aa7d2f55194f5339a4d59b31d0d9359229f8c91f8ca5e629b8ee02d9c4821651aa77c1027d8405bc7b764def7 SHA512 9c8161b72187eaf64593cd73a855daa6f9bb94ed7b34cded353a0541b9870c2d1ef914f6d575d771432767f9bd6d40c243179f54f674cb2065bb05d206203f6d
diff --git a/dev-python/hiredis/files/hiredis-2.4.0-system-libs.patch b/dev-python/hiredis/files/hiredis-2.4.0-system-libs.patch
deleted file mode 100644
index 92a14f91d200..000000000000
--- a/dev-python/hiredis/files/hiredis-2.4.0-system-libs.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- hiredis-2.2.2.orig/setup.py
-+++ hiredis-2.2.2/setup.py
-@@ -18,8 +18,7 @@
-
-
- def get_sources():
-- hiredis_sources = ("alloc", "async", "hiredis", "net", "read", "sds", "sockcompat")
-- return sorted(glob.glob("src/*.c") + ["vendor/hiredis/%s.c" % src for src in hiredis_sources])
-+ return sorted(glob.glob("src/*.c"))
-
-
- def get_linker_args():
-@@ -38,17 +37,16 @@
-
- def get_libraries():
- if 'win32' in sys.platform:
-- return ["ws2_32", ]
-+ return ["ws2_32", "hiredis"]
- else:
-- return []
-+ return ["hiredis"]
-
-
- ext = Extension("hiredis.hiredis",
- sources=get_sources(),
- extra_compile_args=get_compiler_args(),
- extra_link_args=get_linker_args(),
-- libraries=get_libraries(),
-- include_dirs=["vendor"])
-+ libraries=get_libraries())
-
- setup(
- name="hiredis",
diff --git a/dev-python/hiredis/hiredis-3.3.1.ebuild b/dev-python/hiredis/hiredis-3.3.1.ebuild
deleted file mode 100644
index 2914187cba29..000000000000
--- a/dev-python/hiredis/hiredis-3.3.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517="setuptools"
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-MY_P=hiredis-py-${PV}
-DESCRIPTION="Python extension that wraps hiredis"
-HOMEPAGE="
- https://github.com/redis/hiredis-py/
- https://pypi.org/project/hiredis/
-"
-SRC_URI="
- https://github.com/redis/hiredis-py/archive/v${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
-
-DEPEND="
- >=dev-libs/hiredis-1.0.0:=
-"
-RDEPEND="
- ${DEPEND}
-"
-
-PATCHES=(
- "${FILESDIR}"/hiredis-2.4.0-system-libs.patch
-)
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-python_test() {
- rm -rf hiredis || die
- epytest
-}
diff --git a/dev-python/hiredis/hiredis-3.4.0.ebuild b/dev-python/hiredis/hiredis-3.4.0.ebuild
deleted file mode 100644
index 9da6a8046e12..000000000000
--- a/dev-python/hiredis/hiredis-3.4.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517="setuptools"
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-MY_P=hiredis-py-${PV}
-DESCRIPTION="Python extension that wraps hiredis"
-HOMEPAGE="
- https://github.com/redis/hiredis-py/
- https://pypi.org/project/hiredis/
-"
-SRC_URI="
- https://github.com/redis/hiredis-py/archive/v${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
-
-DEPEND="
- >=dev-libs/hiredis-1.0.0:=
-"
-RDEPEND="
- ${DEPEND}
-"
-
-PATCHES=(
- "${FILESDIR}"/hiredis-2.4.0-system-libs.patch
-)
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-python_test() {
- rm -rf hiredis || die
- epytest
-}
diff --git a/dev-python/hiredis/metadata.xml b/dev-python/hiredis/metadata.xml
deleted file mode 100644
index 3f8f3a47818f..000000000000
--- a/dev-python/hiredis/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>swegener@gentoo.org</email>
- <name>Sven Wegener</name>
- </maintainer>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <upstream>
- <remote-id type="pypi">hiredis</remote-id>
- <remote-id type="github">redis/hiredis-py</remote-id>
- </upstream>
-</pkgmetadata>