CVS commit by schepler: Update packaging for 3.1.5.
A patches/kmines_complete_vs_solver.diff 1.1.2.1 M +9 -0 changelog 1.58.2.10 M +21 -1 rules 1.46.2.9 --- kdegames/debian/changelog #1.58.2.9:1.58.2.10 @@ -1,2 +1,11 @@ +kdegames (4:3.1.5-1) unstable; urgency=low + + * New upstream release. + * Apply revised version of patch from Danilo Piazzalunga + <[EMAIL PROTECTED]> to disable completeReveal mode while + the solver is running in kmines. Closes: #224684. + + -- Daniel Schepler <[EMAIL PROTECTED]> Wed, 14 Jan 2004 11:13:40 -0800 + kdegames (4:3.1.4-1) unstable; urgency=low --- kdegames/debian/rules #1.46.2.8:1.46.2.9 @@ -51,6 +51,16 @@ perl -w admin/debianrules echodirs > debian/debiandirs +# Apply Debian specific patches +patch: patch-stamp +patch-stamp: + set -e; \ + for patch in debian/patches/*.diff; do \ + echo APPLYING PATCH\: "$${patch##*/}"; \ + patch -p1 < "$$patch"; \ + done + touch $@ + configure: configure-stamp -configure-stamp: +configure-stamp: patch-stamp dh_testdir @@ -85,4 +95,14 @@ -rm -f build-stamp configure-stamp debian/debiandirs +# Remove Debian specific patches + set -e; \ + if [ -f patch-stamp ]; then \ + for patch in `find $(CURDIR)/debian/patches -name \*.diff | sort -r`; do \ + echo REMOVING PATCH\: "$${patch##*/}"; \ + patch -p1 -R < "$$patch"; \ + done; \ + rm -f patch-stamp; \ + fi + # $(MAKE) -f admin/Makefile.common cvs-clean find -name Makefile.in -print | xargs --no-run-if-empty rm -f