debian/0000755000000000000000000000000012210135367007166 5ustar debian/rules0000755000000000000000000000200411627202076010245 0ustar #!/usr/bin/make -f build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: dh_testdir pod2man maildirsync.pod maildirsync.1 touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp rm -f maildirsync.1 dh_clean install: build-stamp dh_testdir dh_testroot dh_clean dh_installdirs cp maildirsync.pl debian/maildirsync/usr/bin/maildirsync # Build architecture-independent files here. binary-indep: build-stamp install dh_testdir dh_testroot dh_installchangelogs Changes dh_installdocs dh_installexamples cd contrib && tar -cf - mailbalance-0.2.0 | gzip -9 > ../debian/maildirsync/usr/share/doc/maildirsync/examples/mailbalance-0.2.0.tar.gz dh_installman dh_link dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb # Build architecture-dependent files here. binary-arch: build-stamp install # We have nothing to do by default. binary: binary-indep binary-arch .PHONY: build-stamp clean binary-indep binary-arch binary install debian/control0000644000000000000000000000114211626760377010606 0ustar Source: maildirsync Section: mail Priority: optional Maintainer: Carlos Alberto Silombria Ibarra Build-Depends: debhelper (>= 7.0.0), perl, quilt Standards-Version: 3.9.2 Package: maildirsync Homepage: http://code.google.com/p/maildirsync/ Architecture: all Depends: perl (>= 5.006), ${misc:Depends} Recommends: ssh | rsh-client Suggests: bzip2 Description: simple and efficient Maildir synchronisation utility maildirsync is a utility for synchronising Maildir folders between computers. It uses its own custom protocol for efficient communication, and uses ssh as its transport. . debian/README.source0000644000000000000000000000004311625247265011354 0ustar /usr/share/doc/quilt/README.source debian/source/0000755000000000000000000000000011627155242010473 5ustar debian/source/format0000644000000000000000000000001411627155242011701 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000273712210135367011051 0ustar maildirsync (1.2-1.1) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS with perl 5.18: POD failure": add patch pod-5.18.patch from Damyan Ivanov. (Closes: #720428) -- gregor herrmann Fri, 30 Aug 2013 17:31:51 +0200 maildirsync (1.2-1) unstable; urgency=low * New Maintainer Update. (Closes: #529670). * Fixed: Failed to sync some mails. (Closes: #356207). * Fixed: UNIVERSAL->import is deprecated. (Closes: #626126). * Fixed: Homepage field in debian/control. (Closes: #615237). * Fixed: Check first if state/backup dir exists. (Closes: #379091). * Fixed: Use of uninitialized value. (Closes: #440364). * Bump Standard-Version 3.9.2. * Bump debian/compat to 7. * Change URL homepage. -- Carlos Alberto Silombria Ibarra Wed, 24 Aug 2011 10:31:03 -0430 maildirsync (1.1-2) unstable; urgency=low * New mantainer. (Closes: #430345) * Updated to DH_COMPAT 5. * Bump Standards-Version: 3.7.2. * Added debian/watch file. * Resolved bug accent in manfile. * Added Homepage to control file. -- Jose Carlos Medeiros Fri, 20 Jul 2007 11:03:06 -0300 maildirsync (1.1-1) unstable; urgency=low * New upstream release. * Uploading this version to Debian. Closes: #298227. -- Per Olofsson Fri, 11 Mar 2005 16:12:25 +0100 maildirsync (1.0-1) UNRELEASED; urgency=low * Initial revision. -- Per Olofsson Sat, 28 Aug 2004 15:08:33 +0200 debian/compat0000644000000000000000000000000211625247265010376 0ustar 7 debian/manpages0000644000000000000000000000001611625247265010713 0ustar maildirsync.1 debian/dirs0000644000000000000000000000001011625247265010053 0ustar usr/bin debian/patches/0000755000000000000000000000000012210135331010604 5ustar debian/patches/pod-5.18.patch0000644000000000000000000000126212210135331013001 0ustar Description: Fix POD failures with perl 5.18 * Adds explicit =encoding * avoids number-only =item's Author: Damyan Ivanov --- a/maildirsync.pod +++ b/maildirsync.pod @@ -1,3 +1,5 @@ +=encoding latin1 + =head1 NAME maildirsync - Online synchronizer for Maildir-format mailboxes @@ -190,27 +192,27 @@ verbosity level: =over 4 -=item 0 +=item C<0> No information at all. -=item 1 +=item C<1> Main operations. -=item 2 +=item C<2> Files sent, received, deleted, moved, md5 calculations. -=item 3 +=item C<3> Directories read and created. -=item 4 +=item C<4> Options + command echo. -=item 5 +=item C<5> Misc info about file transfer. debian/patches/series0000644000000000000000000000004312210135331012016 0ustar maildirsync.pl.diff pod-5.18.patch debian/patches/maildirsync.pl.diff0000644000000000000000000000142111627205100014367 0ustar Index: maildirsync-1.2/maildirsync.pl =================================================================== --- maildirsync-1.2.orig/maildirsync.pl 2011-08-30 11:34:05.484546482 -0430 +++ maildirsync-1.2/maildirsync.pl 2011-08-30 11:35:09.052535202 -0430 @@ -10,7 +10,6 @@ use IO::Handle; use IPC::Open2; use Fcntl qw(SEEK_SET); -use UNIVERSAL qw(isa); use strict; use warnings; require 5.006; @@ -96,8 +95,8 @@ exit_with_error("Invalid parameter value: $optname: $value") if $value !~ /^$regex$/; } verbose 4 => "add option $optname = ".($value || ""); - if (!isa($OPT{$optname}, 'ARRAY')) { - $OPT{$optname} = $value; + if (!(ref($OPT{$optname}) eq 'ARRAY')) { + $OPT{$optname} = $value; } else { push @{$OPT{$optname}}, $value; } debian/copyright0000644000000000000000000000352111627521604011126 0ustar Format: http://dep.debian.net/deps/dep5/ Upstream-Name: MaildirSync Upstream-Contact: dLux (Szabó, Balázs) Source: http://code.google.com/p/maildirsync/ Files: * Copyright: 2000, dLux (Szabó, Balázs) 2002, dLux (Szabó, Balázs) License: Perl and GPL-2 This program is free software; you can redistribute it and/or modify it under the terms of either: . a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" which comes with Perl. . On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2' and the Artistic Licence in `/usr/share/common-licenses/Artistic'. Files: debian/* Copyright: 2011, Carlos Alberto Silombria Ibarra License: GPL-2+ Files: debian/patches/maildirsync.pl.diff Copyright: 2011, Sebastian Schmidt License: GPL-2+ This program 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 program 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 full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. debian/watch0000644000000000000000000000042311627452165010227 0ustar version=3 opts=downloadurlmangle=s#.*(maildirsync-([\d.]+)\.tar\.gz).*#http://maildirsync.googlecode.com/files/$1#,filenamemangle=s#.*(maildirsync-([\d.]+)\.tar\.gz).*#$1# \ http://code.google.com/p/maildirsync/downloads/list ^.*detail\?name=maildirsync-([\d.]+)\.tar\.gz.* debian/examples0000644000000000000000000000001211625247265010732 0ustar sample.sh