Debian updates for 0.9.34

This commit is contained in:
zzz
2018-04-11 16:10:08 +00:00
parent a474bd46d6
commit 57e21e906f
8 changed files with 54 additions and 2 deletions

View File

@ -1,3 +1,9 @@
i2p (0.9.34-2ubuntu1) artful; urgency=medium
* New upstream version 0.9.34
-- zzz on i2p (key signing) <zzz@i2pmail.org> Wed, 11 Apr 2018 12:12:12 +0000
i2p (0.9.33-1ubuntu1) artful; urgency=medium i2p (0.9.33-1ubuntu1) artful; urgency=medium
* New upstream version 0.9.33 * New upstream version 0.9.33

View File

@ -82,7 +82,7 @@ Generate files to upload
otherwise, if just fixing up the control files, patches, etc: otherwise, if just fixing up the control files, patches, etc:
debuild -S -sd -kkeyid debuild -S -sd -kkeyid
(note: no space allowed in -kkeyid) (note: no space allowed in -kkeyid)
If you get a dpkg-checkbuilddeps error for precise/trusty, If you get a dpkg-checkbuilddeps error for precise/trusty/xenial,
add a -d option, e.g. debuild -d -S -sa -kkeyid add a -d option, e.g. debuild -d -S -sa -kkeyid
- If patches fail, you must fix them up, either manually or with quilt - If patches fail, you must fix them up, either manually or with quilt
(quilt instructions go here) (quilt instructions go here)

View File

@ -1,3 +1,9 @@
i2p (0.9.34p-1~precise+1) precise; urgency=medium
* Backport to Precise
-- zzz on i2p (key signing) <zzz@i2pmail.org> Wed, 11 Apr 2018 12:12:12 +0000
i2p (0.9.33p-1~precise+1) precise; urgency=medium i2p (0.9.33p-1~precise+1) precise; urgency=medium
* Backport to Precise * Backport to Precise

View File

@ -1,3 +1,9 @@
i2p (0.9.34p-2~trusty+1) trusty; urgency=medium
* Backport to Trusty
-- zzz on i2p (key signing) <zzz@i2pmail.org> Wed, 11 Apr 2018 12:12:12 +0000
i2p (0.9.33p-2~trusty+1) trusty; urgency=medium i2p (0.9.33p-2~trusty+1) trusty; urgency=medium
* Backport to Trusty * Backport to Trusty

View File

@ -1,3 +1,9 @@
i2p (0.9.34x-2~xenial+1) xenial; urgency=medium
* Backport to Xenial
-- zzz on i2p (key signing) <zzz@i2pmail.org> Wed, 11 Apr 2018 12:12:12 +0000
i2p (0.9.33x-1~xenial+1) xenial; urgency=medium i2p (0.9.33x-1~xenial+1) xenial; urgency=medium
* Backport to Xenial * Backport to Xenial

View File

@ -0,0 +1,26 @@
Index: b/apps/routerconsole/java/src/net/i2p/router/web/HostCheckHandler.java
===================================================================
--- a/apps/routerconsole/java/src/net/i2p/router/web/HostCheckHandler.java
+++ b/apps/routerconsole/java/src/net/i2p/router/web/HostCheckHandler.java
@@ -44,19 +44,12 @@ public class HostCheckHandler extends Gz
_listenHosts = new HashSet<String>(8);
setMinGzipSize(64*1024);
if (_context.getBooleanPropertyDefaultTrue(PROP_GZIP)) {
- addIncludedMimeTypes(
- // our js is very small
- //"application/javascript", "application/x-javascript",
- "application/xhtml+xml", "application/xml",
- // ditto svg
- //"image/svg+xml",
- "text/css", "text/html", "text/plain"
- );
+ setMimeTypes("application/xhtml+xml,application/xml,text/css,text/html,text/plain");
} else {
// poorly documented, but we must put something in,
// if empty all are matched,
// see IncludeExcludeSet
- addIncludedMimeTypes("xyzzy");
+ setMimeTypes("xyzzy");
}
}

View File

@ -0,0 +1,2 @@
0001-path-substitution.patch
0002-jetty-old-api.patch

2
debian/rules vendored
View File

@ -38,7 +38,7 @@ export BITS := $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS)
#export DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) #export DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
%: %:
dh $@ --with systemd,quilt,bash-completion dh $@ --with systemd,bash-completion
clean: createcopyright clean: createcopyright