debian/0000775000000000000000000000000012266143322007171 5ustar debian/rules0000775000000000000000000000326512266143263010263 0ustar #!/usr/bin/make -f DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) configure_flags += --prefix=/usr --build=$(DEB_BUILD_GNU_TYPE) ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) configure_flags += --host=$(DEB_HOST_GNU_TYPE) endif CFLAGS += -I../../include/ -Wall -g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2) PYVERS := $(shell pyversions -vr debian/control 2>/dev/null) build-%/configure-stamp: configure dh_testdir dh_autoreconf mkdir -p build-$* cd build-$* && \ PYTHON=`which python$*` CFLAGS="$(CFLAGS)" \ $(CURDIR)/configure $(configure_flags) touch $@ build-%/build-stamp: build-%/configure-stamp dh_testdir $(MAKE) -C build-$* touch $@ build: $(PYVERS:%=build-%/build-stamp) install-clean: dh_testdir dh_testroot dh_clean -k install-%: build-%/build-stamp dh_testdir dh_testroot $(MAKE) -C build-$* install DESTDIR=$(CURDIR)/debian/tmp dh_install install: $(PYVERS:%=install-%) rm $(CURDIR)/debian/python-rtfcomp/usr/lib/python*/*-packages/*.la \ $(CURDIR)/debian/python-rtfcomp/usr/lib/python*/*-packages/*.a clean:: dh_testdir rm -Rf build-* dh_autoreconf_clean dh_clean binary-indep: build install binary-arch: build install dh_testdir dh_testroot dh_installdocs -a dh_installexamples -a dh_installinfo -a dh_installchangelogs CHANGELOG -a dh_python2 -ppython-rtfcomp dh_strip --dbg-package=librtfcomp-dbg -a dh_link -a dh_compress -a dh_fixperms -a dh_makeshlibs -a dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/watch0000664000000000000000000000006711372533416010231 0ustar version=3 http://sf.net/synce/librtfcomp-(.*)\.tar\.gz debian/changelog0000664000000000000000000000504512266143315011051 0ustar librtfcomp (1.1-5.1ubuntu1) trusty; urgency=medium * Use dh-autoreconf to get new libtool macros for ppc64el and update config.{sub,guess} for new arches. -- Logan Rosen Fri, 17 Jan 2014 00:59:23 -0500 librtfcomp (1.1-5.1) unstable; urgency=low * Non-maintainer upload. * Convert to dh_python2 (Closes: #616873). * Move dh_python2 call before dh_strip (Closes: #557825). -- Luca Falavigna Fri, 31 May 2013 09:07:34 +0200 librtfcomp (1.1-5) unstable; urgency=low * debian/control: + Changed librtfcomp-dbg's Section to debug. + Upped Standards-Version. (no changes) * Changed source format to 3.0 (quilt). -- Jonny Lamb Wed, 12 May 2010 15:11:21 +0100 librtfcomp (1.1-4) unstable; urgency=low * debian/python-rtfcomp.install: Install *-packages files instead of just site-packages. Thanks to Alessio Treglia for the patch. (Closes: #520602) * debian/rules: Remove .la and .a files from *-packages instead of just site-packages. Thanks again to Alessio Treglia * debian/README.source: Added. * debian/control: Bumped Standards-Version to 3.8.1. -- Jonny Lamb Sat, 21 Mar 2009 09:26:19 +0000 librtfcomp (1.1-3) unstable; urgency=low * debian/gbp.conf: Added git-buildpackage config file. * debian/control: + Use my debian.org email address. + Remove duplicate Section field. + Add ${misc:Depends} to librtfcomp{0,-dev,-dbg}. * debian/copyright: + Use my debian.org email address. + Updated debian/* copyright. -- Jonny Lamb Tue, 24 Feb 2009 00:07:35 +0000 librtfcomp (1.1-2) unstable; urgency=low * Initial release into Debian. (Closes: #421700) * debian/control: + Added Homepage field. + Added Vcs-{Git,Browser} fields. + Removed cdbs Build-Dep. + Renamed librtfcomp0-dev to librtfcomp-dev. + s/python/Python/g to please lintian. + Fixed Build-Deps to include python-central. + Alphabetized Build-Deps. * Bumped Standards-Version to 3.7.3. * debian/copyright: + Cleaned up. + Fixed to display correct license! + Updated FSF address. * Added debug package, librtfcomp-dbg. * debian/rules: Moved from CDBS to debhelper. This also fixes the python policy problems that were present. -- Jonny Lamb Thu, 08 May 2008 12:48:03 +0100 librtfcomp (1.1-1) unstable; urgency=low * Initial release. -- Jonny Lamb Sun, 8 Apr 2007 00:39:04 +0100 debian/librtfcomp-dev.install0000664000000000000000000000014611372533416013503 0ustar debian/tmp/usr/include/* debian/tmp/usr/lib/lib*.a debian/tmp/usr/lib/lib*.so debian/tmp/usr/lib/*.la debian/compat0000664000000000000000000000000211372533416010373 0ustar 5 debian/README.source0000664000000000000000000000344511372533416011362 0ustar Patches ======= This package occasionally uses quilt to store modifications to the upstream source, although in most uploads no patches are needed. To get the fully patched source: make -f debian/rules patch To revert to what's in git: make -f debian/rules unpatch To add a patch: obtain a diff and put it in debian/patches, or see below To remove an existing patch: delete it from debian/patches Packaging using git =================== The repository contains an appropriate debian/gbp.conf to build this package using git-buildpackage. The debian branch contains the latest upstream versions (for unstable, or experimental while a freeze is in progress). The debian- branch contains versions targeted for a specific release (lenny, squeeze, etc.) Here's how to build it: git clone git://git.jonnylamb.com/git/packaging/librtfcomp.git cd librtfcomp git checkout debian git-buildpackage -us -uc or for testing/stable branches like debian-lenny: git clone git://git.jonnylamb.com/git/packaging/librtfcomp.git cd librtfcomp git checkout debian-lenny git-buildpackage -us -uc --git-debian-branch=debian-lenny The branch 'upstream' is a copy of the contents of upstream tarballs. To import upstream tarballs use: git checkout debian git-import-orig ~/librtfcomp-0.7.x.tar.gz The branch 'debian-patches' is 'upstream' plus any patches needed for Debian. It should be rebased on 'upstream' after each upstream release: git checkout debian-patches git rebase upstream The preferred way of adding patches is to make a commit to the debian-patches branch: git checkout debian-patches git commit git checkout debian fakeroot debian/rules update-patches -- Jonny Lamb , Sat, 7 Mar 2009 17:55:11 +0000 debian/copyright0000664000000000000000000000247511372533416011140 0ustar This package was debianized by Jonny Lamb on Sun, 8 Apr 2007 00:39:04 +0100. It was downloaded from http://www.synce.org/ Upstream Author: Dr. J. A. Gow Copyright: Copyright (c) 2007 Dr. J. A. Gow License: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian systems, the complete text of the GNU Lesser General Public License can be found in the file `/usr/share/common-licenses/LGPL-2'. The Debian packaging is copyright 2007-2009, Jonny Lamb and is licensed under the GPL-2, see `/usr/share/common-licenses/GPL-2'. debian/source/0000775000000000000000000000000011372533416010475 5ustar debian/source/format0000664000000000000000000000001311372533416011702 0ustar 3.0 (quilt)debian/librtfcomp0.install0000664000000000000000000000003511372533416013004 0ustar debian/tmp/usr/lib/lib*.so.* debian/control0000664000000000000000000000366612266143317010613 0ustar Source: librtfcomp Section: libs Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Jonny Lamb Build-Depends: debhelper (>= 5), python-all-dev (>= 2.6.6-3~), python (>= 2.6.6-3~), python-pyrex, dh-autoreconf Standards-Version: 3.8.4 Homepage: http://www.synce.org/ Vcs-Git: git://git.jonnylamb.com/git/packaging/librtfcomp.git Vcs-Browser: http://git.jonnylamb.com/?p=packaging/librtfcomp.git;a=summary Package: librtfcomp-dev Section: libdevel Architecture: any Depends: ${misc:Depends}, librtfcomp0 (= ${binary:Version}) Description: Library to read compressed RTF files (development files) Can decompress and recompress compressed RTF and convert from UTF8 to RTF for use in things like the AirSync protocols. . This package contains the development files for the library. Package: librtfcomp-dbg Section: debug Priority: extra Architecture: any Depends: ${misc:Depends}, librtfcomp0 (= ${binary:Version}) Description: Library to read compressed RTF files (debugging symbols) Can decompress and recompress compressed RTF and convert from UTF8 to RTF for use in things like the AirSync protocols. . This package contains the debugging symbols for the library. Package: librtfcomp0 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Library to read compressed RTF files Can decompress and recompress compressed RTF and convert from UTF8 to RTF for use in things like the AirSync protocols. . This package contains the shared object library files. Package: python-rtfcomp Section: python Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} Provides: ${python:Provides} Description: Library to read compressed RTF files (Python bindings) Can decompress and recompress compressed RTF and convert from UTF8 to RTF for use in things like the AirSync protocols. . This package contains the Python bindings for the library. debian/python-rtfcomp.install0000664000000000000000000000004611372533416013556 0ustar debian/tmp/usr/lib/python*/*-packages debian/gbp.conf0000664000000000000000000000023211372533416010611 0ustar [DEFAULT] debian-branch = debian upstream-branch = upstream pristine-tar = True [git-buildpackage] tarball-dir = ../tarballs/ export-dir = ../build-area/