--- nomarch-1.4.orig/debian/changelog +++ nomarch-1.4/debian/changelog @@ -0,0 +1,50 @@ +nomarch (1.4-3build1) bionic; urgency=high + + * No change rebuild to pick up -fPIE compiler default + + -- Balint Reczey Tue, 03 Apr 2018 12:36:55 +0000 + +nomarch (1.4-3) unstable; urgency=low + + * Update standards version to 3.8.3. + + -- Matthew Grant Sat, 03 Oct 2009 19:27:11 +1300 + +nomarch (1.4-2) unstable; urgency=low + + * Update the maintainer email address to my new email address. + * Update standards version to 3.8.0. + + -- Matthew Grant Mon, 29 Dec 2008 13:35:28 +1300 + +nomarch (1.4-1) unstable; urgency=low + + * New upstream version that fixes a hang bug in lzw reading, + and removes cruft from documentation about Unisys + + -- Matthew Grant Wed, 06 Feb 2008 05:16:19 +0000 + +nomarch (1.3-3) unstable; urgency=low + + * Updated debhelper compatibility version in debian/rules to 4 from 3. + + -- Matthew Grant Sun, 19 Feb 2006 02:40:30 +0000 + +nomarch (1.3-2) unstable; urgency=low + + * Update to standrads version 3.6.1. + + -- Matthew Grant Sun, 29 Feb 2004 20:41:48 +1300 + +nomarch (1.3-1) unstable; urgency=low + + * New upstream release. + + -- Matthew Grant Sun, 24 Nov 2002 23:52:49 +1300 + +nomarch (1.2-1) unstable; urgency=low + + * Initial Release. + + -- Matthew Grant Thu, 16 May 2002 17:09:55 +1200 + --- nomarch-1.4.orig/debian/compat +++ nomarch-1.4/debian/compat @@ -0,0 +1 @@ +7 --- nomarch-1.4.orig/debian/control +++ nomarch-1.4/debian/control @@ -0,0 +1,18 @@ +Source: nomarch +Section: utils +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Matthew Grant +Build-Depends: debhelper (>> 7.0.0) +Standards-Version: 3.8.3 + +Package: nomarch +Architecture: any +Depends: ${shlibs:Depends} +Description: Unpacks .ARC and .ARK MS-DOS archives + This is a de-archiving only replacement for the arc archiver from SEA. It + can handle pkarc archives, as well as others. It can also be used with + emacs - see the nomarch manpage. + . + This package is very useful for E-Mail virus scanner scripts for attachement + unpacking. --- nomarch-1.4.orig/debian/copyright +++ nomarch-1.4/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Matthew Grant on +Thu, 16 May 2002 17:09:55 +1200. + +It was downloaded from ftp://ftp.ibiblio.org/pub/Linux/utils/compress/nomarch-1.3.tar.gz + +Upstream Author: Russell Marks + +Copyright: + +Copyright (C) 2001,2001 Russell Marks. + +Licensed under GPL version 2. See /usr/share/common-licenses/GPL-2 in the +base-files package. + + --- nomarch-1.4.orig/debian/dirs +++ nomarch-1.4/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/man/man1 --- nomarch-1.4.orig/debian/docs +++ nomarch-1.4/debian/docs @@ -0,0 +1,3 @@ +NEWS +README +TODO --- nomarch-1.4.orig/debian/rules +++ nomarch-1.4/debian/rules @@ -0,0 +1,89 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #/usr/bin/docbook-to-man debian/nomarch.sgml > nomarch.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + # Add here commands to install the package into debian/nomarch. + install -m 755 nomarch $(CURDIR)/debian/nomarch/usr/bin + install -m 644 nomarch.1 $(CURDIR)/debian/nomarch/usr/share/man/man1 + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs +# dh_installexamples +# dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron + dh_installman +# dh_installinfo +# dh_undocumented + dh_installchangelogs ChangeLog + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure