summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorfhajny <fhajny@pkgsrc.org>2015-11-04 13:45:44 +0000
committerfhajny <fhajny@pkgsrc.org>2015-11-04 13:45:44 +0000
commit43a34d1291779f49a7bc245ccf25f1cd7b98e009 (patch)
treefafd632e46e4178036f90e914826c029af9b9e06 /security
parent8d9f4595740b0c7db24783c715e86f8ee4836991 (diff)
downloadpkgsrc-43a34d1291779f49a7bc245ccf25f1cd7b98e009.tar.gz
Import 20 Erlang module packages that will work as dependencies
in the ejabberd 15.10 update that follows.
Diffstat (limited to 'security')
-rw-r--r--security/erlang-oauth2/DESCR2
-rw-r--r--security/erlang-oauth2/Makefile31
-rw-r--r--security/erlang-oauth2/PLIST9
-rw-r--r--security/erlang-oauth2/distinfo6
-rw-r--r--security/erlang-p1_pam/DESCR1
-rw-r--r--security/erlang-p1_pam/Makefile31
-rw-r--r--security/erlang-p1_pam/PLIST6
-rw-r--r--security/erlang-p1_pam/distinfo6
-rw-r--r--security/erlang-p1_tls/DESCR1
-rw-r--r--security/erlang-p1_tls/Makefile30
-rw-r--r--security/erlang-p1_tls/PLIST8
-rw-r--r--security/erlang-p1_tls/distinfo6
12 files changed, 137 insertions, 0 deletions
diff --git a/security/erlang-oauth2/DESCR b/security/erlang-oauth2/DESCR
new file mode 100644
index 00000000000..5bdda6095cf
--- /dev/null
+++ b/security/erlang-oauth2/DESCR
@@ -0,0 +1,2 @@
+This library is designed to simplify the implementation of the server
+side of OAuth2. It provides no support for developing clients.
diff --git a/security/erlang-oauth2/Makefile b/security/erlang-oauth2/Makefile
new file mode 100644
index 00000000000..0e666cff898
--- /dev/null
+++ b/security/erlang-oauth2/Makefile
@@ -0,0 +1,31 @@
+# $NetBSD: Makefile,v 1.1 2015/11/04 13:45:45 fhajny Exp $
+
+DISTNAME= oauth2-0.6.0.20150928
+PKGNAME= erlang-${DISTNAME}
+CATEGORIES= security
+MASTER_SITES= ${MASTER_SITE_GITHUB:=prefiks/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://github.com/prefiks/oauth2/
+COMMENT= Erlang Oauth2 implementation
+LICENSE= mit
+
+BUILD_DEPENDS+= rebar-[0-9]*:../../devel/rebar
+
+GITHUB_PROJECT= oauth2
+GITHUB_TAG= e6da9912e5d8f658e7e868f41a102d085bdbef59
+WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG}
+
+NO_CONFIGURE= yes
+USE_TOOLS+= pax
+
+BUILD_TARGET= compile
+
+INSTALLATION_DIRS+= lib/erlang/lib/oauth2
+
+do-install:
+ cd ${WRKSRC} && ${PAX} -rw -pp ebin \
+ ${DESTDIR}${PREFIX}/lib/erlang/lib/oauth2/
+
+.include "../../lang/erlang/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/security/erlang-oauth2/PLIST b/security/erlang-oauth2/PLIST
new file mode 100644
index 00000000000..14f13a0cbe1
--- /dev/null
+++ b/security/erlang-oauth2/PLIST
@@ -0,0 +1,9 @@
+@comment $NetBSD: PLIST,v 1.1 2015/11/04 13:45:45 fhajny Exp $
+lib/erlang/lib/oauth2/ebin/oauth2.app
+lib/erlang/lib/oauth2/ebin/oauth2.beam
+lib/erlang/lib/oauth2/ebin/oauth2_backend.beam
+lib/erlang/lib/oauth2/ebin/oauth2_config.beam
+lib/erlang/lib/oauth2/ebin/oauth2_priv_set.beam
+lib/erlang/lib/oauth2/ebin/oauth2_response.beam
+lib/erlang/lib/oauth2/ebin/oauth2_token.beam
+lib/erlang/lib/oauth2/ebin/oauth2_token_generation.beam
diff --git a/security/erlang-oauth2/distinfo b/security/erlang-oauth2/distinfo
new file mode 100644
index 00000000000..35720e7a557
--- /dev/null
+++ b/security/erlang-oauth2/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2015/11/04 13:45:45 fhajny Exp $
+
+SHA1 (oauth2-0.6.0.20150928-e6da9912e5d8f658e7e868f41a102d085bdbef59.tar.gz) = a92614b78a718aba32f1126974c1cf3f20696679
+RMD160 (oauth2-0.6.0.20150928-e6da9912e5d8f658e7e868f41a102d085bdbef59.tar.gz) = 1c384f1cefaa7a9a3bbeef216c18da000dab1c6e
+SHA512 (oauth2-0.6.0.20150928-e6da9912e5d8f658e7e868f41a102d085bdbef59.tar.gz) = 12fc88bbf69cf6f7c8d20688640f97324a2e258743c583387e15ad7ba895804de993901811c0c07ce9f4e1688797ef88ed8d5d1db18d77a6aed8532de72add97
+Size (oauth2-0.6.0.20150928-e6da9912e5d8f658e7e868f41a102d085bdbef59.tar.gz) = 177745 bytes
diff --git a/security/erlang-p1_pam/DESCR b/security/erlang-p1_pam/DESCR
new file mode 100644
index 00000000000..aafd23e4043
--- /dev/null
+++ b/security/erlang-p1_pam/DESCR
@@ -0,0 +1 @@
+epam for ejabberd to help with PAM authentication support.
diff --git a/security/erlang-p1_pam/Makefile b/security/erlang-p1_pam/Makefile
new file mode 100644
index 00000000000..db903d7f696
--- /dev/null
+++ b/security/erlang-p1_pam/Makefile
@@ -0,0 +1,31 @@
+# $NetBSD: Makefile,v 1.1 2015/11/04 13:45:45 fhajny Exp $
+
+DISTNAME= p1_pam-0.20150223
+PKGNAME= erlang-${DISTNAME}
+CATEGORIES= security
+MASTER_SITES= ${MASTER_SITE_GITHUB:=processone/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://github.com/processone/epam/
+COMMENT= Erlang epam for ejabberd to help with PAM authentication
+LICENSE= gnu-gpl-v2
+
+BUILD_DEPENDS+= rebar-[0-9]*:../../devel/rebar
+
+GITHUB_PROJECT= epam
+GITHUB_TAG= d3ce290b7da75d780a03e86e7a8198a80e9826a6
+WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG}
+
+GNU_CONFIGURE= yes
+USE_TOOLS+= pax
+
+LDFLAGS.SunOS+= -lnsl
+
+INSTALLATION_DIRS+= lib/erlang/lib/p1_pam
+
+do-install:
+ cd ${WRKSRC} && ${PAX} -rw -pp ebin priv \
+ ${DESTDIR}${PREFIX}/lib/erlang/lib/p1_pam/
+
+.include "../../lang/erlang/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/security/erlang-p1_pam/PLIST b/security/erlang-p1_pam/PLIST
new file mode 100644
index 00000000000..06055b89494
--- /dev/null
+++ b/security/erlang-p1_pam/PLIST
@@ -0,0 +1,6 @@
+@comment $NetBSD: PLIST,v 1.1 2015/11/04 13:45:45 fhajny Exp $
+lib/erlang/lib/p1_pam/ebin/epam.beam
+lib/erlang/lib/p1_pam/ebin/epam_app.beam
+lib/erlang/lib/p1_pam/ebin/epam_sup.beam
+lib/erlang/lib/p1_pam/ebin/p1_pam.app
+lib/erlang/lib/p1_pam/priv/bin/epam
diff --git a/security/erlang-p1_pam/distinfo b/security/erlang-p1_pam/distinfo
new file mode 100644
index 00000000000..61097b648d4
--- /dev/null
+++ b/security/erlang-p1_pam/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2015/11/04 13:45:45 fhajny Exp $
+
+SHA1 (p1_pam-0.20150223-d3ce290b7da75d780a03e86e7a8198a80e9826a6.tar.gz) = c0483be9fd6fb48dd4bf033ec8b77ff5a4bc706f
+RMD160 (p1_pam-0.20150223-d3ce290b7da75d780a03e86e7a8198a80e9826a6.tar.gz) = 92afea20952dd714cd3c9055a5199d8b058d9db5
+SHA512 (p1_pam-0.20150223-d3ce290b7da75d780a03e86e7a8198a80e9826a6.tar.gz) = 6b4b7f33f5a2491aa927c4df60afe34bfdf9ebe5c6021b71e45b140618b69d603b9c28918fca0959cbf1cb767505bbbf96962f49f2bbeaedcf2c081f74ae2920
+Size (p1_pam-0.20150223-d3ce290b7da75d780a03e86e7a8198a80e9826a6.tar.gz) = 44045 bytes
diff --git a/security/erlang-p1_tls/DESCR b/security/erlang-p1_tls/DESCR
new file mode 100644
index 00000000000..1109fa3f079
--- /dev/null
+++ b/security/erlang-p1_tls/DESCR
@@ -0,0 +1 @@
+TLS / SSL native driver for Erlang.
diff --git a/security/erlang-p1_tls/Makefile b/security/erlang-p1_tls/Makefile
new file mode 100644
index 00000000000..65820ebbaeb
--- /dev/null
+++ b/security/erlang-p1_tls/Makefile
@@ -0,0 +1,30 @@
+# $NetBSD: Makefile,v 1.1 2015/11/04 13:45:46 fhajny Exp $
+
+DISTNAME= p1_tls-0.20150803
+PKGNAME= erlang-${DISTNAME}
+CATEGORIES= security
+MASTER_SITES= ${MASTER_SITE_GITHUB:=processone/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://github.com/processone/tls/
+COMMENT= TLS/SSL native driver for Erlang
+LICENSE= gnu-gpl-v2
+
+BUILD_DEPENDS+= rebar-[0-9]*:../../devel/rebar
+
+GITHUB_PROJECT= tls
+GITHUB_TAG= e56321afd974e9da33da913cd31beebc8e73e75f
+WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG}
+
+GNU_CONFIGURE= yes
+USE_TOOLS+= pax
+
+INSTALLATION_DIRS+= lib/erlang/lib/p1_tls
+
+do-install:
+ cd ${WRKSRC} && ${PAX} -rw -pp ebin priv \
+ ${DESTDIR}${PREFIX}/lib/erlang/lib/p1_tls/
+
+.include "../../lang/erlang/buildlink3.mk"
+.include "../../security/openssl/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/security/erlang-p1_tls/PLIST b/security/erlang-p1_tls/PLIST
new file mode 100644
index 00000000000..f24ebe17d73
--- /dev/null
+++ b/security/erlang-p1_tls/PLIST
@@ -0,0 +1,8 @@
+@comment $NetBSD: PLIST,v 1.1 2015/11/04 13:45:46 fhajny Exp $
+lib/erlang/lib/p1_tls/ebin/p1_sha.beam
+lib/erlang/lib/p1_tls/ebin/p1_tls.app
+lib/erlang/lib/p1_tls/ebin/p1_tls.beam
+lib/erlang/lib/p1_tls/ebin/p1_tls_app.beam
+lib/erlang/lib/p1_tls/ebin/p1_tls_sup.beam
+lib/erlang/lib/p1_tls/priv/lib/p1_sha.so
+lib/erlang/lib/p1_tls/priv/lib/p1_tls_drv.so
diff --git a/security/erlang-p1_tls/distinfo b/security/erlang-p1_tls/distinfo
new file mode 100644
index 00000000000..74b529f90af
--- /dev/null
+++ b/security/erlang-p1_tls/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2015/11/04 13:45:46 fhajny Exp $
+
+SHA1 (p1_tls-0.20150803-e56321afd974e9da33da913cd31beebc8e73e75f.tar.gz) = 31f2c22ecd387b22d9e848f93d6b03e34de1917f
+RMD160 (p1_tls-0.20150803-e56321afd974e9da33da913cd31beebc8e73e75f.tar.gz) = 703010b40f9fe03946f11993d31ffd3e65d8fcda
+SHA512 (p1_tls-0.20150803-e56321afd974e9da33da913cd31beebc8e73e75f.tar.gz) = 734a9f00dc03841e731f750580730141dedf5384514467355c35774d8c34de1b914c08b20f1fb3d50a264084e98325c1a09027c40feba5a59c3c39edad7a3efc
+Size (p1_tls-0.20150803-e56321afd974e9da33da913cd31beebc8e73e75f.tar.gz) = 60705 bytes