loolwsd/configure.ac | 2 +- loolwsd/debian/changelog | 15 +++++++++++++++ loolwsd/debian/compat | 1 + loolwsd/debian/control | 14 ++++++++++++++ loolwsd/debian/copyright | 33 +++++++++++++++++++++++++++++++++ loolwsd/debian/postinst | 9 +++++++++ loolwsd/debian/rules | 19 +++++++++++++++++++ loolwsd/debian/source/format | 1 + 8 files changed, 93 insertions(+), 1 deletion(-)
New commits: commit 6b0ab577ce78084d61fda0a896fe8fe68c18cfaa Author: Tor Lillqvist <t...@collabora.com> Date: Thu Jun 4 13:06:23 2015 +0300 Add Debian packaging diff --git a/loolwsd/debian/changelog b/loolwsd/debian/changelog new file mode 100644 index 0000000..bfb559a --- /dev/null +++ b/loolwsd/debian/changelog @@ -0,0 +1,15 @@ +loolwsd (1.0.34-1) UNRELEASED; urgency=medium + + * Back to packaging this for Debian. + + -- Tor Lillqvist <t...@collabora.com> Wed, 03 Jun 2015 20:24:50 +0300 + +loolwsd (1.0.0-1) unstable; urgency=low + + * Initial release + + * Local Variables: + * Mode: fundamental + * End: + + -- Tor Lillqvist <t...@collabora.com> Fri, 15 May 2015 11:10:20 +0300 diff --git a/loolwsd/debian/compat b/loolwsd/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/loolwsd/debian/compat @@ -0,0 +1 @@ +9 diff --git a/loolwsd/debian/control b/loolwsd/debian/control new file mode 100644 index 0000000..a15e63e --- /dev/null +++ b/loolwsd/debian/control @@ -0,0 +1,14 @@ +Source: loolwsd +Section: web +Priority: optional +Maintainer: Tor Lillqvist <t...@collabora.com> +Build-Depends: debhelper (>= 8.0.0), libcap-dev, libcap2-bin, libpcre3-dev, libpng-dev, libpoco-dev (>= 1.6.0) +Standards-Version: 3.9.2 + +Package: loolwsd +Section: web +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: LibreOffice On-Line WebSocket Daemon + LOOLWSD is a daemon that talks to web browser clients and provides LibreOffice + services. diff --git a/loolwsd/debian/copyright b/loolwsd/debian/copyright new file mode 100644 index 0000000..d2a2a46 --- /dev/null +++ b/loolwsd/debian/copyright @@ -0,0 +1,33 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Name: loolwsd +Maintainer: Tor Lillqvist <t...@collabora.com> +Source: git://gerrit.libreoffice.org/online + +Copyright: 2015 Collabora Productivity <libreoff...@collabora.com> +License: MPL-2 + +Copyright: 2004-2006, Applied Informatics Software Engineering GmbH +License: + Boost Software License - Version 1.0 - August 17th, 2003 + + Permission is hereby granted, free of charge, to any person or organization + obtaining a copy of the software and accompanying documentation covered by + this license (the "Software") to use, reproduce, display, distribute, + execute, and transmit the Software, and to prepare derivative works of the + Software, and to permit third-parties to whom the Software is furnished to + do so, all subject to the following: + + The copyright notices in the Software and this entire statement, including + the above license grant, this restriction and the following disclaimer, + must be included in all copies of the Software, in whole or in part, and + all derivative works of the Software, unless such copies or derivative + works are solely in the form of machine-executable object code generated by + a source language processor. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT + SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE + FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. diff --git a/loolwsd/debian/postinst b/loolwsd/debian/postinst new file mode 100755 index 0000000..7822fc1 --- /dev/null +++ b/loolwsd/debian/postinst @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +case "$1" in + configure) + setcap cap_fowner,cap_sys_chroot=ep /usr/bin/loolwsd + ;; +esac diff --git a/loolwsd/debian/rules b/loolwsd/debian/rules new file mode 100755 index 0000000..474a309 --- /dev/null +++ b/loolwsd/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/* +DPKG_EXPORT_BUILDFLAGS = 1 + +include /usr/share/dpkg/default.mk + +CONFFLAGS = --prefix=/usr --with-lokit-path=bundled/include + +# Avoid setcap when doing "make", when building for packaging +# the setcap is done at installation time +export BUILDING_FROM_RPMBUILD=yes + +# main packaging script based on dh7 syntax +%: + dh $@ + +override_dh_auto_configure: + ./configure $(CONFFLAGS) diff --git a/loolwsd/debian/source/format b/loolwsd/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/loolwsd/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) commit 9ab0aaed03251a958d0ccaad8803cee33a75be6f Author: Tor Lillqvist <t...@collabora.com> Date: Thu Jun 4 13:07:42 2015 +0300 Bump version after tarball diff --git a/loolwsd/configure.ac b/loolwsd/configure.ac index ff66968..395cec2 100644 --- a/loolwsd/configure.ac +++ b/loolwsd/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.69]) -AC_INIT([loolwsd], [1.0.34], [libreoff...@collabora.com]) +AC_INIT([loolwsd], [1.0.35], [libreoff...@collabora.com]) AM_INIT_AUTOMAKE([1.11 silent-rules]) commit 5985d86642ebd5fe30b43719449f19712e841a3f Author: Tor Lillqvist <t...@collabora.com> Date: Wed Jun 3 20:05:15 2015 +0300 Bump version for tarball diff --git a/loolwsd/configure.ac b/loolwsd/configure.ac index 43df612..ff66968 100644 --- a/loolwsd/configure.ac +++ b/loolwsd/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.69]) -AC_INIT([loolwsd], [1.0.33], [libreoff...@collabora.com]) +AC_INIT([loolwsd], [1.0.34], [libreoff...@collabora.com]) AM_INIT_AUTOMAKE([1.11 silent-rules]) _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits