debian/0000755000000000000000000000000011753232646007177 5ustar debian/menu0000644000000000000000000000023711741517160010062 0ustar ?package(directoryassistant):needs="X11" \ section="Applications/Network/Communication"\ title="directoryassistant" \ command="/usr/bin/directoryassistant" debian/README.Debian0000644000000000000000000000100211741504133011217 0ustar directoryassistant for Debian ----------------------------- Before run 'directoryassistant' for the first time, you'll need create a file called $HOME/.directoryassistant with the format: [main] ldapurl = ldap://your.ldap.server.com/ bind_dn = cn=someaccount,o=someorg bind_password = yourpassword base_dn = ou=department,ou=People,o=someorg ldap_version = 3 startup_search = if you leave 'startup_search' empty, it will show all ldap entries. -- Gustavo Franco , Thu Dec 22 23:59:44 2005 debian/patches/0000755000000000000000000000000011741516624010624 5ustar debian/patches/03-initialdialog.dpatch0000644000000000000000000000155311741516624015046 0ustar From: Unknown Subject: Fix the images location on 'directoryassistant' script. --- directoryassistant | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/directoryassistant +++ b/directoryassistant @@ -597,7 +597,7 @@ if (os.path.exists(filename)): message = 'Your configfile '+filename+' does not contain\nboth the required fields ldapurl and basedn.' else: - message = 'Your configfile '+filename+' did not yet exist, an empty config file is created, but you have to set the correct values.' + message = 'Your configfile '+filename+' did not yet exist,\n an empty config file is created, but you have to set the correct values.' fd = open(filename, 'w') fd.write("[main]\n#ldapurl = ldap://myserver/\n#bind_dn = cn=myaccount,o=myorg\n#bind_password = mysecret\n#base_dn = ou=Mydepartment,o=myorg\n#startup_search=myname") fd.close() debian/patches/01-images.dpatch0000644000000000000000000000156511741516616013504 0ustar From: Unknown Subject: Fix the images location on 'directoryassistant' script. --- directoryassistant | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/directoryassistant +++ b/directoryassistant @@ -455,7 +455,7 @@ self.window.set_title("Directory Assistant "+VERSIONSTRING) self.window.set_border_width(10) try: - pixbuf = gtk.gdk.pixbuf_new_from_file('/usr/local/share/directoryassistant/directoryassistant.png') + pixbuf = gtk.gdk.pixbuf_new_from_file('/usr/share/directoryassistant/directoryassistant.png') self.window.set_icon(pixbuf) except: pass @@ -469,7 +469,7 @@ vbox.pack_start(hbox, False, True) try: image = gtk.Image() - image.set_from_file('/usr/local/share/directoryassistant/decoration.png') + image.set_from_file('/usr/share/directoryassistant/decoration.png') hbox.pack_start(image) except: pass debian/patches/02-conffile.dpatch0000644000000000000000000000077111741516620014016 0ustar From: Unknown Subject: Show a nice message if dotfile wasn't found or is wrong. --- directoryassistant | 1 + 1 file changed, 1 insertion(+) --- a/directoryassistant +++ b/directoryassistant @@ -601,6 +601,7 @@ fd = open(filename, 'w') fd.write("[main]\n#ldapurl = ldap://myserver/\n#bind_dn = cn=myaccount,o=myorg\n#bind_password = mysecret\n#base_dn = ou=Mydepartment,o=myorg\n#startup_search=myname") fd.close() + os.chmod(filename,0600) em = ErrorMessage(message) return 0 debian/patches/series0000644000000000000000000000007411741516253012040 0ustar 01-images.dpatch 02-conffile.dpatch 03-initialdialog.dpatch debian/compat0000644000000000000000000000000211741516272010372 0ustar 9 debian/control0000644000000000000000000000136611741517251010603 0ustar Source: directoryassistant Section: net Priority: optional Maintainer: Gustavo Franco Build-Depends: python (>= 2.3), debhelper (>= 9) Standards-Version: 3.9.3 Homepage: http://olivier.sessink.nl/directoryassistant Package: directoryassistant Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-gtk2 (>= 1.99.17-6), python-ldap(>= 1.9.999.pre14-1) Description: small LDAP address book manager Directory Assistant is a small application for managing a LDAP address book. The focus is to create a very easy to use program, with only the few but necessary features. The target is novice users that still need to keep their addresses in an LDAP server. . It was written in Python language using GTK+ bindings. debian/dirs0000644000000000000000000000004511741504133010050 0ustar usr/bin usr/share/directoryassistant debian/changelog0000644000000000000000000000375111753232646011057 0ustar directoryassistant (2.0-1.1) unstable; urgency=low * Non-maintainer upload; ACKed by the maintainer. * Remove deprecated dpatch and upgrade to packaging format "3.0 quilt" (Closes: #668497). * Update to Standards-Version to 3.9.3, debhelper to 9. * Add build-arch and build-indep targets; use dh_prep in rules file. * Note: patches were updated with "quilt refresh" to make them apply cleanly. * Fix no-homepage-field (Lintian). * Fix menu-item-creates-new-section (Lintian). * Fix dh_python-is-obsolete by using dh_python2 (Lintian). * Fix clean-should-be-satisfied-by-build-depends (Lintian) by switching changing Build-Depends-Indep to Build-Depends. -- Jari Aalto Fri, 11 May 2012 18:52:06 +0300 directoryassistant (2.0-1) unstable; urgency=low * New upstream release. * debian/control: Standards-Version bumped to 3.6.2.1. * debian/patches/03-initialdialog.dpatch added. (Closes: #294337) -- Gustavo Franco Thu, 22 Dec 2005 23:01:50 -0200 directoryassistant (1.4-1) unstable; urgency=low * New upstream release. (Closes: #278776, #275479) - Thanks to tooar and Daniel van Eeden. * debian/watch added. * debian/directoryassistant.1 removed (using upstream manpage now). * short description changed to follow debian policy. -- Gustavo Franco Sun, 30 Jan 2005 15:16:29 -0200 directoryassistant (1.3-1) unstable; urgency=medium * New upstream release - Thanks to tooar for the suggestions. * Configuration file permission fixed. (Closes: #265696) -- Gustavo Franco Sat, 14 Aug 2004 18:07:35 -0300 directoryassistant (1.2-1) unstable; urgency=low * New upstream release - Graphical error message added. (Closes: #235431) -- Gustavo Franco Sun, 25 Apr 2004 17:39:59 -0300 directoryassistant (1.1-1) unstable; urgency=low * Initial Release. (Closes: #229373) -- Gustavo Franco Sun, 18 Jan 2004 01:16:45 -0200 debian/watch0000644000000000000000000000012611741504133010215 0ustar version=2 http://olivier.sessink.nl/directoryassistant/directoryassistant-(.*).tar.gz debian/rules0000755000000000000000000000242111741517453010255 0ustar #!/usr/bin/make -f # debian/rules # GNU copyright 2003 by Gustavo Franco. # Based on the original debian/rules sample # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 PACKAGE = directoryassistant build-arch: build build-indep: build build: build-stamp build-stamp: dh_testdir touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # Installing the package. cp -f directoryassistant $(CURDIR)/debian/directoryassistant/usr/bin/directoryassistant cp -f directoryassistant.png $(CURDIR)/debian/directoryassistant/usr/share/directoryassistant/directoryassistant.png cp -f decoration.png $(CURDIR)/debian/directoryassistant/usr/share/directoryassistant/decoration.png # Build architecture-independent files here. binary-indep: build install dh_testdir dh_testroot dh_installmenu dh_installman directoryassistant.1 dh_installchangelogs dh_installdocs dh_link dh_python2 dh_compress dh_fixperms dh_installdeb #dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb # Build architecture-dependent files here. binary-arch: build install binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/docs0000644000000000000000000000000711741504133010035 0ustar README debian/copyright0000644000000000000000000000330111741516271011123 0ustar This package was debianized by Gustavo Franco on Tue, 11 Nov 2003 01:16:45 -0200 It was downloaded from http://olivier.sessink.nl/directoryassistant/ Upstream Author: Olivier Sessink Copyright: Copyright (c) 2003, Olivier Sessink All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * The names of its contributors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/source/0000755000000000000000000000000011741516274010476 5ustar debian/source/format0000644000000000000000000000001411741516274011704 0ustar 3.0 (quilt)