From 15bb2e6bf8e90292e06bcb58b26c6bc90e62b253 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sat, 13 Mar 2010 15:47:35 -0700 Subject: [PATCH] initial packaging goo --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 19 +++++++++++++++++++ debian/copyright | 35 +++++++++++++++++++++++++++++++++++ debian/docs | 3 +++ debian/gbp.conf | 46 ++++++++++++++++++++++++++++++++++++++++++++++ debian/rules | 13 +++++++++++++ 7 files changed, 122 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 100644 debian/gbp.conf create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..70482b92 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +openrocket (1.0.0-1) unstable; urgency=low + + * initial packaging for Debian + + -- Bdale Garbee Sat, 13 Mar 2010 15:25:12 -0700 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..53ba78d2 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: openrocket +Section: science +Priority: optional +Maintainer: Bdale Garbee +Build-Depends: debhelper (>= 7) +Standards-Version: 3.8.4 +Homepage: http://openrocket.sourceforge.net/ + +Package: openrocket +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Model Rocket Simulator + OpenRocket is a free, fully featured model rocket simulator that allows + you to design and simulate your rockets before actually building and + flying them. + + OpenRocket features a full six-degree-of-freedom simulation, realistic + wind modeling, a multitude of different components including free-form + and canted fins, clustering and staging. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..3479e72f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,35 @@ +This work was packaged for Debian by: + + Bdale Garbee on Sat, 13 Mar 2010 15:25:12 -0700 + +It was downloaded from: + + http://openrocket.sourceforge.net/ + +Upstream Author(s): + + Sampo Niskanen + +Copyright: + + Copyright (C) 2007-2010 Sampo Niskanen + +License: + + GPL version 3 with additional permission under section 7: + + The licensors grant additional permission to package this Program, or + any covered work, along with any non-compilable data files (such as + thrust curves or component databases) and convey the resulting work. + +The Debian packaging is: + + Copyright (C) 2010 Bdale Garbee + +and is also licensed under the GPL version 3, +see "/usr/share/common-licenses/GPL-3". + +The source distribution and binary packages also contain rocket motor +performance data files from thrustcurve.org. These carry various copyright +assertions, but all are made available for public use with no distribution +restrictions. diff --git a/debian/docs b/debian/docs new file mode 100644 index 00000000..2ccbe7a6 --- /dev/null +++ b/debian/docs @@ -0,0 +1,3 @@ +fileformat.txt +README.TXT +TODO diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 00000000..15b1cbac --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,46 @@ +# Configuration file for git-buildpackage and friends + +[DEFAULT] +# the default build command: +#builder = debuild -i\.git/ -I.git +# the default clean command: +#cleaner = debuild clean +# the default branch for upstream sources: +upstream-branch = upstream +# the default branch for the debian patch: +debian-branch = debian +# the default tag formats used: +#upstream-tag = upstream/%(version)s +#debian-tag = debian/%(version)s +# use pristine-tar: +pristine-tar = True + +# Options only affecting git-buildpackage +[git-buildpackage] +#upstream-branch = dfsgclean +# uncomment this to automatically GPG sign tags +#sign-tags = True +# keyid to GPG sign tags with +#keyid = 0xdeadbeef +# push to a remote repository after a successful tag: +posttag = git push --mirror +# use this for more svn-buildpackage like behaviour: +export-dir = ../build-area/openrocket/ +#tarball-dir = ../tarballs/ + +# Options only affecting git-import-orig +[git-import-orig] +#upstream-branch = newupstream +#debian-branch = dfsgclean +#filter = .svn + +# Options only affecting git-import-dsc +[git-import-dsc] +#upstream-branch = svn-upstream +#filter = [ 'CVS', '.cvsignore' ] + +# Options only affecting git-dch +[git-dch] +#git-log = --no-merges +#snapshot-number = snapshot + 1 + diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..917d9bf2 --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/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 + +%: + dh $@ -- 2.47.2