# HG changeset patch # User Paul Boddie # Date 1410454729 -7200 # Node ID 703866c3b7ca1059ba9ed12305234f6ad6d24d25 Packaging for sievelib 0.5.2-2 from upstream. diff -r 000000000000 -r 703866c3b7ca debian/README.source --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/README.source Thu Sep 11 18:58:49 2014 +0200 @@ -0,0 +1,5 @@ +python-sievelib for Debian +-------------------------- + + diff -r 000000000000 -r 703866c3b7ca debian/changelog --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/changelog Thu Sep 11 18:58:49 2014 +0200 @@ -0,0 +1,13 @@ +sievelib (0.5.2-2) unstable; urgency=low + + * Fix Python 3 compatibility, + * Better verbosity in debug mode, + * Fix mixed use of tabs and spaces for indentation + + -- Jeroen van Meeuwen (Kolab Systems) Tue, 26 Aug 2014 14:12:01 +0100 + +sievelib (0.5.2-1) unstable; urgency=low + + * source package automatically created by stdeb 0.6.0+git + + -- Jeroen van Meeuwen (Kolab Systems) Thu, 06 Dec 2012 14:12:01 +0100 diff -r 000000000000 -r 703866c3b7ca debian/compat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/compat Thu Sep 11 18:58:49 2014 +0200 @@ -0,0 +1,1 @@ +7 diff -r 000000000000 -r 703866c3b7ca debian/control --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/control Thu Sep 11 18:58:49 2014 +0200 @@ -0,0 +1,31 @@ +Source: sievelib +Section: python +Priority: optional +Maintainer: Jeroen van Meeuwen (Kolab Systems) +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7) +Standards-Version: 3.9.3 + +Package: python-sievelib +Architecture: all +Depends: ${misc:Depends}, ${python:Depends} +Description: Client-side SIEVE library + sievelib + ======== + . + Client-side Sieve and Managesieve library written in Python. + . + * Sieve : An Email Filtering Language + (`RFC 5228 `_) + * ManageSieve : A Protocol for Remotely Managing Sieve Scripts + (`Draft `_) + . + Sieve tools + ----------- + . + What is supported + ^^^^^^^^^^^^^^^^^ + . + Currently, the provided parser supports most of the functionalities + described in the RFC. The only exception concerns section + *2.4.2.4. Encoding Characters Using "encoded-character"* which is not + supported. diff -r 000000000000 -r 703866c3b7ca debian/copyright --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/copyright Thu Sep 11 18:58:49 2014 +0200 @@ -0,0 +1,42 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: python-sievelib +Source: http://git.kolab.org/python-sievelib + +Files: * +Copyright: 2011-2012 Antoine Nguyen + 2012 Jeroen van Meeuwen (Kolab Systems) +License: MIT + Copyright (c) 2011-2012, Antoine Nguyen + . + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +# If you want to use GPL v2 or later for the /debian/* files use +# the following clauses, or change it to suit. Delete these two lines +Files: debian/* +Copyright: 2012 Jeroen van Meeuwen (Kolab Systems) +License: GPL-2+ + 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 program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". diff -r 000000000000 -r 703866c3b7ca debian/rules --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/rules Thu Sep 11 18:58:49 2014 +0200 @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +# This file was automatically generated by stdeb 0.6.0+git at +# Thu, 06 Dec 2012 14:12:01 +0100 + +%: + dh $@ --with python2 --buildsystem=python_distutils + +