summaryrefslogtreecommitdiffstats
path: root/net-nds
diff options
context:
space:
mode:
authorAnton Luka Šijanec <anton@sijanec.eu>2024-06-03 23:27:37 +0200
committerAnton Luka Šijanec <anton@sijanec.eu>2024-06-03 23:27:37 +0200
commit473f34e2b613cf948c0e5cb081541dd5bc8c9882 (patch)
tree87825ab0da8475b076df3c571906cfc96e540270 /net-nds
parentdendrite (diff)
downloadg-473f34e2b613cf948c0e5cb081541dd5bc8c9882.tar
g-473f34e2b613cf948c0e5cb081541dd5bc8c9882.tar.gz
g-473f34e2b613cf948c0e5cb081541dd5bc8c9882.tar.bz2
g-473f34e2b613cf948c0e5cb081541dd5bc8c9882.tar.lz
g-473f34e2b613cf948c0e5cb081541dd5bc8c9882.tar.xz
g-473f34e2b613cf948c0e5cb081541dd5bc8c9882.tar.zst
g-473f34e2b613cf948c0e5cb081541dd5bc8c9882.zip
Diffstat (limited to 'net-nds')
-rw-r--r--net-nds/pamldapd/Manifest2
-rw-r--r--net-nds/pamldapd/metadata.xml17
-rw-r--r--net-nds/pamldapd/pamldapd-0.2.ebuild33
3 files changed, 52 insertions, 0 deletions
diff --git a/net-nds/pamldapd/Manifest b/net-nds/pamldapd/Manifest
new file mode 100644
index 0000000..51617f2
--- /dev/null
+++ b/net-nds/pamldapd/Manifest
@@ -0,0 +1,2 @@
+DIST pamldapd-0.2-vendor.tar.xz 25692 BLAKE2B c3dda01494aed9d0f534636978cc208a5deabed27cfe606916b07186cafac32366c6df4cf0c4432fdec7843a61830cae81a9e87d1c0d32098d79edf61509542a SHA512 cca08d57a2305ffa754cd8fad2c2e0eb6b32768c4ae51d62aa111dca3627d5b0f123b87af19ec5105b6f11cefb9b033fc2eefa97bfc03c3332b35ac7fd8297ac
+DIST pamldapd-0.2.tar.gz 8685 BLAKE2B 663f24283a54dc6c37bfeea492d2445c4942668fce8daf640df59d44b5527cdfb4b2d4b9e682ae0e0a7f577e838b5e09cade06e2f260fbd6f43ad7552fad46e3 SHA512 b77fd033c800b568af26fd6faf2f69782293684f3456b61ca45b457142486b7cadb964bf1eddb29e6aa5160e3d6baef18bbf4cdc9f091a342440478349827428
diff --git a/net-nds/pamldapd/metadata.xml b/net-nds/pamldapd/metadata.xml
new file mode 100644
index 0000000..fd26dee
--- /dev/null
+++ b/net-nds/pamldapd/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>anton@sijanec.eu</email>
+ <name>Anton Luka Šijanec</name>
+ </maintainer>
+ <upstream>
+ <maintainer type="person">
+ <email>anton@sijanec.eu</email>
+ <name>Anton Luka Šijanec</name>
+ </maintainer>
+ <changelog>https://github.com/eisin/pamldapd/activity</changelog>
+ <doc>https://github.com/eisin/pamldapd/blob/master/README.adoc</doc>
+ <bugs-to>mailto:anton+pamldapd-ebuild@sijanec.eu</bugs-to>
+ </upstream>
+</pkgmetadata>
diff --git a/net-nds/pamldapd/pamldapd-0.2.ebuild b/net-nds/pamldapd/pamldapd-0.2.ebuild
new file mode 100644
index 0000000..7ecd192
--- /dev/null
+++ b/net-nds/pamldapd/pamldapd-0.2.ebuild
@@ -0,0 +1,33 @@
+EAPI=8
+inherit go
+# max 80 chars
+DESCRIPTION="Simple LDAP server, uses PAM as backend"
+HOMEPAGE="https://github.com/eisin/pamldapd"
+SRC_URI="https://github.com/eisin/pamldapd/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz http://splet.sijanec.eu./dir/pamldapd-0.2-vendor.tar.xz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+# vsi moji programi so nestabilni (:
+KEYWORDS="*"
+
+DEPEND="acct-user/pamldapd acct-group/pamldapd"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+# do not use mirrors to download
+RESTRICT="mirror"
+
+src_unpack() {
+ unpack ${A}
+}
+
+src_compile() {
+ ego build
+}
+
+src_install() {
+ dobin pamldapd
+ default
+}