debian/0000755000000000000000000000000012275204330007164 5ustar debian/copyright0000644000000000000000000000651712252373240011132 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: SchoolTool LDAP Upstream-Contact: SchoolTool Developers Source: https://launchpad.net/schooltool.ldap Files: * Copyright: 2005, 2007, 2012 Shuttleworth Foundation License: GPL-2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the complete text of the GNU General Public License can be found in the file `/usr/share/common-licenses/GPL-2`. Files: bootstrap.py Comment: Not installed and not used for build Copyright: (c) 2006 Zope Corporation and Contributors License: Zope-2.1 Zope Public License (ZPL) Version 2.1 . A copyright notice accompanies this license document that identifies the copyright holders. . This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions in source code must retain the accompanying copyright notice, this list of conditions, and the following disclaimer. . 2. Redistributions in binary form must reproduce the accompanying copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. Names of the copyright holders must not be used to endorse or promote products derived from this software without prior written permission from the copyright holders. . 4. The right to distribute this software or to use it for any purpose does not give you the right to use Servicemarks (sm) or Trademarks (tm) of the copyright holders. Use of them is covered by separate agreement with the copyright holders. . 5. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. . Disclaimer . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED 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 HOLDERS 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/docs0000644000000000000000000000001312252373240010033 0ustar README.txt debian/changelog0000644000000000000000000000203012275204302011030 0ustar schooltool.ldap (1.0.2-0ubuntu1) trusty; urgency=low * New upstream release. - Support non-ascii characters in data coming from LDAP (LP: #1277518) -- Gediminas Paulauskas Fri, 07 Feb 2014 18:24:05 +0200 schooltool.ldap (1.0.1-0ubuntu1) trusty; urgency=low * New upstream release. - Fix failure to start when example /etc/ldap.conf exists (LP: #1251181) -- Gediminas Paulauskas Thu, 12 Dec 2013 19:47:18 +0200 schooltool.ldap (1.0-2ubuntu1) raring; urgency=low * Upload to Ubuntu (LP: #1147352). * debian/control: suggests ldap-auth-config, we can use /etc/ldap.conf generated by it. -- Gediminas Paulauskas Tue, 05 Mar 2013 19:42:51 +0200 schooltool.ldap (1.0-2) precise; urgency=low * Do not include *.po translation files in the package. -- Gediminas Paulauskas Wed, 26 Sep 2012 17:08:59 +0300 schooltool.ldap (1.0-1) precise; urgency=low * First release. -- Gediminas Paulauskas Fri, 21 Sep 2012 20:12:21 +0200 debian/compat0000644000000000000000000000000212252373240010364 0ustar 7 debian/watch0000644000000000000000000000012512252373377010230 0ustar version=3 http://ftp.schooltool.org/schooltool/trunk/schooltool.ldap-(\d.*)\.tar\.gz debian/source/0000755000000000000000000000000012275204330010464 5ustar debian/source/format0000644000000000000000000000001412252373240011674 0ustar 3.0 (quilt) debian/postinst0000644000000000000000000000016212252373240010773 0ustar #! /bin/sh set -e if [ "$1" = "configure" ]; then dpkg-trigger --no-await update-schooltool fi #DEBHELPER# debian/rules0000755000000000000000000000041312252373240010244 0ustar #!/usr/bin/make -f %: dh $@ -Spython_distutils --with pydeb --with python2 locales=src/schooltool/ldap/locales override_dh_auto_build: rm -f $(locales)/*.po rm -f $(locales)/*.pot dh_auto_build override_dh_installchangelogs: dh_installchangelogs CHANGES.txt debian/control0000644000000000000000000000133312252373240010571 0ustar Source: schooltool.ldap Section: education Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Gediminas Paulauskas Build-Depends: debhelper (>= 7.0.50~), python-all (>= 2.6.6-3~), python-setuptools, python-van.pydeb Standards-Version: 3.9.4 X-Python-Version: >= 2.5 Homepage: https://launchpad.net/schooltool.ldap Package: python-schooltool.ldap Architecture: all Depends: ${pydeb:Depends}, ${python:Depends}, ${misc:Depends} Provides: ${pydeb:Provides} Suggests: ${pydeb:Suggests}, ldap-auth-config Description: SchoolTool LDAP authentication plugin Allows users to authenticate to SchoolTool using LDAP. debian/tests/0000755000000000000000000000000012275204330010326 5ustar debian/tests/all0000644000000000000000000000077112252373240011030 0ustar #!/bin/bash set -e PYVERS=$(pyversions -vr debian/control) TMPFILE=$(mktemp) cat > $TMPFILE << EOF from zope import testrunner from distutils import sysconfig test_path = sysconfig.get_python_lib() exitcode = testrunner.run([ '-k', '--tests-pattern', '^f?tests$', '-s', 'schooltool.ldap', '--test-path', test_path ]) sys.exit(exitcode) EOF for version in ${PYVERS}; do python${version} ${TMPFILE} done rm $TMPFILE debian/tests/control0000644000000000000000000000011012252373240011723 0ustar Tests: all Features: no-build-needed Depends: @, python-zope.testrunner