--- devio-1.2.orig/debian/changelog +++ devio-1.2/debian/changelog @@ -0,0 +1,69 @@ +devio (1.2-1.2build3) jammy; urgency=medium + + * No-change rebuild for ppc64el baseline bump. + + -- Ɓukasz 'sil2100' Zemczak Wed, 23 Mar 2022 14:50:12 +0100 + +devio (1.2-1.2build2) impish; urgency=medium + + * No-change rebuild to build packages with zstd compression. + + -- Matthias Klose Thu, 07 Oct 2021 12:10:45 +0200 + +devio (1.2-1.2build1) hirsute; urgency=medium + + * No-change rebuild to drop the udeb package. + + -- Matthias Klose Mon, 22 Feb 2021 10:30:45 +0100 + +devio (1.2-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Upload to unstable. + * This upload will close the previous quoted bugs. (Closes: #453550, #817427) + + -- Joao Eriberto Mota Filho Wed, 23 Mar 2016 08:54:00 -0300 + +devio (1.2-1.1) experimental; urgency=medium + + * Non-maintainer upload. + * Migrated DH level to 9 to avoid a FTBFS. This action will close a bug + when uploaded to unstable. (#817427) + * debian/control: + - Added the Homepage field. + - Added the ${misc:Depends} field. + - Bumped Standards-Version to 3.9.7. + * debian/dirs: disabled the unused man8 dir. + * debian/watch: + - Bumped to version 4. + - Fixed the deprecated SF redirector method. This action will close + a bug when uploaded to unstable. (#453550) + + -- Joao Eriberto Mota Filho Thu, 10 Mar 2016 17:25:25 -0300 + +devio (1.2-1) unstable; urgency=low + + * Synced with upstream. + * Initial upload to Debian. Closes: #345490 + + -- Rod Whitby Tue, 17 Jan 2006 14:06:26 +0930 + +devio (1.1-2) unstable; urgency=low + + * Moved devio binary from /usr/sbin to /usr/bin. + * Added udeb support. + + -- Rod Whitby Thu, 12 Jan 2006 22:06:26 +0930 + +devio (1.1-1) unstable; urgency=low + + * Updated to new upstream version. Addition of 'xp' command by upstream. + + -- Rod Whitby Thu, 20 Oct 2005 22:18:59 +0930 + +devio (1.0-1) unstable; urgency=low + + * Initial Release. + + -- Rod Whitby Tue, 18 Oct 2005 10:38:25 +0930 + --- devio-1.2.orig/debian/compat +++ devio-1.2/debian/compat @@ -0,0 +1 @@ +9 --- devio-1.2.orig/debian/control +++ devio-1.2/debian/control @@ -0,0 +1,36 @@ +Source: devio +Section: utils +Priority: optional +Maintainer: Rod Whitby +Build-Depends: debhelper (>= 9), autotools-dev +Standards-Version: 3.9.7 +Homepage: http://devio.sf.net + +Package: devio +Architecture: any +Depends: ${misc:Depends},${shlibs:Depends} +Description: correctly read (or write) a region of a block device + devio is a command line program to read correctly from mtd character + (and other block) devices. devio allows access to specific regions of + the device and allows output of data from specific locations. + The primary difference between devio and other command line + utilities, such as dd and cat, is that it is not stream based - it + writes directly into the object rather than reading and writing a + stream of data. + +Package: devio-udeb +Priority: optional +Section: debian-installer +XC-Package-Type: udeb +Architecture: any +Depends: ${shlibs:Depends} +Description: correctly read (or write) a region of a block device + devio is a command line program to read correctly from mtd character + (and other block) devices. devio allows access to specific regions of + the device and allows output of data from specific locations. + The primary difference between devio and other command line + utilities, such as dd and cat, is that it is not stream based - it + writes directly into the object rather than reading and writing a + stream of data. + . + devio-udeb is a minimal package used by debian-installer. --- devio-1.2.orig/debian/copyright +++ devio-1.2/debian/copyright @@ -0,0 +1,28 @@ +This package was debianized by Rod Whitby on +Tue, 18 Oct 2005 10:38:25 +0930. + +It was downloaded from http://devio.sourceforge.net + +Copyright Holder: John Bowler + +License: + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation files +(the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, +merge, publish, distribute, sublicense, and/or sell copies of the +Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. --- devio-1.2.orig/debian/devio-udeb.dirs +++ devio-1.2/debian/devio-udeb.dirs @@ -0,0 +1 @@ +usr/bin --- devio-1.2.orig/debian/dirs +++ devio-1.2/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +#usr/share/man/man8 --- devio-1.2.orig/debian/docs +++ devio-1.2/debian/docs @@ -0,0 +1,2 @@ +NEWS +README --- devio-1.2.orig/debian/rules +++ devio-1.2/debian/rules @@ -0,0 +1,86 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# 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) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + +configure: + autoreconf -i + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + -$(MAKE) distclean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + dh_clean + rm -f config.sub config.guess + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/devio + $(MAKE) install DESTDIR=$(CURDIR)/debian/devio-udeb + + +# Build architecture-independent files here. +binary-indep: + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installman -pdevio src/devio.man + dh_installchangelogs ChangeLog + dh_installdocs + dh_link + 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 --- devio-1.2.orig/debian/watch +++ devio-1.2/debian/watch @@ -0,0 +1,2 @@ +version=4 +http://sf.net/devio/devio-(\d\S+)\.tar\.(?:bz2|gz|xz) --- devio-1.2.orig/src/devio.man +++ devio-1.2/src/devio.man @@ -0,0 +1,51 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DEVIO 1 "October 18, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +devio \- program to read and write from block devices +.SH SYNOPSIS +.B devio +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B devio +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBdevio\fP is a command line program intended to read and write +from block devices. +.SH OPTIONS +This program follows the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH SEE ALSO +.BR dd (1), +.BR cat (1). +.br +.SH AUTHOR +devio was written by John Bowler . +.PP +This manual page was written by Rod Whitby , +for the Debian project (but may be used by others).