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/ipy | |
| 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/ipy')
| -rw-r--r-- | dev-python/ipy/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch | 24 | ||||
| -rw-r--r-- | dev-python/ipy/ipy-1.01-r1.ebuild | 37 | ||||
| -rw-r--r-- | dev-python/ipy/ipy-1.01-r2.ebuild | 39 | ||||
| -rw-r--r-- | dev-python/ipy/metadata.xml | 13 |
5 files changed, 0 insertions, 114 deletions
diff --git a/dev-python/ipy/Manifest b/dev-python/ipy/Manifest deleted file mode 100644 index 23bdf7c8ec7f..000000000000 --- a/dev-python/ipy/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST IPy-1.01.tar.gz 33641 BLAKE2B 10d5ac5c3df00a562393ee762e9ad0f458ecf4745f894ab23e686b7112842adcbb3f25064c0010630745273fa72280ba5ef92a951d687d0f46f341acd6c041ad SHA512 f0983254523025a1819d543877d9651fb6a9e39dabd3b043488495f681b02e43b544a0121658a0430a418a1c39b360a59db1699af87a75a16a2bdc29fcb2b74c diff --git a/dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch b/dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch deleted file mode 100644 index fb58aa4afb46..000000000000 --- a/dev-python/ipy/files/ipy-1.01-setDaemon-daemon.patch +++ /dev/null @@ -1,24 +0,0 @@ -https://github.com/autocracy/python-ipy/pull/76/commits/109ac8c6c1b19243047c262beeabc7d72997e2d1 -From 109ac8c6c1b19243047c262beeabc7d72997e2d1 Mon Sep 17 00:00:00 2001 -From: Karthikeyan Singaravelan <tir.karthi@gmail.com> -Date: Sat, 14 Aug 2021 05:01:15 +0000 -Subject: [PATCH] Set daemon attribute instead of using setDaemon method that - was deprecated in Python 3.10 - ---- - test/test_IPy.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/test/test_IPy.py b/test/test_IPy.py -index 8dbbd97..769fd7e 100644 ---- a/test/test_IPy.py -+++ b/test/test_IPy.py -@@ -785,7 +785,7 @@ def run(self): - self.result = default - - it = InterruptableThread() -- it.setDaemon(True) -+ it.daemon = True - it.start() - it.join(timeout_duration) - if hasattr(it, 'is_alive'): diff --git a/dev-python/ipy/ipy-1.01-r1.ebuild b/dev-python/ipy/ipy-1.01-r1.ebuild deleted file mode 100644 index 4c1c0dca816a..000000000000 --- a/dev-python/ipy/ipy-1.01-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYPI_NO_NORMALIZE=1 -PYPI_PN=IPy -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Class and tools for handling of IPv4 and IPv6 addresses and networks" -HOMEPAGE=" - https://github.com/autocracy/python-ipy/ - https://pypi.org/project/IPy/ -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~mips ~ppc ~ppc64 ~sparc x86" -IUSE="examples" - -python_test() { - "${EPYTHON}" test/test_IPy.py || die "Tests fail with ${EPYTHON}" - "${EPYTHON}" test_doc.py || die "Doctests fail with ${EPYTHON}" -} - -python_install_all() { - if use examples; then - docinto examples - dodoc -r example/. - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -} diff --git a/dev-python/ipy/ipy-1.01-r2.ebuild b/dev-python/ipy/ipy-1.01-r2.ebuild deleted file mode 100644 index 93d092169ed5..000000000000 --- a/dev-python/ipy/ipy-1.01-r2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYPI_NO_NORMALIZE=1 -PYPI_PN=IPy -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Class and tools for handling of IPv4 and IPv6 addresses and networks" -HOMEPAGE=" - https://github.com/autocracy/python-ipy/ - https://pypi.org/project/IPy/ -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~mips ~ppc ~ppc64 ~sparc x86" -IUSE="examples" - -PATCHES=( "${FILESDIR}/${PN}-1.01-setDaemon-daemon.patch" ) - -python_test() { - "${EPYTHON}" test/test_IPy.py || die "Tests fail with ${EPYTHON}" - "${EPYTHON}" test_doc.py || die "Doctests fail with ${EPYTHON}" -} - -python_install_all() { - if use examples; then - docinto examples - dodoc -r example/. - docompress -x /usr/share/doc/${PF}/examples - fi - - distutils-r1_python_install_all -} diff --git a/dev-python/ipy/metadata.xml b/dev-python/ipy/metadata.xml deleted file mode 100644 index 29540e39f370..000000000000 --- a/dev-python/ipy/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> - </maintainer> - <stabilize-allarches/> - <upstream> - <remote-id type="pypi">IPy</remote-id> - <remote-id type="github">autocracy/python-ipy</remote-id> - </upstream> -</pkgmetadata> |
