summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-04-17 19:55:19 +0100
committerSam James <sam@gentoo.org>2022-04-17 20:00:02 +0100
commit7eeba644bbf5801b5c508520d1ac2bdc1dfb57e8 (patch)
treea0b6e035b9a0726d261da93118a84c7f03cb5a5d /dev-util/redo
parentdev-util/poke: drop 1.3, 2.1 (diff)
downloadgentoo-7eeba644bbf5801b5c508520d1ac2bdc1dfb57e8.tar.gz
gentoo-7eeba644bbf5801b5c508520d1ac2bdc1dfb57e8.tar.bz2
gentoo-7eeba644bbf5801b5c508520d1ac2bdc1dfb57e8.zip
dev-util/redo: drop 0.42a
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/redo')
-rw-r--r--dev-util/redo/Manifest1
-rw-r--r--dev-util/redo/redo-0.42a.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/dev-util/redo/Manifest b/dev-util/redo/Manifest
index 905689146e67..3f16c673454c 100644
--- a/dev-util/redo/Manifest
+++ b/dev-util/redo/Manifest
@@ -1,2 +1 @@
-DIST redo-0.42a.tar.gz 195053 BLAKE2B 3e84e961eeb66396d5d5aa8a3f05f10d4000089d12c36bd8e061c163e050b9bc125cd8dcc5987c9f3b25e2b8803ff7c34d48a173ab91fc4a3e9fd63c114adc8a SHA512 8473bd8168c8e70b59a573560f8f725c8538061ee15eabeb63e467a363fa6869aa8088e8ce324726da4e2f7115e2ddf72cbb657703e9090f4f93c05f42bb67cb
DIST redo-0.42c.tar.gz 195232 BLAKE2B b24969d71b247d02642340cebbf325e2ae68d4893d02e489930120e6aac76bd3099fd42e7dc36dae1fdea5c7825657957291876b906c2671a6319f8eb45a9d91 SHA512 3196ff5941d9e62084c7332a6771edd0db0082a499ba16fb6de273295c65b734e7dadb29a9fca3e6266421bc964369a8e725ef55f59ade2ecfb5e8bcc446ced0
diff --git a/dev-util/redo/redo-0.42a.ebuild b/dev-util/redo/redo-0.42a.ebuild
deleted file mode 100644
index e35d391bae31..000000000000
--- a/dev-util/redo/redo-0.42a.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2018-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_8 )
-PYTHON_REQ_USE="sqlite"
-inherit multiprocessing python-utils-r1 python-single-r1
-
-DESCRIPTION="Smaller, easier, more powerful, and more reliable than make"
-HOMEPAGE="https://github.com/apenwarr/redo"
-SRC_URI="https://github.com/apenwarr/redo/archive/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
- $(python_gen_cond_dep '
- dev-python/beautifulsoup4[${PYTHON_USEDEP}]
- dev-python/markdown[${PYTHON_USEDEP}]
- ')
- ${PYTHON_DEPS}
-"
-RDEPEND="
- ${BDEPEND}
-"
-S=${WORKDIR}/${PN}-${P}
-
-src_configure() {
- echo ${PYTHON} > redo/whichpython || die
-}
-
-src_compile() {
- ./do -j$(makeopts_jobs) build || die
-}
-
-src_test() {
- local ARCH= CFLAGS= CXXFLAGS= LDFLAGS=
- ./do -j$(makeopts_jobs) test || die
-}
-
-src_install() {
- DESTDIR="${D}" \
- DOCDIR="${D}/usr/share/doc/${PF}" \
- LIBDIR="${D}/$(python_get_sitedir)/${PN}" \
- ./do -j$(makeopts_jobs) \
- install || die
-
- python_fix_shebang "${D}"
-
- sed -i \
- -e 's|/lib/|/'"$(get_libdir)"'/|g' \
- "${D}"/usr/bin/* || die
-
- python_optimize
-}