Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/hy/
Date: Mon, 31 May 2021 20:22:20
Message-Id: 1622492436.413c973f68c524ca94e227e8582ab7fbe1dbc46f.mgorny@gentoo
1 commit: 413c973f68c524ca94e227e8582ab7fbe1dbc46f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 20:20:36 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 20:20:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413c973f
7
8 dev-lang/hy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-lang/hy/Manifest | 1 -
13 dev-lang/hy/hy-0.17.0.ebuild | 45 --------------------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-lang/hy/Manifest b/dev-lang/hy/Manifest
17 index d007b9c53ff..cb0d96bf72a 100644
18 --- a/dev-lang/hy/Manifest
19 +++ b/dev-lang/hy/Manifest
20 @@ -1,2 +1 @@
21 -DIST hy-0.17.0.tar.gz 438729 BLAKE2B f699198a3181592dc0a1c12ecb85defce5ee592eb3c949635f37af36f39f452b081b18b46a122d515a7246d448c1710eedd8015a14f18dc074c61f0cfccecf8f SHA512 18601bf47df2120f8833a1ae211c416dc90825f31cd50b259adfe0585089a623d0fea13512b2935b093e14d8595c93bc1610939d5f1d664f6acf7ddf7e341542
22 DIST hy-0.20.0.tar.gz 448041 BLAKE2B b728d5894403bc40e899979153ec7a0a0479a82ab5dd85699d87df150cf9169d199c06897a9573f9087623ae43a594536e56779bb6db463fd6490d944e6743c4 SHA512 ccad5f3704c48136ce77278c0bc470bf0dfbd56d8f81cfab22d90517d915cf22a6e1a976aecbb17fc9a7260fde23f3feff4572b8af80d10ceed767aef301af86
23
24 diff --git a/dev-lang/hy/hy-0.17.0.ebuild b/dev-lang/hy/hy-0.17.0.ebuild
25 deleted file mode 100644
26 index f5cd25b9c0a..00000000000
27 --- a/dev-lang/hy/hy-0.17.0.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -RESTRICT="test" # needs some pointy sticks. Seriously.
36 -PYTHON_COMPAT=(python3_7)
37 -
38 -inherit distutils-r1
39 -DESCRIPTION="A LISP dialect running in python"
40 -HOMEPAGE="http://hylang.org/"
41 -SRC_URI="https://github.com/hylang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -LICENSE="MIT"
43 -SLOT="0"
44 -
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE="test doc"
47 -
48 -RDEPEND=">=dev-python/astor-0.7.1[${PYTHON_USEDEP}]
49 - >=dev-python/clint-0.4[${PYTHON_USEDEP}]
50 - dev-python/flake8[${PYTHON_USEDEP}]
51 - >=dev-python/funcparserlib-0.3.6[${PYTHON_USEDEP}]
52 - >=dev-python/rply-0.7.6[${PYTHON_USEDEP}]
53 - "
54 -DEPEND="${RDEPEND}
55 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
56 - test? (
57 - dev-python/nose[${PYTHON_USEDEP}]
58 - dev-python/sphinx[${PYTHON_USEDEP}]
59 - )"
60 -
61 -PATCHES=( "${FILESDIR}"/${PN}-0.15.0-do-not-install-get_version.py.patch )
62 -
63 -src_prepare() {
64 - default
65 - use doc && HTML_DOCS=( docs/_build/html/. )
66 -}
67 -
68 -python_compile_all() {
69 - use doc && emake docs
70 -}
71 -
72 -python_test() {
73 - nosetests -vv || die "Tests failed under ${EPYTHON}"
74 -}