[arch-commits] Commit in pingus/repos (10 files)
Bartłomiej Piotrowski
bpiotrowski at archlinux.org
Sun Oct 9 20:30:38 UTC 2016
Date: Sunday, October 9, 2016 @ 20:30:37
Author: bpiotrowski
Revision: 191744
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
pingus/repos/community-staging-i686/
pingus/repos/community-staging-i686/ChangeLog
(from rev 191743, pingus/trunk/ChangeLog)
pingus/repos/community-staging-i686/PKGBUILD
(from rev 191743, pingus/trunk/PKGBUILD)
pingus/repos/community-staging-i686/pingus-0.7.6-gcc470-udl.patch
(from rev 191743, pingus/trunk/pingus-0.7.6-gcc470-udl.patch)
pingus/repos/community-staging-i686/pingus.desktop
(from rev 191743, pingus/trunk/pingus.desktop)
pingus/repos/community-staging-x86_64/
pingus/repos/community-staging-x86_64/ChangeLog
(from rev 191743, pingus/trunk/ChangeLog)
pingus/repos/community-staging-x86_64/PKGBUILD
(from rev 191743, pingus/trunk/PKGBUILD)
pingus/repos/community-staging-x86_64/pingus-0.7.6-gcc470-udl.patch
(from rev 191743, pingus/trunk/pingus-0.7.6-gcc470-udl.patch)
pingus/repos/community-staging-x86_64/pingus.desktop
(from rev 191743, pingus/trunk/pingus.desktop)
--------------------------------------------------------+
community-staging-i686/ChangeLog | 21 ++++++++
community-staging-i686/PKGBUILD | 38 +++++++++++++++
community-staging-i686/pingus-0.7.6-gcc470-udl.patch | 22 ++++++++
community-staging-i686/pingus.desktop | 9 +++
community-staging-x86_64/ChangeLog | 21 ++++++++
community-staging-x86_64/PKGBUILD | 38 +++++++++++++++
community-staging-x86_64/pingus-0.7.6-gcc470-udl.patch | 22 ++++++++
community-staging-x86_64/pingus.desktop | 9 +++
8 files changed, 180 insertions(+)
Copied: pingus/repos/community-staging-i686/ChangeLog (from rev 191743, pingus/trunk/ChangeLog)
===================================================================
--- community-staging-i686/ChangeLog (rev 0)
+++ community-staging-i686/ChangeLog 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,21 @@
+2010-03-18 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+
+ * pingus 0.7.2-8
+ * Rebuilt against boost 1.41.0
+
+2010-02-23 Eric Belanger <eric at archlinux.org>
+
+ * pingus 0.7.2-7
+ * Rebuilt against boost 1.42.0
+
+2010-01-20 Eric Belanger <eric at archlinux.org>
+
+ * pingus 0.7.2-6
+ * Rebuilt against libpng 1.4/libjpeg 8
+
+2009-07-13 Eric Belanger <eric at archlinux.org>
+
+ * pingus 0.7.2-2
+ * Rebuilt against boost 1.39
+ * Added gcc 4.4 patch
+ * Added ChangeLog
Copied: pingus/repos/community-staging-i686/PKGBUILD (from rev 191743, pingus/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Eric Belanger <eric at archlinux.org>
+
+pkgname=pingus
+pkgver=0.7.6
+pkgrel=19
+pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
+arch=('i686' 'x86_64')
+url="http://pingus.seul.org"
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.49')
+makedepends=('scons' 'boost>=1.49' 'mesa' 'glu')
+source=("$pkgname-$pkgver.tgz::https://github.com/Pingus/pingus/archive/v$pkgver.tar.gz"
+ 'pingus.desktop'
+ 'pingus-0.7.6-gcc470-udl.patch')
+sha1sums=('c888c277995bed84052b62d0eacbd77d0346a276'
+ '579a1144f161ce89e6e024cea37210149b89c0c0'
+ '143dd9969e8d100d29ed4f5b2039dde627afeb06')
+
+build() {
+ cd ${pkgname}-${pkgver}
+
+ # fedora patch to fix error due to new standards
+ # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51282
+ patch -Np0 -i ${srcdir}/pingus-0.7.6-gcc470-udl.patch
+ # manpage must be in man6, not man1
+ sed -i "s#/man1/#/man6/#g" Makefile
+
+ scons prefix=/usr
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+
+ make install DESTDIR="${pkgdir}" PREFIX="/usr"
+
+ install -D -m644 "${srcdir}/pingus.desktop" "${pkgdir}/usr/share/applications/pingus.desktop"
+}
Copied: pingus/repos/community-staging-i686/pingus-0.7.6-gcc470-udl.patch (from rev 191743, pingus/trunk/pingus-0.7.6-gcc470-udl.patch)
===================================================================
--- community-staging-i686/pingus-0.7.6-gcc470-udl.patch (rev 0)
+++ community-staging-i686/pingus-0.7.6-gcc470-udl.patch 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,22 @@
+--- src/pingus/pingus_main.cpp~ 2011-12-24 15:46:47.000000000 -0600
++++ src/pingus/pingus_main.cpp 2012-01-03 13:13:03.034195720 -0600
+@@ -465,7 +465,7 @@
+ void
+ PingusMain::print_greeting_message()
+ {
+- std::string greeting = "Welcome to Pingus "VERSION;
++ std::string greeting = "Welcome to Pingus " VERSION;
+ greeting += "!";
+ std::cout << greeting << std::endl;
+ for (unsigned int i = 0; i < greeting.length(); ++i)
+--- src/pingus/screens/pingus_menu.cpp~ 2011-12-24 15:46:47.000000000 -0600
++++ src/pingus/screens/pingus_menu.cpp 2012-01-03 13:30:28.967700554 -0600
+@@ -153,7 +153,7 @@
+ gc.get_height()/2 - 280));
+
+ gc.print_left(Fonts::pingus_small, Vector2i(gc.get_width()/2 - 400 + 25, gc.get_height()-140),
+- "Pingus "VERSION" - Copyright (C) 1998-2011 Ingo Ruhnke <grumbel at gmail.com>\n"
++ "Pingus " VERSION " - Copyright (C) 1998-2011 Ingo Ruhnke <grumbel at gmail.com>\n"
+ "See the file AUTHORS for a complete list of contributors.\n"
+ "Pingus comes with ABSOLUTELY NO WARRANTY. This is free software, and you are\n"
+ "welcome to redistribute it under certain conditions; see the file COPYING for details.\n");
Copied: pingus/repos/community-staging-i686/pingus.desktop (from rev 191743, pingus/trunk/pingus.desktop)
===================================================================
--- community-staging-i686/pingus.desktop (rev 0)
+++ community-staging-i686/pingus.desktop 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Pingus
+Comment=A free Lemmings[tm] clone
+Exec=pingus
+Terminal=false
+Type=Application
+Categories=Application;Game;LogicGame
+Icon=/usr/share/pingus/images/core/editor/actions.png
Copied: pingus/repos/community-staging-x86_64/ChangeLog (from rev 191743, pingus/trunk/ChangeLog)
===================================================================
--- community-staging-x86_64/ChangeLog (rev 0)
+++ community-staging-x86_64/ChangeLog 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,21 @@
+2010-03-18 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+
+ * pingus 0.7.2-8
+ * Rebuilt against boost 1.41.0
+
+2010-02-23 Eric Belanger <eric at archlinux.org>
+
+ * pingus 0.7.2-7
+ * Rebuilt against boost 1.42.0
+
+2010-01-20 Eric Belanger <eric at archlinux.org>
+
+ * pingus 0.7.2-6
+ * Rebuilt against libpng 1.4/libjpeg 8
+
+2009-07-13 Eric Belanger <eric at archlinux.org>
+
+ * pingus 0.7.2-2
+ * Rebuilt against boost 1.39
+ * Added gcc 4.4 patch
+ * Added ChangeLog
Copied: pingus/repos/community-staging-x86_64/PKGBUILD (from rev 191743, pingus/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Eric Belanger <eric at archlinux.org>
+
+pkgname=pingus
+pkgver=0.7.6
+pkgrel=19
+pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
+arch=('i686' 'x86_64')
+url="http://pingus.seul.org"
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.49')
+makedepends=('scons' 'boost>=1.49' 'mesa' 'glu')
+source=("$pkgname-$pkgver.tgz::https://github.com/Pingus/pingus/archive/v$pkgver.tar.gz"
+ 'pingus.desktop'
+ 'pingus-0.7.6-gcc470-udl.patch')
+sha1sums=('c888c277995bed84052b62d0eacbd77d0346a276'
+ '579a1144f161ce89e6e024cea37210149b89c0c0'
+ '143dd9969e8d100d29ed4f5b2039dde627afeb06')
+
+build() {
+ cd ${pkgname}-${pkgver}
+
+ # fedora patch to fix error due to new standards
+ # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51282
+ patch -Np0 -i ${srcdir}/pingus-0.7.6-gcc470-udl.patch
+ # manpage must be in man6, not man1
+ sed -i "s#/man1/#/man6/#g" Makefile
+
+ scons prefix=/usr
+}
+
+package() {
+ cd ${pkgname}-${pkgver}
+
+ make install DESTDIR="${pkgdir}" PREFIX="/usr"
+
+ install -D -m644 "${srcdir}/pingus.desktop" "${pkgdir}/usr/share/applications/pingus.desktop"
+}
Copied: pingus/repos/community-staging-x86_64/pingus-0.7.6-gcc470-udl.patch (from rev 191743, pingus/trunk/pingus-0.7.6-gcc470-udl.patch)
===================================================================
--- community-staging-x86_64/pingus-0.7.6-gcc470-udl.patch (rev 0)
+++ community-staging-x86_64/pingus-0.7.6-gcc470-udl.patch 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,22 @@
+--- src/pingus/pingus_main.cpp~ 2011-12-24 15:46:47.000000000 -0600
++++ src/pingus/pingus_main.cpp 2012-01-03 13:13:03.034195720 -0600
+@@ -465,7 +465,7 @@
+ void
+ PingusMain::print_greeting_message()
+ {
+- std::string greeting = "Welcome to Pingus "VERSION;
++ std::string greeting = "Welcome to Pingus " VERSION;
+ greeting += "!";
+ std::cout << greeting << std::endl;
+ for (unsigned int i = 0; i < greeting.length(); ++i)
+--- src/pingus/screens/pingus_menu.cpp~ 2011-12-24 15:46:47.000000000 -0600
++++ src/pingus/screens/pingus_menu.cpp 2012-01-03 13:30:28.967700554 -0600
+@@ -153,7 +153,7 @@
+ gc.get_height()/2 - 280));
+
+ gc.print_left(Fonts::pingus_small, Vector2i(gc.get_width()/2 - 400 + 25, gc.get_height()-140),
+- "Pingus "VERSION" - Copyright (C) 1998-2011 Ingo Ruhnke <grumbel at gmail.com>\n"
++ "Pingus " VERSION " - Copyright (C) 1998-2011 Ingo Ruhnke <grumbel at gmail.com>\n"
+ "See the file AUTHORS for a complete list of contributors.\n"
+ "Pingus comes with ABSOLUTELY NO WARRANTY. This is free software, and you are\n"
+ "welcome to redistribute it under certain conditions; see the file COPYING for details.\n");
Copied: pingus/repos/community-staging-x86_64/pingus.desktop (from rev 191743, pingus/trunk/pingus.desktop)
===================================================================
--- community-staging-x86_64/pingus.desktop (rev 0)
+++ community-staging-x86_64/pingus.desktop 2016-10-09 20:30:37 UTC (rev 191744)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Pingus
+Comment=A free Lemmings[tm] clone
+Exec=pingus
+Terminal=false
+Type=Application
+Categories=Application;Game;LogicGame
+Icon=/usr/share/pingus/images/core/editor/actions.png
More information about the arch-commits
mailing list