diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-04-21 23:30:02 +0300 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-04-21 23:33:39 +0300 |
| commit | afcf976f279cda819420dc8e10e922cf9a492062 (patch) | |
| tree | 17ac831abaf7a01276c065e317199e7791f62743 | |
| parent | cbb6cf2a75bf4fc650f572e84e763e1fdd00239f (diff) | |
wip: debian packaging
| -rw-r--r-- | build.ant | 36 | ||||
| -rw-r--r-- | res/debian/README | 6 | ||||
| -rw-r--r-- | res/debian/README.Debian | 6 | ||||
| -rw-r--r-- | res/debian/changelog | 5 | ||||
| -rw-r--r-- | res/debian/compat | 1 | ||||
| -rw-r--r-- | res/debian/control | 28 | ||||
| -rw-r--r-- | res/debian/copyright | 29 | ||||
| -rw-r--r-- | res/debian/install | 8 | ||||
| -rw-r--r-- | res/debian/postinst | 40 | ||||
| -rw-r--r-- | res/debian/rhizi.cron.hourly | 1 | ||||
| -rw-r--r-- | res/debian/rhizi.init | 2 | ||||
| -rwxr-xr-x | res/debian/rules | 25 |
12 files changed, 175 insertions, 12 deletions
@@ -32,9 +32,12 @@ </sequential> </macrodef> - <property name="pkg_name" value="rhizi-server" /> + <property name="pkg_name" value="rhizi" /> <property name="pkg_version" value="0.1.0" /> - <property name="buildDir" value="build/${pkg_name}-${pkg_version}" /> + <property name="pkg_fullname" value="${pkg_name}-${pkg_version}" /> + <property name="pkg_debname" value="${pkg_name}_${pkg_version}" /> + <property name="buildDir" value="build" /> + <property name="build_dir__deb_pkg" value="${buildDir}/${pkg_fullname}" /> <property name="targetDeploymentDir" value="deploy-local" /> <property name="remoteDeployServer" value="rz-0.unige.ch" /> <property name="targetDomain" value="default.rhizi.net" /> @@ -47,7 +50,7 @@ <target name="clean" description="remove all work folders"> <delete dir="dist" /> - <delete dir="build" /> + <delete dir="${buildDir}" /> </target> <target name="deploy-local.clean"> @@ -168,23 +171,34 @@ </parallel> </target> - <target name="pkg-deb" depends="clean" description="package as .deb"> <mkdir dir="dist" /> - <mkdir dir="${buildDir}" /> + <mkdir dir="${build_dir__deb_pkg}" /> <exec dir="${basedir}" executable="/usr/bin/git"> <arg value="clone" /> <arg line="--depth 1" /> <arg value="file://${basedir}" /> - <arg value="${buildDir}" /> + <arg value="${build_dir__deb_pkg}" /> </exec> - <copy todir="${buildDir}/debian"> - <fileset dir="debian" /> + <copy todir="${build_dir__deb_pkg}/debian"> + <fileset dir="res/debian" /> </copy> - <exec dir="${buildDir}" executable="/usr/bin/debuild"> + <!-- TODO: use when depending on libjs-jquery, libjs-underscore + <delete verbose="true" includeemptydirs="true"> + <fileset file="${build_dir__deb_pkg}/res/client/lib/jquery.js" /> + <fileset file="${build_dir__deb_pkg}/res/client/lib/underscore.js" /> + </delete> + --> + + <!-- debuild flags: + -b: binary-only build + -us: do not sign the source package + -uc: do not sign .changes + --> + <exec dir="${build_dir__deb_pkg}" executable="/usr/bin/debuild"> <arg value="-b" /> <arg value="-us" /> <arg value="-uc" /> @@ -192,8 +206,8 @@ </target> <target name="pkg-deb.list"> - <exec dir="${buildDir}" executable="/usr/bin/dpkg"> - <arg line="-c rhizi-server_0.1.0_amd64.deb" /> + <exec executable="/usr/bin/dpkg"> + <arg line="-c ${buildDir}/${pkg_debname}_amd64.deb" /> </exec> </target> diff --git a/res/debian/README b/res/debian/README new file mode 100644 index 00000000..9df269f5 --- /dev/null +++ b/res/debian/README @@ -0,0 +1,6 @@ +The Debian Package rhizi +---------------------------- + +Comments regarding the Package + + -- Amir Sagie <sagie@rhizi.org> Sun, 23 Nov 2014 19:09:39 +0200 diff --git a/res/debian/README.Debian b/res/debian/README.Debian new file mode 100644 index 00000000..91c91086 --- /dev/null +++ b/res/debian/README.Debian @@ -0,0 +1,6 @@ +rhizi for Debian +----------------------- + +No current notes. + + -- Amir Sagie <sagie@rhizi.org> Sun, 23 Nov 2014 19:09:39 +0200 diff --git a/res/debian/changelog b/res/debian/changelog new file mode 100644 index 00000000..a11dd580 --- /dev/null +++ b/res/debian/changelog @@ -0,0 +1,5 @@ +rhizi (0.1.0) unstable; urgency=low + + * Initial Release. + + -- Amir Sagie <sagie@rhizi.org> Sun, 23 Nov 2014 19:09:39 +0200 diff --git a/res/debian/compat b/res/debian/compat new file mode 100644 index 00000000..ec635144 --- /dev/null +++ b/res/debian/compat @@ -0,0 +1 @@ +9 diff --git a/res/debian/control b/res/debian/control new file mode 100644 index 00000000..88a3b56a --- /dev/null +++ b/res/debian/control @@ -0,0 +1,28 @@ +Source: rhizi +Section: web +Priority: optional +Maintainer: Amir Sagie <sagie@rhizi.org> +Build-Depends: debhelper (>= 9), + dh-python +Standards-Version: 3.9.5 +Homepage: http://rhizi.net + +Package: rhizi +Architecture: any +Depends: ${python:Depends}, + ${shlibs:Depends}, + ${misc:Depends}, + apache2 (>= 2.4), + neo4j-advanced (>= 2.2), + python2.7, + python-enum, + python-flask, + python-futures, + python-gevent, + python-gevent-websocket, + python-six, + python-socketio +Description: Rhizi document server + Rhizi collaborative web editor + . + This package includes the Rhizi server diff --git a/res/debian/copyright b/res/debian/copyright new file mode 100644 index 00000000..b54b990f --- /dev/null +++ b/res/debian/copyright @@ -0,0 +1,29 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: rhizi +Source: http://rhizi.org + +Files: * +Copyright: 2014 Amir Sagie <sagie@rhizi.org> +License: GPL-3.0+ + +Files: debian/* +Copyright: 2014 Amir Sagie <sagie@rhizi.org> +License: GPL-3.0+ + +License: GPL-3.0+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". + diff --git a/res/debian/install b/res/debian/install new file mode 100644 index 00000000..764b6def --- /dev/null +++ b/res/debian/install @@ -0,0 +1,8 @@ +res/client/* usr/share/rhizi/webapp/static/ +res/etc/* etc/rhizi/ +res/templates/* usr/share/rhizi/webapp/templates/ + +res/apache/sites-availalbe etc/apache2/sites-available/ + +src/server/* usr/lib/rhizi/rhizi-server/ +src/local/server-tools/* usr/lib/rhizi/server-tools/
\ No newline at end of file diff --git a/res/debian/postinst b/res/debian/postinst new file mode 100644 index 00000000..860dbf91 --- /dev/null +++ b/res/debian/postinst @@ -0,0 +1,40 @@ +#!/bin/sh +# postinst script for rhizi +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postinst> `configure' <most-recently-configured-version> +# * <old-postinst> `abort-upgrade' <new version> +# * <conflictor's-postinst> `abort-remove' `in-favour' <package> +# <new-version> +# * <postinst> `abort-remove' +# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' +# <failed-install-package> <version> `removing' +# <conflicting-package> <version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + # call chmod, chown, etc. + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 diff --git a/res/debian/rhizi.cron.hourly b/res/debian/rhizi.cron.hourly new file mode 100644 index 00000000..274cdd7a --- /dev/null +++ b/res/debian/rhizi.cron.hourly @@ -0,0 +1 @@ +/usr/lib/rhizi/server-tools/rz_backup.py
\ No newline at end of file diff --git a/res/debian/rhizi.init b/res/debian/rhizi.init index 1da09ac4..61d9e916 100644 --- a/res/debian/rhizi.init +++ b/res/debian/rhizi.init @@ -1,7 +1,7 @@ #!/bin/sh ### BEGIN INIT INFO -# Provides: rhizi-server +# Provides: rhizi # Required-Start: $local_fs $network $syslog # Required-Stop: $local_fs $network $syslog # Default-Start: 2 3 4 5 diff --git a/res/debian/rules b/res/debian/rules new file mode 100755 index 00000000..e2a59841 --- /dev/null +++ b/res/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +export DH_VERBOSE=1 + +DEB_CONFIGURE_EXTRA_FLAGS := \ + --prefix=/usr \ + --libdir=/usr/lib \ + --enable-python + +%: + dh $@ --with python2 + +override_dh_auto_configure: + dh_auto_configure -- $(DEB_CONFIGURE_EXTRA_FLAGS) + +override_dh_auto_install: + dh_auto_install + + # TODO: support python setup.py install: + # python setup.py install --root=$(CURDIR)/debian/supybot --prefix=/usr $(py_setup_install_args) + +override_dh_python2: + dh_python2 \ + -p rhizi \ + --exclude=rhizi-server.py |
