--- python-ldap-doc-2.3.orig/debian/compat +++ python-ldap-doc-2.3/debian/compat @@ -0,0 +1 @@ +5 --- python-ldap-doc-2.3.orig/debian/control +++ python-ldap-doc-2.3/debian/control @@ -0,0 +1,17 @@ +Source: python-ldap-doc +Section: contrib/doc +Priority: optional +Maintainer: Matej Vela +Build-Depends: cdbs, debhelper (>= 5) +Build-Depends-Indep: python, latex2html, python-old-doctools +Standards-Version: 3.8.0 + +Package: python-ldap-doc +Architecture: all +Depends: ${misc:Depends} +Homepage: http://python-ldap.sourceforge.net/ +Description: Documentation for the Python LDAP interface module + This module provides a Python interface to the OpenLDAP client library + (LDAP is the Lightweight Directory Access Protocol). + . + This package contains the HTML documentation for the module. --- python-ldap-doc-2.3.orig/debian/copyright +++ python-ldap-doc-2.3/debian/copyright @@ -0,0 +1,24 @@ +This is the Debian package for python-ldap documentation. Note that +it is not a part of the Debian GNU/Linux distribution because its +build procedure depends on non-free software (latex2html). + +It was put together by Matej Vela from sources found +in the upstream CVS repository: + + :pserver:anonymous@python-ldap.cvs.sourceforge.net:/cvsroot/python-ldap + +Upstream authors: David Leonard, Michael Stroeder, et al. + +Copyright (C) 2000-2001 David Leonard +Copyright (C) 2001-2007 Michael Stroeder + +The python-ldap package is distributed under Python-style license. + +Standard disclaimer: + This software is made available by the author(s) to the public for free + and "as is". All users of this free software are solely and entirely + responsible for their own choice and use of this software for their + own purposes. By using this software, each user agrees that the + author(s) shall not be liable for damages of any kind in relation to + its use or performance. The author(s) do not warrant that this software + is fit for any purpose. --- python-ldap-doc-2.3.orig/debian/changelog +++ python-ldap-doc-2.3/debian/changelog @@ -0,0 +1,56 @@ +python-ldap-doc (2.3-2.2) unstable; urgency=low + + * Non-maintainer upload. + * Don't hard-code Python versions (closes: #653883). + + -- Jakub Wilk Wed, 04 Jan 2012 14:39:34 +0100 + +python-ldap-doc (2.3-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS because of Python LaTeX-based documentation tools no longer + being shipped in python-dev (closes: #568048): + + Build-depend on python and python-old-doctools (rather than on + python-dev). + + Hardcode 2.5 as Python version in debian/patches/makefile.diff. + + -- Jakub Wilk Thu, 11 Feb 2010 22:19:26 +0100 + +python-ldap-doc (2.3-2) unstable; urgency=low + + * debian/rules: Fix quoting for dash; thanks to James Westby. + Closes: #511699. + * debian/control: Add Homepage field. + * debian/control: Use ${misc:Depends} to placate Lintian. + * debian/copyright: Add copyright notice. + * debian/copyright: Note that the package is not in main and why. + * debian/copyright: Update upstream CVS location. + * debian/doc-base: Change section from Apps/Programming to + Programming/Python. + * debian/install: Remove brace expansion. + * Conforms to Standards version 3.8.0. + + -- Matej Vela Sun, 01 Feb 2009 17:50:56 +0100 + +python-ldap-doc (2.3-1) unstable; urgency=low + + * New upstream release. + * Switch to simple-patchsys.mk. + + -- Matej Vela Wed, 11 Apr 2007 00:14:26 +0200 + +python-ldap-doc (2.2.0.dfsg-1) unstable; urgency=low + + * Add LICENCE to the upstream tarball. Closes: #407535. + * Handle PNGs generated by newer versions of latex2html. + * Move cdbs, debhelper from Build-Depends-Indep to Build-Depends. + * Conforms to Standards version 3.7.2. + + -- Matej Vela Tue, 20 Mar 2007 07:38:25 +0100 + +python-ldap-doc (2.2.0-1) unstable; urgency=low + + * Package split from python-ldap and moved to contrib due to its build + dependency on latex2html. + + -- Matej Vela Mon, 10 Apr 2006 08:53:33 +0200 --- python-ldap-doc-2.3.orig/debian/install +++ python-ldap-doc-2.3/debian/install @@ -0,0 +1 @@ +Doc/python-ldap/* usr/share/doc/python-ldap-doc/html --- python-ldap-doc-2.3.orig/debian/rules +++ python-ldap-doc-2.3/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +Doc/version.tex: debian/changelog + set -e; \ + v=`dpkg-parsechangelog | sed -n 's/^Version: //p'`; \ + v=$${v%-*}; \ + d=`dpkg-parsechangelog | sed -n 's/^Date: //p'`; \ + d=`LC_TIME=C date +"%B %e, %Y" -d "$$d"`; \ + printf "\\\\release{$$v}\\\\setshortversion{$$v}\\\\date{$$d}" > $@ + +build/python-ldap-doc:: Doc/version.tex + cd Doc && $(MAKE) python-ldap/index.html && rm -f python-ldap/*.idx + +clean:: + $(MAKE) -C Doc clean --- python-ldap-doc-2.3.orig/debian/doc-base +++ python-ldap-doc-2.3/debian/doc-base @@ -0,0 +1,13 @@ +Document: python-ldap-doc +Title: LDAP programming with Python +Author: David Leonard, Michael Stroeder +Abstract: This document describes the package python-ldap with its + various modules. + . + This manual assumes basic knowledge about the Python language and + the LDAP standard. +Section: Programming/Python + +Format: HTML +Index: /usr/share/doc/python-ldap-doc/html/index.html +Files: /usr/share/doc/python-ldap-doc/html/*.html --- python-ldap-doc-2.3.orig/debian/examples +++ python-ldap-doc-2.3/debian/examples @@ -0,0 +1 @@ +Demo/* --- python-ldap-doc-2.3.orig/debian/patches/makefile.diff +++ python-ldap-doc-2.3/debian/patches/makefile.diff @@ -0,0 +1,22 @@ +Adjust paths in the Makefile. + +--- python-ldap-doc-2.3~/Doc/Makefile ++++ python-ldap-doc-2.3/Doc/Makefile +@@ -1,14 +1,14 @@ + # $Id: Makefile,v 1.14 2007/03/22 23:25:16 stroeder Exp $ + +-PYTHONSRC= /home/michael/src/Python-2.5 +-DOCTOOLSDIR= $(PYTHONSRC)/Doc/tools ++PYTHONSRC= /usr/lib/$(shell pyversions -d) ++DOCTOOLSDIR= $(PYTHONSRC)/doc/tools + PAPER= a4 + DVIPS= dvips -N0 -t $(PAPER) + PYTHON= python + MKHOWTO= $(DOCTOOLSDIR)/mkhowto + MKDVI= $(MKHOWTO) --dvi + MKPDF= $(MKHOWTO) --pdf +-TEXINPUTS= $(PYTHONSRC)/Doc/texinputs:: ++TEXINPUTS= $(PYTHONSRC)/doc/texinputs:: + ENV= /usr/bin/env TEXINPUTS=$(TEXINPUTS) + + SRCS=python-ldap.tex ldap.tex version.tex ldif.tex ldapurl.tex \