--- python-clamav-0.3.3.orig/debian/pycompat +++ python-clamav-0.3.3/debian/pycompat @@ -0,0 +1 @@ +2 --- python-clamav-0.3.3.orig/debian/docs +++ python-clamav-0.3.3/debian/docs @@ -0,0 +1,3 @@ +gpl.txt +README.txt +README.txt --- python-clamav-0.3.3.orig/debian/changelog +++ python-clamav-0.3.3/debian/changelog @@ -0,0 +1,53 @@ +python-clamav (0.3.3-2build2) feisty; urgency=low + + * Rebuild for libclamav1 -> libclamav2 soname change. + + -- Michael Bienia Mon, 26 Feb 2007 17:47:47 +0100 + +python-clamav (0.3.3-2build1) edgy; urgency=low + + * Rebuild to add support for python2.5. + + -- Matthias Klose Fri, 8 Sep 2006 18:27:02 +0000 + +python-clamav (0.3.3-2) unstable; urgency=low + + * Install example.py. + + -- Cédric Delfosse Tue, 11 Jul 2006 18:31:30 +0000 + +python-clamav (0.3.3-1) unstable; urgency=low + + * New upstream release. + * Bump debhelper compat mode to 5. + * Use python-support instead of pycentral. + + -- Cédric Delfosse Sat, 8 Jul 2006 20:35:50 +0200 + +python-clamav (0.3.0-2) unstable; urgency=low + + * Update package to new Debian Python Policy (Closes: Bug#373520) + * Update Standards-Version to 3.7.2 + + -- Cédric Delfosse Wed, 14 Jun 2006 19:57:23 +0200 + +python-clamav (0.3.0-1) unstable; urgency=low + + * New upstream release + * Update Standards-Version to 3.6.2 + * Fix long description ("add" -> "adds") + + -- Cédric Delfosse Sat, 9 Jul 2005 14:45:40 +0200 + +python-clamav (0.2.2-2) unstable; urgency=low + + * Build against new libclamav1 0.85.1. + + -- Cédric Delfosse Thu, 26 May 2005 22:17:23 +0200 + +python-clamav (0.2.2-1) unstable; urgency=low + + * Initial Release. (Closes: Bug#278572) + + -- Cédric Delfosse Tue, 26 Apr 2005 22:02:32 +0200 + --- python-clamav-0.3.3.orig/debian/control +++ python-clamav-0.3.3/debian/control @@ -0,0 +1,14 @@ +Source: python-clamav +Section: python +Priority: optional +Maintainer: Cédric Delfosse +Build-Depends: debhelper (>= 5.0.37.2), libclamav-dev, python (>= 2.3.5-11), python-support (>= 0.3), python-all-dev +Standards-Version: 3.7.2 + +Package: python-clamav +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, clamav-freshclam | clamav-data +Provides: ${python:Provides} +Description: Python bindings to ClamAV + This package adds virus detection capabilities to Python software, thanks to + the ClamAV antivirus toolkit. --- python-clamav-0.3.3.orig/debian/copyright +++ python-clamav-0.3.3/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Cédric Delfosse on +Tue, 26 Apr 2005 22:02:32 +0200. + +It was downloaded from http://xael.org/norman/python/pyclamav/index.html + +Copyright Holder: Alexandre Norman + +License: + + This package 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 package 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 package; 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 General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- python-clamav-0.3.3.orig/debian/compat +++ python-clamav-0.3.3/debian/compat @@ -0,0 +1 @@ +5 --- python-clamav-0.3.3.orig/debian/rules +++ python-clamav-0.3.3/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# 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 + +PYVERS=$(shell pyversions -vs) + + +build: $(PYVERS:%=build-python%) + touch $@ +build-python%: + python$* setup.py build + touch $@ + +install: build $(PYVERS:%=install-python%) +install-python%: + dh_testdir + dh_testroot + dh_installdirs + python$* setup.py install --root $(CURDIR)/debian/python-clamav + +clean: $(PYVERS:%=clean-python%) +clean-python%: + dh_testdir + python$* setup.py clean + dh_testroot + rm -f build build-python$* + dh_clean + +# 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 CHANGELOG + dh_installdocs + dh_installexamples example.py + dh_link + dh_strip + dh_compress + dh_fixperms + dh_pysupport + 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