--- libnet-ldapapi-perl-3.0.3.orig/LDAPapi.pm +++ libnet-ldapapi-perl-3.0.3/LDAPapi.pm @@ -2290,6 +2290,8 @@ =head1 SUPPORTED METHODS +=over 4 + =item abandon MSGID SCTRLS CCTRLS This cancels an asynchronous LDAP operation that has not completed. It @@ -2905,6 +2907,8 @@ $status = $ld->url_search_s($my_ldap_url,0,2); +=back + =head1 AUTHOR Clayton Donley, donley@wwa.com --- libnet-ldapapi-perl-3.0.3.orig/debian/changelog +++ libnet-ldapapi-perl-3.0.3/debian/changelog @@ -0,0 +1,68 @@ +libnet-ldapapi-perl (3.0.3-7build2) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Wed, 16 Nov 2011 09:23:40 +0000 + +libnet-ldapapi-perl (3.0.3-7build1) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Thu, 12 May 2011 06:43:10 +0100 + +libnet-ldapapi-perl (3.0.3-7) unstable; urgency=low + + * Initial upload to Debian. (Closes: #500174) + * Patch upstream POD documentation to fix syntax errors. + * Add a watch file. + * Add Homepage control field. + * Switch to the new proposed copyright format and update dates. + * Add ${misc:Depends} to dependencies. + * Update to debhelper compatibility level V7. + - Use debhelper rule minimization with overrides. + * Update standards version to 3.8.1 (no changes required). + * Add myself as an uploader. + + -- Russ Allbery Tue, 17 Mar 2009 17:27:48 -0700 + +libnet-ldapapi-perl (3.0.3-6) unstable; urgency=low + + * Turn on gcc optimization. + * Some package cleanup. Remove explicit version dependancies. Remove + meaningless comments. + + -- Bill MacAllister Sat, 15 Nov 2008 22:47:01 -0800 + +libnet-ldapapi-perl (3.0.3-5) unstable; urgency=low + + * Change the dependencies to be less stringent. + + -- Bill MacAllister Sun, 19 Oct 2008 23:08:38 -0700 + +libnet-ldapapi-perl (3.0.3-4) unstable; urgency=low + + * Removed unnecessary rmdir. + * Updated standards version to 3.8.0. + * Adding examples to package. + + -- Bill MacAllister Thu, 25 Sep 2008 10:47:25 -0700 + +libnet-ldapapi-perl (3.0.3-3) unstable; urgency=low + + * Correct an error in the build process. + + -- Bill MacAllister Thu, 4 Sep 2008 14:22:41 -0700 + +libnet-ldapapi-perl (3.0.3-2) unstable; urgency=low + + * Fix up the package to make sure the module is installed in the + correct directory. + + -- Bill MacAllister Thu, 4 Sep 2008 00:20:02 -0700 + +libnet-ldapapi-perl (3.0.3-1) unstable; urgency=low + + * Initial release + + -- Bill MacAllister Wed, 3 Sep 2008 22:51:50 -0700 + --- libnet-ldapapi-perl-3.0.3.orig/debian/rules +++ libnet-ldapapi-perl-3.0.3/debian/rules @@ -0,0 +1,33 @@ +#!/usr/bin/make -f +%: + dh $@ + +override_dh_auto_configure: + dh_auto_configure -- --sasl=/usr/include/sasl + +# Suppress the test suite since it requires interactivity. +override_dh_auto_test: + +override_dh_compress: + dh_compress -X examples + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs Todo README + dh_installexamples + dh_installchangelogs Changes + dh_link + dh_strip + dh_compress -X examples + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libnet-ldapapi-perl-3.0.3.orig/debian/watch +++ libnet-ldapapi-perl-3.0.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/net-ldapapi/Net-LDAPapi-([\d.]+)\.tar\.gz --- libnet-ldapapi-perl-3.0.3.orig/debian/compat +++ libnet-ldapapi-perl-3.0.3/debian/compat @@ -0,0 +1 @@ +7 --- libnet-ldapapi-perl-3.0.3.orig/debian/control +++ libnet-ldapapi-perl-3.0.3/debian/control @@ -0,0 +1,17 @@ +Source: libnet-ldapapi-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7.0.50), perl, libldap2-dev, libsasl2-dev +Maintainer: Bill MacAllister +Uploaders: Russ Allbery +Standards-Version: 3.8.1 +Homepage: http://sf.net/projects/net-ldapapi/ + +Package: libnet-ldapapi-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends} +Description: Perl bindings for OpenLDAP C API + Net::LDAPapi provides a Perl interface to the OpenLDAP C libraries. + Both the original "C API" and new "Perl OO" style interface methods + are supported. This module differs from Net::LDAP in that it + uses C bindings to achieve significant performance improvements. --- libnet-ldapapi-perl-3.0.3.orig/debian/copyright +++ libnet-ldapapi-perl-3.0.3/debian/copyright @@ -0,0 +1,20 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=443 +Upstream-Name: Net-LDAPapi +Upstream-Maintainer: Quanah Gibson-Mount +Upstream-Source: http://sf.net/projects/net-ldapapi/ + +Files: * +Copyright: 2007 Quanah Gibson-Mount. All rights reserved + 2007, 2008, 2009 Board of Trustees, Leland Stanford Jr. University + 2003 Howard Chu. All rights reserved. + 1998 Clayton Donley. All rights reserved. +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + . + Perl is distributed under either the Artistic License or the GPL (version + 1 or later). The full text of the current version of the GPL is + available in Debian systems in /usr/share/common-licenses/GPL. The full + text of the Artistic License is available on Debian systems in + /usr/share/common-licenses/Artistic. --- libnet-ldapapi-perl-3.0.3.orig/debian/docs +++ libnet-ldapapi-perl-3.0.3/debian/docs @@ -0,0 +1,3 @@ +Credits +README +Todo --- libnet-ldapapi-perl-3.0.3.orig/debian/examples +++ libnet-ldapapi-perl-3.0.3/debian/examples @@ -0,0 +1 @@ +examples/*