This is an automated email from the git hooks/post-receive script. jpuydt-guest pushed a commit to branch master in repository minetest-mod-xdecor.
commit 67ca7dc7a0ed689e315dba7f7889ce6464b43bca Author: Julien Puydt <[email protected]> Date: Sat Aug 26 12:08:00 2017 +0200 Initial packaging --- debian/changelog | 5 +++ debian/compat | 1 + debian/control | 18 ++++++++++ debian/copyright | 78 +++++++++++++++++++++++++++++++++++++++++ debian/docs | 1 + debian/install | 7 ++++ debian/rules | 4 +++ debian/source/format | 1 + debian/source/lintian-overrides | 2 ++ debian/watch | 2 ++ 10 files changed, 119 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..737cbd6 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +minetest-mod-xdecor (1.0-1) unstable; urgency=medium + + * Initial release. (Closes: #873296) + + -- Julien Puydt <[email protected]> Sat, 26 Aug 2017 11:41:51 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..4882c6f --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: minetest-mod-xdecor +Section: games +Priority: optional +Maintainer: Debian Games Team <[email protected]> +Uploaders: Julien Puydt <[email protected]> +Build-Depends: debhelper (>= 10) +Standards-Version: 4.0.1 +Homepage: https://github.com/minetest-mods/xdecor +Vcs-Git: https://anonscm.debian.org/git/pkg-games/minetest-mod-xdecor.git +Vcs-Browser: https://anonscm.debian.org/git/pkg-games/minetest-mod-xdecor.git + +Package: minetest-mod-xdecor +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, minetest | minetest-server +Description: Lightweight decoration module for minetest + This module adds a bunch of cute cubes as well as various mechanisms to + the game, like for example Ender chests, cooking recipes, cutting, + enchanting, a chess board... diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3901911 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,78 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: xdecor +Homepage: https://github.com/minetest-mods/xdecor + +Files: * +Copyright: 2015-2017 Jean-Patrick Guerrero (kilbith) +License: GPL-3 + +Files: textures/* +Copyright: 2015-2017 Jean-Patrick Guerrero (kilbith) + 2015-2017 Gambit + 2015-2017 Cisoun +License: WTFPL + +Files: sounds/xdecor_boiling_water.ogg +Copyright: 2011 Audionautics +License: CC-BY-3.0 +Comment: https://www.freesound.org/people/Audionautics/sounds/133901/ + +Files: sounds/xdecor_enchanting.ogg +Copyright: 2014 Timbre +License: CC-BY-NC-3.0 +Comment: https://www.freesound.org/people/Timbre/sounds/221683/ + +Files: sounds/xdecor_bouncy.ogg +Copyright: 2010 Blender Foundation +License: CC-BY-3.0 +Comment: https://www.opengameart.org/content/funny-comic-cartoon-bounce-sound + +Files: debian/* +Copyright: 2017 Julien Puydt <[email protected]> +License: GPL-3 + +License: GPL-3 + This program is free software; you can redistribute it and/or modify + it under the terms of the version 3 of the GNU General Public License + as published by the Free Software Foundation. + . + This program 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, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + . + On Debian systems, the complete text of the GNU General Public + License version 3 can be found in `/usr/share/common-licenses/GPL-3' + +License: CC-BY-3.0 + This work is licenced under the Creative Commons Attribution 3.0 Unported + License. To view a copy of this licence, visit + http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative + Commons, 171 Second Street, Suite 300, San Francisco, California 94105, + USA. + +License: CC-BY-NC-3.0 + This work is licenced under the Creative Commons Attribution-NonCommercial + 3.0 Unported License. To view a copy of this licence, visit + http://creativecommons.org/licenses/by-nc/3.0/ or send a letter to + Creative Commons, 171 Second Street, Suite 300, San Francisco, + California 94105, USA. + +License: WTFPL + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + . + Copyright (C) 2004 Sam Hocevar <[email protected]> + . + Everyone is permitted to copy and distribute verbatim or modified copies of + this license document, and changing it is allowed as long as the name is + changed. + . + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + . + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..b43bf86 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.md diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..1b28ca1 --- /dev/null +++ b/debian/install @@ -0,0 +1,7 @@ +init.lua /usr/share/games/minetest/mods/xdecor/ +depends.txt /usr/share/games/minetest/mods/xdecor/ +mod.conf /usr/share/games/minetest/mods/xdecor/ +handlers /usr/share/games/minetest/mods/xdecor/ +src /usr/share/games/minetest/mods/xdecor/ +sounds /usr/share/games/minetest/mods/xdecor/ +textures /usr/share/games/minetest/mods/xdecor/ diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ 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/source/lintian-overrides b/debian/source/lintian-overrides new file mode 100644 index 0000000..18372b5 --- /dev/null +++ b/debian/source/lintian-overrides @@ -0,0 +1,2 @@ +# It needs to be tested by hand for now +minetest-mod-xdecor: testsuite-autopkgtest-missing diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..49ff440 --- /dev/null +++ b/debian/watch @@ -0,0 +1,2 @@ +version=4 +https://github.com/minetest-mods/xdecor/releases .*/([\d\.]+).tar.gz -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/minetest-mod-xdecor.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

