Bug#808119: [bugs.debian.org] attachments?

2016-01-06 Thread Török Edwin
Package: bugs.debian.org

--- Please enter the report below this line. ---

Is it a problem with the attachment?
I sent two followups to this bug with attachments (one text, one diff).

--- System information. ---
Architecture: amd64
Kernel:   Linux 4.3.0-0.bpo.1-amd64

Debian Release: 8.2
  600 stable  security.debian.org 
  600 stable  httpredir.debian.org 
  600 jessie-backports httpredir.debian.org 
  500 unstablehttpredir.debian.org 
  500 testing httpredir.debian.org 
  500 testing cdn.skylable.com 
  500 stable-updates  httpredir.debian.org 

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.



Bug#808119: [bugs.debian.org] attachments?

2016-01-06 Thread Török Edwin
Package: bugs.debian.org

--- Please enter the report below this line. ---

Hmm sending a followup to a bug with an attachment didn't work.
Trying again here.

--- System information. ---
Architecture: amd64
Kernel:   Linux 4.3.0-0.bpo.1-amd64

Debian Release: 8.2
  600 stable  security.debian.org 
  600 stable  httpredir.debian.org 
  600 jessie-backports httpredir.debian.org 
  500 unstablehttpredir.debian.org 
  500 testing httpredir.debian.org 
  500 testing cdn.skylable.com 
  500 stable-updates  httpredir.debian.org 

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.
diff --git a/debian/control b/debian/control
index b5d6780..909e30d 100644
--- a/debian/control
+++ b/debian/control
@@ -6,13 +6,14 @@ Build-Depends: debhelper (>= 9), libssl-dev, libyajl-dev, 
libfcgi-dev,
 libcurl4-openssl-dev (>= 7.34.0), libltdl-dev,
 libsqlite3-dev (>= 3.8.4.3), pkg-config (>= 0.9.0), nginx,
 libwww-perl, libjson-xs-perl, libdigest-hmac-perl, liburi-perl,
-python, dh-python
+python, dh-python,
+libfuse-dev (>= 2.7.0)
 Standards-Version: 3.9.6
 Homepage: http://www.skylable.com/products/sx
 
 Package: sx
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, nginx, openssl, logrotate, 
${python:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, nginx, openssl, logrotate, 
ca-certificates, ${python:Depends}
 Description: Scalable public and private cloud storage
  Skylable Sx is a reliable, fully distributed cluster solution for your data
  storage needs.
@@ -25,7 +26,9 @@ Description: Scalable public and private cloud storage
  Additionally Sx has built-in support for deduplication, client-side
  encryption, on-the-fly compression and much more.
 
-Package: libsxclient2
+Package: libsxclient3
+Replaces: libsxclient2
+Breaks: libsxclient2
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Description: Scalable public and private cloud storage
@@ -43,7 +46,7 @@ Description: Scalable public and private cloud storage
 Package: libsxclient-dev
 Section: libdevel
 Architecture: any
-Depends: libsxclient2 (= ${binary:Version}), ${misc:Depends}
+Depends: libsxclient3 (= ${binary:Version}), ${misc:Depends}
 Description: Scalable public and private cloud storage
  Skylable Sx is a reliable, fully distributed cluster solution for your data 
  storage needs.
diff --git a/debian/copyright b/debian/copyright
index d8efe4b..ce63497 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -6,7 +6,7 @@ Files: *
 Copyright: 2012- Skylable Ltd. 
 License: GPL-2 with OpenSSL exception
 
-Files: libsx/*
+Files: libsxclient/*
 Copyright: 2012- Skylable Ltd. 
 License: LGPL-2.1+
 
diff --git a/debian/libsxclient2.install b/debian/libsxclient2.install
deleted file mode 100644
index 5556315..000
--- a/debian/libsxclient2.install
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/lib/*/*.so.*
-usr/lib/*/sxclient/*-*.so
diff --git 
a/debian/patches/0001-fix-make-check-when-disable-sxhttpd-is-used.patch 
b/debian/patches/0001-fix-make-check-when-disable-sxhttpd-is-used.patch
deleted file mode 100644
index 5dc70a4..000
--- a/debian/patches/0001-fix-make-check-when-disable-sxhttpd-is-used.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-From: =?utf-8?q?T=C3=B6r=C3=B6k_Edwin?= 
-Date: Mon, 29 Dec 2014 16:45:12 +0200
-Subject: fix make check when --disable-sxhttpd is used
-

- server/configure  | 5 -
- server/configure.ac   | 6 --
- server/test/run-nginx-test.sh | 2 +-
- 3 files changed, 9 insertions(+), 4 deletions(-)
-
-diff --git a/server/configure b/server/configure
-index a5b03bf..4c37a12 100755
 a/server/configure
-+++ b/server/configure
-@@ -14341,7 +14341,7 @@ $as_echo "no" >&6; }
- fi
- 
-   if test "x$ac_pt_SXHTTPD" = x; then
--SXHTTPD="as_fn_error $? "nginx is required when --disable-sxhttpd is 
used" "$LINENO" 5"
-+SXHTTPD="false"
-   else
- case $cross_compiling:$ac_tool_warned in
- yes:)
-@@ -14355,6 +14355,9 @@ else
-   SXHTTPD="$ac_cv_path_SXHTTPD"
- fi
- 
-+if test "$SXHTTPD" = "false"; then
-+as_fn_error $? "nginx is required when --disable-sxhttpd is used" 
"$LINENO" 5
-+fi
- else
- SXHTTPD="$sbindir/sxhttpd"
- fi
-diff --git a/server/configure.ac b/server/configure.ac
-index 68614d9..e5d04eb 100644
 a/server/configure.ac
-+++ b/server/configure.ac
-@@ -187,9 +187,11 @@ build_sxhttpd=$enableval, build_sxhttpd="yes")
- 
- 
- if test "x$build_sxhttpd" = "xno"; then
--AC_PATH_TOOL(SXHTTPD,nginx,
-- [AC_MSG_ERROR([nginx is required when --disable-sxhttpd is 
used])],
-+AC_PATH_TOOL(SXHTTPD,nginx, [false],
-  [/usr/sbin:/usr/local/sbin:$PATH])
-+if test "$SXHTTPD" = "false"; then
-+AC_MSG_ERROR([nginx is required when --disable-sxhttpd is used])
-+fi
- else
- SXHTTPD="$sbindir/sxhttpd"
- fi
-diff --git a/server/test/run-nginx-test.sh b/server/te

Bug#808119: [bugs.debian.org] attachments?

2016-01-06 Thread Török Edwin
Package: bugs.debian.org

--- Please enter the report below this line. ---

Test with just a simple text attachment. Does this show up? (previous test had 
a diff as attachment)

--- System information. ---
Architecture: amd64
Kernel:   Linux 4.3.0-0.bpo.1-amd64

Debian Release: 8.2
  600 stable  security.debian.org 
  600 stable  httpredir.debian.org 
  600 jessie-backports httpredir.debian.org 
  500 unstablehttpredir.debian.org 
  500 testing httpredir.debian.org 
  500 testing cdn.skylable.com 
  500 stable-updates  httpredir.debian.org 

--- Package information. ---
Package's Depends field is empty.

Package's Recommends field is empty.

Package's Suggests field is empty.

just some test