summaryrefslogtreecommitdiff
path: root/dev-lang/hy/files
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/hy/files')
-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
2 files changed, 0 insertions, 38 deletions
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`."