--- clamfs-1.0.1.orig/debian/watch +++ clamfs-1.0.1/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts=uversionmangle=s/\.(tar.*|tgz|zip|gz|bz2)$//i,dversionmangle=s/[-.+~]?(cvs|svn|git|snapshot|pre|hg)(.*)$//i,pasv \ +http://sf.net/clamfs/clamfs-?_?([\d+\.]+|\d+)\.(tar.*|tgz|zip|gz|bz2|) debian uupdate --- clamfs-1.0.1.orig/debian/changelog +++ clamfs-1.0.1/debian/changelog @@ -0,0 +1,56 @@ +clamfs (1.0.1-1build2) lucid; urgency=low + + * No-change rebuild for libpoco transition. + + -- Steve Kowalik Thu, 04 Feb 2010 08:06:39 +1100 + +clamfs (1.0.1-1build1) lucid; urgency=low + + * No changes upload. Rebuild for librlog5 transition + + -- Fabrice Coutadeur Tue, 12 Jan 2010 02:19:28 +0000 + +clamfs (1.0.1-1) unstable; urgency=low + + * New upstream version (Closes: #560472) + * debian/control: + - add dependency on libboost-dev + - bumped Standards-Version to 3.8.3 + * debian/copyright: + - replaced (C) with © + - replaced /usr/share/common-licenses/GPL with ../GPL-2 + + -- Krzysztof Burghardt Wed, 30 Dec 2009 13:50:50 +0100 + +clamfs (1.0.0-1) unstable; urgency=low + + * New upstream version + * debian/control: + - removed dependency on libpoco5-dev + - s/An user-space/user-space/ in Description: field + + -- Krzysztof Burghardt Sat, 21 Feb 2009 14:01:39 +0100 + +clamfs (0.9.1-3) unstable; urgency=low + + * debian/control: + - updated dependency to use libpoco5-dev + - updated standards version (no changes needed) + - moved hompage pseudo-header to real field + - bumped Standards-Version, no changes needed + * debian/rules: fixed using "-" or the option to ignore errors + * add debian/watch file + + -- Krzysztof Burghardt Wed, 25 Jun 2008 22:39:09 +0200 + +clamfs (0.9.1-2) unstable; urgency=low + + * Add sample configuration file + + -- Krzysztof Burghardt Sun, 29 Apr 2007 21:25:29 +0200 + +clamfs (0.9.1-1) unstable; urgency=low + + * Initial release (Closes: #415253) + + -- Krzysztof Burghardt Sat, 17 Mar 2007 16:31:08 +0100 --- clamfs-1.0.1.orig/debian/docs +++ clamfs-1.0.1/debian/docs @@ -0,0 +1,3 @@ +NEWS +README +TODO --- clamfs-1.0.1.orig/debian/copyright +++ clamfs-1.0.1/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Krzysztof Burghardt on +Sat, 17 Mar 2007 16:31:08 +0100. + +It was downloaded from http://clamfs.sourceforge.net/ + +Upstream Author: + + Krzysztof Burghardt + +Copyright: + + Copyright © 2007 Krzysztof Burghardt + +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-2'. + +The Debian packaging is © 2007, Krzysztof Burghardt and +is licensed under the GPL, see above. --- clamfs-1.0.1.orig/debian/compat +++ clamfs-1.0.1/debian/compat @@ -0,0 +1 @@ +5 --- clamfs-1.0.1.orig/debian/README.Debian +++ clamfs-1.0.1/debian/README.Debian @@ -0,0 +1,10 @@ +clamfs for Debian +----------------- + +Sample configuration file is named clamfs-sample.xml. +Copy it to /etc/clamfs.xml, /etc/clamfs/filesystem_name.xml +or to ~/.clamfs.xml for user private configuration +and do not forget to customize it. + + -- Krzysztof Burghardt Sun, 29 Apr 2007 21:11:05 +0200 + --- clamfs-1.0.1.orig/debian/rules +++ clamfs-1.0.1/debian/rules @@ -0,0 +1,68 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install DESTDIR=$(CURDIR)/debian/clamfs + +# 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_install + install -p -m 0644 doc/clamfs.xml debian/clamfs/usr/share/doc/clamfs/clamfs-sample.xml + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- clamfs-1.0.1.orig/debian/control +++ clamfs-1.0.1/debian/control @@ -0,0 +1,16 @@ +Source: clamfs +Section: utils +Priority: optional +Maintainer: Krzysztof Burghardt +Build-Depends: debhelper (>= 5), libfuse-dev, librlog-dev, libpoco-dev, libcommoncpp2-dev, libboost-dev +Homepage: http://clamfs.sourceforge.net/ +Standards-Version: 3.8.3 + +Package: clamfs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: clamav-daemon +Description: user-space anti-virus protected file system + ClamFS is a FUSE-based user-space file system for Linux with on-access + anti-virus file scanning through clamd daemon. Clamd (clamav-daemon) is + a file scanning service developed by ClamAV project.