From 3c69cccabdac1a34036d4c65d622abba1d8374b0 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Nov 09 2021 21:43:46 +0000 Subject: 1.16.1 --- diff --git a/.gitignore b/.gitignore index 4b48589..2ede33c 100644 --- a/.gitignore +++ b/.gitignore @@ -66,3 +66,4 @@ wesnoth-1.8.4.tar.bz2 /wesnoth-1.15.17.tar.bz2 /wesnoth-1.15.18.tar.bz2 /wesnoth-1.16.0.tar.bz2 +/wesnoth-1.16.1.tar.bz2 diff --git a/sources b/sources index 3e5f9d6..d769fe5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wesnoth-1.16.0.tar.bz2) = 5827e37cc3cbf7fd4253e650f5fb64b7c4dbb6227eadb4850d990719f6c49dba93d421cc5314cd62f2d487754d90ea33d62fe6ac47b2cf56a254ff56f466fa1d +SHA512 (wesnoth-1.16.1.tar.bz2) = fcbc37e98ccc8fba5dfcf24a569d85b786ea8bdf43721c1b8f35c1661367fad7daf578df2b6ba37ffedfd66f4c838d977cbff0b3793ae38eacf8a3e5841d58bf diff --git a/wesnoth.spec b/wesnoth.spec index 6eba102..83ea568 100644 --- a/wesnoth.spec +++ b/wesnoth.spec @@ -1,8 +1,8 @@ %global _hardened_build 1 Name: wesnoth -Version: 1.16.0 -Release: 2%{?dist} +Version: 1.16.1 +Release: 1%{?dist} Summary: Turn-based strategy game with a fantasy theme License: GPLv2+ @@ -173,6 +173,9 @@ done %{_mandir}/*/man6/wesnoth*.6* %changelog +* Tue Nov 09 2021 Gwyn Ciesla - 1.16.1-1 +- 1.16.1 + * Fri Oct 29 2021 Kalev Lember - 1.16.0-2 - Remove Python 2 workarounds as everything has been ported to Python 3 - Drop post/preun/postun requires on systemd diff --git a/wesnothd.init b/wesnothd.init deleted file mode 100755 index a644e5d..0000000 --- a/wesnothd.init +++ /dev/null @@ -1,106 +0,0 @@ -#!/bin/sh -# -# wesnothd This shell script takes care of starting and stopping -# the Wesnoth game server. -# -# chkconfig: - 15 85 -# description: The Wesnoth server supports playing networked \ -# multi-player games. -# processname: wesnothd -# config: /etc/sysconfig/wesnothd -# pidfile: /var/run/wesnothd.pid - -### BEGIN INIT INFO -# Provides: lsb-wesnothd -# Required-Start: $local_fs $network $remote_fs -# Required-Stop: $local_fs $network $remote_fs -# Default-Start: -# Default-Stop: 0 1 6 -# Short-Description: start and stop Wesnoth server -# Description: wesnothd enables hosting online Wesnoth games -### END INIT INFO - - -# Source function library. -. /etc/rc.d/init.d/functions - -# Source networking configuration. -. /etc/sysconfig/network - -# Check that networking is up. -[ "$NETWORKING" = "no" ] && exit 0 - -exec="/usr/sbin/wesnothd" -prog=$(basename $exec) -pidfile=/var/run/$prog.pid -socketfile=/var/run/wesnothd/socket - -[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog - -lockfile=/var/lock/subsys/$prog - -start() { - echo -n $"Starting Wesnoth game server: " - if [ -n "`/sbin/pidof $prog`" ]; then - echo -n $"$prog already running" - failure - echo - return 1 - fi - [ -p $socketfile ] && rm -f $socketfile - daemon --user wesnothd $exec --daemon $WESNOTHD_OPTIONS >/dev/null 2>&1 - retval=$? - if [ $retval -eq 0 ]; then - success - touch $lockfile - pidofproc $prog > $pidfile - else - failure - fi - echo - return $retval -} - -stop() { - echo -n $"Stopping Wesnoth game server: " - killproc $prog - retval=$? - echo - [ $retval -eq 0 ] && rm -f $lockfile - return $retval -} - -restart() { - stop - start -} - -reload() { - restart -} - -force_reload() { - restart -} - -fdr_status() { - status $prog -} - -case "$1" in - start|stop|restart|reload) - $1 - ;; - force-reload) - force_reload - ;; - status) - fdr_status - ;; - condrestart|try-restart) - [ ! -f $lockfile ] || restart - ;; - *) - echo $"Usage: $0 {start|stop|status|restart|try-restart|reload|force-reload}" - exit 2 -esac