summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2022-02-09 21:14:54 +0100
committerConrad Kostecki <conikost@gentoo.org>2022-02-09 23:55:32 +0100
commit3185a691a4169532b41ab1678da898fa1dfe2189 (patch)
tree8ced3052170ef08566a0e883cd7c957d4afac920 /dev-lua/dkjson
parentdev-lua/busted-htest: drop 1.0.0-r100 (diff)
downloadgentoo-3185a691a4169532b41ab1678da898fa1dfe2189.tar.gz
gentoo-3185a691a4169532b41ab1678da898fa1dfe2189.tar.bz2
gentoo-3185a691a4169532b41ab1678da898fa1dfe2189.zip
dev-lua/dkjson: drop 2.5-r100
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lua/dkjson')
-rw-r--r--dev-lua/dkjson/Manifest1
-rw-r--r--dev-lua/dkjson/dkjson-2.5-r100.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-lua/dkjson/Manifest b/dev-lua/dkjson/Manifest
index 92eb4efa5c4f..2e11e9639a7f 100644
--- a/dev-lua/dkjson/Manifest
+++ b/dev-lua/dkjson/Manifest
@@ -1,2 +1 @@
-DIST dkjson-2.5.tar.gz 15799 BLAKE2B 25cf9aa3d00d87b367096dc793984766d7777c98ec9e97c5bd72961fb0141bb1ae94682f3719d11bde52104a755636de546fe8aece0fbf7147045175ad8bcea9 SHA512 ec9a226c3a94d7561f8f51bb0e6c92a64385b0d8baf83de862cce7e1c302d900bff723be23e4b5b4c3c2accafaf8d75d4b0842e14b2e41390a3f9761d46a38af
DIST dkjson-2.6.tar.gz 15803 BLAKE2B fdb471b94b50d90ac3ca2a6230e8a2f6b5f1362b368a4fbdf2b54b12cfd38762f448a1a752aa6022e1c80806d62d72a861f048e1734edb081d6fc1dbf225a2da SHA512 eea9dfb386672114e4269284eda045161289b43c872b9108971babbb247e686ea1c045bd4f127037e949b356630fa430037fb4b1a1eb7b5cc51f80d144a5add2
diff --git a/dev-lua/dkjson/dkjson-2.5-r100.ebuild b/dev-lua/dkjson/dkjson-2.5-r100.ebuild
deleted file mode 100644
index a04ce11a624e..000000000000
--- a/dev-lua/dkjson/dkjson-2.5-r100.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-
-inherit lua toolchain-funcs
-
-DESCRIPTION="David Kolf's JSON module for Lua"
-HOMEPAGE="http://dkolf.de/src/dkjson-lua.fsl/"
-SRC_URI="http://dkolf.de/src/dkjson-lua.fsl/tarball/${P}.tar.gz?uuid=release_2_5 -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="${LUA_DEPS}"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- test? ( ${RDEPEND} )
-"
-
-DOCS=( "readme.txt" )
-
-lua_src_test() {
- ${ELUA} jsontest.lua || die
- ${ELUA} speedtest.lua ${PN} || die
-}
-
-src_test() {
- lua_foreach_impl lua_src_test
-}
-
-lua_src_install() {
- insinto $(lua_get_lmod_dir)
- doins dkjson.lua
-}
-
-src_install() {
- lua_foreach_impl lua_src_install
-
- einstalldocs
-}