summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-03-26 12:56:44 +0200
committerDavid Seifert <soap@gentoo.org>2023-03-26 12:56:44 +0200
commit3687bab06112a0acfd552563d71e5b3bcf006615 (patch)
tree0dc3870a0717a8404f2ea1022225fbca610af398
parentnet-misc/cbugzilla: treeclean (diff)
downloadgentoo-3687bab06112a0acfd552563d71e5b3bcf006615.tar.gz
gentoo-3687bab06112a0acfd552563d71e5b3bcf006615.tar.bz2
gentoo-3687bab06112a0acfd552563d71e5b3bcf006615.zip
dev-lang/hy: treeclean
Closes: https://bugs.gentoo.org/793434 Closes: https://bugs.gentoo.org/796983 Closes: https://bugs.gentoo.org/809014 Closes: https://bugs.gentoo.org/860894 Closes: https://bugs.gentoo.org/886621 Closes: https://bugs.gentoo.org/891757 Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r--dev-lang/hy/Manifest1
-rw-r--r--dev-lang/hy/files/hy-0.15.0-do-not-install-get_version.py.patch22
-rw-r--r--dev-lang/hy/files/hy-xfail-macro-test.patch16
-rw-r--r--dev-lang/hy/hy-0.20.0.ebuild40
-rw-r--r--dev-lang/hy/metadata.xml11
-rw-r--r--profiles/package.mask6
6 files changed, 0 insertions, 96 deletions
diff --git a/dev-lang/hy/Manifest b/dev-lang/hy/Manifest
deleted file mode 100644
index cb0d96bf72a2..000000000000
--- a/dev-lang/hy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST hy-0.20.0.tar.gz 448041 BLAKE2B b728d5894403bc40e899979153ec7a0a0479a82ab5dd85699d87df150cf9169d199c06897a9573f9087623ae43a594536e56779bb6db463fd6490d944e6743c4 SHA512 ccad5f3704c48136ce77278c0bc470bf0dfbd56d8f81cfab22d90517d915cf22a6e1a976aecbb17fc9a7260fde23f3feff4572b8af80d10ceed767aef301af86
diff --git a/dev-lang/hy/files/hy-0.15.0-do-not-install-get_version.py.patch b/dev-lang/hy/files/hy-0.15.0-do-not-install-get_version.py.patch
deleted file mode 100644
index 088b382a8913..000000000000
--- a/dev-lang/hy/files/hy-0.15.0-do-not-install-get_version.py.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Don't install get_version.py
-
-This reverts commit 7361b37a7580bb5caaf7696b7bff5954042fd52b.
-
-This file is not used at runtime, and the way it was installed violated FHS.
-
----
- setup.py | 3 ---
- 1 file changed, 3 deletions(-)
-
---- a/setup.py
-+++ b/setup.py
-@@ -58,9 +58,6 @@ def run(self):
- 'hy.core': ['*.hy', '__pycache__/*'],
- 'hy.extra': ['*.hy', '__pycache__/*'],
- },
-- data_files=[
-- ('get_version', ['get_version.py'])
-- ],
- author="Paul Tagliamonte",
- author_email="tag@pault.ag",
- long_description=long_description,
diff --git a/dev-lang/hy/files/hy-xfail-macro-test.patch b/dev-lang/hy/files/hy-xfail-macro-test.patch
deleted file mode 100644
index f9ec09c4abb3..000000000000
--- a/dev-lang/hy/files/hy-xfail-macro-test.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/tests/native_tests/native_macros.hy b/tests/native_tests/native_macros.hy
-index 28f14a5a..209084f6 100644
---- a/tests/native_tests/native_macros.hy
-+++ b/tests/native_tests/native_macros.hy
-@@ -471,6 +471,11 @@ in expansions."
- ;; to trust that the .pyc loading convention was followed.
- (test-requires-and-macros))
-
-+;; FIXME: this tests fail while being run by portage with FEATURES=test.
-+;; Maybe it's because PYTHONDONTWRITEBYTECODE preserves somehow or something else
-+;; related to bytecoede, idk for now.
-+(setv test-macro-from-module (pytest.mark.xfail test-macro-from-module))
-+
-
- (defn test-recursive-require-star []
- "(require [foo [*]]) should pull in macros required by `foo`."
diff --git a/dev-lang/hy/hy-0.20.0.ebuild b/dev-lang/hy/hy-0.20.0.ebuild
deleted file mode 100644
index 02ccc372ca88..000000000000
--- a/dev-lang/hy/hy-0.20.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A LISP dialect running in python"
-HOMEPAGE="http://hylang.org/"
-SRC_URI="https://github.com/hylang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test doc"
-
-RDEPEND=">=dev-python/astor-0.7.1[${PYTHON_USEDEP}]
- >=dev-python/colorama-0.4.3[${PYTHON_USEDEP}]
- >=dev-python/funcparserlib-0.3.6[${PYTHON_USEDEP}]
- >=dev-python/rply-0.7.6[${PYTHON_USEDEP}]"
-BDEPEND="${RDEPEND}
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.15.0-do-not-install-get_version.py.patch
- "${FILESDIR}"/${PN}-xfail-macro-test.patch
-)
-
-src_prepare() {
- default
- use doc && HTML_DOCS=( docs/_build/html/. )
-}
-
-python_compile_all() {
- use doc && emake docs
-}
-
-distutils_enable_tests pytest
diff --git a/dev-lang/hy/metadata.xml b/dev-lang/hy/metadata.xml
deleted file mode 100644
index 4af66b85fb8c..000000000000
--- a/dev-lang/hy/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>patrick@gentoo.org</email>
- <name>Patrick Lauer</name>
- </maintainer>
- <upstream>
- <remote-id type="github">hylang/hy</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index 8dcfc01c237f..b63928e0b69c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -288,12 +288,6 @@ dev-lang/regina-rexx
# Removal on 2023-03-26. Bug #740480.
media-tv/nvtv
-# Michał Górny <mgorny@gentoo.org> (2023-02-24)
-# Fails to build with setuptools-67.2.0. The current version is from
-# Jan 2021, upstream had a few releases in 2022. Multiple other bugs..
-# Removal on 2023-03-26. Bug #891757.
-dev-lang/hy
-
# Ben Kohler <bkohler@gentoo.org> (2023-01-30)
# Breaks too many revdeps for now
=app-text/discount-3*