aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control24
-rw-r--r--debian/copyright15
-rw-r--r--debian/gbp.conf6
-rw-r--r--debian/imapsync.docs3
-rw-r--r--debian/imapsync.install2
-rw-r--r--debian/imapsync.manpages1
-rw-r--r--debian/patches/0001-Ignore-custom-lib-PATH.patch24
-rw-r--r--debian/patches/series1
-rwxr-xr-xdebian/rules4
-rw-r--r--debian/source/format1
12 files changed, 87 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..77fb0c4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+imapsync (0.1-1) UNRELEASED; urgency=low
+
+ * Initial release.
+
+ -- Guilhem Moulin <guilhem@guilhem.org> Sat, 21 Mar 2015 15:04:45 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d55aec7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: imapsync
+Section: mail
+Priority: optional
+Maintainer: Guilhem Moulin <guilhem@guilhem.org>
+Build-Depends: debhelper (>= 9)
+Standards-Version: 3.9.6
+Vcs-Git: https://git.guilhem.org/imapsync
+Vcs-Browser: https://gitweb.guilhem.org/imapsync
+
+Package: imapsync
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ libconfig-tiny-perl, libdbi-perl, libdbd-sqlite3-perl
+Recommends: libio-socket-ssl-perl
+Description: IMAP-to-IMAP synchronization program for QRESYNC-capable servers
+ imapsync performs stateful synchronization between two IMAP4rev1 servers.
+ Such synchronization is made possible by the QRESYNC extension from [RFC7162];
+ for convenience reasons servers must also support LIST-EXTENDED [RFC5258],
+ LIST-STATUS [RFC5819] and UIDPLUS [RFC4315].
+ .
+ Furthermore, while imapsync can work with servers lacking support for LITERAL+
+ [RFC2088] and MULTIAPPEND [RFC3502], these extensions greatly improve
+ performance by reducing the number of required round trips hence are
+ recommended.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..51440e8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,15 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Source: native package
+
+Files: *
+Copyright: © 2015 Guilhem Moulin <guilhem@fripost.org>
+License: GPL-3+
+
+License: GPL-3+
+ 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 3 of the License, or (at your
+ option) any later version.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ version 3 can be found in file "/usr/share/common-licenses/GPL-3".
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..f1d77f6
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,6 @@
+[DEFAULT]
+upstream-branch = master
+debian-branch = debian
+upstream-tag = release/%(version)s
+debian-tag = debian/%(version)s
+pristine-tar = False
diff --git a/debian/imapsync.docs b/debian/imapsync.docs
new file mode 100644
index 0000000..90e8127
--- /dev/null
+++ b/debian/imapsync.docs
@@ -0,0 +1,3 @@
+README
+imapsync.sample
+imapsync.service
diff --git a/debian/imapsync.install b/debian/imapsync.install
new file mode 100644
index 0000000..95d027c
--- /dev/null
+++ b/debian/imapsync.install
@@ -0,0 +1,2 @@
+lib/Net/IMAP/Sync.pm /usr/share/perl5/Net/IMAP
+imapsync /usr/bin
diff --git a/debian/imapsync.manpages b/debian/imapsync.manpages
new file mode 100644
index 0000000..4da3860
--- /dev/null
+++ b/debian/imapsync.manpages
@@ -0,0 +1 @@
+imapsync.1
diff --git a/debian/patches/0001-Ignore-custom-lib-PATH.patch b/debian/patches/0001-Ignore-custom-lib-PATH.patch
new file mode 100644
index 0000000..4a6f43a
--- /dev/null
+++ b/debian/patches/0001-Ignore-custom-lib-PATH.patch
@@ -0,0 +1,24 @@
+From e37aaa0c5dbf06cafa4ca738f19bab8adc508bd9 Mon Sep 17 00:00:00 2001
+From: Guilhem Moulin <guilhem@fripost.org>
+Date: Fri, 31 Jul 2015 22:45:42 +0200
+Subject: [PATCH] Ignore custom lib PATH.
+
+---
+ imapsync | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/imapsync b/imapsync
+index a007089..bcb1162 100755
+--- a/imapsync
++++ b/imapsync
+@@ -28,7 +28,6 @@ use Getopt::Long qw/:config posix_default no_ignore_case gnu_compat
+ use DBI ();
+ use List::Util 'first';
+
+-use lib 'lib';
+ use Net::IMAP::Sync qw/read_config compact_set $IMAP_text $IMAP_cond/;
+
+ # Clean up PATH
+--
+2.5.0
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..ba71084
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Ignore-custom-lib-PATH.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2d33f6a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)