[libapache-htpasswd-perl] 01/24: Import Debian changes 1.5.5-1
gregor herrmann
gregoa at debian.org
Fri Sep 8 21:38:16 UTC 2017
This is an automated email from the git hooks/post-receive script.
gregoa pushed a commit to branch master
in repository libapache-htpasswd-perl.
commit 6195ce415b91f22a06dfd925d642f767587fb0fd
Author: Tatsuki Sugiura <sugi at nemui.org>
Date: Sat Aug 31 21:37:03 2002 +0900
Import Debian changes 1.5.5-1
libapache-htpasswd-perl (1.5.5-1) unstable; urgency=low
* New upstream release
libapache-htpasswd-perl (1.5.3-3) unstable; urgency=low
* build script has been changed; package was build with binary-indep (Closes: #157461)
libapache-htpasswd-perl (1.5.3-2) unstable; urgency=low
* source package has been updated for new policy
* dependency has been fixed
* upload debian offical archive (Closes: #150195)
libapache-htpasswd-perl (1.5.3-1) unstable; urgency=low
* New upstream release
libapache-htpasswd-perl (1.5.2-1) unstable; urgency=low
* upstream update (applied 1.5.1p1-1's newline patch)
libapache-htpasswd-perl (1.5.1p1-1) unstable; urgency=low
* upstream update
* newline patch applied
libapache-htpasswd-perl (1.5-1) unstable; urgency=low
* Initial Release.
---
debian/changelog | 52 +++++++++++++++++++++++++++++++++
debian/control | 18 ++++++++++++
debian/copyright | 9 ++++++
debian/rules | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
debian/watch | 3 ++
5 files changed, 171 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0176b89
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,52 @@
+libapache-htpasswd-perl (1.5.5-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Tatsuki Sugiura <sugi at nemui.org> Sat, 31 Aug 2002 21:37:03 +0900
+
+libapache-htpasswd-perl (1.5.3-3) unstable; urgency=low
+
+ * build script has been changed; package was build with binary-indep (Closes: #157461)
+
+ -- Tatsuki Sugiura <sugi at nemui.org> Wed, 21 Aug 2002 07:13:56 +0900
+
+libapache-htpasswd-perl (1.5.3-2) unstable; urgency=low
+
+ * source package has been updated for new policy
+ * dependency has been fixed
+ * upload debian offical archive (Closes: #150195)
+
+ -- Tatsuki Sugiura <sugi at nemui.org> Mon, 17 Jun 2002 11:50:05 +0900
+
+libapache-htpasswd-perl (1.5.3-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Tatsuki Sugiura <sugi at nemui.org> Mon, 17 Jun 2002 11:44:53 +0900
+
+libapache-htpasswd-perl (1.5.2-1) unstable; urgency=low
+
+ * upstream update (applied 1.5.1p1-1's newline patch)
+
+ -- Tatsuki Sugiura <sugi at assist.media.nagoya-u.ac.jp> Sat, 7 Apr 2001
+15:40:37 +0900
+
+libapache-htpasswd-perl (1.5.1p1-1) unstable; urgency=low
+
+ * upstream update
+ * newline patch applied
+
+ -- Tatsuki Sugiura <sugi at assist.media.nagoya-u.ac.jp> Wed, 4 Apr 2001
+03:59:28 +0900
+
+libapache-htpasswd-perl (1.5-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Tatsuki Sugiura <sugi at assist.media.nagoya-u.ac.jp> Thu, 29 Mar 2001
+07:36:02 +0900
+
+
+Local variables:
+mode: debian-changelog
+End:
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..6034b65
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,18 @@
+Source: libapache-htpasswd-perl
+Section: interpreters
+Priority: optional
+Build-Depends-Indep: debhelper (>= 3.0.5), perl (>= 5.6.0-17)
+Maintainer: Tatsuki Sugiura <sugi at nemui.org>
+Standards-Version: 3.5.1
+
+Package: libapache-htpasswd-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Manage Unix crypt-style password file.
+ This module comes with a set of methods to use with htaccess password
+ files. These files (and htaccess) are used to do Basic Authentication
+ on a web server.
+ .
+ The passwords file is a flat-file with login name and their associated
+ crypted password. You can use this for non-Apache files if you wish, but
+ it was written specifically for .htaccess style files.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..56af329
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,9 @@
+This package was debianized by Tatsuki Sugiura <sugi at assist.media.nagoya-u.ac.jp> on
+Thu, 29 Mar 2001 07:36:02 +0900.
+
+It was downloaded from http://www.cpan.org/authors/id/K/KM/KMELTZ/
+
+Upstream Author(s): Kevin Meltzer <perlguy at perlguy.com>
+
+Copyright: This is released under the same terms as Perl itself.
+ see /usr/share/doc/perl/copyright
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a767199
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,89 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# 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 Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+export DH_COMPAT=3
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+
+ # Add here commands to compile the package.
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ # Add here commands to clean up after the build process.
+ -$(MAKE) realclean
+
+ dh_clean
+
+install:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/tmp.
+ #$(MAKE) install DESTDIR=`pwd`/debian/tmp
+ $(MAKE) install PREFIX=$(TMP)/usr
+ chmod -x $(TMP)/usr/share/perl5/Apache/*
+
+
+# Build architecture-independent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-indep: build install
+# dh_testversion
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_installexamples
+ dh_installmenu
+# dh_installemacsen
+# dh_installinit
+ dh_installcron
+ dh_installman
+# dh_undocumented
+ dh_installchangelogs
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_makeshlibs
+ dh_installdeb
+ dh_perl
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb --destdir=$(DESTDIR)
+
+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
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..997a873
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=2
+http://www.cpan.org/authors/id/K/KM/KMELTZ/Apache-Htpasswd-(.*)\.tar\.gz \
+ debian uupdate
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libapache-htpasswd-perl.git
More information about the Pkg-perl-cvs-commits
mailing list