pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Jul  8 12:52:07 UTC 2020

Modified Files:
        pkgsrc/devel: Makefile
Added Files:
        pkgsrc/devel/lua-mediator: DESCR Makefile PLIST distinfo

Log Message:
devel: Add lua-mediator

mediator_lua is a simple class that allows you to listen to events by
subscribing to and sending data to channels. Its purpose is to help you
decouple code where you might otherwise have functions calling functions
calling functions.


To generate a diff of this commit:
cvs rdiff -u -r1.3158 -r1.3159 pkgsrc/devel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/lua-mediator/DESCR \
    pkgsrc/devel/lua-mediator/Makefile pkgsrc/devel/lua-mediator/PLIST \
    pkgsrc/devel/lua-mediator/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/Makefile
diff -u pkgsrc/devel/Makefile:1.3158 pkgsrc/devel/Makefile:1.3159
--- pkgsrc/devel/Makefile:1.3158        Wed Jul  8 12:15:08 2020
+++ pkgsrc/devel/Makefile       Wed Jul  8 12:52:07 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3158 2020/07/08 12:15:08 nia Exp $
+# $NetBSD: Makefile,v 1.3159 2020/07/08 12:52:07 nia Exp $
 #
 
 COMMENT=       Development utilities
@@ -865,6 +865,7 @@ SUBDIR+=    lua-lrexlib-onig
 SUBDIR+=       lua-lrexlib-pcre
 SUBDIR+=       lua-lrexlib-posix
 SUBDIR+=       lua-luv
+SUBDIR+=       lua-mediator
 SUBDIR+=       lua-mode
 SUBDIR+=       lua-penlight
 SUBDIR+=       lua-posix

Added files:

Index: pkgsrc/devel/lua-mediator/DESCR
diff -u /dev/null pkgsrc/devel/lua-mediator/DESCR:1.1
--- /dev/null   Wed Jul  8 12:52:07 2020
+++ pkgsrc/devel/lua-mediator/DESCR     Wed Jul  8 12:52:07 2020
@@ -0,0 +1,4 @@
+mediator_lua is a simple class that allows you to listen to events by
+subscribing to and sending data to channels. Its purpose is to help you
+decouple code where you might otherwise have functions calling functions
+calling functions.
Index: pkgsrc/devel/lua-mediator/Makefile
diff -u /dev/null pkgsrc/devel/lua-mediator/Makefile:1.1
--- /dev/null   Wed Jul  8 12:52:07 2020
+++ pkgsrc/devel/lua-mediator/Makefile  Wed Jul  8 12:52:07 2020
@@ -0,0 +1,25 @@
+# $NetBSD: Makefile,v 1.1 2020/07/08 12:52:07 nia Exp $
+
+DISTNAME=      mediator_lua-1.1.2
+PKGNAME=       ${LUA_PKGPREFIX}-${DISTNAME:S/_lua//1}
+CATEGORIES=    devel lua
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=Olivine-Labs/}
+GITHUB_PROJECT=        mediator_lua
+GITHUB_TAG=    v${PKGVERSION_NOREV}-0
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      http://olivinelabs.com/mediator_lua/
+COMMENT=       Mediator pattern implementation for pub-sub management
+LICENSE=       mit
+
+NO_BUILD=      yes
+USE_LANGUAGES= # none
+
+INSTALLATION_DIRS+=    ${LUA_LDIR}
+
+do-install:
+       ${INSTALL_DATA} ${WRKSRC}/src/mediator.lua \
+               ${DESTDIR}${PREFIX}/${LUA_LDIR}/mediator.lua
+
+.include "../../lang/lua/module.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/lua-mediator/PLIST
diff -u /dev/null pkgsrc/devel/lua-mediator/PLIST:1.1
--- /dev/null   Wed Jul  8 12:52:07 2020
+++ pkgsrc/devel/lua-mediator/PLIST     Wed Jul  8 12:52:07 2020
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1 2020/07/08 12:52:07 nia Exp $
+${LUA_LDIR}/mediator.lua
Index: pkgsrc/devel/lua-mediator/distinfo
diff -u /dev/null pkgsrc/devel/lua-mediator/distinfo:1.1
--- /dev/null   Wed Jul  8 12:52:07 2020
+++ pkgsrc/devel/lua-mediator/distinfo  Wed Jul  8 12:52:07 2020
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/07/08 12:52:07 nia Exp $
+
+SHA1 (mediator_lua-1.1.2.tar.gz) = 81f905f939d8682be392a6b39ebf107513a5585a
+RMD160 (mediator_lua-1.1.2.tar.gz) = fac098d33519b30b89da373d8f80a658078e71c9
+SHA512 (mediator_lua-1.1.2.tar.gz) = 116d08a96fa0bd540ac4d3cac61a529a634cba3621c6f2e917b405462bbc0e2ab5b170dc6819e470105cdedf958a382945819eaff4affa63bc057824c163c8a0
+Size (mediator_lua-1.1.2.tar.gz) = 5809 bytes



Home | Main Index | Thread Index | Old Index