pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
wip/p5-LDAP: remove (mechanical cleanup)
Module Name: pkgsrc-wip
Committed By: Tobias Nygren <tnn%NetBSD.org@localhost>
Pushed By: tnn
Date: Wed Sep 23 17:50:35 2015 +0200
Changeset: c24c413918345c0b09e192e5447c1a60cbe82937
Removed Files:
p5-LDAP/COMMIT_MSG
p5-LDAP/DESCR
p5-LDAP/Makefile
p5-LDAP/TODO
p5-LDAP/distinfo
p5-LDAP/patches/patch-API.xs
p5-LDAP/patches/patch-typemap
Log Message:
wip/p5-LDAP: remove (mechanical cleanup)
- pkgsrc/devel/p5-LDAP exists
- pkgsrc (1.4.1nb1) >= wip (1.4.1)
- doc/CHANGES-2015: Updated to 1.4.1 [mef 2015-04-27]
- wip/p5-LDAP last touched [makoto 2015-04-12]
- package does not appear to be actively used to stage updates
- manual inspection of diff revealed no uncommitted improvements
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c24c413918345c0b09e192e5447c1a60cbe82937
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
p5-LDAP/COMMIT_MSG | 244 ------------------------------------------
p5-LDAP/DESCR | 3 -
p5-LDAP/Makefile | 24 -----
p5-LDAP/TODO | 3 -
p5-LDAP/distinfo | 8 --
p5-LDAP/patches/patch-API.xs | 51 ---------
p5-LDAP/patches/patch-typemap | 21 ----
7 files changed, 354 deletions(-)
diffs:
diff --git a/p5-LDAP/COMMIT_MSG b/p5-LDAP/COMMIT_MSG
deleted file mode 100644
index 03457b5..0000000
--- a/p5-LDAP/COMMIT_MSG
+++ /dev/null
@@ -1,244 +0,0 @@
-(pkgsrc)
- -- Drop patch-aa, commenting as:
- ------
- Until the source catches up to the current Perl API, we need PERL_POLLUTE
- to look like an older perl.
- ------
-(upstream)
- -- Update 1.2.2 (imported to pkgsrc in 1999) to 1.4.1
---------------------------------------------------
-2000-09-19 Leif Hedstrom <leif%perldap.org@localhost>
-
- * Conn.pm (update): Bug fix to allow us to delete() an attribute,
- call update(), and then add new values (or the same values...) to
- the entry again.
-
-2000-09-19 Leif Hedstrom <leif%perldap.org@localhost>
-
- * Entry.pm (DESTROY): Bug fix from daniel.hams%db.com@localhost (Daniel
- Hams) to avoid warnings from Apache and mod_perl.
-
-2000-09-13 Leif Hedstrom <leif%perldap.org@localhost>
-
- * Utils.pm (askPassword): Oops, stupid typo here, should be
- "unless $prompt" of course...
-
-2000-09-13 Leif Hedstrom <leif%perldap.org@localhost>
-
- * Entry.pm (isDeleted): Removed a test which made this function
- not working at all... :)
-
-2000-09-13 Leif Hedstrom <leif%perldap.org@localhost>
-
- * Removed an if defined() to avoid warnings with Perl v5.6.
-
-2000-06-24 Wolfram Schmidt <wschmidt%decefix.iao.fhg.de@localhost>
-
- * Entry.pm (FIRSTKEY): Fix bug for deleting all attributes and calling
- keys.
-
-2000-05-30 Kevin McCarthy <kevin%perldap.org@localhost>
-
- * Makefile.PL: Added fix so API.xs compiles under Perl 5.6
- (POLLUTE=>1)
-
-2000-05-30 Leif Hedstrom <leif%perldap.org@localhost>
-
- * Lots of small fixes...
-
-1999-09-07 Leif Hedstrom <leif%perldap.org@localhost>
-
- * API.xs (avref2charptrptr): Fixed potential core dump, if the
- argument passed wasn't a proper array.
- (avref2berptrptr): Ditto.
-
-1999-09-06 Leif Hedstrom <leif%perldap.org@localhost>
-
- * Conn.pm (search): Removed $res and $resv, set the internal data
- element directly.
- (searchURL): Ditto.
-
-1999-08-25 John Kristian <kristian%netscape.com@localhost>
-
- * Entry.pm (printLDIF): Bug fix.
-
- * LDIF.pm: Cleaned out memory leaks.
-
-1999-08-24 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Merged v1.3.x into trunk, tagged it as v1.4, and released it!
-
-1999-08-19 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Changed internal version numbering again, just called this plain
- v1.4.
-
- * Entry.pm (FIRSTKEY): Bug fix, we'd crap out if there are no
- attributes in the returned entry.
- (NEXTKEY): Ditto.
-
-1999-08-18 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Set version number to v1.4! Woohoo! Also tagged it as v1.3.4,
- last "development" release.
-
-1999-08-17 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Makefile.PL: Fixes for Windows/NT, cleaned out some code etc.
- (MY::postamble): Support for "make html".
-
- * MANIFEST: Updated with all new files etc.
-
- * test.pl: Renamed to oldtest.pl, to avoid "make test" to fail.
-
-1999-08-16 Kevin McCarthy <kmccarth%perldap.org@localhost> and Leif Hedstrom
-
- * API.xs: Cleaned most all the memory allocation changes, we are
- changing it to use the LDAP_OPT_MEMALLOC_FN_PTRS option in the
- C-SDK instead (much cleaner!).
- (perldap_init): New function, set up the memory management
- handlers. This is called when the API module is loaded.
- (perldap_malloc): New function, our memory management method(s).
- (perldap_calloc): Ditto.
- (perldap_realloc): Ditto.
- (perldap_free): Ditto.
-
-1999-08-16 Kevin McCarthy <kmccarth%perldap.org@localhost>
-
- * API.xs: Cleaned up prototypes, changed strdup() to use a
- Perl'ified version, change a number of free()'s to use Safefree.
- (ldap_value_free_perl): New function, similar to
- ldap_mods_free_perl(), to avoid memory problems (on NT and
- ActivePerl primarily).
- (StrDup): New function, to handle strdup() calls in a safe way.
- (ber_bvfree_perl): Ditto.
- (ber_bvecfree_perl): Ditto.
-
-1999-08-15 Leif Hedstrom <leif%netscape.com@localhost>
-
- * API.xs (ldap_mods_free_perl): Modified version of
- ldap_mods_free(), which uses Perl native free method instead of
- the things from the LDAP SDK. This fixes some nasty issues with
- Windows/NT and ActiveState Perl. Woohoo!!!
-
-1999-08-14 Leif Hedstrom <leif%netscape.com@localhost> and Kevin McCarthy
-
- * Entry.pm (setValues): Implemented bug fix for bug id 7131, where
- the "_save_" structures weren't set properly when using setValues().
-
-1999-08-14 Kevin McCarthy <kmccarth%perldap.org@localhost>
-
- * Conn.pm (update): Rewrote to optimize add/remove vs replace
- operations. Basically, we'll try to do whatever seems to be the
- smallest amount of work for the LDAP server now.
-
-1999-08-13 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Makefile.PL: Cleaned up code, and added support for linking in
- the missing libraries need for some missing symbols.
-
-1999-08-13 Michelle Wyner <mwyner%netscape.com@localhost>
-
- * Entry.pm: Updated documentation, and cleaned it up.
-
- * Conn.pm: Ditto.
-
-1999-08-12 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Entry.pm (move): Changed name, was rename(), is now move().
-
-1999-08-10 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Entry.pm (setValues): Renamed, used to be setValue(), which is
- now an alias to setValues().
- (getValues): New method, to get the array of values.
- (STORE): Fixed tests around DN handling, making sure it's not
- treated as an array. I also optimized a couple of tests, since we
- now filter out "DN" earlier in the funtion(s).
- (attrModified): Ditto.
- (attrClean): Ditto.
- (unRemove): Ditto.
- (removeValue): Ditto.
- (addValue): Ditto.
-
-1999-08-08 Leif Hedstrom <leif%netscape.com@localhost> and Kevin McCarthy
-
- * Entry.pm (setValue): Remove _delete_ flag, if set.
-
- * Conn.pm (close): Fixed memory leak, moved code from the DESTROY
- method over here.
- (DESTROY): Call the close() method.
- (getErrorCode): We now return LDAP_SUCCESS if there is no LDAP
- connection handle.
- (getErrorString): Ditto.
-
- * Entry.pm (STORE): Bug fix for large attribute sets.
- (attrModified): Ditto.
- (removeValue): Ditto.
- (addValue): Ditto.
- (EXISTS): Fix for bug 4368, cleaning up the code, and avoid the
- double calls.
-
-1999-08-06 Leif Hedstrom <leif%netscape.com@localhost> and Kevin McCarthy
-
- * API.xs: Added some more tests around free() statements. These
- are most likely never triggered, but better safe than sorrow (and
- the overhead of testing this is insignificant).
-
- * Conn.pm (browse): Added this function, to make it easy to browse
- an entry.
- (compare): Compare an attribute value against a DN/entry, without
- having to do the search.
-
- * Entry.pm (removeValue): Fixed loop bug.
- (addValue): Ditto.
- (hasValue): Ditto.
- (matchValue): Fixed loop bug, and also missing normalization in
- half of the case statement.
- (rename): Added this new method, to rename attributes.
- (copy): Added, to copy attributes.
-
- * Merged v1.2.3 with v1.3 branch.
-
-1999-08-06 Kevin McCarthy <kmccarth%perldap.org@localhost>
-
- * Entry.pm (addDNValue): Bug fix, index for norm was wrong.
-
- * Entry.pm (size): Optimzied for performance.
-
-1999-07-25 Kevin McCarthy <kmccarth%perldap.org@localhost>
-
- * API.xs: Fixed memory allocation problems in parsing and
- generating the LDAPMods structure.
-
-1999-06-22 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Conn.pm (add): Fixed bug 3342, thanks to Kevin McCarthy for
- debugging this, and providing a patch. This fixes the problem with
- adding new entries that has binary data.
-
-1999-03-23 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Changed versioning numbers for all .pm files.
-
-1999-03-22 Leif Hedstrom <leif%netscape.com@localhost>
-
- * Entry.pm: Removed all _self_obj_ stuff...
-
- * Conn.pm: Ditto.
-
- * Conn.pm: Cleanup in use statements, and "use strict".
- (search): Avoid warnings of uninitialized variables.
- (searchURL): Ditto.
- (modifyRDN): Bugfix, we did not update the appropriate DN in the
- self object (very minor...).
-
- * Entry.pm: Cleanup in use statements, and "use strict".
- (BEGIN): Added this initializer, to use the new LDIF module.
- (STORE): Fixed bug where we would not ignore the internal instance
- variables properly.
-
- * Utils.pm: Cleanup in all use statements, and "use strict". Also
- enforces the VERSION control feature.
-
- * Merged v1.2.1 to devel-branch-1_3, and tagged v1.3.1.
diff --git a/p5-LDAP/DESCR b/p5-LDAP/DESCR
deleted file mode 100644
index f92941e..0000000
--- a/p5-LDAP/DESCR
+++ /dev/null
@@ -1,3 +0,0 @@
-Perl5 Module from the Mozilla project to build LDAP clients from
-within perl. This Module is able to use LDAP version 3 connections,
-but not (yet?) SSL even if it outputs a "YES" when configuring it.
diff --git a/p5-LDAP/Makefile b/p5-LDAP/Makefile
deleted file mode 100644
index ed1c52c..0000000
--- a/p5-LDAP/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# $NetBSD: Makefile,v 1.3 2015/04/12 14:22:45 makoto Exp $
-#
-
-DISTNAME= perldap-1.4.1
-# convert 'ldap' part into uppercase
-PKGNAME= p5-${DISTNAME:S/per//tu}
-CATEGORIES= devel perl5 databases
-MASTER_SITES= ${MASTER_SITE_MOZILLA_ALL:=directory/perldap/ancient/}
-
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= http://www.mozilla.org/directory/perldap.html
-COMMENT= Perl5 module to build LDAP clients with perl
-LICENSE= mpl-1.0
-
-PERL5_PACKLIST= auto/Mozilla/LDAP/API/.packlist
-
-MAKE_ENV+= LDAPSDKDIR=${BUILDLINK_PREFIX.ldapsdk}
-MAKE_ENV+= LDAPSDKSSL="no"
-MAKE_ENV+= LDAPV3ON="yes"
-
-#include "../../x11/kdelibs3/buildlink3.mk"
-.include "../../devel/ldapsdk/buildlink3.mk"
-.include "../../lang/perl5/module.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/p5-LDAP/TODO b/p5-LDAP/TODO
deleted file mode 100644
index 2372f3f..0000000
--- a/p5-LDAP/TODO
+++ /dev/null
@@ -1,3 +0,0 @@
-- The versions (pkgsrc proper) and (wip here) both too ancient.
- Probably, some tests are necessary before committing to proper.
- Thank you.
diff --git a/p5-LDAP/distinfo b/p5-LDAP/distinfo
deleted file mode 100644
index 8ed91e5..0000000
--- a/p5-LDAP/distinfo
+++ /dev/null
@@ -1,8 +0,0 @@
-$NetBSD: distinfo,v 1.1 2015/02/08 14:46:25 makoto Exp $
-
-SHA1 (perldap-1.4.1.tar.gz) = f07feb41e0639c80cb186381566f3baf2ffcbc83
-RMD160 (perldap-1.4.1.tar.gz) = 6087ffafbc0099f7ef0f3d2a4540a37cbac933b5
-Size (perldap-1.4.1.tar.gz) = 93930 bytes
-SHA1 (patch-API.xs) = 3e5ecd7e2afeb82537be266c0920935d848b1512
-SHA1 (patch-aa) = f4f4aada03cc97490cb78a698585fca257ece666
-SHA1 (patch-typemap) = 9255e0d9c53d57ee90f27f5e544867ca51d92d8c
diff --git a/p5-LDAP/patches/patch-API.xs b/p5-LDAP/patches/patch-API.xs
deleted file mode 100644
index f1a27a0..0000000
--- a/p5-LDAP/patches/patch-API.xs
+++ /dev/null
@@ -1,51 +0,0 @@
-$NetBSD: patch-API.xs,v 1.1 2015/02/08 14:46:25 makoto Exp $
-
-Modification to be built with Perl 5.14 API.
-
---- API.xs.orig 2000-10-06 04:47:27.000000000 +0900
-+++ API.xs 2015-02-08 22:52:28.000000000 +0900
-@@ -195,7 +195,7 @@ avref2charptrptr(SV *avref)
- for (ix_av = 0;ix_av <= avref_arraylen;ix_av++)
- {
- current_val = av_fetch((AV *)SvRV(avref),ix_av,0);
-- tmp_cpp[ix_av] = StrDup(SvPV(*current_val,na));
-+ tmp_cpp[ix_av] = StrDup(SvPV(*current_val,PL_na));
- }
- tmp_cpp[ix_av] = NULL;
-
-@@ -226,7 +226,7 @@ avref2berptrptr(SV *avref)
- New(1,tmp_ber[ix_av],1,struct berval);
- current_val = av_fetch((AV *)SvRV(avref),ix_av,0);
-
-- tmp_char = SvPV(*current_val,na);
-+ tmp_char = SvPV(*current_val,PL_na);
- val_len = SvCUR(*current_val);
-
- Newz(1,tmp2,val_len+1,char);
-@@ -368,7 +368,7 @@ parse1mod(SV *ldap_value_ref,char *ldap_
- } else {
- if (cont)
- return NULL;
-- if (strcmp(SvPV(ldap_value_ref,na),"") == 0)
-+ if (strcmp(SvPV(ldap_value_ref,PL_na),"") == 0)
- {
- if (ldap_add_func != 1)
- {
-@@ -385,7 +385,7 @@ parse1mod(SV *ldap_value_ref,char *ldap_
- ldap_current_mod->mod_op = LDAP_MOD_REPLACE;
- }
- New(1,ldap_current_mod->mod_values,2,char *);
-- ldap_current_mod->mod_values[0] = StrDup(SvPV(ldap_value_ref,na));
-+ ldap_current_mod->mod_values[0] = StrDup(SvPV(ldap_value_ref,PL_na));
- ldap_current_mod->mod_values[1] = NULL;
- }
- }
-@@ -1718,7 +1718,7 @@ ldap_url_parse(url)
- hv_store(FullHash,options_key,strlen(options_key),options,0);
- ldap_free_urldesc(realcomp);
- } else {
-- RETVAL = &sv_undef;
-+ RETVAL = &PL_sv_undef;
- }
- }
- OUTPUT:
diff --git a/p5-LDAP/patches/patch-typemap b/p5-LDAP/patches/patch-typemap
deleted file mode 100644
index eebabb7..0000000
--- a/p5-LDAP/patches/patch-typemap
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-typemap,v 1.1 2015/02/08 14:46:25 makoto Exp $
-
-Modification to be built with Perl 5.14 API.
-
---- typemap.orig 2011-12-19 09:59:47.000000000 +0000
-+++ typemap
-@@ -54,11 +54,11 @@ struct timeval T_timeval
- #########
- INPUT
- T_timeval
-- $var.tv_sec = atof((char *)SvPV($arg,na));
-+ $var.tv_sec = atof((char *)SvPV($arg,PL_na));
- $var.tv_usec = 0
- T_berval
-- $var.bv_val = (char *)SvPV($arg,na);
-- $var.bv_len = na
-+ $var.bv_val = (char *)SvPV($arg,PL_na);
-+ $var.bv_len = PL_na
- T_charptrptr
- $var = (char **)avref2charptrptr($arg)
- T_bervalptrptr
Home |
Main Index |
Thread Index |
Old Index