summaryrefslogtreecommitdiff
path: root/dev-lua/mediator_lua
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lua/mediator_lua')
-rw-r--r--dev-lua/mediator_lua/Manifest1
-rw-r--r--dev-lua/mediator_lua/mediator_lua-1.1.2_p0-r1.ebuild50
-rw-r--r--dev-lua/mediator_lua/metadata.xml17
3 files changed, 0 insertions, 68 deletions
diff --git a/dev-lua/mediator_lua/Manifest b/dev-lua/mediator_lua/Manifest
deleted file mode 100644
index fc3adf6ff615..000000000000
--- a/dev-lua/mediator_lua/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST mediator_lua-1.1.2_p0.tar.gz 5809 BLAKE2B a14cbe043cef72cdff35f92c5e6e420e94ab9930235ef71c31749f6371ef3a9a55c104ebe0a82ad86a95ddb5913ebe69f600e16393b6c5ff532802ace7bd7597 SHA512 116d08a96fa0bd540ac4d3cac61a529a634cba3621c6f2e917b405462bbc0e2ab5b170dc6819e470105cdedf958a382945819eaff4affa63bc057824c163c8a0
diff --git a/dev-lua/mediator_lua/mediator_lua-1.1.2_p0-r1.ebuild b/dev-lua/mediator_lua/mediator_lua-1.1.2_p0-r1.ebuild
deleted file mode 100644
index 0a30a921a90f..000000000000
--- a/dev-lua/mediator_lua/mediator_lua-1.1.2_p0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1,3,4} luajit )
-MY_PV="${PV/_p/-}"
-
-inherit lua
-
-DESCRIPTION="Mediator pattern implementation for pub-sub management"
-HOMEPAGE="http://olivinelabs.com/mediator_lua/"
-SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="${LUA_DEPS}"
-BDEPEND="
- virtual/pkgconfig
- test? (
- dev-lua/busted[${LUA_USEDEP}]
- dev-lua/lua_cliargs[${LUA_USEDEP}]
- ${RDEPEND}
- )
-"
-
-lua_src_test() {
- busted --lua=${ELUA} || die
-}
-
-src_test() {
- lua_foreach_impl lua_src_test
-}
-
-lua_src_install() {
- insinto $(lua_get_lmod_dir)
- doins src/mediator.lua
-}
-
-src_install() {
- lua_foreach_impl lua_src_install
-
- einstalldocs
-}
diff --git a/dev-lua/mediator_lua/metadata.xml b/dev-lua/mediator_lua/metadata.xml
deleted file mode 100644
index 7e8102bcd6af..000000000000
--- a/dev-lua/mediator_lua/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>conikost@gentoo.org</email>
- <name>Conrad Kostecki</name>
- </maintainer>
- <longdescription>
- mediator_lua allows you to subscribe and publish to a central object so
- you can decouple function calls in your application. It's as simple as
- mediator:subscribe("channel", function). Supports namespacing, predicates,
- and more.
- </longdescription>
- <upstream>
- <remote-id type="github">Olivine-Labs/mediator_lua</remote-id>
- </upstream>
-</pkgmetadata>