Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-LDAPapi/files/, dev-perl/Net-LDAPapi/
Date: Sun, 15 Jul 2018 03:40:35
Message-Id: 1531626006.72169e833f20f73228d7428c7a6340c3bffcadba.kentnl@gentoo
1 commit: 72169e833f20f73228d7428c7a6340c3bffcadba
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 15 03:17:44 2018 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 15 03:40:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72169e83
7
8 dev-perl/Net-LDAPapi: Cleanup old version 3.0.4
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-perl/Net-LDAPapi/Manifest | 1 -
13 dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.4.ebuild | 45 ----------------------
14 .../files/3.0.4-ldap_result-no_error.patch | 14 -------
15 3 files changed, 60 deletions(-)
16
17 diff --git a/dev-perl/Net-LDAPapi/Manifest b/dev-perl/Net-LDAPapi/Manifest
18 index bb8fab1efeb..f5e60f194a2 100644
19 --- a/dev-perl/Net-LDAPapi/Manifest
20 +++ b/dev-perl/Net-LDAPapi/Manifest
21 @@ -1,2 +1 @@
22 -DIST Net-LDAPapi-3.0.4.tar.gz 66972 BLAKE2B 58fc7f4a949dfbd5a795234c9a16a157232238ce27f3157761c704965f3d7521f8ef5671af4b5bbd15050eda4464230697917817270cf77dacbeb49598a6a551 SHA512 9e2153c9f50a8fba1c8e52493c147a9db7e88015fa48739d4762a4cbc1711c24472b031a6c077d46d38285146ff389f07d9f2908016b0e2c07b76aa75ef2d2ca
23 DIST Net-LDAPapi-3.0.5.tar.gz 67814 BLAKE2B 2f35000e23ba17016837cd4a0cbe86be5d25254d8a34dd39c8c82cbc5a1979bb56b5b8a37af81cf1e8f12326709e252181e441d051ca0b18314408348d1435be SHA512 f3a6f4bb2e182ca93de2aa6c7a80bf20d64152fec5c4bda54efb91ec2a9be52939922993b79a2cdd248be3b83e605fc9ca3e6020f2cfb49b85256361edb512bd
24
25 diff --git a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.4.ebuild b/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.4.ebuild
26 deleted file mode 100644
27 index 683ec77215b..00000000000
28 --- a/dev-perl/Net-LDAPapi/Net-LDAPapi-3.0.4.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -DIST_AUTHOR=MISHIKAL
37 -
38 -inherit eutils multilib perl-module
39 -
40 -DESCRIPTION="Perl5 Module Supporting LDAP API"
41 -HOMEPAGE="https://sourceforge.net/projects/net-ldapapi/
42 - http://search.cpan.org/~mishikal/Net-LDAPapi/"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="examples"
46 -# LICENSE is given on the corresponding sourceforge project and matches the
47 -# default cpan/perl license
48 -
49 -RDEPEND="net-nds/openldap[sasl]
50 - dev-libs/cyrus-sasl
51 - dev-perl/Convert-ASN1"
52 -DEPEND="${RDEPEND}
53 - virtual/perl-ExtUtils-MakeMaker"
54 -
55 -# NOTE: tests are available but they hang
56 -# Tests also require hand-customised live LDAP server
57 -# and configured LDAP Search Base
58 -RESTRICT="test"
59 -
60 -PATCHES=("${FILESDIR}/${PV}-ldap_result-no_error.patch")
61 -
62 -src_configure() {
63 - myconf="-sdk OpenLDAP -lib_path /usr/$(get_libdir) -include_path /usr/include"
64 - perl-module_src_configure
65 -}
66 -
67 -src_install() {
68 - mydoc="Credits Todo"
69 - perl-module_src_install
70 - if use examples ; then
71 - docompress -x usr/share/doc/${PF}/examples
72 - insinto /usr/share/doc/${PF}
73 - doins -r examples
74 - fi
75 -}
76
77 diff --git a/dev-perl/Net-LDAPapi/files/3.0.4-ldap_result-no_error.patch b/dev-perl/Net-LDAPapi/files/3.0.4-ldap_result-no_error.patch
78 deleted file mode 100644
79 index d1003ee9ae7..00000000000
80 --- a/dev-perl/Net-LDAPapi/files/3.0.4-ldap_result-no_error.patch
81 +++ /dev/null
82 @@ -1,14 +0,0 @@
83 -diff --git a/LDAPapi.pm b/LDAPapi.pm
84 -index 113d922..cba3b61 100644
85 ---- a/LDAPapi.pm
86 -+++ b/LDAPapi.pm
87 -@@ -1355,8 +1355,8 @@ sub result
88 - $self->{"result"} = $result;
89 - $self->{"status"} = $status;
90 -
91 -- $self->errorize($status);
92 - if( $status == -1 || $status == 0 ) {
93 -+ $self->errorize($status);
94 - return undef;
95 - }
96 -