summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorcarl.george2015-06-17 16:17:42 -0500
committercarl.george2015-06-17 16:17:42 -0500
commit40d9a762f9241a832b64d2be5bb074ad3c86067c (patch)
tree7d8316a9d808b961474705da2cad496024cee763
parent838068a7a229f4185ff0252771bc173ea5ea3de0 (diff)
downloadaur-40d9a762f9241a832b64d2be5bb074ad3c86067c.tar.gz
1.5.2-1
* 0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch fixed upstream
-rw-r--r--.SRCINFO14
-rw-r--r--0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch84
-rw-r--r--PKGBUILD13
3 files changed, 11 insertions, 100 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 94938d4c68a5..6dcb2fb044b2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = redeclipse
pkgdesc = free, casual arena shooter
- pkgver = 1.5.1
- pkgrel = 2
+ pkgver = 1.5.2
+ pkgrel = 1
url = http://redeclipse.net
install = redeclipse.install
arch = i686
@@ -18,12 +18,10 @@ pkgbase = redeclipse
depends = sdl_mixer
depends = hicolor-icon-theme
depends = glu
- source = base-1.5.1.tar.gz::https://github.com/red-eclipse/base/archive/v1.5.1.tar.gz
- source = data-1.5.1.tar.gz::https://github.com/red-eclipse/data/archive/v1.5.1.tar.gz
- source = 0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch
- sha256sums = 2982c4337f4b344c6d77def6b2baec3a2b99b70a88752137475845f95c4d5193
- sha256sums = eba632f57b4fa76d6701950907231b354398883613da36c17dbc062c1758dd37
- sha256sums = 390e51b2a4fe73da94a044ed46f03ca7257335e5bef021eb1b1bf73bb4236cc1
+ source = base-1.5.2.tar.gz::https://github.com/red-eclipse/base/archive/v1.5.2.tar.gz
+ source = data-1.5.2.tar.gz::https://github.com/red-eclipse/data/archive/v1.5.2.tar.gz
+ sha256sums = 6c50e44b05d9bcad6793b3330108c439798df41c43e64a30a78b2dc362465c63
+ sha256sums = eb2133698166de3b1f7bdd413d593f2710cac7e9df4f8750c8523c3987beb78f
pkgname = redeclipse
diff --git a/0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch b/0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch
deleted file mode 100644
index 875ecfdcc6b3..000000000000
--- a/0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-From 0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9 Mon Sep 17 00:00:00 2001
-From: Martin Erik Werner <martinerikwerner@gmail.com>
-Date: Fri, 3 Apr 2015 11:23:59 +0200
-Subject: [PATCH] system-install: Add common install target for common config
-
-version.cfg is needed by both client and server, in order to cater to
-this the simplest solution seems to be to stuff the whole config dir in
-a common install target (instead of picking out the version.cfg file
-specifically, and mess with exclusion when handling the config dir in
-other targets). In distro packaging, this might make a separate package.
----
- src/system-install.mk | 24 +++++++++++++++---------
- 1 file changed, 15 insertions(+), 9 deletions(-)
-
-diff --git a/src/system-install.mk b/src/system-install.mk
-index e6eae10..1f0b1cd 100644
---- a/src/system-install.mk
-+++ b/src/system-install.mk
-@@ -55,6 +55,7 @@ icons: $(ICONS)
- system-install-client: client
- $(MKDIR) $(libexecdir)/$(appname)
- $(MKDIR) $(gamesbindir)
-+ $(MKDIR) $(datadir)/$(appname)
- install -m755 $(appclient) $(libexecdir)/$(appname)/$(appname)
- install -m755 install/nix/$(appsrcname).am \
- $(gamesbindir)/$(appname)
-@@ -89,14 +90,17 @@ system-install-server: server
- g,@APPNAME@,\
- s,@APPNAME@,$(appname),g\n\
- w\n" | ed -s $(gamesbindir)/$(appname)-server
-- install -m644 ../config/version.cfg \
-- $(datadir)/$(appname)/version.cfg
-- ln -s $(patsubst $(DESTDIR)%,%,$(datadir))/$(appname)/version.cfg \
-- $(libexecdir)/$(appname)/version.cfg
-+
-+system-install-common:
-+ $(MKDIR) $(libexecdir)/$(appname)
-+ $(MKDIR) $(datadir)/$(appname)
-+ cp -r ../config $(datadir)/$(appname)/config
-+ ln -s $(patsubst $(DESTDIR)%,%,$(datadir))/$(appname)/config \
-+ $(libexecdir)/$(appname)/config
-
- system-install-data:
-+ $(MKDIR) $(datadir)/$(appname)
- cp -r ../data $(datadir)/$(appname)/data
-- rm -f $(datadir)/$(appname)/data/misc/largeandincharge.png
-
- system-install-docs: $(MANPAGES)
- $(MKDIR) $(mandir)/man6
-@@ -154,12 +158,15 @@ system-install-cube2font-docs: ../doc/man/cube2font.1
- gzip -9 -n -c < ../doc/man/cube2font.1 \
- > $(mandir)/man1/cube2font.1.gz
-
--system-install: system-install-client system-install-server system-install-data system-install-docs system-install-menus
-+system-install: system-install-client system-install-server system-install-common system-install-data system-install-docs system-install-menus
-+
-+system-uninstall-common:
-+ rm -rf $(datadir)/$(appname)/config
-+ @rm -fv $(libexecdir)/$(appname)/config
-
- system-uninstall-client:
- @rm -fv $(libexecdir)/$(appname)/$(appname)
- @rm -fv $(libexecdir)/$(appname)/data
-- @rm -fv $(libexecdir)/$(appname)/version.cfg
- @rm -fv $(gamesbindir)/$(appname)
-
- system-uninstall-server:
-@@ -168,7 +175,6 @@ system-uninstall-server:
-
- system-uninstall-data:
- rm -rf $(datadir)/$(appname)/data
-- rm -fv $(datadir)/$(appname)/version.cfg
-
- system-uninstall-docs:
- @rm -rfv $(docdir)/$(appname)/examples
-@@ -185,7 +191,7 @@ system-uninstall-menus:
- @rm -fv $(icondir)/128x128/apps/$(appname).png
- @rm -fv $(pixmapdir)/$(appname).xpm
-
--system-uninstall: system-uninstall-client system-uninstall-server system-uninstall-data system-uninstall-docs system-uninstall-menus
-+system-uninstall: system-uninstall-client system-uninstall-server system-uninstall-common system-uninstall-data system-uninstall-docs system-uninstall-menus
- -@rmdir -v $(libexecdir)/$(appname)
- -@rmdir -v $(datadir)/$(appname)
- -@rmdir -v $(docdir)/$(appname)
diff --git a/PKGBUILD b/PKGBUILD
index 89686b89da61..49ead96e5e56 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,8 +4,8 @@
# Contributor: Martin Erik Werner ("arand") <martinerikwerner@gmail.com>
pkgname="redeclipse"
-pkgver="1.5.1"
-pkgrel="2"
+pkgver="1.5.2"
+pkgrel="1"
pkgdesc="free, casual arena shooter"
arch=("i686" "x86_64")
url="http://redeclipse.net"
@@ -14,17 +14,14 @@ makedepends=("ed")
depends=("sdl_image" "libgl" "sdl_mixer" "hicolor-icon-theme" "glu")
install="redeclipse.install"
source=("base-${pkgver}.tar.gz::https://github.com/red-eclipse/base/archive/v${pkgver}.tar.gz"
- "data-${pkgver}.tar.gz::https://github.com/red-eclipse/data/archive/v${pkgver}.tar.gz"
- "0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch")
-sha256sums=('2982c4337f4b344c6d77def6b2baec3a2b99b70a88752137475845f95c4d5193'
- 'eba632f57b4fa76d6701950907231b354398883613da36c17dbc062c1758dd37'
- '390e51b2a4fe73da94a044ed46f03ca7257335e5bef021eb1b1bf73bb4236cc1')
+ "data-${pkgver}.tar.gz::https://github.com/red-eclipse/data/archive/v${pkgver}.tar.gz")
+sha256sums=('6c50e44b05d9bcad6793b3330108c439798df41c43e64a30a78b2dc362465c63'
+ 'eb2133698166de3b1f7bdd413d593f2710cac7e9df4f8750c8523c3987beb78f')
prepare() {
cd "${srcdir}/base-${pkgver}"
rmdir data
mv "${srcdir}/data-${pkgver}" data
- patch -p1 -i "${srcdir}/0e67905e42fae53e7d1f377fe8cd7e6a88f3cbb9.patch"
}
build() {