summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Swanson2017-06-17 11:10:35 -0700
committerMike Swanson2017-06-17 11:10:35 -0700
commit0324c57685cfb76db3c078e8bb3d0fea0f3f1e6f (patch)
tree81b690f0c27f273086b8e52a14958206e1e3b6b0
parent1e1b59fe801be7b5db2eddd3dfa27914c242e90b (diff)
downloadaur-0324c57685cfb76db3c078e8bb3d0fea0f3f1e6f.tar.gz
Update to 4.1
-rw-r--r--.SRCINFO10
-rw-r--r--0001-bash-completion-Use-autoconf-substitutions-for-the-c.patch167
-rw-r--r--PKGBUILD8
-rw-r--r--crispy-doom.install2
4 files changed, 7 insertions, 180 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3f370320d79b..33d4fd3db217 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by mksrcinfo v8
-# Mon Mar 13 06:48:00 UTC 2017
+# Sat Jun 17 18:08:22 UTC 2017
pkgbase = crispy-doom
pkgdesc = Vanilla-compatible enhanced Doom engine
- pkgver = 4.0
+ pkgver = 4.1
pkgrel = 1
url = http://fabiangreffrath.github.io/crispy-doom
install = crispy-doom.install
@@ -17,10 +17,8 @@ pkgbase = crispy-doom
optdepends = freedm: Free deathmatch game
optdepends = freedoom1: Free Ultimate Doom-compatible game
optdepends = freedoom2: Free Doom II/Final Doom-compatible game
- source = https://github.com/fabiangreffrath/crispy-doom/archive/crispy-doom-4.0.tar.gz
- source = 0001-bash-completion-Use-autoconf-substitutions-for-the-c.patch
- sha512sums = c5726e6624c367cb0c9f308bc317e19c91b2ce954e03724977116af8782062405de123bbbe5d86858b3bdb44bc3c14f02d2e1cf867b5bcd89233218627c57fb1
- sha512sums = 8e3a10bc58bed9ac0623d9962ee3449a8c7dc07cc368445ee2d0a3aea14d1d46074d9655a78a61459683325c8cffee0b1b3c5201010271318c22e0543892357f
+ source = https://github.com/fabiangreffrath/crispy-doom/archive/crispy-doom-4.1.tar.gz
+ sha512sums = b285ccce3550d060b75b3a0ae5ea0696708cb263cb016d6637f34215c0fed77709df918b86d71da27a94d9bde3b7f9e2abf7d2f1d8ccc66cd9c3b939613c9950
pkgname = crispy-doom
diff --git a/0001-bash-completion-Use-autoconf-substitutions-for-the-c.patch b/0001-bash-completion-Use-autoconf-substitutions-for-the-c.patch
deleted file mode 100644
index b3dc05b020f1..000000000000
--- a/0001-bash-completion-Use-autoconf-substitutions-for-the-c.patch
+++ /dev/null
@@ -1,167 +0,0 @@
-From e61ea3e2251a5a84c321aab4c861497089edc791 Mon Sep 17 00:00:00 2001
-From: Mike Swanson <mikeonthecomputer@gmail.com>
-Date: Sun, 12 Mar 2017 23:27:11 -0700
-Subject: [PATCH] bash-completion: Use autoconf substitutions for the chocolate
- name
-
-Introduce a new PROGRAM_SPREFIX variable in configure.ac, which is
-basically identical to PROGRAM_PREFIX but without the trailing hyphen.
-PROGRAM_PREFIX was also redefined so that it bases its name from
-PACKAGE_SHORTNAME, reducing the number of hardcoded chocolates in the
-source.
----
- configure.ac | 12 ++++++++----
- man/bash-completion/.gitignore | 1 +
- man/bash-completion/{doom.template => doom.template.in} | 6 +++---
- .../{heretic.template => heretic.template.in} | 6 +++---
- man/bash-completion/{hexen.template => hexen.template.in} | 6 +++---
- man/bash-completion/{strife.template => strife.template.in} | 6 +++---
- 6 files changed, 21 insertions(+), 16 deletions(-)
- rename man/bash-completion/{doom.template => doom.template.in} (87%)
- rename man/bash-completion/{heretic.template => heretic.template.in} (85%)
- rename man/bash-completion/{hexen.template => hexen.template.in} (84%)
- rename man/bash-completion/{strife.template => strife.template.in} (85%)
-
-diff --git a/configure.ac b/configure.ac
-index 7d1ffa9d..e622b2c1 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -146,15 +146,15 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
- WINDOWS_RC_VERSION=`echo $PACKAGE_VERSION | sed 's/-.*//; s/\./, /g; s/$/, 0, 0/'`
-
--# This controls the prefix added to the start of program names. For example,
--# if this is changed to "lemon-", the programs generated will be named
--# lemon-doom, lemon-heretic, etc.
-+PROGRAM_PREFIX=${PACKAGE_SHORTNAME,}-
-
--PROGRAM_PREFIX=crispy-
-+dnl Without a hyphen. This is used for the bash-completion scripts.
-+PROGRAM_SPREFIX=${PACKAGE_SHORTNAME,}
-
- AC_SUBST(PROGRAM_PREFIX)
- AC_DEFINE_UNQUOTED(PROGRAM_PREFIX, "$PROGRAM_PREFIX",
- Change this when you create your awesome forked version)
-+AC_SUBST(PROGRAM_SPREFIX)
-
- AM_CONFIG_HEADER(config.h:config.hin)
-
-@@ -184,6 +184,10 @@ AC_OUTPUT([
- Makefile
- man/Makefile
- man/bash-completion/Makefile
-+man/bash-completion/doom.template
-+man/bash-completion/heretic.template
-+man/bash-completion/hexen.template
-+man/bash-completion/strife.template
- opl/Makefile
- opl/examples/Makefile
- pcsound/Makefile
-diff --git a/man/bash-completion/.gitignore b/man/bash-completion/.gitignore
-index 74c4d54a..488df26a 100644
---- a/man/bash-completion/.gitignore
-+++ b/man/bash-completion/.gitignore
-@@ -2,3 +2,4 @@
- *heretic
- *hexen
- *strife
-+*.template
-diff --git a/man/bash-completion/doom.template b/man/bash-completion/doom.template.in
-similarity index 87%
-rename from man/bash-completion/doom.template
-rename to man/bash-completion/doom.template.in
-index 535ad2a0..e4f3dcb0 100644
---- a/man/bash-completion/doom.template
-+++ b/man/bash-completion/doom.template.in
-@@ -1,6 +1,6 @@
--# bash completion for Chocolate Doom -*- shell-script -*-
-+# bash completion for @PACKAGE_SHORTNAME@ Doom -*- shell-script -*-
-
--_chocolate_doom()
-+_@PROGRAM_SPREFIX@_doom()
- {
- local cur prev words cword
- _init_completion || return
-@@ -46,6 +46,6 @@ _chocolate_doom()
- fi
- } &&
-
--complete -F _chocolate_doom chocolate-doom
-+complete -F _@PROGRAM_SPREFIX@_doom @PROGRAM_PREFIX@doom
-
- # ex: ts=4 sw=4 et filetype=sh
-diff --git a/man/bash-completion/heretic.template b/man/bash-completion/heretic.template.in
-similarity index 85%
-rename from man/bash-completion/heretic.template
-rename to man/bash-completion/heretic.template.in
-index 5d658d46..a46b19cc 100644
---- a/man/bash-completion/heretic.template
-+++ b/man/bash-completion/heretic.template.in
-@@ -1,6 +1,6 @@
--# bash completion for Chocolate Heretic -*- shell-script -*-
-+# bash completion for @PACKAGE_SHORTNAME@ Heretic -*- shell-script -*-
-
--_chocolate_heretic()
-+_@PROGRAM_SPREFIX@_heretic()
- {
- local cur prev words cword
- _init_completion || return
-@@ -43,6 +43,6 @@ _chocolate_heretic()
- fi
- } &&
-
--complete -F _chocolate_heretic chocolate-heretic
-+complete -F _@PROGRAM_SPREFIX@_heretic @PROGRAM_PREFIX@heretic
-
- # ex: ts=4 sw=4 et filetype=sh
-diff --git a/man/bash-completion/hexen.template b/man/bash-completion/hexen.template.in
-similarity index 84%
-rename from man/bash-completion/hexen.template
-rename to man/bash-completion/hexen.template.in
-index b7e75f7f..f80853bc 100644
---- a/man/bash-completion/hexen.template
-+++ b/man/bash-completion/hexen.template.in
-@@ -1,6 +1,6 @@
--# bash completion for Chocolate Hexen -*- shell-script -*-
-+# bash completion for @PACKAGE_SHORTNAME@ Hexen -*- shell-script -*-
-
--_chocolate_hexen()
-+_@PROGRAM_SPREFIX@_hexen()
- {
- local cur prev words cword
- _init_completion || return
-@@ -37,6 +37,6 @@ _chocolate_hexen()
- fi
- } &&
-
--complete -F _chocolate_hexen chocolate-hexen
-+complete -F _@PROGRAM_SPREFIX@_hexen @PROGRAM_PREFIX@hexen
-
- # ex: ts=4 sw=4 et filetype=sh
-diff --git a/man/bash-completion/strife.template b/man/bash-completion/strife.template.in
-similarity index 85%
-rename from man/bash-completion/strife.template
-rename to man/bash-completion/strife.template.in
-index 13c8a8ce..a044ef0b 100644
---- a/man/bash-completion/strife.template
-+++ b/man/bash-completion/strife.template.in
-@@ -1,6 +1,6 @@
--# bash completion for Chocolate Strife -*- shell-script -*-
-+# bash completion for @PACKAGE_SHORTNAME@ Strife -*- shell-script -*-
-
--_chocolate_strife()
-+_@PROGRAM_SPREFIX@_strife()
- {
- local cur prev words cword
- _init_completion || return
-@@ -43,6 +43,6 @@ _chocolate_strife()
- fi
- } &&
-
--complete -F _chocolate_strife chocolate-strife
-+complete -F _@PROGRAM_SPREFIX@_strife @PROGRAM_PREFIX@strife
-
- # ex: ts=4 sw=4 et filetype=sh
---
-2.12.0
-
diff --git a/PKGBUILD b/PKGBUILD
index 2c796a131268..5487dc6a19ee 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=crispy-doom
pkgdesc="Vanilla-compatible enhanced Doom engine"
-pkgver=4.0
+pkgver=4.1
pkgrel=1
arch=('i686' 'x86_64')
url="http://fabiangreffrath.github.io/crispy-doom"
@@ -13,10 +13,8 @@ optdepends=('freedm: Free deathmatch game'
'freedoom1: Free Ultimate Doom-compatible game'
'freedoom2: Free Doom II/Final Doom-compatible game')
install=crispy-doom.install
-source=(https://github.com/fabiangreffrath/$pkgname/archive/$pkgname-$pkgver.tar.gz
- 0001-bash-completion-Use-autoconf-substitutions-for-the-c.patch)
-sha512sums=('c5726e6624c367cb0c9f308bc317e19c91b2ce954e03724977116af8782062405de123bbbe5d86858b3bdb44bc3c14f02d2e1cf867b5bcd89233218627c57fb1'
- '8e3a10bc58bed9ac0623d9962ee3449a8c7dc07cc368445ee2d0a3aea14d1d46074d9655a78a61459683325c8cffee0b1b3c5201010271318c22e0543892357f')
+source=(https://github.com/fabiangreffrath/$pkgname/archive/$pkgname-$pkgver.tar.gz)
+sha512sums=('b285ccce3550d060b75b3a0ae5ea0696708cb263cb016d6637f34215c0fed77709df918b86d71da27a94d9bde3b7f9e2abf7d2f1d8ccc66cd9c3b939613c9950')
prepare() {
# GitHub's generated archive prefix kind of sucks.
diff --git a/crispy-doom.install b/crispy-doom.install
index 9f1806770f7d..402730fcc9e8 100644
--- a/crispy-doom.install
+++ b/crispy-doom.install
@@ -7,8 +7,6 @@ the engine to easily find them:
Files such as doom2.wad, heretic.wad, hexen.wad, and strife1.wad are
appropriate for installation and usage with Chocolate engines.
-These must be lower-case file names, unless on a case-insensitive
-file system.
In order to allow co-existence with Chocolate Doom, the following
manual pages have been removed: