notfound 660936 1.1.1-4
thanks
Am 25.02.2012 14:09, schrieb Cyril Brulebois:
Please update the bug to reflect that it doesn't apply to unstable,
then.
Done.
Double # for the Closes.
Fixed, thanks.
Looks sane to me otherwise, feel free to upload unless you hear
otherwise from others.
Will do so, thank you.
Please find the final debdiff attached.
Am 25.02.2012 14:12, schrieb Ansgar Burchardt:
> could you move them to a subdirectory (maybe "game-data" or
> "game-data-packager")? I would prefer not having random shareware
> archives in the team's webroot.
I have done so (called the directory "game-data", since the stuff it
contains is independent of g-d-p) and updated g-d-p in GIT. However, I
have left two symlinks in place until the updated g-d-p is uploaded
and migrated.
- Fabian
diff --git a/debian/changelog b/debian/changelog
index a854bda..246d693 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+rott (1.1.1-3.1+squeeze1) squeeze; urgency=low
+
+ * As a last resort, try to download the shareware data files
+ from pkg-games.alioth.debian.org (Closes: #660266).
+ * Update Vcs-* fields in debian/control.
+
+ -- Fabian Greffrath <fabian+deb...@greffrath.com> Mon, 27 Feb 2012 10:00:12 +0100
+
rott (1.1.1-3.1) unstable; urgency=low
* Non-maintainer upload.
diff --git a/debian/control b/debian/control
index d9e9333..d553898 100644
--- a/debian/control
+++ b/debian/control
@@ -7,8 +7,8 @@ Uploaders: Fabian Greffrath <fabian+deb...@greffrath.com>,
Build-Depends: debhelper (>= 7.3), libsdl1.2-dev, libsdl-mixer1.2-dev
Standards-Version: 3.8.3
Homepage: http://icculus.org/rott/
-Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/rott/
-Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/rott/
+Vcs-Git: git://anonscm.debian.org/pkg-games/rott.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-games/rott.git
Package: rott
Architecture: any
diff --git a/debian/rott.postinst b/debian/rott.postinst
index 81a9097..f5166dc 100644
--- a/debian/rott.postinst
+++ b/debian/rott.postinst
@@ -8,6 +8,7 @@ SHAREDIR="/usr/share/games/rott"
SHAREZIP="1rott13.zip"
SHAREURL1="ftp://ftp.3drealms.com/share"
SHAREURL2="ftp://ftp.3drealms.com/pub/share"
+SHAREURL3="http://pkg-games.alioth.debian.org/game-data"
SHAREMD5="0fafd6b629eab80278fc726e31f9cf41"
DOCDIR="/usr/share/doc/rott"
@@ -45,6 +46,7 @@ case "$1" in
if [ ! -e ${SHAREDIR}/${SHAREZIP} ]; then
wget --progress=dot --directory-prefix ${SHAREDIR} -c ${SHAREURL1}/${SHAREZIP} || \
wget --progress=dot --directory-prefix ${SHAREDIR} -c ${SHAREURL2}/${SHAREZIP} || \
+ wget --progress=dot --directory-prefix ${SHAREDIR} -c ${SHAREURL3}/${SHAREZIP} || \
echo "rott: Download of shareware data files failed!" >&2
fi