aboutsummaryrefslogtreecommitdiffstats
path: root/resources/install
diff options
context:
space:
mode:
authorDamian Minkov <damencho@jitsi.org>2014-09-16 12:53:04 +0300
committerDamian Minkov <damencho@jitsi.org>2014-09-16 12:53:04 +0300
commit69c52092238ecb77de53779db1eb1f27e8938bba (patch)
tree8e21e8df9267a292dbcf3b06968907882ff3b4eb /resources/install
parentd2b0603a5a12f0305a6899991f65fe92a6f2bfe4 (diff)
downloadjitsi-69c52092238ecb77de53779db1eb1f27e8938bba.zip
jitsi-69c52092238ecb77de53779db1eb1f27e8938bba.tar.gz
jitsi-69c52092238ecb77de53779db1eb1f27e8938bba.tar.bz2
Closes several bugs reported on debian bug tracker.
Diffstat (limited to 'resources/install')
-rw-r--r--resources/install/debian/changelog.tmpl7
-rw-r--r--resources/install/debian/control-src.tmpl2
-rw-r--r--resources/install/debian/patches/encoding.patch17
-rw-r--r--resources/install/debian/patches/jdk812
-rw-r--r--resources/install/debian/patches/series2
5 files changed, 39 insertions, 1 deletions
diff --git a/resources/install/debian/changelog.tmpl b/resources/install/debian/changelog.tmpl
index 67f527e..31d20b6 100644
--- a/resources/install/debian/changelog.tmpl
+++ b/resources/install/debian/changelog.tmpl
@@ -5,7 +5,12 @@ _PACKAGE_NAME_ (_VERSION_) unstable; urgency=low
* Fixes BundleException: Unresolved constraint in bundle
propertieseditor. (Closes: #736773)
* Fixes commons lang missing felix manifests. (Closes: #736773)
- * Removes gdata dependency. (Closes: #759835)
+ * Removes gdata dependency. Set encoding for javadoc to fix errors with
+ Java 7 (part of the patch in libjitsi as jsip has moved
+ there). (Closes: #759835, #748503)
+ * New version will be updated with bound to libavfilter5. (Closes: #760853)
+ * Added vcs links. (Closes: #754586)
+ * Fixes dependencies to build with jdk8. (Closes: #745090)
-- Damian Minkov <damencho@jitsi.org> _DATE_
diff --git a/resources/install/debian/control-src.tmpl b/resources/install/debian/control-src.tmpl
index 66c8a64..660dafd 100644
--- a/resources/install/debian/control-src.tmpl
+++ b/resources/install/debian/control-src.tmpl
@@ -51,6 +51,8 @@ Build-Depends: debhelper (>= 9), javahelper,
libphonenumber6-java,
libslf4j-java
Standards-Version: 3.9.5
+Vcs-Git: git@github.com:jitsi/jitsi.git
+Vcs-Browser: https://github.com/jitsi/jitsi
Package: _PACKAGE_NAME_
Architecture: all
diff --git a/resources/install/debian/patches/encoding.patch b/resources/install/debian/patches/encoding.patch
new file mode 100644
index 0000000..09176fd
--- /dev/null
+++ b/resources/install/debian/patches/encoding.patch
@@ -0,0 +1,17 @@
+Description: Set encoding for javadoc to fix errors with Java 7
+Author: Colin Watson <cjwatson@ubuntu.com>
+Bug-Debian: https://bugs.debian.org/759835
+Forwarded: no
+Last-Update: 2014-09-05
+
+--- jitsi.orig/lib/src/swingworker/build.xml
++++ jitsi/lib/src/swingworker/build.xml
+@@ -63,7 +63,7 @@ reserved. Use is subject to license term
+ <javadoc access="protected" link=""
+ packagenames="org.jdesktop.swingworker" author="true" destdir="${javadoc.dir}"
+ nodeprecated="false" nodeprecatedlist="false" noindex="false"
+- nonavbar="false" notree="false" use="true" version="true">
++ nonavbar="false" notree="false" use="true" version="true" encoding="iso-8859-1">
+ <link href="${external.doc}" />
+ <sourcepath>
+ <pathelement path="${src.dir}" />
diff --git a/resources/install/debian/patches/jdk8 b/resources/install/debian/patches/jdk8
new file mode 100644
index 0000000..005a5b3
--- /dev/null
+++ b/resources/install/debian/patches/jdk8
@@ -0,0 +1,12 @@
+Index: jitsi/lib/src/java-jml/src/net/sf/jml/message/p2p/MsnFileContextParser.java
+===================================================================
+--- jitsi.orig/lib/src/java-jml/src/net/sf/jml/message/p2p/MsnFileContextParser.java
++++ jitsi/lib/src/java-jml/src/net/sf/jml/message/p2p/MsnFileContextParser.java
+@@ -18,6 +18,7 @@ package net.sf.jml.message.p2p;
+ import java.io.*;
+ import java.util.*;
+ import net.sf.jml.util.*;
++import net.sf.jml.util.Base64; // disambiguation
+
+ /**
+ * Parses context of incoming filerequests. Extracts filename and filesize.
diff --git a/resources/install/debian/patches/series b/resources/install/debian/patches/series
index 15ab6cf..766160f 100644
--- a/resources/install/debian/patches/series
+++ b/resources/install/debian/patches/series
@@ -1,3 +1,5 @@
bcprov-upgrade-1.48
remove-dns-java-logger.patch
removes-gdata-deps
+encoding.patch
+jdk8