diff -Nru steamcmd-0~20130205/debian/changelog steamcmd-0~20180105/debian/changelog --- steamcmd-0~20130205/debian/changelog 2015-12-28 00:36:55.000000000 +0000 +++ steamcmd-0~20180105/debian/changelog 2018-11-27 18:32:39.000000000 +0000 @@ -1,3 +1,27 @@ +steamcmd (0~20180105-3) unstable; urgency=medium + + * Try again with '-sa' + + -- Alexandre Detiste Tue, 27 Nov 2018 19:32:39 +0100 + +steamcmd (0~20180105-2) unstable; urgency=medium + + * Retry upload after I've been added as a Maintainer. + + -- Alexandre Detiste Tue, 27 Nov 2018 18:51:24 +0100 + +steamcmd (0~20180105-1) unstable; urgency=low + + * New upstream tarball + * Packaging has been move from Alioth to Salsa + * Disable useless dbgsym package, as this packaged bootstrap will + replace itself anyway. + * Switch to debhelper compat level 11 + * Bump Standards-Version to 4.2.1 + * Declare Rules-Requires-Root: no + + -- Alexandre Detiste Sat, 17 Nov 2018 15:38:51 +0100 + steamcmd (0~20130205-1) unstable; urgency=low * Initial release. (Closes: #775512) diff -Nru steamcmd-0~20130205/debian/compat steamcmd-0~20180105/debian/compat --- steamcmd-0~20130205/debian/compat 2015-12-13 07:24:01.000000000 +0000 +++ steamcmd-0~20180105/debian/compat 2018-11-17 15:17:53.000000000 +0000 @@ -1 +1 @@ -9 +11 diff -Nru steamcmd-0~20130205/debian/control steamcmd-0~20180105/debian/control --- steamcmd-0~20130205/debian/control 2016-01-03 00:31:59.000000000 +0000 +++ steamcmd-0~20180105/debian/control 2018-11-17 15:34:29.000000000 +0000 @@ -4,12 +4,13 @@ Maintainer: Debian Games Team Uploaders: Alexandre Detiste Build-Depends: - debhelper (>= 9), + debhelper (>= 11~), python3, -Standards-Version: 3.9.6 +Standards-Version: 4.2.1 Homepage: https://developer.valvesoftware.com/wiki/SteamCMD -Vcs-Git: git://anonscm.debian.org/pkg-games/steamcmd -Vcs-Browser: https://anonscm.debian.org/cgit/pkg-games/steamcmd.git +Vcs-Git: https://salsa.debian.org/games-team/steamcmd.git +Vcs-Browser: https://salsa.debian.org/games-team/steamcmd +Rules-Requires-Root: no Package: steamcmd Architecture: i386 diff -Nru steamcmd-0~20130205/debian/rules steamcmd-0~20180105/debian/rules --- steamcmd-0~20130205/debian/rules 2016-01-03 00:43:27.000000000 +0000 +++ steamcmd-0~20180105/debian/rules 2018-11-17 15:12:39.000000000 +0000 @@ -21,6 +21,9 @@ python3 debian/scripts/copyright-helper \ debian/copyright.in debian/copyright +override_dh_strip: + dh_strip --no-automatic-dbgsym + get-orig-source: rm -rf dest/ # this can't use uscan as package isn't versioned at all Binary files /tmp/tmpjf04F3/27jm7qhFZW/steamcmd-0~20130205/dest/steamcmd and /tmp/tmpjf04F3/UA72JyMqCb/steamcmd-0~20180105/dest/steamcmd differ diff -Nru steamcmd-0~20130205/dest/steamcmd.sh steamcmd-0~20180105/dest/steamcmd.sh --- steamcmd-0~20130205/dest/steamcmd.sh 2013-02-05 05:09:00.000000000 +0000 +++ steamcmd-0~20180105/dest/steamcmd.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -#!/bin/bash - -STEAMROOT="$(cd "${0%/*}" && echo $PWD)" -STEAMEXE=`basename "$0" .sh` - -PLATFORM=linux32 # dedicated server build (minimal dependencies) - -# prepend our lib path to LD_LIBRARY_PATH -export LD_LIBRARY_PATH="$STEAMROOT/$PLATFORM:$LD_LIBRARY_PATH" - -ulimit -n 2048 - -MAGIC_RESTART_EXITCODE=42 - -# and launch steam -if [ "$DEBUGGER" == "gdb" ] || [ "$DEBUGGER" == "cgdb" ]; then - ARGSFILE=$(mktemp $USER.steam.gdb.XXXX) - - # Set the LD_PRELOAD varname in the debugger, and unset the global version. - if [ "$LD_PRELOAD" ]; then - echo set env LD_PRELOAD=$LD_PRELOAD >> "$ARGSFILE" - echo show env LD_PRELOAD >> "$ARGSFILE" - unset LD_PRELOAD - fi - - $DEBUGGER -x "$ARGSFILE" "$STEAMROOT/$PLATFORM/$STEAMEXE" "$@" - rm "$ARGSFILE" -else - $DEBUGGER "$STEAMROOT/$PLATFORM/$STEAMEXE" "$@" -fi -STATUS=$? - -if [ $STATUS -eq $MAGIC_RESTART_EXITCODE ]; then - exec "$0" "$@" -fi -exit $STATUS Binary files /tmp/tmpjf04F3/27jm7qhFZW/steamcmd-0~20130205/steamcmd and /tmp/tmpjf04F3/UA72JyMqCb/steamcmd-0~20180105/steamcmd differ diff -Nru steamcmd-0~20130205/steamcmd.sh steamcmd-0~20180105/steamcmd.sh --- steamcmd-0~20130205/steamcmd.sh 2013-02-05 05:09:00.000000000 +0000 +++ steamcmd-0~20180105/steamcmd.sh 2018-01-05 00:22:27.000000000 +0000 @@ -1,33 +1,42 @@ -#!/bin/bash +#!/usr/bin/env bash STEAMROOT="$(cd "${0%/*}" && echo $PWD)" -STEAMEXE=`basename "$0" .sh` +STEAMCMD=`basename "$0" .sh` -PLATFORM=linux32 # dedicated server build (minimal dependencies) - -# prepend our lib path to LD_LIBRARY_PATH -export LD_LIBRARY_PATH="$STEAMROOT/$PLATFORM:$LD_LIBRARY_PATH" +UNAME=`uname` +if [ "$UNAME" == "Linux" ]; then + STEAMEXE="${STEAMROOT}/linux32/${STEAMCMD}" + PLATFORM="linux32" + export LD_LIBRARY_PATH="$STEAMROOT/$PLATFORM:$LD_LIBRARY_PATH" +else # if [ "$UNAME" == "Darwin" ]; then + STEAMEXE="${STEAMROOT}/${STEAMCMD}" + if [ ! -x ${STEAMEXE} ]; then + STEAMEXE="${STEAMROOT}/Steam.AppBundle/Steam/Contents/MacOS/${STEAMCMD}" + fi + export DYLD_LIBRARY_PATH="$STEAMROOT:$DYLD_LIBRARY_PATH" + export DYLD_FRAMEWORK_PATH="$STEAMROOT:$DYLD_FRAMEWORK_PATH" +fi ulimit -n 2048 MAGIC_RESTART_EXITCODE=42 -# and launch steam if [ "$DEBUGGER" == "gdb" ] || [ "$DEBUGGER" == "cgdb" ]; then - ARGSFILE=$(mktemp $USER.steam.gdb.XXXX) + ARGSFILE=$(mktemp $USER.steam.gdb.XXXX) - # Set the LD_PRELOAD varname in the debugger, and unset the global version. - if [ "$LD_PRELOAD" ]; then - echo set env LD_PRELOAD=$LD_PRELOAD >> "$ARGSFILE" - echo show env LD_PRELOAD >> "$ARGSFILE" - unset LD_PRELOAD - fi + # Set the LD_PRELOAD varname in the debugger, and unset the global version. + if [ "$LD_PRELOAD" ]; then + echo set env LD_PRELOAD=$LD_PRELOAD >> "$ARGSFILE" + echo show env LD_PRELOAD >> "$ARGSFILE" + unset LD_PRELOAD + fi - $DEBUGGER -x "$ARGSFILE" "$STEAMROOT/$PLATFORM/$STEAMEXE" "$@" - rm "$ARGSFILE" + $DEBUGGER -x "$ARGSFILE" "$STEAMEXE" "$@" + rm "$ARGSFILE" else - $DEBUGGER "$STEAMROOT/$PLATFORM/$STEAMEXE" "$@" + $DEBUGGER "$STEAMEXE" "$@" fi + STATUS=$? if [ $STATUS -eq $MAGIC_RESTART_EXITCODE ]; then