--- /dev/null
+Source: now
+Section: ruby
+Priority: optional
+Maintainer: František Dvořák <valtri@civ.zcu.cz>
+Build-Depends: debhelper (>= 8.0.0)
+Standards-Version: 3.9.4
+Homepage: https://github.com/CESNET/NOW
+#Vcs-Git: git://git.debian.org/collab-maint/now.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/now.git;a=summary
+XS-Ruby-Versions: all
+
+Package: now
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Pre-Depends: ${misc:Pre-Depends}, adduser
+Depends: ${misc:Depends}, ruby | ruby-interpreter, ruby-ipaddress, ruby-json, ruby-sinatra
+Description: Network Orchestrator Wrapper for OpenNebula
+ Network Orchestrator Wrapper is the component to extend OpenNebula network orchestration capabilities.
--- /dev/null
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: NOW
+Source: https://github.com/CESNET/NOW
+
+Files: *
+Copyright: Copyright 2016 CESNET - INDIGO-DataCloud
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2016 František Dvořák <valtri@civ.zcu.cz>
+License: Apache-2.0
+
+License: Apache-2.0
+ On Debian systems, the full text of the Apache-2.0 license
+ can be found in the file '/usr/share/common-licenses/Apache-2.0'
--- /dev/null
+#!/bin/sh
+# preinst script for NOW
+
+set -e
+
+case "$1" in
+ install|upgrade)
+ getent group now >/dev/null || addgroup --system now
+ getent passwd now >/dev/null || adduser --system --group --home /usr/share/NOW now
+ ;;
+
+ abort-upgrade)
+ ;;
+
+ *)
+ echo "preinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
--- /dev/null
+#!/usr/bin/make -f
+export DH_VERBOSE=1
+export DH_RUBY_IGNORE_TESTS=all
+
+%:
+ dh $@ --buildsystem=ruby --with ruby
--- /dev/null
+3.0 (quilt)
--- /dev/null
+# For GitHub projects you can use the tags or releases page. Since the archive
+# URLs use only the version as the name, it is recommended to use a
+# filenamemangle to adjust the name of the downloaded file:
+opts="filenamemangle=s/(?:.*)?v?(\d[\d\.]*)\.tar\.gz/NOW-$1.tar.gz/" \
+ https://github.com/<user>/<project>/tags (?:.*/)?v?(\d[\d\.]*)\.tar\.gz