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

gregoa pushed a commit to branch master
in repository libmail-pop3client-perl.

commit 440b423e4e4161d9e6e1db38c14597c91443ebb9
Author: Noel Koethe <n...@debian.org>
Date:   Sat Jan 26 16:41:39 2002 +0100

    Imported Debian patch 2.9-1
---
 debian/changelog |  6 ++++
 debian/control   | 14 +++++++++
 debian/copyright | 12 ++++++++
 debian/dirs      |  2 ++
 debian/docs      |  2 ++
 debian/rules     | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 123 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..caf24d3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+libmail-pop3client-perl (2.9-1) unstable; urgency=low
+
+  * Initial Release.
+    (closes: Bug#131032)
+
+ -- Noel Koethe <n...@debian.org>  Tue, 26 Jan 2002 16:41:39 +0100
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..44a70e8
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: libmail-pop3client-perl
+Section: interpreters
+Priority: optional
+Maintainer: Noel Koethe <n...@debian.org>
+Build-Depends: debhelper (>> 3.0.0)
+Standards-Version: 3.5.2
+
+Package: libmail-pop3client-perl
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: POP3 client module for perl
+ It provides an object-oriented interface to a POP3 server.
+ It can be used to write perl-based biff clients, mail
+ readers, or whatever.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..c145174
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,12 @@
+This package was debianized by Noel Koethe <n...@debian.org> on
+Tue, 26 Jan 2002 16:51:39 +0100.
+
+It was downloaded from http://pop3client.dowds.net/
+
+Upstream Author: Sean Dowd <pop3cli...@dowds.net>
+
+Copyright:
+
+       Copyright (c) 1999,2000,2001  Sean Dowd.  All rights reserved.
+       This module is free software; you can redistribute it and/or modify
+       it under the same terms as Perl itself.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..afd374f
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/share/perl5/Mail
+usr/share/man/man3
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..5b97370
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,2 @@
+README
+FAQ
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..dd58205
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,87 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatability version to use.
+export DH_COMPAT=3
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+build: build-stamp
+build-stamp:
+       dh_testdir
+
+       # Add here commands to compile the package.
+       $(PERL) Makefile.PL INSTALLDIRS=vendor
+       $(MAKE)
+       $(MAKE) test
+
+       touch build-stamp
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp
+
+       # Add here commands to clean up after the build process.
+       -$(MAKE) clean
+       -$(MAKE) distclean
+       rm -f Makefile Makefile.old
+
+       dh_clean
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+       dh_installdirs
+
+       # Add here commands to install the package into debian/tmp
+       #$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
+       #$(MAKE) PREFIX=`pwd`/debian/tmp/usr install
+
+       cp $(CURDIR)/blib/lib/Mail/POP3Client.pm 
$(CURDIR)/debian/libmail-pop3client-perl/usr/share/perl5/Mail/
+       cp $(CURDIR)/blib/man3/Mail::POP3Client.3pm 
$(CURDIR)/debian/libmail-pop3client-perl/usr/share/man/man3/
+
+# 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_movefiles
+
+#      dh_installdebconf       
+       dh_installdocs
+#      dh_installexamples
+#      dh_installmenu
+#      dh_installlogrotate
+#      dh_installemacsen
+#      dh_installpam
+#      dh_installmime
+#      dh_installinit
+#      dh_installcron
+#      dh_installman
+#      dh_installinfo
+#      dh_undocumented
+       dh_installchangelogs Changes
+       dh_link
+       dh_strip
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+#      dh_perl
+       dh_shlibdeps
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to