Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Apr 2007 15:45:09 GMT
From:      Ganael LAPLANCHE<ganael.laplanche@martymac.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/111957: [Maintainer update] net/ldapscripts v1.5 -> v1.6
Message-ID:  <200704201545.l3KFj9iK028975@www.freebsd.org>
Resent-Message-ID: <200704201600.l3KG0A3v028815@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         111957
>Category:       ports
>Synopsis:       [Maintainer update] net/ldapscripts v1.5 -> v1.6
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 20 16:00:10 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Ganael LAPLANCHE
>Release:        6.2-STABLE
>Organization:
http://contribs.martymac.com
>Environment:
FreeBSD home.martymac.com 6.2-STABLE FreeBSD 6.2-STABLE #0: Mon Mar 26 07:55:14 CEST 2007     root@home.martymac.com:/usr/src/sys/amd64/compile/MYKERNEL  amd64
>Description:
2007/04/20 : ldapscripts 1.6
  - Fixed typos
  - internal _ldapsearch() improved
  - New _ldapfinger command to display a user/machine/group POSIX account's details
  - ldapadduser : new option to set the defaults permissions when creating home directories (thanks to Guillaume Rousse)
  - It is now possible to use a full URI instead of a name for the SERVER directive (thanks to Guillaume Rousse)
  - It is now possible to use external LDIF templates when creating a user/machine/group (thanks to Guillaume Rousse)
    See TEMPLATES options in the ldapscripts.conf file and *.template.sample files in the etc/ directory
  - Now use 'sort -n' instead of 'sort -g' when extracting the last account from the directory (thanks to Rudi van Drunen)
  - Added a 'description' attribute for group accounts
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -aur ldapscripts.old/Makefile ldapscripts/Makefile
--- ldapscripts.old/Makefile	Wed Jan  3 18:51:54 2007
+++ ldapscripts/Makefile	Tue Apr  3 17:53:08 2007
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	ldapscripts
-PORTVERSION=	1.5
+PORTVERSION=	1.6
 CATEGORIES=	net
 MASTER_SITES=	http://contribs.martymac.com/ldapscripts/ \
 				${MASTER_SITE_LOCAL}
@@ -34,7 +34,7 @@
 MAN1=	ldapaddgroup.1 ldapaddmachine.1 ldapadduser.1 ldapaddusertogroup.1 \
 		ldapdeletegroup.1 ldapdeleteuser.1 ldapdeleteuserfromgroup.1 \
 		ldaprenameuser.1 ldapsetprimarygroup.1 _lsldap.1 _ldaprenamemachine.1 \
-		_ldaprenamegroup.1 _ldapinit.1 _ldapdeletemachine.1 _ldappasswd.1
+		_ldaprenamegroup.1 _ldapinit.1 _ldapdeletemachine.1 _ldappasswd.1 _ldapfinger.1
 MAN5=	ldapscripts.5
 
 # Change /etc to ${LOCALBASE}/etc
@@ -66,6 +66,7 @@
 	${CP} ${WRKSRC}/bin/_ldaprenamegroup ${PREFIX}/bin
 	${CP} ${WRKSRC}/bin/_ldaprenamemachine ${PREFIX}/bin
 	${CP} ${WRKSRC}/bin/_ldappasswd ${PREFIX}/bin
+	${CP} ${WRKSRC}/bin/_ldapfinger ${PREFIX}/bin
 
 	${MKDIR} ${LOCALBASE}/etc/ldapscripts
 	if [ -f ${LOCALBASE}/etc/ldapscripts/ldapscripts.conf ]; then \
@@ -73,6 +74,9 @@
 	fi
 	${CP} ${WRKSRC}/etc/ldapscripts.conf ${LOCALBASE}/etc/ldapscripts
 	${CP} ${WRKSRC}/etc/runtime ${LOCALBASE}/etc/ldapscripts
+	${CP} ${WRKSRC}/etc/ldapaddgroup.template.sample ${LOCALBASE}/etc/ldapscripts
+	${CP} ${WRKSRC}/etc/ldapadduser.template.sample ${LOCALBASE}/etc/ldapscripts
+	${CP} ${WRKSRC}/etc/ldapaddmachine.template.sample ${LOCALBASE}/etc/ldapscripts
 	${CP} ${WRKSRC}/README ${LOCALBASE}/etc/ldapscripts
 	${CP} ${WRKSRC}/CHANGELOG ${LOCALBASE}/etc/ldapscripts
 	${CP} ${WRKSRC}/COPYING ${LOCALBASE}/etc/ldapscripts
diff -aur ldapscripts.old/distinfo ldapscripts/distinfo
--- ldapscripts.old/distinfo	Wed Jan  3 18:51:54 2007
+++ ldapscripts/distinfo	Fri Apr 20 17:08:04 2007
@@ -1,3 +1,3 @@
-MD5 (ldapscripts-1.5.tgz) = b1afcc87fab632ea5ad75ca1971c9971
-SHA256 (ldapscripts-1.5.tgz) = 22ee9be675d3a3a529a92ae6ab16bd0727fa8cf06c9bdb90eac4394f57d2eddc
-SIZE (ldapscripts-1.5.tgz) = 20357
+MD5 (ldapscripts-1.6.tgz) = 4d20152eab6651fe87463b565c106785
+SHA256 (ldapscripts-1.6.tgz) = 6b38dbc96f760c8c8e1fa2979816b84a04b18f7d9a18cbcf8be98257b37286e3
+SIZE (ldapscripts-1.6.tgz) = 21513
diff -aur ldapscripts.old/pkg-plist ldapscripts/pkg-plist
--- ldapscripts.old/pkg-plist	Wed Jan  3 18:51:54 2007
+++ ldapscripts/pkg-plist	Tue Apr  3 17:54:00 2007
@@ -1,5 +1,8 @@
 etc/ldapscripts/ldapscripts.conf
 etc/ldapscripts/runtime
+etc/ldapscripts/ldapaddgroup.template.sample
+etc/ldapscripts/ldapadduser.template.sample
+etc/ldapscripts/ldapaddmachine.template.sample
 etc/ldapscripts/README
 etc/ldapscripts/CHANGELOG
 etc/ldapscripts/COPYING
@@ -21,3 +24,4 @@
 bin/_ldaprenamemachine
 bin/_ldaprenamegroup
 bin/_ldappasswd
+bin/_ldapfinger

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200704201545.l3KFj9iK028975>