Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/shelldap/
Date: Tue, 03 Jan 2017 23:12:11
Message-Id: 1483485086.373389f06e0052723b71d6aa9a2382ce97f490d7.monsieurp@gentoo
1 commit: 373389f06e0052723b71d6aa9a2382ce97f490d7
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Fri Dec 30 05:14:09 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 23:11:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=373389f0
7
8 net-nds/shelldap: version bump to 1.3.2
9
10 Updated hompage and source URI.
11
12 Package-Manager: portage-2.3.0
13 Closes: https://github.com/gentoo/gentoo/pull/3282
14
15 net-nds/shelldap/Manifest | 1 +
16 net-nds/shelldap/metadata.xml | 4 ++++
17 net-nds/shelldap/shelldap-1.3.2.ebuild | 44 ++++++++++++++++++++++++++++++++++
18 3 files changed, 49 insertions(+)
19
20 diff --git a/net-nds/shelldap/Manifest b/net-nds/shelldap/Manifest
21 index dc9ac80..9d0f184 100644
22 --- a/net-nds/shelldap/Manifest
23 +++ b/net-nds/shelldap/Manifest
24 @@ -1 +1,2 @@
25 DIST shelldap-1.3.1.tar.bz2 17794 SHA256 a637a3a941338b5dd6cf184e5a3d640b880ebbea7a9c90edb252f893601aea0d SHA512 be512aebba883e507506901474403e07ab0e4f78075e26c566b6eded6c24b4231d491c5f6e84af57b38408040f6e802d2c6f59c309a2e21e0ab02a0fe08af001 WHIRLPOOL be72dc3db8de5968b3d4f9fa33d037661ae7ce9d628d01f5ea4aaab535657162e79ed8bb481d0d82deb32407910bbe980034a7e9b7de0b01b2d5ca8afebe72a8
26 +DIST shelldap-1.3.2.tar.gz 18624 SHA256 b4f84cfa164e69c7bdcbbd39416900190df8acf701539fbf0f2576514961c683 SHA512 618cfbbc4e7344571d5ba1a652757aef1526fedd882444ed5df8982414df0dc11cb967443dc0e2b1f1c182bbaa1f7bfebf41906bbc53e9106cdfe7676b558703 WHIRLPOOL 5cf5f07ed8f2a36d19ccb263dcb19c054fe1b64a585166c26856421821336d0edb3f432d3777175ed969486e45536b0ca5231a326400c6319c3162481dcb9ca0
27
28 diff --git a/net-nds/shelldap/metadata.xml b/net-nds/shelldap/metadata.xml
29 index cb35131..db3a6f9 100644
30 --- a/net-nds/shelldap/metadata.xml
31 +++ b/net-nds/shelldap/metadata.xml
32 @@ -20,4 +20,8 @@
33 content. It keeps command history, has sane autocompletes, credential caching,
34 site-wide and individual configs, and it's fun to say.
35 </longdescription>
36 + <upstream>
37 + <bugs-to>https://bitbucket.org/mahlon/shelldap/issues/</bugs-to>
38 + <remote-id type="bitbucket">mahlon/shelldap</remote-id>
39 + </upstream>
40 </pkgmetadata>
41
42 diff --git a/net-nds/shelldap/shelldap-1.3.2.ebuild b/net-nds/shelldap/shelldap-1.3.2.ebuild
43 new file mode 100644
44 index 00000000..2399200
45 --- /dev/null
46 +++ b/net-nds/shelldap/shelldap-1.3.2.ebuild
47 @@ -0,0 +1,44 @@
48 +# Copyright 1999-2016 Gentoo Foundation
49 +# Distributed under the terms of the GNU General Public License v2
50 +# $Id$
51 +
52 +EAPI=6
53 +
54 +GENTOO_DEPEND_ON_PERL=noslotop
55 +inherit eutils perl-module
56 +
57 +DESCRIPTION="A handy shell-like interface for browsing LDAP servers and editing their content"
58 +HOMEPAGE="https://bitbucket.org/mahlon/shelldap/"
59 +SRC_URI="https://bitbucket.org/mahlon/shelldap/downloads/${P}.tar.gz"
60 +
61 +LICENSE="BSD"
62 +SLOT="0"
63 +KEYWORDS="~amd64 ~x86"
64 +
65 +IUSE="+readline sasl +ssl"
66 +
67 +DEPEND=""
68 +RDEPEND="dev-perl/Algorithm-Diff
69 + sasl? ( dev-perl/Authen-SASL )
70 + dev-perl/IO-Socket-SSL
71 + dev-perl/perl-ldap
72 + dev-perl/TermReadKey
73 + readline? ( dev-perl/Term-ReadLine-Gnu )
74 + dev-perl/Term-Shell
75 + dev-perl/YAML-Syck
76 + virtual/perl-Data-Dumper
77 + virtual/perl-File-Temp
78 + virtual/perl-Getopt-Long
79 + virtual/perl-Digest-MD5"
80 +
81 +src_configure() { :; }
82 +
83 +src_compile() {
84 + pod2man --name "${PN}" < "${PN}" > "${PN}.1" || die 'creating manpage failed'
85 +}
86 +
87 +src_install() {
88 + doman "${PN}.1"
89 + dobin "${PN}"
90 + dodoc USAGE
91 +}