[libfile-tail-perl] 01/18: Imported Debian patch 0.91-1

Roland Rosenfeld roland at moszumanska.debian.org
Mon Aug 21 17:31:30 UTC 2017


This is an automated email from the git hooks/post-receive script.

roland pushed a commit to branch master
in repository libfile-tail-perl.

commit 2b262ecb562461c19dc7d17d9a6a67d08df62057
Author: Craig Sanders <cas at taz.net.au>
Date:   Mon Jul 5 12:47:08 1999 +1000

    Imported Debian patch 0.91-1
---
 debian/README.debian | 11 +++++++
 debian/changelog     | 11 +++++++
 debian/control       | 20 ++++++++++++
 debian/copyright     | 20 ++++++++++++
 debian/dirs          |  1 +
 debian/docs          |  1 +
 debian/rules         | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 152 insertions(+)

diff --git a/debian/README.debian b/debian/README.debian
new file mode 100644
index 0000000..10cea16
--- /dev/null
+++ b/debian/README.debian
@@ -0,0 +1,11 @@
+libfile-tail-perl for Debian
+----------------------------
+
+Comments regarding the Package
+
+The File::Tail module is designed for reading files which are continously
+appended to (the name comes from the tail -f directive). Usualy such files are
+logfiles of some description.
+
+Craig Sanders <cas at taz.net.au>, Mon,  5 Jul 1999 12:46:29 +1000
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f1b3290
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,11 @@
+libfile-tail-perl (0.91-1) unstable; urgency=low
+
+  * Initial Release
+
+ -- Craig Sanders <cas at taz.net.au>  Mon,  5 Jul 1999 12:47:08 +1000
+
+
+Local variables:
+mode: debian-changelog
+add-log-mailing-address: "cas at taz.net.au"
+End:
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..aa46b10
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: libfile-tail-perl
+Section: interpreters 
+Priority: optional
+Maintainer: Craig Sanders <cas at taz.net.au>
+Standards-Version: 2.5.0
+
+Package: libfile-tail-perl
+Architecture: all
+Depends: ${perl:Depends}, libtime-hires-perl
+Description: File::Tail perl module
+ The File::Tail module is designed for reading files which
+ are continously appended to (the name comes from the tail -f
+ directive). Usually such files are logfiles of some description.
+ .
+ The module tries hard not to busy wait on the file, dynamicaly
+ calculating how long it should wait before it pays to try reading the
+ file again.
+ .
+ The module should handle normal log truncations ("close; move; open" or
+ "cat /dev/null >file") transparently, without losing any input.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..19c5eb0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,20 @@
+This package was debianized by Craig Sanders <cas at taz.net.au> on
+Mon,  5 Jul 1999 12:54:47 +1000
+
+It was downloaded from 
+ftp://mirror.xmission.com/mirror1/CPAN/authors/id/MGRABNAR/File-Tail-0.91.tar.gz
+
+Upstream Author:  Matija Grabnar <matija.grabnar at arnes.si>
+
+Copyright:
+
+Copyright (c) 1997,1998,1999 Matija Grabnar. 
+
+All rights reserved. This program is free software; you can
+redistribute it and/or modify it under the same terms as Perl itself. 
+
+See /usr/doc/copyright/Artistic and /usr/doc/copyright/GPL.
+
+
+
+
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..92105be
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1 @@
+usr/lib/perl5
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..c4b30fd
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README 
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..805c720
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,88 @@
+#!/usr/bin/make -f
+# MAde with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Cristoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =`pwd`/debian/tmp
+archlib =`$(PERL) -MConfig -e 'print $$Config{installarchlib}'`
+config  =INSTALLDIRS=perl INSTALLMAN1DIR=$(TMP)/usr/man/man1 INSTALLMAN3DIR=$(TMP)/usr/man/man3 INSTALLPRIVLIB=$(TMP)/usr/lib/perl5 INSTALLARCHLIB=$(TMP)$(archlib)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL $(config)
+
+	make CFLAGS="-02 -g -Wall"
+	
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp install-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) distclean
+
+	dh_clean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# we don't want junk files from autosplit in the package so get rid of it.
+	rm -rf ./blib/lib/auto/
+	# Add here commands to install the package into debian/tmp.
+	$(MAKE) pure_install
+
+	touch install-stamp
+
+# 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_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installexamples logwatch select_demo
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installmanpages
+#	dh_undocumented
+	dh_installchangelogs Changes
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_suidregister
+	dh_perl
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+#	dh_makeshlibs
+	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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libfile-tail-perl.git



More information about the Pkg-perl-cvs-commits mailing list