commit: ff64340274cbcb43bc20b5bb53712b42af46a51a
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 25 14:32:59 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 17:37:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff643402
dev-lua/messagepack: remove old
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
.../messagepack/messagepack-0.5.2_p20201025.ebuild | 48 ----------------------
1 file changed, 48 deletions(-)
diff --git a/dev-lua/messagepack/messagepack-0.5.2_p20201025.ebuild
b/dev-lua/messagepack/messagepack-0.5.2_p20201025.ebuild
deleted file mode 100644
index a4f23657c07..00000000000
--- a/dev-lua/messagepack/messagepack-0.5.2_p20201025.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGIT_COMMIT="18f316b3f62c02bf2b7a3096701780f78a4d2c67"
-MY_PN="lua-MessagePack"
-MY_P="${MY_PN}-${EGIT_COMMIT}"
-
-inherit toolchain-funcs
-
-DESCRIPTION="A pure Lua implementation of the MessagePack serialization format"
-HOMEPAGE="https://fperrad.frama.io/lua-MessagePack"
-SRC_URI="https://framagit.org/fperrad/${MY_PN}/-/archive/${EGIT_COMMIT}/${MY_P}.tar.gz
-> ${P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="luajit test"
-
-# Needed 'lua-TestMore' Lua module not in tree
-RESTRICT="test"
-
-RDEPEND="
- luajit? ( dev-lang/luajit:2 )
- !luajit? ( dev-lang/lua:0 )
-"
-
-BDEPEND="
- virtual/pkgconfig
- test? ( ${RDEPEND} )
-"
-
-src_compile() {
- :;
-}
-
-src_install() {
- local myemakeargs=(
- "LIBDIR=${ED}/$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD
$(usex luajit 'luajit' 'lua'))"
- "LUAVER=$($(tc-getPKG_CONFIG) --variable $(usex luajit 'abiver'
'V') $(usex luajit 'luajit' 'lua'))"
- )
-
- emake "${myemakeargs[@]}" install
-
- einstalldocs
-}