--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore Wed Oct 24 14:47:51 2012 +0200
@@ -0,0 +1,5 @@
+update-schlittermann-ssh-keys
+debian/schlittermann-ssh-keys
+build-stamp
+configure-stamp
+debian/files
--- a/Makefile Wed Oct 24 14:05:56 2012 +0200
+++ b/Makefile Wed Oct 24 14:47:51 2012 +0200
@@ -9,16 +9,19 @@
prefix = /usr
sbindir = ${prefix}/sbin
sharedir = ${prefix}/share/${KEYDIR}
+mandir = ${prefix}/share/man
DESTDIR =
.PHONY: all clean install
-all: $(sbin_SCRIPT)
+all: $(sbin_SCRIPT) $(sbin_SCRIPT).8
install: all
install -m 0755 -d $(DESTDIR)$(sharedir)/
install -m 0644 ${pub_KEYS} $(DESTDIR)$(sharedir)/
install -m 0755 $(sbin_SCRIPT) $(DESTDIR)$(sbindir)/
+ install -m 0755 -d $(DESTDIR)${mandir}/man8
+ install -m 0644 $(sbin_SCRIPT).8 $(DESTDIR)${mandir}/man8
clean:
-rm -f $(sbin_SCRIPT) core
@@ -27,3 +30,6 @@
@chmod +w $@ 2>/dev/null || true
@sed -e 's,@PERL@,$(PERL),g' < $^ >$@
@chmod a=rx $@
+
+%.8: %.pl
+ pod2man --section 8 <$^ >$@
--- a/debian/README.Debian Wed Oct 24 14:05:56 2012 +0200
+++ b/debian/README.Debian Wed Oct 24 14:47:51 2012 +0200
@@ -1,6 +1,4 @@
schlittermann-ssh-keys for Debian
---------------------------------
-<possible notes regarding this package - if none, delete this file>
-
- -- unknown <arnold@schlittermann.de> Mon, 25 Feb 2008 13:45:09 +0100
+Noting to note here.
--- a/debian/changelog Wed Oct 24 14:05:56 2012 +0200
+++ b/debian/changelog Wed Oct 24 14:47:51 2012 +0200
@@ -1,3 +1,10 @@
+schlittermann-ssh-keys (0.13+nmu1) stable; urgency=low
+
+ * Non-maintainer upload.
+ * fixed some lintian bugs
+
+ -- Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> Wed, 24 Oct 2012 14:33:50 +0200
+
schlittermann-ssh-keys (0.13) squeeze lenny; urgency=low
* added my cryptostick based key
--- a/debian/control Wed Oct 24 14:05:56 2012 +0200
+++ b/debian/control Wed Oct 24 14:47:51 2012 +0200
@@ -3,11 +3,11 @@
Priority: extra
Maintainer: Christian Arnold (schlittermann -- internet & unix support) <arnold@schlittermann.de>
Build-Depends: debhelper (>= 5)
-Standards-Version: 3.7.2
+Standards-Version: 3.9.1
Package: schlittermann-ssh-keys
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, ssh (>> 4.3p2), perl (>> 5.8.8), libterm-readkey-perl
Description: Public ssh keys from Schlittermann technician
- This package just contains the public ssh keys from the Schlittermann technician,
- and an script to managed an authorized_keys.local file.
+ This package just contains the public ssh keys from the Schlittermann
+ technicians, and an script to manage an authorized_keys.local file.
--- a/debian/copyright Wed Oct 24 14:05:56 2012 +0200
+++ b/debian/copyright Wed Oct 24 14:47:51 2012 +0200
@@ -1,10 +1,11 @@
-This is schlittermann-ssh-keys, written and maintained by unknown <arnold@schlittermann.de>
-on Mon, 25 Feb 2008 13:45:09 +0100.
+This is schlittermann-ssh-keys,
+written and maintained by unknown <arnold@schlittermann.de>.
+Some contributions from other people at schlittermann.de
The original source can always be found at:
- ftp://ftp.debian.org/dists/unstable/main/source/
+ https://ssl.schlittermann.de/hg/ius/schlittermann-ssh-keys/
-Copyright Holder: unknown
+Copyright 2012 Christian Arnold <arnold@schlittermann.de>
License:
--- a/debian/rules Wed Oct 24 14:05:56 2012 +0200
+++ b/debian/rules Wed Oct 24 14:47:51 2012 +0200
@@ -10,89 +10,87 @@
#export DH_VERBOSE=1
-
-
-CFLAGS = -Wall -g
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
- CFLAGS += -O0
-else
- CFLAGS += -O2
-endif
-
-configure: configure-stamp
-configure-stamp:
- dh_testdir
- # Add here commands to configure the package.
-
- touch configure-stamp
-
-
-build: build-stamp
-
-build-stamp: configure-stamp
- dh_testdir
-
- # Add here commands to compile the package.
- $(MAKE)
- #docbook-to-man debian/schlittermann-ssh-keys.sgml > schlittermann-ssh-keys.1
-
- touch $@
-
-clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp configure-stamp
-
- # Add here commands to clean up after the build process.
- -$(MAKE) clean
-
- dh_clean
-
-install: build
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
- # Add here commands to install the package into debian/schlittermann-ssh-keys.
- $(MAKE) DESTDIR=$(CURDIR)/debian/schlittermann-ssh-keys install
-
-
-# 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
- dh_installdocs
- dh_installexamples
-# dh_install
-# dh_installmenu
-# dh_installdebconf
-# dh_installlogrotate
-# dh_installemacsen
-# dh_installpam
-# dh_installmime
-# dh_python
-# dh_installinit
-# dh_installcron
-# dh_installinfo
- dh_installman
- dh_link
- dh_strip
- dh_compress
- dh_fixperms
-# dh_perl
-# dh_makeshlibs
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+%:
+ dh $@
+#
+#
+#CFLAGS = -Wall -g
+#
+#ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+# CFLAGS += -O0
+#else
+# CFLAGS += -O2
+#endif
+#
+#configure: configure-stamp
+#configure-stamp:
+# dh_testdir
+# # Add here commands to configure the package.
+#
+# touch configure-stamp
+#
+#
+#build: build-stamp
+#
+#build-stamp: configure-stamp
+# dh_testdir
+#
+# # Add here commands to compile the package.
+# $(MAKE)
+# #docbook-to-man debian/schlittermann-ssh-keys.sgml > schlittermann-ssh-keys.1
+#
+# touch $@
+#
+#clean:
+# dh_testdir
+# dh_testroot
+# rm -f build-stamp configure-stamp
+#
+# # Add here commands to clean up after the build process.
+# $(MAKE) clean
+#
+# dh_clean
+#
+#install: build
+# dh_testdir
+# dh_testroot
+# dh_clean -k
+# dh_installdirs
+#
+# # Add here commands to install the package into debian/schlittermann-ssh-keys.
+# $(MAKE) DESTDIR=$(CURDIR)/debian/schlittermann-ssh-keys install
+#
+#
+## Build architecture-independent files here.
+#binary-indep: build install
+# dh_testdir
+# dh_testroot
+# dh_installchangelogs
+# dh_installdocs
+# dh_installexamples
+## dh_install
+## dh_installmenu
+## dh_installdebconf
+## dh_installlogrotate
+## dh_installemacsen
+## dh_installpam
+## dh_installmime
+## dh_python
+## dh_installinit
+## dh_installcron
+## dh_installinfo
+# dh_installman
+# dh_link
+# dh_strip
+# dh_compress
+# dh_fixperms
+## dh_perl
+## dh_makeshlibs
+# dh_installdeb
+# dh_shlibdeps
+# dh_gencontrol
+# dh_md5sums
+# dh_builddeb
+#
+#binary: binary-indep binary-arch
+#.PHONY: build clean binary-indep binary-arch binary install configure
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debian/source/format Wed Oct 24 14:47:51 2012 +0200
@@ -0,0 +1,1 @@
+3.0 (native)