From 2150b22327fb2db6154d852029206325f5189def Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 8 Dec 2004 13:18:44 +0100 Subject: [PATCH] Import Debian changes 0.0.5-2 sendxmpp (0.0.5-2) unstable; urgency=low * It's just a script and a manpage, so set Architecture: all. sendxmpp (0.0.5-1) unstable; urgency=low * Initial Release. * Fix NAME section in manpage. --- debian/changelog | 13 ++++++ debian/compat | 1 + debian/control | 14 +++++++ debian/copyright | 12 ++++++ debian/dirs | 2 + debian/docs | 1 + debian/rules | 102 +++++++++++++++++++++++++++++++++++++++++++++++ sendxmpp | 1 + 8 files changed, 146 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f99f8cc --- /dev/null +++ b/debian/changelog @@ -0,0 +1,13 @@ +sendxmpp (0.0.5-2) unstable; urgency=low + + * It's just a script and a manpage, so set Architecture: all. + + -- Guus Sliepen Wed, 8 Dec 2004 13:18:44 +0100 + +sendxmpp (0.0.5-1) unstable; urgency=low + + * Initial Release. + * Fix NAME section in manpage. + + -- Guus Sliepen Sat, 4 Dec 2004 16:14:06 +0100 + 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..455781f --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: sendxmpp +Section: net +Priority: optional +Maintainer: Guus Sliepen +Build-Depends-Indep: debhelper (>= 4.0.0), perl +Standards-Version: 3.6.1 + +Package: sendxmpp +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libnet-xmpp-perl +Description: commandline XMPP (jabber) utility + sendxmpp is a perl script to send XMPP (jabber) messages, similar to what + mail(1) does for mail. XMPP is an open, non-proprietary protocol for instant + messaging. See www.jabber.org for more information. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c2b8ea7 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Guus Sliepen on +Sat, 4 Dec 2004 15:37:56 +0100. + +It was downloaded from http://www.djcbsoftware.nl/code/sendxmpp/ + +Copyright: + +Upstream Author: Dirk-Jan Binnema + +License: + +GPL version 2, see /usr/share/common-licenses/GPL. 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/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..932470d --- /dev/null +++ b/debian/rules @@ -0,0 +1,102 @@ +#!/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) + pod2man sendxmpp > sendxmpp.1 + #docbook-to-man debian/sendxmpp.sgml > sendxmpp.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 + rm -f sendxmpp.1 + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/sendxmpp. + #$(MAKE) install DESTDIR=$(CURDIR)/debian/sendxmpp + install sendxmpp debian/sendxmpp/usr/bin/ + install -m 422 sendxmpp.1 debian/sendxmpp/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 Changes + 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 diff --git a/sendxmpp b/sendxmpp index 10bc604..c8f3cca 100755 --- a/sendxmpp +++ b/sendxmpp @@ -364,6 +364,7 @@ sub usage () { # # the fine manual # + =head1 NAME sendxmpp - send xmpp messages from the commandline. -- 2.20.1