[arch-commits] Commit in pingus/trunk (PKGBUILD)

2020-08-28 Thread Frederik Schwan via arch-commits
Date: Friday, August 28, 2020 @ 12:53:38
  Author: freswa
Revision: 690793

fix unquoted variables

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-28 12:53:09 UTC (rev 690792)
+++ PKGBUILD2020-08-28 12:53:38 UTC (rev 690793)
@@ -27,7 +27,7 @@
 
   # 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
+  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
   # missing header
@@ -45,5 +45,5 @@
 
   make install DESTDIR="${pkgdir}" PREFIX="/usr"
 
-  install -D -m644 "${srcdir}/pingus.desktop" 
"${pkgdir}/usr/share/applications/pingus.desktop"
+  install -D -m644 "${srcdir}"/pingus.desktop 
"${pkgdir}"/usr/share/applications/pingus.desktop
 }


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 16:29:33
  Author: felixonmars
Revision: 659267

upgpkg: pingus 0.7.6-27: reproducibility rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-07 16:29:30 UTC (rev 659266)
+++ PKGBUILD2020-07-07 16:29:33 UTC (rev 659267)
@@ -2,7 +2,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=26
+pkgrel=27
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('x86_64')
 url="https://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD scons-python3.patch)

2019-07-27 Thread Antonio Rojas via arch-commits
Date: Saturday, July 27, 2019 @ 08:37:02
  Author: arojas
Revision: 493079

Fix build with python3 scons

Added:
  pingus/trunk/scons-python3.patch
Modified:
  pingus/trunk/PKGBUILD

-+
 PKGBUILD|8 ++--
 scons-python3.patch |   19 +++
 2 files changed, 25 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-27 08:24:56 UTC (rev 493078)
+++ PKGBUILD2019-07-27 08:37:02 UTC (rev 493079)
@@ -13,12 +13,14 @@
 'pingus.desktop'
 'pingus-0.7.6-gcc470-udl.patch'
 'missing-header.patch'
-'pingus-boost-1.69.patch')
+'pingus-boost-1.69.patch'
+ scons-python3.patch)
 
sha512sums=('ea0e7fd2cc1f6c23e62e222dffa1eb4764313ccecd716083c516fa4720c19562c9940da1dae4cbc527b85de9c0094f482e4f907212226b39ad044222b477769b'
 
'6c2a8da1bcb250217c47d70ad223c02cf12879bab201433e76bf98f5693886ab0d96da295a795bfefe1723596011d41ff615c2262a277414234b88c8e35c64c8'
 
'a6d541fc8417e49540f7760d707652d348ff46701e0d9d3df0463b1dfaca9c9781686ac1683b49bceebaca22cd9680652aaf1a65f3834f4e01cca41a002408ce'
 
'd2e04c4291c18f1b9d351137bd2143881f4bb5591baeb3c5866b05cbf06db7e6552aac6d00d1ac055e8624bfa4b312e3f5a58d7f29ceefd0dcf0c32ed24e7971'
-
'31b0c3a3c309d9f25558ab49ebffc9e9f75acf804c84374ac455476017d0ba280a73f0e347fd7b9304264ca532e3992cae841b1b0c62fd0b9eb49e7d0eb4a738')
+
'31b0c3a3c309d9f25558ab49ebffc9e9f75acf804c84374ac455476017d0ba280a73f0e347fd7b9304264ca532e3992cae841b1b0c62fd0b9eb49e7d0eb4a738'
+
'47af4a5b46ccb1ede6b87bd46d62d115beb42461e0cfdb476f8bf002f83fd659f0e6fdcce56acb6a551f842e6f895ec70149da1f9d2569c02033a0a05d2aa21e')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -32,6 +34,8 @@
   patch -Np1 -i ../missing-header.patch
   # fix build with boost 1.69
   patch -p0 -i ../pingus-boost-1.69.patch
+  # fix build with python3-scons
+  patch -p1 -i ../scons-python3.patch
 
   scons prefix=/usr
 }

Added: scons-python3.patch
===
--- scons-python3.patch (rev 0)
+++ scons-python3.patch 2019-07-27 08:37:02 UTC (rev 493079)
@@ -0,0 +1,19 @@
+--- pingus-0.7.6/SConscript.orig   2019-07-27 08:28:23.143619494 +
 pingus-0.7.6/SConscript2019-07-27 08:29:35.844531921 +
+@@ -126,12 +126,12 @@
+ def configure_end(self):
+ self.env = self.conf.Finish()
+ 
+-print "Reports:"
+-print self.reports
++print ("Reports:")
++print (self.reports)
+ 
+ if not self.fatal_error == "":
+-print "Fatal Errors:"
+-print self.fatal_error
++print ("Fatal Errors:")
++print (self.fatal_error)
+ Exit(1)
+ 
+ def configure_gxx(self): 


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2019-06-17 Thread Antonio Rojas via arch-commits
Date: Monday, June 17, 2019 @ 20:38:01
  Author: arojas
Revision: 482009

https

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-17 20:37:34 UTC (rev 482008)
+++ PKGBUILD2019-06-17 20:38:01 UTC (rev 482009)
@@ -5,7 +5,7 @@
 pkgrel=26
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('x86_64')
-url="http://pingus.seul.org;
+url="https://pingus.seul.org;
 license=('GPL')
 depends=('sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.49')
 makedepends=('scons' 'boost>=1.49' 'mesa' 'glu')


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2019-01-15 Thread Felix Yan via arch-commits
Date: Tuesday, January 15, 2019 @ 11:32:13
  Author: felixonmars
Revision: 423301

boost 1.69.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-15 11:31:53 UTC (rev 423300)
+++ PKGBUILD2019-01-15 11:32:13 UTC (rev 423301)
@@ -2,7 +2,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=25
+pkgrel=26
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD pingus-boost-1.69.patch)

2019-01-15 Thread Antonio Rojas via arch-commits
Date: Tuesday, January 15, 2019 @ 10:29:26
  Author: arojas
Revision: 423284

Fix build with boost 1.69

Added:
  pingus/trunk/pingus-boost-1.69.patch
Modified:
  pingus/trunk/PKGBUILD

-+
 PKGBUILD|8 
 pingus-boost-1.69.patch |  380 ++
 2 files changed, 386 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-15 10:22:30 UTC (rev 423283)
+++ PKGBUILD2019-01-15 10:29:26 UTC (rev 423284)
@@ -12,11 +12,13 @@
 
source=("$pkgname-$pkgver.tgz::https://github.com/Pingus/pingus/archive/v$pkgver.tar.gz;
 'pingus.desktop'
 'pingus-0.7.6-gcc470-udl.patch'
-'missing-header.patch')
+'missing-header.patch'
+'pingus-boost-1.69.patch')
 
sha512sums=('ea0e7fd2cc1f6c23e62e222dffa1eb4764313ccecd716083c516fa4720c19562c9940da1dae4cbc527b85de9c0094f482e4f907212226b39ad044222b477769b'
 
'6c2a8da1bcb250217c47d70ad223c02cf12879bab201433e76bf98f5693886ab0d96da295a795bfefe1723596011d41ff615c2262a277414234b88c8e35c64c8'
 
'a6d541fc8417e49540f7760d707652d348ff46701e0d9d3df0463b1dfaca9c9781686ac1683b49bceebaca22cd9680652aaf1a65f3834f4e01cca41a002408ce'
-
'd2e04c4291c18f1b9d351137bd2143881f4bb5591baeb3c5866b05cbf06db7e6552aac6d00d1ac055e8624bfa4b312e3f5a58d7f29ceefd0dcf0c32ed24e7971')
+
'd2e04c4291c18f1b9d351137bd2143881f4bb5591baeb3c5866b05cbf06db7e6552aac6d00d1ac055e8624bfa4b312e3f5a58d7f29ceefd0dcf0c32ed24e7971'
+
'31b0c3a3c309d9f25558ab49ebffc9e9f75acf804c84374ac455476017d0ba280a73f0e347fd7b9304264ca532e3992cae841b1b0c62fd0b9eb49e7d0eb4a738')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -28,6 +30,8 @@
   sed -i "s#/man1/#/man6/#g" Makefile
   # missing header
   patch -Np1 -i ../missing-header.patch
+  # fix build with boost 1.69
+  patch -p0 -i ../pingus-boost-1.69.patch
 
   scons prefix=/usr
 }

Added: pingus-boost-1.69.patch
===
--- pingus-boost-1.69.patch (rev 0)
+++ pingus-boost-1.69.patch 2019-01-15 10:29:26 UTC (rev 423284)
@@ -0,0 +1,380 @@
+From fef8cf6512fa4aa09e87643c22ef66de9ec7bb41 Mon Sep 17 00:00:00 2001
+From: Ingo Ruhnke 
+Date: Sat, 26 Jul 2014 20:49:11 +0200
+Subject: [PATCH] Switched to boost::signals2
+
+---
+ SConscript   |  5 ++---
+ src/editor/button.hpp|  4 ++--
+ src/editor/checkbox.hpp  |  4 ++--
+ src/editor/combobox.hpp  |  4 ++--
+ src/editor/file_list.hpp |  4 ++--
+ src/editor/inputbox.hpp  |  6 +++---
+ src/editor/message_box.hpp   |  2 +-
+ src/editor/object_selector.cpp   |  4 ++--
+ src/editor/viewport.hpp  |  4 ++--
+ src/pingus/components/check_box.hpp  |  4 ++--
+ src/pingus/components/choice_box.hpp |  4 ++--
+ src/pingus/components/slider_box.hpp |  4 ++--
+ src/pingus/config_manager.hpp| 28 ++--
+ src/pingus/screens/option_menu.hpp   |  4 ++--
+ 14 files changed, 40 insertions(+), 41 deletions(-)
+
+diff --git a/SConscript b/SConscript
+index 758567f51..c4d25a8a9 100644
+--- SConscript
 SConscript
+@@ -187,9 +187,8 @@ class Project:
+  
'src/engine/input/xinput/xinput_device.cpp'])
+ 
+ def configure_boost(self):
+-if not self.conf.CheckLibWithHeader('boost_signals', 
'boost/signals.hpp', 'c++'):
+-if not self.conf.CheckLibWithHeader('boost_signals-mt', 
'boost/signals.hpp', 'c++'):
+-self.fatal_error += "  * library 'boost_signals' not found\n"
++if not self.conf.CheckHeader('boost/signals2.hpp', '<>', 'c++'):
++self.fatal_error += "  * library 'boost_signals2' not found\n"
+ 
+ def configure_png(self):
+ if self.conf.CheckMyProgram('pkg-config'):
+diff --git a/src/editor/button.hpp b/src/editor/button.hpp
+index c85d7da9e..d89dfe669 100644
+--- src/editor/button.hpp
 src/editor/button.hpp
+@@ -17,7 +17,7 @@
+ #ifndef HEADER_PINGUS_EDITOR_BUTTON_HPP
+ #define HEADER_PINGUS_EDITOR_BUTTON_HPP
+ 
+-#include 
++#include 
+ 
+ #include "engine/gui/rect_component.hpp"
+ 
+@@ -48,7 +48,7 @@ public:
+   void enable()  { enabled = true; }
+   void disable() { enabled = false; }
+ 
+-  boost::signal on_click;
++  boost::signals2::signal on_click;
+ 
+ private:
+   Button (const Button&);
+diff --git a/src/editor/checkbox.hpp b/src/editor/checkbox.hpp
+index 7c3bc835f..66382d79b 100644
+--- src/editor/checkbox.hpp
 src/editor/checkbox.hpp
+@@ -17,7 +17,7 @@
+ #ifndef HEADER_PINGUS_EDITOR_CHECKBOX_HPP
+ #define HEADER_PINGUS_EDITOR_CHECKBOX_HPP
+ 
+-#include 
++#include 
+ 
+ #include "engine/gui/rect_component.hpp"
+ 
+@@ -40,7 +40,7 @@ public:
+   bool is_checked() const { return checked; }
+   void on_primary_button_press(int x, int y);
+ 

[arch-commits] Commit in pingus/trunk (PKGBUILD)

2018-09-17 Thread Evangelos Foutras via arch-commits
Date: Tuesday, September 18, 2018 @ 04:33:29
  Author: foutrelis
Revision: 382908

boost 1.68.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-18 04:28:57 UTC (rev 382907)
+++ PKGBUILD2018-09-18 04:33:29 UTC (rev 382908)
@@ -2,7 +2,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=24
+pkgrel=25
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2018-05-30 Thread Felix Yan via arch-commits
Date: Thursday, May 31, 2018 @ 02:41:11
  Author: felixonmars
Revision: 333922

boost 1.67.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-31 02:40:56 UTC (rev 333921)
+++ PKGBUILD2018-05-31 02:41:11 UTC (rev 333922)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=23
+pkgrel=24
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2017-12-28 Thread Felix Yan via arch-commits
Date: Thursday, December 28, 2017 @ 14:53:46
  Author: felixonmars
Revision: 276468

upgpkg: pingus 0.7.6-23

rebuild with boost 1.66.0

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-28 14:51:25 UTC (rev 276467)
+++ PKGBUILD2017-12-28 14:53:46 UTC (rev 276468)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=22
+pkgrel=23
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('x86_64')
 url="http://pingus.seul.org;
@@ -14,10 +14,10 @@
 'pingus.desktop'
 'pingus-0.7.6-gcc470-udl.patch'
 'missing-header.patch')
-sha1sums=('c888c277995bed84052b62d0eacbd77d0346a276'
-  '579a1144f161ce89e6e024cea37210149b89c0c0'
-  '143dd9969e8d100d29ed4f5b2039dde627afeb06'
-  '9e1402d43ac5e2423c573b3b3afada3a20709dd5')
+sha512sums=('ea0e7fd2cc1f6c23e62e222dffa1eb4764313ccecd716083c516fa4720c19562c9940da1dae4cbc527b85de9c0094f482e4f907212226b39ad044222b477769b'
+
'6c2a8da1bcb250217c47d70ad223c02cf12879bab201433e76bf98f5693886ab0d96da295a795bfefe1723596011d41ff615c2262a277414234b88c8e35c64c8'
+
'a6d541fc8417e49540f7760d707652d348ff46701e0d9d3df0463b1dfaca9c9781686ac1683b49bceebaca22cd9680652aaf1a65f3834f4e01cca41a002408ce'
+
'd2e04c4291c18f1b9d351137bd2143881f4bb5591baeb3c5866b05cbf06db7e6552aac6d00d1ac055e8624bfa4b312e3f5a58d7f29ceefd0dcf0c32ed24e7971')
 
 build() {
   cd ${pkgname}-${pkgver}


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2017-09-11 Thread Bartłomiej Piotrowski
Date: Monday, September 11, 2017 @ 20:30:39
  Author: bpiotrowski
Revision: 257026

0.7.6-22: rebuild against boost 1.65.1

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-11 20:19:43 UTC (rev 257025)
+++ PKGBUILD2017-09-11 20:30:39 UTC (rev 257026)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=21
+pkgrel=22
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD missing-header.patch)

2017-05-19 Thread Laurent Carlier
Date: Friday, May 19, 2017 @ 18:20:30
  Author: lcarlier
Revision: 228596

upgpkg: pingus 0.7.6-21

boost 1.64.0 rebuild

Added:
  pingus/trunk/missing-header.patch
Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 missing-header.patch |   22 ++
 2 files changed, 29 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-19 17:51:38 UTC (rev 228595)
+++ PKGBUILD2017-05-19 18:20:30 UTC (rev 228596)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=20
+pkgrel=21
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;
@@ -12,10 +12,12 @@
 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')
+'pingus-0.7.6-gcc470-udl.patch'
+'missing-header.patch')
 sha1sums=('c888c277995bed84052b62d0eacbd77d0346a276'
   '579a1144f161ce89e6e024cea37210149b89c0c0'
-  '143dd9969e8d100d29ed4f5b2039dde627afeb06')
+  '143dd9969e8d100d29ed4f5b2039dde627afeb06'
+  '9e1402d43ac5e2423c573b3b3afada3a20709dd5')
 
 build() {
   cd ${pkgname}-${pkgver}
@@ -25,6 +27,8 @@
   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
+  # missing header
+  patch -Np1 -i ../missing-header.patch
 
   scons prefix=/usr
 }

Added: missing-header.patch
===
--- missing-header.patch(rev 0)
+++ missing-header.patch2017-05-19 18:20:30 UTC (rev 228596)
@@ -0,0 +1,22 @@
+From df6e2f445d3e2925a94d22faeb17be9444513e92 Mon Sep 17 00:00:00 2001
+From: Jonathan Wakely 
+Date: Mon, 30 Jan 2017 15:41:53 +
+Subject: [PATCH] Add missing header for std::function and std::bind
+
+---
+ src/pingus/screens/demo_session.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/pingus/screens/demo_session.cpp 
b/src/pingus/screens/demo_session.cpp
+index e3ec49a2c..f887e50f0 100644
+--- a/src/pingus/screens/demo_session.cpp
 b/src/pingus/screens/demo_session.cpp
+@@ -18,6 +18,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ #include "engine/gui/gui_manager.hpp"
+ #include "engine/gui/surface_button.hpp"
+


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2017-01-02 Thread Bartłomiej Piotrowski
Date: Monday, January 2, 2017 @ 12:23:17
  Author: bpiotrowski
Revision: 204294

upgpkg: pingus 0.7.6-20

rebuild against boost 1.63.0

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-02 12:17:10 UTC (rev 204293)
+++ PKGBUILD2017-01-02 12:23:17 UTC (rev 204294)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=19
+pkgrel=20
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2016-10-09 Thread Bartłomiej Piotrowski
Date: Sunday, October 9, 2016 @ 20:30:30
  Author: bpiotrowski
Revision: 191743

upgpkg: pingus 0.7.6-19

rebuild against boost 1.62.0

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-09 20:23:57 UTC (rev 191742)
+++ PKGBUILD2016-10-09 20:30:30 UTC (rev 191743)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=18
+pkgrel=19
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;
@@ -10,10 +10,10 @@
 license=('GPL')
 depends=('sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.49')
 makedepends=('scons' 'boost>=1.49' 'mesa' 'glu')
-source=("http://pingus.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2;
+source=("$pkgname-$pkgver.tgz::https://github.com/Pingus/pingus/archive/v$pkgver.tar.gz;
 'pingus.desktop'
 'pingus-0.7.6-gcc470-udl.patch')
-sha1sums=('b5f5a25d71beb197c9466fb8928018a377f56487'
+sha1sums=('c888c277995bed84052b62d0eacbd77d0346a276'
   '579a1144f161ce89e6e024cea37210149b89c0c0'
   '143dd9969e8d100d29ed4f5b2039dde627afeb06')
 


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2016-08-23 Thread Laurent Carlier
Date: Tuesday, August 23, 2016 @ 16:38:53
  Author: lcarlier
Revision: 187412

upgpkg: pingus 0.7.6-18

boost 1.61 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-23 16:29:58 UTC (rev 187411)
+++ PKGBUILD2016-08-23 16:38:53 UTC (rev 187412)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=17
+pkgrel=18
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2015-12-21 Thread Evangelos Foutras
Date: Monday, December 21, 2015 @ 18:30:57
  Author: foutrelis
Revision: 153963

boost 1.60.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-21 17:27:19 UTC (rev 153962)
+++ PKGBUILD2015-12-21 17:30:57 UTC (rev 153963)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=16
+pkgrel=17
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2015-12-06 Thread Bartłomiej Piotrowski
Date: Monday, December 7, 2015 @ 00:30:55
  Author: bpiotrowski
Revision: 149357

C++11 ABI rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 23:18:19 UTC (rev 149356)
+++ PKGBUILD2015-12-06 23:30:55 UTC (rev 149357)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=15
+pkgrel=16
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2015-10-15 Thread Florian Pritz
Date: Thursday, October 15, 2015 @ 14:52:33
  Author: bluewind
Revision: 144158

boost 1.59.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-10-15 12:52:15 UTC (rev 144157)
+++ PKGBUILD2015-10-15 12:52:33 UTC (rev 144158)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=14
+pkgrel=15
 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game."
 arch=('i686' 'x86_64')
 url="http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2015-04-22 Thread Jelle van der Waa
Date: Wednesday, April 22, 2015 @ 21:59:34
  Author: jelle
Revision: 132000

upgpkg: pingus 0.7.6-14

boost 1.58.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-04-22 19:43:12 UTC (rev 131999)
+++ PKGBUILD2015-04-22 19:59:34 UTC (rev 132000)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=13
+pkgrel=14
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2014-11-04 Thread Felix Yan
Date: Wednesday, November 5, 2014 @ 04:12:39
  Author: fyan
Revision: 121923

upgpkg: pingus 0.7.6-13

boost 1.57.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-11-05 02:36:05 UTC (rev 121922)
+++ PKGBUILD2014-11-05 03:12:39 UTC (rev 121923)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=12
+pkgrel=13
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;


[arch-commits] Commit in pingus/trunk (PKGBUILD)

2014-08-12 Thread Bartłomiej Piotrowski
Date: Tuesday, August 12, 2014 @ 12:30:28
  Author: bpiotrowski
Revision: 117275

upgpkg: pingus 0.7.6-12

rebuild against boost 1.56.0

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-08-12 10:18:14 UTC (rev 117274)
+++ PKGBUILD2014-08-12 10:30:28 UTC (rev 117275)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=11
+pkgrel=12
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;



[arch-commits] Commit in pingus/trunk (PKGBUILD)

2014-01-25 Thread Laurent Carlier
Date: Saturday, January 25, 2014 @ 19:55:30
  Author: lcarlier
Revision: 104767

upgpkg: pingus 0.7.6-11

Fix manpage location (FS#38658)

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-25 18:55:29 UTC (rev 104766)
+++ PKGBUILD2014-01-25 18:55:30 UTC (rev 104767)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=10
+pkgrel=11
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;
@@ -23,6 +23,8 @@
   # 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
 }



[arch-commits] Commit in pingus/trunk (PKGBUILD)

2013-11-29 Thread Jelle van der Waa
Date: Friday, November 29, 2013 @ 15:34:41
  Author: jelle
Revision: 101624

upgpkg: pingus 0.7.6-10

boost 1.55.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-11-29 14:10:27 UTC (rev 101623)
+++ PKGBUILD2013-11-29 14:34:41 UTC (rev 101624)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=9
+pkgrel=10
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;



[arch-commits] Commit in pingus/trunk (PKGBUILD)

2013-07-07 Thread Laurent Carlier
Date: Sunday, July 7, 2013 @ 23:15:31
  Author: lcarlier
Revision: 93628

upgpkg: pingus 0.7.6-9

boost 1.54.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-07-07 16:18:34 UTC (rev 93627)
+++ PKGBUILD2013-07-07 21:15:31 UTC (rev 93628)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=8
+pkgrel=9
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;



[arch-commits] Commit in pingus/trunk (PKGBUILD)

2013-04-28 Thread Laurent Carlier
Date: Sunday, April 28, 2013 @ 12:34:55
  Author: lcarlier
Revision: 89257

upgpkg: pingus 0.7.6-8

libpng-1.6 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-28 10:34:36 UTC (rev 89256)
+++ PKGBUILD2013-04-28 10:34:55 UTC (rev 89257)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=7
+pkgrel=8
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;



[arch-commits] Commit in pingus/trunk (PKGBUILD)

2013-03-28 Thread Laurent Carlier
Date: Thursday, March 28, 2013 @ 11:57:47
  Author: lcarlier
Revision: 87161

upgpkg: pingus 0.7.6-7

boost 1.53.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-28 10:52:15 UTC (rev 87160)
+++ PKGBUILD2013-03-28 10:57:47 UTC (rev 87161)
@@ -3,7 +3,7 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=6
+pkgrel=7
 pkgdesc=A Lemmings clone, i.e. a level-based puzzle game.
 arch=('i686' 'x86_64')
 url=http://pingus.seul.org;



[arch-commits] Commit in pingus/trunk (PKGBUILD)

2013-01-23 Thread lcarlier
Date: Wednesday, January 23, 2013 @ 09:34:26
  Author: lcarlier
Revision: 82696

upgpkg: pingus 0.7.6-6

boost 1.52.0 rebuild

Modified:
  pingus/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-01-23 00:16:05 UTC (rev 82695)
+++ PKGBUILD2013-01-23 08:34:26 UTC (rev 82696)
@@ -3,19 +3,16 @@
 
 pkgname=pingus
 pkgver=0.7.6
-pkgrel=5
+pkgrel=6
 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')
+makedepends=('scons' 'boost=1.49' 'mesa' 'glu')
 source=(http://pingus.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2;
 'pingus.desktop'
 'pingus-0.7.6-gcc470-udl.patch')
-md5sums=('561798686f34d3fa4e69135d655f47ac'
- '9eec34047bdcff49e08f41e81764e20c'
- '3730bdad38c21c67203456a985945473')
 sha1sums=('b5f5a25d71beb197c9466fb8928018a377f56487'
   '579a1144f161ce89e6e024cea37210149b89c0c0'
   '143dd9969e8d100d29ed4f5b2039dde627afeb06')