--- python-textile-2.0.10.orig/debian/rules +++ python-textile-2.0.10/debian/rules @@ -0,0 +1,98 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + python setup.py build + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + # -$(MAKE) clean + python setup.py clean -a + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/python-textile. + # $(MAKE) install DESTDIR=$(CURDIR)/debian/python-textile + python setup.py install --no-compile \ + --prefix=$(CURDIR)/debian/python-textile/usr + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs +# dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl + dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- python-textile-2.0.10.orig/debian/compat +++ python-textile-2.0.10/debian/compat @@ -0,0 +1 @@ +4 --- python-textile-2.0.10.orig/debian/copyright +++ python-textile-2.0.10/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Ricardo Javier Cardenes Medina on +Mon, 20 Dec 2004 17:10:29 +0000. + +It was downloaded from http://dealmeida.net + +Upstream Author: Roberto A. F. De Almeida + +Copyright: + + Copyright (c) 2004, Roberto A. F. De Almeida, http://dealmeida.net/ + Copyright (c) 2003, Mark Pilgrim, http://diveintomark.org/ + All rights reserved. + + PyTextile is under a BSD license. Under Debian systems, you can find + the text of the BSD license under /usr/share/common-licenses/BSD --- python-textile-2.0.10.orig/debian/README.Debian +++ python-textile-2.0.10/debian/README.Debian @@ -0,0 +1,8 @@ +This package is auto-sufficient, but you can install other packages +alongside to get some nifty effects. + +For example, the "htmlizer" from python-twisted allows PyTextile to +automatically colorize documents sporting Python syntax. + +It can use mxTidy or uTidyLib to validate the generated XHTML output, +but at the time of writing this, none of them are packaged. --- python-textile-2.0.10.orig/debian/changelog +++ python-textile-2.0.10/debian/changelog @@ -0,0 +1,24 @@ +python-textile (2.0.10-3ubuntu1) breezy; urgency=low + + * Update deps/build-deps to python 2.4 + + -- Barry deFreese Fri, 2 Sep 2005 15:06:51 +0000 + +python-textile (2.0.10-3) unstable; urgency=low + + * This package is Architecture: all, not "any" + + -- Ricardo Javier Cardenes Medina Mon, 4 Apr 2005 03:23:50 +0100 + +python-textile (2.0.10-2) unstable; urgency=low + + * Fixed Build-Depends to not FTBFS (closes: Bug#288848). + + -- Ricardo Javier Cardenes Medina Thu, 6 Jan 2005 17:15:35 +0000 + +python-textile (2.0.10-1) unstable; urgency=low + + * Initial Release (closes: Bug#286528). + + -- Ricardo Javier Cardenes Medina Mon, 20 Dec 2004 17:10:29 +0000 + --- python-textile-2.0.10.orig/debian/control +++ python-textile-2.0.10/debian/control @@ -0,0 +1,17 @@ +Source: python-textile +Section: python +Priority: optional +Maintainer: Ricardo Javier Cardenes Medina +Build-Depends: debhelper (>= 4.0.0), python-dev (>= 2.4) +Standards-Version: 3.6.0 + +Package: python-textile +Architecture: all +Depends: python (>= 2.4) +Recommends: python-twisted +Description: Python parser for the Textile markup + Textile is an XHTML generator that uses a simple markup, similar + to the one you can find on most wikis. + . + This is a Python module that implements a parser and generator + that supports the Textile markup syntax.