--- pcopy-1.5.orig/pcopy.1 +++ pcopy-1.5/pcopy.1 @@ -0,0 +1,45 @@ +.\" Authors: Anibal Monsalve Salazar +.TH pcopy 1 "2006-10-18" "Debian" +.SH NAME +pcopy \- multithreaded (raw) disk copying program +. +.SH SYNOPSIS +pcopy [options] source destination +. +.SH DESCRIPTION +.B pcopy +is a tool for large disk to disk copying. +.P +.B pcopy +is intended to be used when doing large disk (partition) +to disk (partition) copying where dd is just too slow (and error +prone). It also displays a progress counter while doing the +copying. +. +.SH OPTIONS +.TP +.B \-s +silent mode +.TP +.B \-q +queue size +.TP +.B \-u +Update frequency (in seconds) +.TP +.B \-b +Buffer size (in KBytes) +.TP +.B \-d +Show progress as a series of dots +. +.SH SEE ALSO +.BR dd (1). +. +.SH AUTHOR +.B pcopy +was written by Peter Eriksson. +.P +This manpage was written by +Anibal Monsalve Salazar for the Debian Project and it is +hereby placed by him into the public domain. --- pcopy-1.5.orig/debian/control +++ pcopy-1.5/debian/control @@ -0,0 +1,18 @@ +Source: pcopy +Section: utils +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>= 7), autoconf, autotools-dev +Standards-Version: 3.8.1 +Homepage: http://directory.fsf.org/sysadmin/Backup/pcopy.html + +Package: pcopy +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: multithreaded (raw) disk copying program + Tool for large disk to disk copying. + . + pcopy is intended to be used when doing large disk (partition) + to disk (partition) copying where dd is just too slow (and error + prone). It also displays a progress counter while doing the + copying. --- pcopy-1.5.orig/debian/docs +++ pcopy-1.5/debian/docs @@ -0,0 +1 @@ +README --- pcopy-1.5.orig/debian/compat +++ pcopy-1.5/debian/compat @@ -0,0 +1 @@ +7 --- pcopy-1.5.orig/debian/watch +++ pcopy-1.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +ftp://ftp.lysator.liu.se/pub/unix/pcopy/pcopy-(.*)\.tar\.gz --- pcopy-1.5.orig/debian/rules +++ pcopy-1.5/debian/rules @@ -0,0 +1,71 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# 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 + cp -f /usr/share/misc/config.sub /usr/share/misc/config.guess . + autoconf + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + +build: 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 config.sub config.guess + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + $(MAKE) install prefix=$(CURDIR)/debian/pcopy/usr + +# 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_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_installman pcopy.1 + 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 --- pcopy-1.5.orig/debian/copyright +++ pcopy-1.5/debian/copyright @@ -0,0 +1,35 @@ +This package was debianized by +Anibal Monsalve Salazar +on Wed, 18 Oct 2006 13:07:33 +1000. + +It was downloaded from +ftp://ftp.lysator.liu.se/pub/unix/pcopy/pcopy-1.5.tar.gz + +Upstream Author: + + Peter Eriksson + +Copyright: + + Copyright (c) 1997-2003 Peter Eriksson + +License: + + 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 program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + MA 02110-1301, USA. + +The Debian packaging is (C) 2006 Anibal Monsalve Salazar +and is licensed under the GNU General Public License (GPL). + +A copy of the GNU GPL is in `/usr/share/common-licenses/GPL'. --- pcopy-1.5.orig/debian/dirs +++ pcopy-1.5/debian/dirs @@ -0,0 +1 @@ +usr/bin --- pcopy-1.5.orig/debian/changelog +++ pcopy-1.5/debian/changelog @@ -0,0 +1,26 @@ +pcopy (1.5-2) unstable; urgency=low + + * QA upload. + * Set maintainer to Debian QA Group. + * Standards version is 3.8.1 + * debhelper compatibility is 7 + + -- Anibal Monsalve Salazar Mon, 06 Apr 2009 14:16:18 +1000 + +pcopy (1.5-1) unstable; urgency=low + + * Fixed the following lintian issues: + - pcopy source: debian-rules-ignores-make-clean-error line 57 + - pcopy source: out-of-date-standards-version 3.7.2 (current is 3.7.3) + - pcopy: package-contains-empty-directory usr/sbin/ + - pcopy: description-contains-homepage + + -- Anibal Monsalve Salazar Sun, 06 Apr 2008 16:05:05 +1000 + +pcopy (1.5-0) unstable; urgency=low + + * Initial release (Closes: #393849, #372579). + * Run autoconf to update configure to fix "configure: error: can + only configure for one host and one target at a time". + + -- Anibal Monsalve Salazar Wed, 18 Oct 2006 13:07:33 +1000