diff options
-rw-r--r-- | Changelog | 8 | ||||
-rw-r--r-- | debian/changelog | 9 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | debian/upstream/metadata | 3 | ||||
-rw-r--r-- | doc/build.md | 2 | ||||
-rw-r--r-- | doc/template.html | 2 | ||||
-rwxr-xr-x | interimap | 4 | ||||
-rw-r--r-- | lib/Net/IMAP/InterIMAP.pm | 4 | ||||
-rwxr-xr-x | pullimap | 4 |
9 files changed, 29 insertions, 9 deletions
@@ -1,3 +1,11 @@ +interimap (0.5.6) upstream; + + - Bump required Net::SSLeay version to 1.86_06 as it's when get_version() + was introduced. + - doc/template.html: remove type attribute from <style/> element. + + -- Guilhem Moulin <guilhem@fripost.org> Fri, 01 Jan 2021 16:05:53 +0100 + interimap (0.5.5) upstream; * libinterimap: remove default SSL_protocols value "!SSLv2 !SSLv3 diff --git a/debian/changelog b/debian/changelog index 562d4dc..36432b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +interimap (0.5.6-1) unstable; urgency=high + + * New upstream bugfix release with the correct minimum Net::SSLeay version. + * Bump required libnet-ssleay-perl version to 1.88 (next stable upstream + release after developer release 1.86_06, and also earliest version + available in Debian). + + -- Guilhem Moulin <guilhem@debian.org> Fri, 01 Jan 2021 16:20:51 +0100 + interimap (0.5.5-1) unstable; urgency=medium * New upstream release. Highlights include: diff --git a/debian/control b/debian/control index 2cad992..dda346e 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Build-Depends: debhelper-compat (= 13), jq, libconfig-tiny-perl <!nocheck>, libdbd-sqlite3-perl <!nocheck>, - libnet-ssleay-perl (>= 1.83~) <!nocheck>, + libnet-ssleay-perl (>= 1.88~) <!nocheck>, openssl (>= 1.1.1~) <!nocheck>, pandoc (>= 2.1~), procps <!nocheck>, diff --git a/debian/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..69a69a5 --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,3 @@ +--- +Repository: https://git.guilhem.org/interimap.git +Repository-Browse: https://git.guilhem.org/interimap diff --git a/doc/build.md b/doc/build.md index b9291f7..2e4e511 100644 --- a/doc/build.md +++ b/doc/build.md @@ -24,7 +24,7 @@ following Perl modules: * [`Getopt::Long`](https://perldoc.perl.org/Getopt/Long.html) (*core module*) * [`MIME::Base64`](https://perldoc.perl.org/MIME/Base64.html) (*core module*) — if authentication is required * [`List::Util`](https://perldoc.perl.org/List/Util.html) (*core module*) - * [`Net::SSLeay`](https://metacpan.org/pod/Net::SSLeay) ≥1.83 + * [`Net::SSLeay`](https://metacpan.org/pod/Net::SSLeay) ≥1.86_06 * [`POSIX`](https://perldoc.perl.org/POSIX.html) (*core module*) * [`Socket`](https://perldoc.perl.org/Socket.html) (*core module*) * [`Time::HiRes`](https://perldoc.perl.org/Time/HiRes.html) (*core module*) — if `logfile` is set diff --git a/doc/template.html b/doc/template.html index d825cde..c3809ad 100644 --- a/doc/template.html +++ b/doc/template.html @@ -14,7 +14,7 @@ $if(keywords)$ <meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" /> $endif$ <title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title> - <style type="text/css"> + <style> code{white-space: pre-wrap;} span.smallcaps{font-variant: small-caps;} span.underline{text-decoration: underline;} @@ -22,7 +22,7 @@ use v5.14.2; use strict; use warnings; -our $VERSION = '0.5.5'; +our $VERSION = '0.5.6'; my $NAME = 'interimap'; my $DATABASE_VERSION = 1; use Getopt::Long qw/:config posix_default no_ignore_case gnu_compat @@ -32,7 +32,7 @@ use DBD::SQLite::Constants ':file_open'; use Fcntl qw/F_GETFD F_SETFD FD_CLOEXEC/; use List::Util 'first'; -use Net::IMAP::InterIMAP 0.5.5 qw/xdg_basedir read_config compact_set/; +use Net::IMAP::InterIMAP 0.5.6 qw/xdg_basedir read_config compact_set/; # Clean up PATH $ENV{PATH} = join ':', qw{/usr/bin /bin}; diff --git a/lib/Net/IMAP/InterIMAP.pm b/lib/Net/IMAP/InterIMAP.pm index 0c4fc89..a171554 100644 --- a/lib/Net/IMAP/InterIMAP.pm +++ b/lib/Net/IMAP/InterIMAP.pm @@ -16,7 +16,7 @@ # along with this program. If not, see <https://www.gnu.org/licenses/>. #---------------------------------------------------------------------- -package Net::IMAP::InterIMAP v0.5.5; +package Net::IMAP::InterIMAP v0.5.6; use v5.20.0; use warnings; use strict; @@ -24,7 +24,7 @@ use strict; use Compress::Raw::Zlib qw/Z_OK Z_STREAM_END Z_FULL_FLUSH Z_SYNC_FLUSH MAX_WBITS/; use Config::Tiny (); use Errno qw/EEXIST EINTR/; -use Net::SSLeay 1.83 (); +use Net::SSLeay 1.86_06 (); use List::Util qw/all first/; use POSIX ':signal_h'; use Socket qw/SOCK_STREAM SOCK_RAW SOCK_CLOEXEC IPPROTO_TCP SHUT_RDWR @@ -22,7 +22,7 @@ use v5.20.2; use strict; use warnings; -our $VERSION = '0.5.5'; +our $VERSION = '0.5.6'; my $NAME = 'pullimap'; use Errno 'EINTR'; @@ -31,7 +31,7 @@ use Getopt::Long qw/:config posix_default no_ignore_case gnu_getopt auto_version use List::Util 'first'; use Socket qw/PF_INET PF_INET6 SOCK_STREAM IPPROTO_TCP/; -use Net::IMAP::InterIMAP 0.5.5 qw/xdg_basedir read_config compact_set/; +use Net::IMAP::InterIMAP 0.5.6 qw/xdg_basedir read_config compact_set/; # Clean up PATH $ENV{PATH} = join ':', qw{/usr/bin /bin}; |