commit: 95d0790c13691b22b4b49ae62ef6600056e18f9e Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com> AuthorDate: Mon Feb 10 16:13:13 2025 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Tue May 6 07:48:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95d0790c
net-nds/shelldap: add 1.5.2 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com> Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> net-nds/shelldap/Manifest | 1 + net-nds/shelldap/shelldap-1.5.2.ebuild | 43 ++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/net-nds/shelldap/Manifest b/net-nds/shelldap/Manifest index f23f8b61811b..1cd927a0c1ac 100644 --- a/net-nds/shelldap/Manifest +++ b/net-nds/shelldap/Manifest @@ -1 +1,2 @@ DIST shelldap-1.5.1.tar.gz 22817 BLAKE2B 8ec41edf8c7d024f5eaed286284445cc9d41fbdf93ae34229d32392dd6f4862b8b3e66b5735679a9019d505753994f3d1d8f0d6cefec9b55708ef982d757b009 SHA512 64e5f58aa2d930ff869abb0c88ba36a5aac1272f118af8d17a0db847d6ce4bdd9fe3b8fb6b2e9d08f89bec57a102adf170f2c9f6b98b5f3fe5c30ac3636a060a +DIST shelldap-1.5.2.tar.gz 25639 BLAKE2B 5c667c44de804279a4a524a050fd09297fcc17180a53e28cda44add63ceb49e24303ea6d824111d37e50120c6c46a341d16278c0a5e2fe6fd396a4e883a1f4e8 SHA512 48944ad82ee91c48ffd6b07cda45470112bcea4d663884aacfc56f61e8cf317dff78b4cc0936e7ce949de54e43faf4f41ced6d6bf908c7ab53956ca019d3e7b4 diff --git a/net-nds/shelldap/shelldap-1.5.2.ebuild b/net-nds/shelldap/shelldap-1.5.2.ebuild new file mode 100644 index 000000000000..3d42d722ab1e --- /dev/null +++ b/net-nds/shelldap/shelldap-1.5.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +GENTOO_DEPEND_ON_PERL=noslotop +inherit perl-module + +DESCRIPTION="A handy shell-like interface for browsing LDAP servers and editing their content" +HOMEPAGE="https://github.com/mahlonsmith/shelldap" +SRC_URI="https://github.com/mahlonsmith/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="+readline sasl +ssl" + +RDEPEND="dev-perl/Algorithm-Diff + sasl? ( dev-perl/Authen-SASL ) + dev-perl/IO-Socket-SSL + dev-perl/perl-ldap + dev-perl/TermReadKey + readline? ( dev-perl/Term-ReadLine-Gnu ) + dev-perl/Term-Shell + dev-perl/Tie-IxHash + dev-perl/YAML-Syck + virtual/perl-Data-Dumper + virtual/perl-File-Temp + virtual/perl-Getopt-Long + virtual/perl-Digest-MD5" + +src_configure() { :; } + +src_compile() { + pod2man --name "${PN}" < "${PN}" > "${PN}.1" || die 'creating manpage failed' +} + +src_install() { + doman "${PN}.1" + dobin "${PN}" + dodoc USAGE +}
