Import Debian changes 1.18-1 debian/1.18-1
authorGuus Sliepen <guus@debian.org>
Wed, 10 Jun 2009 15:20:25 +0000 (17:20 +0200)
committerThadeu Lima de Souza Cascardo <cascardo@cascardo.eti.br>
Fri, 11 Aug 2017 22:35:29 +0000 (19:35 -0300)
sendxmpp (1.18-1) unstable; urgency=low

  * New upstream release.
    - Sets correct message type. Closes: #520110

1  2 
debian/changelog
debian/compat
debian/control
debian/rules

index 2adf6aa,0000000..89c92cd
mode 100644,000000..100644
--- /dev/null
@@@ -1,59 -1,0 +1,66 @@@
++sendxmpp (1.18-1) unstable; urgency=low
++
++  * New upstream release.
++    - Sets correct message type. Closes: #520110
++
++ -- Guus Sliepen <guus@debian.org>  Wed, 10 Jun 2009 17:20:25 +0200
++
 +sendxmpp (1.15-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Guus Sliepen <guus@debian.org>  Tue, 28 Oct 2008 09:38:48 +0100
 +
 +sendxmpp (1.14-1) unstable; urgency=low
 +
 +  * New upstream release.
 +    - Allow specification of alternative hostname for server. Closes: #497829
 +  * Bump Standards-Version.
 +  * Rename build-arch to build-indep in debian/rules.
 +
 + -- Guus Sliepen <guus@debian.org>  Tue, 23 Sep 2008 15:40:06 +0200
 +
 +sendxmpp (1.13-1.1) unstable; urgency=medium
 +
 +  * Non-maintainer upload.
 +  * Fix !$port to $port. Closes #496823
 +
 + -- Andreas Barth <aba@not.so.argh.org>  Sun, 21 Sep 2008 09:08:06 +0000
 +
 +sendxmpp (1.13-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Guus Sliepen <guus@debian.org>  Thu, 13 Sep 2007 16:38:28 +0200
 +
 +sendxmpp (0.0.8+cvs20061115-1) unstable; urgency=low
 +
 +  * New upstream release. Closes: #356258, #397396
 +
 + -- Guus Sliepen <guus@debian.org>  Wed, 15 Nov 2006 12:22:07 +0100
 +
 +sendxmpp (0.0.8-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Guus Sliepen <guus@debian.org>  Wed, 18 May 2005 11:21:14 +0200
 +
 +sendxmpp (0.0.7.1-1) unstable; urgency=low
 +
 +  * New upstream release.
 +
 + -- Guus Sliepen <guus@debian.org>  Wed,  4 May 2005 12:22:51 +0200
 +
 +sendxmpp (0.0.5-2) unstable; urgency=low
 +
 +  * It's just a script and a manpage, so set Architecture: all.
 +
 + -- Guus Sliepen <guus@debian.org>  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 <guus@debian.org>  Sat,  4 Dec 2004 16:14:06 +0100
 +
diff --cc debian/compat
index b8626c4,0000000..7f8f011
mode 100644,000000..100644
--- /dev/null
@@@ -1,1 -1,0 +1,1 @@@
- 4
++7
diff --cc debian/control
index 809223d,0000000..21e13fc
mode 100644,000000..100644
--- /dev/null
@@@ -1,14 -1,0 +1,14 @@@
- Build-Depends: debhelper (>= 4.0.0), perl
- Standards-Version: 3.8.0
 +Source: sendxmpp
 +Section: net
 +Priority: optional
 +Maintainer: Guus Sliepen <guus@debian.org>
++Build-Depends: debhelper (>= 7.0.0), perl
++Standards-Version: 3.8.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 --cc debian/rules
index 3f7052b,0000000..e0b4109
mode 100755,000000..100755
--- /dev/null
@@@ -1,102 -1,0 +1,74 @@@
- # 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.
 +#!/usr/bin/make -f
 +# -*- makefile -*-
 +
 +# Uncomment this to turn on verbose mode.
 +#export DH_VERBOSE=1
 +
-       # Add here commands to configure the package.
 +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 compile the package.
-       #$(MAKE)
 +
 +      touch configure-stamp
 +
 +
 +build: build-stamp
 +
 +build-stamp: configure-stamp 
 +      dh_testdir
 +
-       #docbook-to-man debian/sendxmpp.sgml > sendxmpp.1
 +      pod2man sendxmpp > sendxmpp.1
-       # Add here commands to clean up after the build process.
-       #-$(MAKE) clean
 +
 +      touch build-stamp
 +
 +clean:
 +      dh_testdir
 +      dh_testroot
 +      rm -f build-stamp configure-stamp
 +
-       dh_clean -k 
 +      rm -f sendxmpp.1
 +
 +      dh_clean 
 +
 +install: build
 +      dh_testdir
 +      dh_testroot
-       # Add here commands to install the package into debian/sendxmpp.
-       #$(MAKE) install DESTDIR=$(CURDIR)/debian/sendxmpp
++      dh_prep
 +      dh_installdirs
 +
- #     dh_install
- #     dh_installmenu
- #     dh_installdebconf       
- #     dh_installlogrotate
- #     dh_installemacsen
- #     dh_installpam
- #     dh_installmime
- #     dh_installinit
- #     dh_installcron
- #     dh_installinfo
 +      install sendxmpp debian/sendxmpp/usr/bin/
 +      install -m 422 sendxmpp.1 debian/sendxmpp/usr/share/man/man1/
 +
 +
 +# 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_testdir
 +      dh_testroot
 +      dh_installchangelogs Changes
 +      dh_installdocs
 +      dh_installexamples
- #     dh_python
- #     dh_makeshlibs
 +      dh_installman
 +      dh_link
 +      dh_strip
 +      dh_compress
 +      dh_fixperms
 +      dh_perl
 +      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