From c4e8a9afa7846c8700a793c9136a1f70ebd57110 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Thu, 1 May 2014 23:36:01 +0200 Subject: [PATCH] add an initial debian package structure --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 15 +++++++++++++++ debian/copyright | 36 ++++++++++++++++++++++++++++++++++++ debian/guh.debhelper.log | 1 + debian/rules | 22 ++++++++++++++++++++++ debian/source/format | 1 + 7 files changed, 81 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/guh.debhelper.log create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..33025a80 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +guh (0.1) trusty; urgency=low + + * Initial release. + + -- Michael Zanetti Sat, 27 Apr 2014 22:00:53 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..7f8f011e --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..d7f593d5 --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: guh +Section: utils +Priority: optional +Maintainer: Michael Zanetti +Build-Depends: debhelper (>= 8.0.0), + qt5-default, + qtbase5-dev, +Standards-Version: 3.9.3 + +Package: guh +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, +Description: guh server + Add some description. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..59c22642 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Michael Zanetti on +Sat, 09 Apr 2011 18:13:12 +0200. + +Upstream Author(s): + + Michael Zanetti + +Copyright: + + + +License: + + This package 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 2 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2011, unknown and +is licensed under the GPL, see above. + + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. diff --git a/debian/guh.debhelper.log b/debian/guh.debhelper.log new file mode 100644 index 00000000..6991c52b --- /dev/null +++ b/debian/guh.debhelper.log @@ -0,0 +1 @@ +dh_auto_configure diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..a35c1d51 --- /dev/null +++ b/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +export DH_VERBOSE=1 +export QT_QPA_PLATFORM=minimal + +override_dh_auto_configure: + /usr/local/qt5pi/bin/qmake . + +override_dh_auto_build: + make + +override_dh_clean: + dh_clean + +override_dh_install: + dh_install --fail-missing + +%: + dh $@ --parallel + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 00000000..89ae9db8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native)