aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarNoèl Köthe <noel@debian.org>2005-02-21 09:43:10 +0100
committerLibravatarUnit 193 <unit193@ubuntu.com>2019-12-05 16:34:58 -0500
commit96ed22c23774a114ed56c945a9914c0cdc23995d (patch)
treee64b25f328bccb01817f63a3b908ccd914c5e119
parent2e8ae7e0b8f5a0e034d049ead63a60a3572e81b0 (diff)
downloadlistadmin-96ed22c23774a114ed56c945a9914c0cdc23995d.tar.bz2
listadmin-96ed22c23774a114ed56c945a9914c0cdc23995d.tar.xz
listadmin-96ed22c23774a114ed56c945a9914c0cdc23995d.tar.zst
Import Debian changes 2.23-1debian/2.23-1
listadmin (2.23-1) unstable; urgency=low * new upstream relase from 2005-02-21 * upstream fixed problem with passwords in web logs (closes: Bug#289915) listadmin (2.22-1) unstable; urgency=low * new upstream release from 2004-11-02 * running listadmin gives "uninitialized value" warnings are fixed (closes: Bug#278149) * Name "main::opt_n" used only once is fixed (closes: Bug#278330) listadmin (2.21-1) unstable; urgency=low * Initial Release. (closes: Bug#274648)
-rw-r--r--debian/changelog27
-rw-r--r--debian/compat1
-rw-r--r--debian/control20
-rw-r--r--debian/copyright12
-rw-r--r--debian/dirs2
-rwxr-xr-xdebian/rules100
6 files changed, 162 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..c5524eb
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,27 @@
+listadmin (2.23-1) unstable; urgency=low
+
+ * new upstream relase from 2005-02-21
+ * upstream fixed problem with passwords in web logs
+ (closes: Bug#289915)
+
+ -- Noèl Köthe <noel@debian.org> Mon, 21 Feb 2005 09:43:10 +0100
+
+listadmin (2.22-1) unstable; urgency=low
+
+ * new upstream release from 2004-11-02
+ * running listadmin gives "uninitialized value" warnings
+ are fixed
+ (closes: Bug#278149)
+ * Name "main::opt_n" used only once
+ is fixed
+ (closes: Bug#278330)
+
+ -- Noèl Köthe <noel@debian.org> Wed, 03 Nov 2004 00:46:35 +0100
+
+listadmin (2.21-1) unstable; urgency=low
+
+ * Initial Release.
+ (closes: Bug#274648)
+
+ -- Noèl Köthe <noel@debian.org> Tue, 12 Oct 2004 20:32:04 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..b8626c4
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+4
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2ef59ad
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: listadmin
+Section: net
+Priority: optional
+Maintainer: Noèl Köthe <noel@debian.org>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.6.1
+
+Package: listadmin
+Architecture: all
+Depends: ${shlibs:Depends}, ${misc:Depends}, libwww-perl, libcrypt-ssleay-perl
+Description: command line mailman moderator queue manipulation
+ listadmin is a command line tool to manipulate the queues of messages
+ held for moderator approval by mailman. It is designed to keep user
+ interaction to a minimum, in theory you could run it from cron to
+ prune the queue. It can use the score from a header added by
+ SpamAssassin to filter, or it can match specific senders, subjects, or
+ reasons.
+ .
+ http://heim.ifi.uio.no/~kjetilho/hacks/
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..80ccc8a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,12 @@
+This package was debianized by
+Noèl Köthe <noel@debian.org> on Tue, 12 Oct 2004 20:32:04 +0200.
+
+It was downloaded from http://heim.ifi.uio.no/~kjetilho/hacks/
+
+Copyright:
+
+Upstream Author: Kjetil Torgrim Homme <kjetilho+listadmin@ifi.uio.no>
+
+License:
+
+Released into public domain.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..98d1583
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/bin
+usr/share/man/man1
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..f982030
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,100 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#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/listadmin.sgml > listadmin.1
+
+ touch build-stamp
+
+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/listadmin.
+ #$(MAKE) install DESTDIR=$(CURDIR)/debian/listadmin
+ cp listadmin $(CURDIR)/debian/listadmin/usr/bin/
+ cp listadmin.1 $(CURDIR)/debian/listadmin/usr/share/man/man1/
+
+
+# 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_installinit
+# dh_installcron
+# dh_installinfo
+ dh_installman
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_perl
+# dh_python
+# 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