[vor] 02/06: Adds the /debian directory and required files for packaging

Ana Custura ana.c-guest at moszumanska.debian.org
Fri Apr 29 13:29:08 UTC 2016


This is an automated email from the git hooks/post-receive script.

ana.c-guest pushed a commit to branch master
in repository vor.

commit 499168b5a351fa4f21a3d6fc1b8d8a71896d8695
Author: Ana Custura <ana at netstat.org.uk>
Date:   Thu Apr 28 17:08:09 2016 +0100

    Adds the /debian directory and required files for packaging
---
 debian/changelog     |  5 +++
 debian/compat        |  1 +
 debian/control       | 17 +++++++++++
 debian/copyright     | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules         | 25 +++++++++++++++
 debian/source/format |  1 +
 debian/vor.1         | 32 +++++++++++++++++++
 debian/watch         |  5 +++
 8 files changed, 172 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..28b2c77
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+vor (0.5.6-1) unstable; urgency=medium
+
+  * Repackages VOR in Debian (Closes: #814390)  
+
+ -- Ana Custura <ana at netstat.org.uk>  Thu, 28 Apr 2016 14:41:37 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..d02b91d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: vor
+Section: games
+Priority: optional
+Maintainer: Ana Custura <ana at netstat.org.uk>
+Build-Depends: debhelper (>=9),autotools-dev,libsdl-mixer1.2-dev,libsdl-image1.2-dev,libsdl1.2-dev,povray,netpbm,pkg-config
+Standards-Version: 3.9.7
+Homepage: http://sametwice.com/vor
+#Vcs-Git: git://anonscm.debian.org/collab-maint/vor.git
+#Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/vor.git
+
+Package: vor
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Simple, fast-paced action game about dodging rocks in space.
+ VoR is a simple, fast-paced action game that will challenge your reflexes. It
+ has excellent gameplay, great physics, good graphics, and a retro/synthoid
+ thumpy beat to help put you in the mood for old-school 2D gaming.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5e36e9a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,86 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: vor
+Source: http://qualdan.com/vor/vor-0.5.6.tar.bz2 
+
+Files: *
+Copyright: 
+ 2007 Jason Woofenden <jason at jasonwoof.com>
+ 2004 Joshua Grams <josh at qualdan.com>
+ 2001 Paul Holt <pad at pcholt.com>	
+License: GPL-2+
+
+Files: debian/*
+Copyright: 2016 Ana Custura <ana at netstat.org.uk>
+License: GPL-2+
+
+Files: ./mt.c
+Copyright: 1997 - 2002 Makoto Matsumotoi, Takuji Nishimura
+License: BSD-2-clause
+
+Files: ./install-sh
+Copyright: 1994 X Consortium
+License: X11 
+
+License: GPL-2+
+ 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 program. If not, see <https://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+
+License: BSD-2-clause 
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE FREEBSD PROJECT ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+ EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ The views and conclusions contained in the software and documentation are those
+ of the authors and should not be interpreted as representing official policies,
+ either expressed or implied, of the FreeBSD Project.
+
+
+License: X11
+ Permission to use, copy, modify, distribute, and sell this software and its
+ documentation for any purpose is hereby granted without fee, provided that
+ the above copyright notice appear in all copies and that both that copyright
+ notice and this permission notice appear in supporting documentation, and
+ that the name of the copyright holders not be used in advertising or
+ publicity pertaining to distribution of the software without specific,
+ written prior permission.  The copyright holders make no representations
+ about the suitability of this software for any purpose.  It is provided "as
+ is" without express or implied warranty.
+ .
+ THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+ EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+ DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
+ OF THIS SOFTWARE.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..5b93ed0
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#export DH_VERBOSE = 1
+
+
+# see FEATURE AREAS in dpkg-buildflags(1)
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+# see ENVIRONMENT in dpkg-buildflags(1)
+# package maintainers to append CFLAGS
+#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
+# package maintainers to append LDFLAGS
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+
+%:
+	dh $@  --with autotools_dev
+
+
+# dh_make generated override targets
+# This is example for Cmake (See https://bugs.debian.org/641051 )
+#override_dh_auto_configure:
+#	dh_auto_configure -- #	-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/vor.1 b/debian/vor.1
new file mode 100644
index 0000000..8ab8d22
--- /dev/null
+++ b/debian/vor.1
@@ -0,0 +1,32 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" (C) Copyright 2016 Ana Custura <ana at netstat.org.uk>,
+.\"
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH Vor SECTION "April 28 2016"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+vor \- 2D action space game 
+.SH SYNOPSIS
+.B vor
+.SH DESCRIPTION
+.PP
+\fBVor\fP is a 2D game centred around dodging rocks in space. Use arrow keys to navigate. For more information see http://sametwice.com/vor.
+.br
+.SH AUTHOR
+Vor is developed by Jason Woofen.
+.PP
+This manual page for was written by Ana C. for the Debian project (and may be used by others).
+~                                                   
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..f7e4cc9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,5 @@
+# Compulsory line, this is a version 4 file
+version=4
+
+# HTTP site (basic)
+http://qualdan.com/vor/ vor-(\d[\.\d]+)\.tar\.bz2 debian uupdate

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/vor.git



More information about the Pkg-games-commits mailing list