From f880cc76c0d07ce70f04a69e065c84212f151d10 Mon Sep 17 00:00:00 2001 From: Daniel Tiefnig Date: Thu, 24 Sep 2009 18:16:30 +0000 Subject: [PATCH] added debian package controls from tags/1.1.4 --- debian/changelog | 11 ++++++++ debian/compat | 1 + debian/control | 16 +++++++++++ debian/copyright | 22 +++++++++++++++ debian/docs | 0 debian/rules | 73 ++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 123 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2fbe876 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,11 @@ +sipwise-www-admin (1.1.5-1) unstable; urgency=low + + * using prov-iface E.164 check functions + + -- unreleased + +sipwise-www-admin (1.1.4-1) unstable; urgency=low + + * Initial release. + + -- Michael Prokop Tue, 10 Feb 2009 18:45:14 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..fda399b --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: sipwise-www-admin +Section: admin +Priority: extra +Maintainer: Michael Prokop +Build-Depends: debhelper (>= 5) +Standards-Version: 3.8.0 +Homepage: http://sipwise.com/ +Vcs-svn: https://dev.sipwise.com/svn/www_admin +Vcs-Browser: https://dev.sipwise.com/svn/www_admin + +Package: sipwise-www-admin +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ossbss, libcatalyst-perl +Description: administration framework to configure the Sipwise NGCP + This package provides an administration framework which is used to + configure the Sipwise NGCP. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..8de7b2f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by Michael Prokop on +Tue, 10 Feb 2009 18:45:14 +0100. + +It was downloaded from http://sipwise.com/ + +Upstream Author: + + Daniel Tiefnig + +Copyright: + + Copyright (c) 2007-2009 Sipwise GmbH, Austria + +License: + +All software included in this package is Copyright (c) 2007-2009 Sipwise +GmbH, Austria. All rights reserved. +You may not copy, distribute or modify without prior written permission +from Sipwise GmbH, Austria. + +The Debian packaging is copyright 2009, Michael Prokop and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e69de29 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..911e758 --- /dev/null +++ b/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp + +build-stamp: + dh_testdir + + # Add here commands to compile the package. + # $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + # $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs usr/local/admin usr/local/admin/script/ + + # Add here commands to install the package into debian/sipwise-www-admin. + cp -a lib debian/sipwise-www-admin/usr/local/admin/ + cp -a root debian/sipwise-www-admin/usr/local/admin/ + install -m 644 admin.yml debian/sipwise-www-admin/usr/local/admin/ + # we don't need admin_create.pl and admin_test.pl: + install -m 755 script/admin_cgi.pl debian/sipwise-www-admin/usr/local/admin/script/ + install -m 755 script/admin_fastcgi.pl debian/sipwise-www-admin/usr/local/admin/script/ + install -m 755 script/admin_server.pl debian/sipwise-www-admin/usr/local/admin/script/ + # make sure we don't have any svn files inside the .deb: + find debian/sipwise-www-admin -name \.svn -print0 | xargs -0 rm -rf + + +# Build architecture-dependent files here. +binary-arch: install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install