Gentoo Archives: gentoo-commits

From: Sergey Popov <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/shelldap/
Date: Tue, 18 Jul 2017 06:07:29
Message-Id: 1500358039.c739c498c15102982c8e3b83c836578783b04dc6.pinkbyte@gentoo
1 commit: c739c498c15102982c8e3b83c836578783b04dc6
2 Author: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 18 06:06:20 2017 +0000
4 Commit: Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 18 06:07:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c739c498
7
8 net-nds/shelldap: version bump, drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 net-nds/shelldap/Manifest | 2 +-
13 ...shelldap-1.3.1.ebuild => shelldap-1.4.0.ebuild} | 27 ++++++++++++----------
14 2 files changed, 16 insertions(+), 13 deletions(-)
15
16 diff --git a/net-nds/shelldap/Manifest b/net-nds/shelldap/Manifest
17 index 9d0f18454d9..b197fc8493f 100644
18 --- a/net-nds/shelldap/Manifest
19 +++ b/net-nds/shelldap/Manifest
20 @@ -1,2 +1,2 @@
21 -DIST shelldap-1.3.1.tar.bz2 17794 SHA256 a637a3a941338b5dd6cf184e5a3d640b880ebbea7a9c90edb252f893601aea0d SHA512 be512aebba883e507506901474403e07ab0e4f78075e26c566b6eded6c24b4231d491c5f6e84af57b38408040f6e802d2c6f59c309a2e21e0ab02a0fe08af001 WHIRLPOOL be72dc3db8de5968b3d4f9fa33d037661ae7ce9d628d01f5ea4aaab535657162e79ed8bb481d0d82deb32407910bbe980034a7e9b7de0b01b2d5ca8afebe72a8
22 DIST shelldap-1.3.2.tar.gz 18624 SHA256 b4f84cfa164e69c7bdcbbd39416900190df8acf701539fbf0f2576514961c683 SHA512 618cfbbc4e7344571d5ba1a652757aef1526fedd882444ed5df8982414df0dc11cb967443dc0e2b1f1c182bbaa1f7bfebf41906bbc53e9106cdfe7676b558703 WHIRLPOOL 5cf5f07ed8f2a36d19ccb263dcb19c054fe1b64a585166c26856421821336d0edb3f432d3777175ed969486e45536b0ca5231a326400c6319c3162481dcb9ca0
23 +DIST shelldap-1.4.0.tar.gz 22552 SHA256 91889c277e9c7dd470abf017ac73c02ab2a95aac355de4dd7c77f0c7fadef31d SHA512 55d987aa0fd14f55cbcd3d94345fd649bf5e42c0bf9e0b3ea385b4d42be0baa9d4419f17f113edec84c6f5da00bc918ffd2e55e094b842fcd389993d2e306b26 WHIRLPOOL dbbbc1bce82864dec101989f869303376511f7d5941073e780de676e1296a180d72c83874698d59ca2104bba404931204d506140a62a2d55ba6cabd881fb3d2f
24
25 diff --git a/net-nds/shelldap/shelldap-1.3.1.ebuild b/net-nds/shelldap/shelldap-1.4.0.ebuild
26 similarity index 55%
27 rename from net-nds/shelldap/shelldap-1.3.1.ebuild
28 rename to net-nds/shelldap/shelldap-1.4.0.ebuild
29 index 56b34b34be4..904d89c8feb 100644
30 --- a/net-nds/shelldap/shelldap-1.3.1.ebuild
31 +++ b/net-nds/shelldap/shelldap-1.4.0.ebuild
32 @@ -1,33 +1,35 @@
33 -# Copyright 1999-2015 Gentoo Foundation
34 +# Copyright 1999-2017 Gentoo Foundation
35 # Distributed under the terms of the GNU General Public License v2
36
37 -EAPI=5
38 +EAPI=6
39
40 -inherit eutils perl-app
41 +GENTOO_DEPEND_ON_PERL=noslotop
42 +inherit eutils perl-module
43
44 DESCRIPTION="A handy shell-like interface for browsing LDAP servers and editing their content"
45 -HOMEPAGE="http://projects.martini.nu/shelldap/"
46 -SRC_URI="http://code.martini.nu/shelldap/archive/v${PV}.tar.bz2 -> ${P}.tar.bz2"
47 +HOMEPAGE="https://bitbucket.org/mahlon/shelldap/"
48 +SRC_URI="https://bitbucket.org/mahlon/shelldap/downloads/${P}.tar.gz"
49
50 LICENSE="BSD"
51 SLOT="0"
52 KEYWORDS="~amd64 ~x86"
53
54 +IUSE="+readline sasl +ssl"
55 +
56 DEPEND=""
57 RDEPEND="dev-perl/Algorithm-Diff
58 + sasl? ( dev-perl/Authen-SASL )
59 + dev-perl/IO-Socket-SSL
60 dev-perl/perl-ldap
61 dev-perl/TermReadKey
62 - dev-perl/Term-ReadLine-Gnu
63 + readline? ( dev-perl/Term-ReadLine-Gnu )
64 dev-perl/Term-Shell
65 dev-perl/YAML-Syck
66 + virtual/perl-Data-Dumper
67 + virtual/perl-File-Temp
68 + virtual/perl-Getopt-Long
69 virtual/perl-Digest-MD5"
70
71 -S="${WORKDIR}/${PN}-v${PV}"
72 -
73 -src_prepare() {
74 - epatch_user
75 -}
76 -
77 src_configure() { :; }
78
79 src_compile() {
80 @@ -37,4 +39,5 @@ src_compile() {
81 src_install() {
82 doman "${PN}.1"
83 dobin "${PN}"
84 + dodoc USAGE
85 }