debian/0000755000000000000000000000000012160403054007161 5ustar debian/changelog0000644000000000000000000000421512160403021011027 0ustar mscompress (0.4-3) unstable; urgency=low * Add patch to fix FTBFS on big-endian archs (Thanks Roland Stigge) (Closes: #712751) -- Michael Stapelberg Wed, 19 Jun 2013 21:26:11 +0200 mscompress (0.4-2) unstable; urgency=low * experimental to unstable because mscompress 0.4 was only in experimental due to the freeze. -- Michael Stapelberg Tue, 18 Jun 2013 18:20:05 +0200 mscompress (0.4-1) experimental; urgency=low * New maintainer. (Closes: #677774) * New upstream release. * Bump Standards-Version to 3.9.4 (no changes necessary). * Bump debian/compat to level 9 * Simplify debian/rules to minimum debhelper rule. * Add debian/watch. * Update debian/copyright to machine-readable copyright format. -- Michael Stapelberg Wed, 30 Jan 2013 21:14:52 +0100 mscompress (0.3-4) unstable; urgency=low * QA upload. * Add patch to fix argument parsing on ppc and arm (Thanks Julian Squires) (Closes: #600549) -- Michael Stapelberg Tue, 04 Dec 2012 01:13:59 +0100 mscompress (0.3-3.1) unstable; urgency=low * Non-maintainer upload. * Update config.guess/config.sub. (Closes: #537377). -- Aurelien Jarno Sun, 21 Feb 2010 16:57:57 +0000 mscompress (0.3-3) unstable; urgency=low * New maintainer. (Closes: #404470) * Bump Standards-Version to 3.7.3. * Add the Vcs-Git/Vcs-Browser fields. * Add the DM-Upload-Allowed field. * Refresh debian/copyright. * Refresh long description in debian/control. * Create debian/compat and set it to level 4. * Fix errors in manpages. * Refresh debian/rules. + Switch from dh_installmanpages to dh_installman. + Remove unused debhelper tools. + Use dh_install: create debian/install. -- Aurélien GÉRÔME Fri, 08 Feb 2008 16:53:28 +0100 mscompress (0.3-2) unstable; urgency=low * Added Build-Depends (closes: Bug#175473) -- Jefferson E. Noxon Tue, 25 Feb 2003 20:22:10 -0000 mscompress (0.3-1) unstable; urgency=low * Initial upload. -- Jefferson E. Noxon Wed, 26 Apr 2000 12:37:43 -0500 debian/compat0000644000000000000000000000000212160104165010360 0ustar 9 debian/control0000644000000000000000000000153312160104165010567 0ustar Source: mscompress Section: otherosfs Priority: extra Maintainer: Michael Stapelberg Build-Depends: debhelper (>= 9), dh-autoreconf Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/collab-maint/mscompress.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/mscompress.git;a=summary Homepage: http://code.stapelberg.de/git/mscompress/ Package: mscompress Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Microsoft "compress.exe/expand.exe" compatible (de)compressor This package contains two programs: . * msexpand which decompresses files compressed by the Microsoft compress.exe utility (e.g. Win 3.x installation files); * mscompress which compresses files using the LZ77 compression algorithm. . Files can be decompressed using Microsoft expand.exe or msexpand(1). debian/copyright0000644000000000000000000000226012160104165011115 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: mscompress Upstream-Contact: Michael Stapelberg Source: http://code.stapelberg.de/git/mscompress Files: * Copyright: 2000 Martin Hinner License: GPL-2+ Files: debian/* Copyright: 2013 Michael Stapelberg License: GPL-2+ License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. debian/rules0000755000000000000000000000030212160104165010235 0ustar #!/usr/bin/make -f # debian/rules for mscompress. GNU copyright 1997-1999 by Joey Hess and others. # Uncomment this to turn on verbose mode. # export DH_VERBOSE=1 %: dh $@ --with autoreconf debian/source/0000755000000000000000000000000012160104165010462 5ustar debian/source/format0000644000000000000000000000001412160104165011670 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000015012160104165010207 0ustar version=3 http://code.stapelberg.de/git/mscompress/ (?:.*/)?mscompress-(.*)\.tar\.gz \ debian uupdate debian/patches/0000755000000000000000000000000012160402576010620 5ustar debian/patches/endian.patch0000644000000000000000000000220512160402510013062 0ustar Description: Fix big endian build mscompress assumes WORDS_BIGENDIAN to be defined in the big endian case. Tests revealed that we need to specify it on big endian arches. Author: Roland Stigge Index: mscompress-0.4/src/msexpand.c =================================================================== --- mscompress-0.4.orig/src/msexpand.c 2013-06-19 09:54:57.000000000 +0200 +++ mscompress-0.4/src/msexpand.c 2013-06-19 10:02:17.298322577 +0200 @@ -27,6 +27,10 @@ #include #include +#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ +#define WORDS_BIGENDIAN +#endif + extern char *version_string; #define N 4096 Index: mscompress-0.4/src/mscompress.c =================================================================== --- mscompress-0.4.orig/src/mscompress.c 2013-06-19 09:54:57.000000000 +0200 +++ mscompress-0.4/src/mscompress.c 2013-06-19 10:02:05.978319764 +0200 @@ -28,6 +28,10 @@ #include #include +#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ +#define WORDS_BIGENDIAN +#endif + extern char *version_string; #define BSWAP32(x) ((((x)&0xFF)<<24)+(((x)<<8)&0xFF0000)+\ debian/patches/series0000644000000000000000000000001512160402576012031 0ustar endian.patch