--- ufiformat-0.9.9.orig/debian/changelog +++ ufiformat-0.9.9/debian/changelog @@ -0,0 +1,62 @@ +ufiformat (0.9.9-1) unstable; urgency=low + + * New upstream release + * debian/rules + - enable hardening + - add build-arch and build-indep targets + - exec autoreconf to regenerate files and fix FTBFS (Closes: #725555) + (supplied by Hideki Yamane ) + * Updated Standards-Version + + -- David Given Tue, 15 Oct 2013 19:35:37 +0900 + +ufiformat (0.9.8-1) unstable; urgency=low + + * New upstream release + * Updated Standards-Version (no changes needed) + + -- David Given Wed, 03 Dec 2010 18:48:09 +0000 + +ufiformat (0.9.6-1) unstable; urgency=low + + * New upstream release + + -- David Given Fri, 06 Nov 2009 23:35:40 +0000 + +ufiformat (0.9.5-1) unstable; urgency=low + + * New upstream release + + -- David Given Sun, 04 Oct 2009 12:09:17 +0100 + +ufiformat (0.9.4-2) unstable; urgency=low + + * Patched errant ." in upstream's man page. + + -- David Given Wed, 21 Mar 2008 22:18:00 +0000 + +ufiformat (0.9.4-1) unstable; urgency=low + + * New upstream release + * Removed Debian-specific manpage since upstream now provides one + + -- David Given Wed, 19 Mar 2008 22:11:58 +0000 + +ufiformat (0.9.3-3) unstable; urgency=low + + * Fixed a typo in the changelog release ID. + + -- David Given Sat, 18 Aug 2007 21:54:15 +0100 + +ufiformat (0.9.3-2) unstable; urgency=low + + * Fixed some newbie packaging errors. + + -- David Given Thu, 16 Aug 2007 19:13:20 +0100 + +ufiformat (0.9.3-1) unstable; urgency=low + + * Initial release (Closes: #436134) + * Modified Makefile.am to install into /usr/bin instead of /usr/sbin. + + -- David Given Sun, 5 Aug 2007 17:59:44 +0100 --- ufiformat-0.9.9.orig/debian/compat +++ ufiformat-0.9.9/debian/compat @@ -0,0 +1 @@ +5 --- ufiformat-0.9.9.orig/debian/control +++ ufiformat-0.9.9/debian/control @@ -0,0 +1,16 @@ +Source: ufiformat +Section: utils +Priority: optional +Maintainer: David Given +Build-Depends: debhelper (>= 5), autotools-dev, automake, e2fslibs-dev +Homepage: http://www.geocities.jp/tedi_world/format_usbfdd_e.html +Standards-Version: 3.9.4 + +Package: ufiformat +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: disk formatter for USB floppy drives + ufiformat is a command-line utility for formatting floppy disks in + UFI-compatible USB floppy drives. It allows disks to be formatted + in any format supported by the drive, and can also be used to determine + what format a disk is currently using. --- ufiformat-0.9.9.orig/debian/copyright +++ ufiformat-0.9.9/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by David Given on +Sun, 5 Aug 2007 17:59:44 +0100. + +It was downloaded from http://www.geocities.jp/tedi_world/format_usbfdd_e.html + +Upstream Author: Kazuhiro Hayashi 林和宏 + John Floyd + + +Copyright: 2005-2009 Kazuhiro Hayashi 林和宏, John Floyd + +License: + +You are free to distribute this software under the terms of +the GNU General Public License either version 2 of the License, +or (at your option) any later version. + +On Debian systems, the complete text of the GNU General Public +License can be found in the file `/usr/share/common-licenses/GPL-2'. + +The Debian packaging is © 2007-2009, David Given and +is licensed under the GPL; see above. --- ufiformat-0.9.9.orig/debian/dirs +++ ufiformat-0.9.9/debian/dirs @@ -0,0 +1 @@ +usr/bin --- ufiformat-0.9.9.orig/debian/docs +++ ufiformat-0.9.9/debian/docs @@ -0,0 +1 @@ +README --- ufiformat-0.9.9.orig/debian/rules +++ ufiformat-0.9.9/debian/rules @@ -0,0 +1,79 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for ufiformat. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +export CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS) +export CFLAGS = $(shell dpkg-buildflags --get CFLAGS) +export CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS) +export LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS) + +configure: + dh_testdir + autoreconf -i + +config.status: configure + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" + + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) distclean + rm -f aclocal.m4 Makefile.in + rm -f config.sub config.guess config.status config.status.lineno + rm -f config.log configure config.h.in + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/ufiformat install + +binary-indep: build install + # none + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installman ufiformat.man + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- ufiformat-0.9.9.orig/debian/source/format +++ ufiformat-0.9.9/debian/source/format @@ -0,0 +1,2 @@ +1.0 + --- ufiformat-0.9.9.orig/debian/watch +++ ufiformat-0.9.9/debian/watch @@ -0,0 +1,6 @@ +# Check upstream for a new version + +# Compulsory line, this is a version 3 file +version=3 + +http://www.geocities.jp/tedi_world/format_usbfdd_e.html ufiformat-(.*)\.tar\.gz