--- libvcs-lite-perl-0.09.orig/debian/compat +++ libvcs-lite-perl-0.09/debian/compat @@ -0,0 +1 @@ +5 --- libvcs-lite-perl-0.09.orig/debian/rules +++ libvcs-lite-perl-0.09/debian/rules @@ -0,0 +1,93 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +# Allow disabling build optimation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) distclean + rm -f patch2.out + rm -f merge1.out + + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + # As this is a architecture independent package, we are not supposed to install + # stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb: + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot +# dh_installcron +# dh_installmenu +# dh_installexamples + dh_installdocs README + dh_installchangelogs Changes + dh_installman debian/*.1 + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libvcs-lite-perl-0.09.orig/debian/watch +++ libvcs-lite-perl-0.09/debian/watch @@ -0,0 +1,3 @@ +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/VCS-Lite/ .*/VCS-Lite-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libvcs-lite-perl-0.09.orig/debian/vlpatch.1 +++ libvcs-lite-perl-0.09/debian/vlpatch.1 @@ -0,0 +1,46 @@ +.\" 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 VLPATCH 1 "2005-03-26" +.\" 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 +vlpatch \- apply a patch with VCS::Lite +.SH SYNOPSIS +.B vlpatch +.RI [ options ] " original patch" +.br +.SH DESCRIPTION +This manual page documents briefly the +.B vlpatch command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBvlpatch\fP is a program that applies a patch to an original +with the VCS::Lite perl module. +.SH OPTIONS +.B \-\-output outfile +.PP +If --output is not specified, the patched file is put in place of the original, +and the original is renamed to *.orig. +.SH SEE ALSO +.BR vldiff (1), +.BR vlmerge (1), +.BR VCS::Lite (3). +.SH AUTHOR +vlpatch was written by Ivor Williams. +.PP +This manual page was written by Dominic Hargreaves , +for the Debian project (but may be used by others). --- libvcs-lite-perl-0.09.orig/debian/vlmerge.1 +++ libvcs-lite-perl-0.09/debian/vlmerge.1 @@ -0,0 +1,46 @@ +.\" 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 VLMERGE 1 "2005-03-26" +.\" 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 +vlmerge \- merge changes with VCS::Lite +.SH SYNOPSIS +.B vlmerge +.RI [ options ] " original changed1 changed2" +.br +.SH DESCRIPTION +This manual page documents briefly the +.B vlmerge command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBvlmerge\fP is a program that merges two changes against an original +with the VCS::Lite perl module. +.SH OPTIONS +.B \-\-output outfile +.PP +If --output is not specified, the results are put in place of the original, +and the original is renamed to *.orig. +.SH SEE ALSO +.BR vldiff (1), +.BR vlpatch (1), +.BR VCS::Lite (3). +.SH AUTHOR +vlmerge was written by Ivor Williams. +.PP +This manual page was written by Dominic Hargreaves , +for the Debian project (but may be used by others). --- libvcs-lite-perl-0.09.orig/debian/changelog +++ libvcs-lite-perl-0.09/debian/changelog @@ -0,0 +1,74 @@ +libvcs-lite-perl (0.09-1) unstable; urgency=low + + * New upstream release + * Update Standards-Version (no changes) + * Move to debhelper 5 compatibility + * Update copyright file to reflect new maintainership (RIP Ivor) + + -- Dominic Hargreaves Sun, 25 Oct 2009 15:54:54 +0000 + +libvcs-lite-perl (0.08-2) unstable; urgency=low + + * Fix debian/rules rmdir bug (closes: #467931) + * Update Standards-Version (no changes) + * Standardize debian/watch format + * debian/control: add Homepage field + * Fix make distclean lintian warning + + -- Dominic Hargreaves Sun, 2 Mar 2008 18:42:43 +0000 + +libvcs-lite-perl (0.08-1) unstable; urgency=low + + * New upstream release + + -- Dominic Hargreaves Tue, 21 Mar 2006 19:47:41 +0000 + +libvcs-lite-perl (0.07-1) unstable; urgency=low + + * New upstream release. + + -- Dominic Hargreaves Mon, 4 Apr 2005 00:47:09 +0100 + +libvcs-lite-perl (0.06-1) unstable; urgency=low + + * New upstream release. + * Add watch file. + * Install vldiff, vlmerge, vlpatch scripts, and include manpages + for them. + * Fix syntax errors in vlpatch and vldiff commands. + + -- Dominic Hargreaves Sat, 26 Mar 2005 14:23:53 +0000 + +libvcs-lite-perl (0.05-5) unstable; urgency=low + + * Add missing build dependency. + * Remove test output from diff.gz. + * Add upstream email address to copyright. + + -- Dominic Hargreaves Mon, 15 Nov 2004 00:01:42 +0000 + +libvcs-lite-perl (0.05-4) unstable; urgency=low + + * Clarify debian/copyright. + * Ready for release (Closes: #280395) + + -- Dominic Hargreaves Sat, 13 Nov 2004 00:03:59 +0000 + +libvcs-lite-perl (0.05-3) unstable; urgency=low + + * Declare dependency on libalgorithm-diff-perl (>= 1.13). + + -- Dominic Hargreaves Tue, 26 Oct 2004 23:21:25 +0100 + +libvcs-lite-perl (0.05-2) unstable; urgency=low + + * Make linda happy. + + -- Dominic Hargreaves Sat, 2 Oct 2004 20:03:42 +0100 + +libvcs-lite-perl (0.05-1) unstable; urgency=low + + * Initial Release. + + -- Dominic Hargreaves Wed, 22 Sep 2004 01:35:01 +0100 + --- libvcs-lite-perl-0.09.orig/debian/control +++ libvcs-lite-perl-0.09/debian/control @@ -0,0 +1,20 @@ +Source: libvcs-lite-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.8.0-7), libalgorithm-diff-perl (>= 1.13) +Maintainer: Dominic Hargreaves +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/VCS-Lite/ + +Package: libvcs-lite-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libalgorithm-diff-perl (>= 1.13) +Description: Minimal version control system + This module provides the functions normally associated with a version + control system, but without needing or implementing a version control + system. Applications include wikis, document management systems and + configuration management. + . + It makes use of the module Algorithm::Diff. It provides the facility + for basic diffing, patching and merging. --- libvcs-lite-perl-0.09.orig/debian/vldiff.1 +++ libvcs-lite-perl-0.09/debian/vldiff.1 @@ -0,0 +1,54 @@ +.\" 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 VLDIFF 1 "2005-03-26" +.\" 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 +vldiff \- display diffs using VCS::Lite +.SH SYNOPSIS +.B vldiff +.RI [ options ] " file1 file2" +.br +.SH DESCRIPTION +This manual page documents briefly the +.B vldiff command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBvldiff\fP is a program that displays diffs using the VCS::Lite perl +module. +.SH OPTIONS +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +.TP +.B \-u, \-\-unified +Output in diff -u format +.TP +.B \-w n, \-\-window n +Set window size to n lines either side +.TP +.B \-w m,n, \-\-window m,n +Set window to m lines before, n lines after +.SH SEE ALSO +.BR vlmerge (1), +.BR vlpatch (1), +.BR VCS::Lite (3). +.SH AUTHOR +vldiff was written by Ivor Williams. +.PP +This manual page was written by Dominic Hargreaves , +for the Debian project (but may be used by others). --- libvcs-lite-perl-0.09.orig/debian/copyright +++ libvcs-lite-perl-0.09/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Dominic Hargreaves on +Wed, 22 Sep 2004 01:35:01 +0100 + +It was downloaded from CPAN . + +Copyright (C) 2003-2006 Ivor Williams +Copyright (C) 2009 Barbie + +This module is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'.