[Pkg-irc-commits] r229 - in /packages/inspircd/trunk/debian: changelog control rules

bradsmith at users.alioth.debian.org bradsmith at users.alioth.debian.org
Wed Dec 3 17:00:40 UTC 2008


Author: bradsmith
Date: Wed Dec  3 17:00:39 2008
New Revision: 229

URL: http://svn.debian.org/wsvn/pkg-irc/?sc=1&rev=229
Log:
Add myself to uploaders, whitespace/typo fixes

Modified:
    packages/inspircd/trunk/debian/changelog
    packages/inspircd/trunk/debian/control
    packages/inspircd/trunk/debian/rules

Modified: packages/inspircd/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-irc/packages/inspircd/trunk/debian/changelog?rev=229&op=diff
==============================================================================
--- packages/inspircd/trunk/debian/changelog (original)
+++ packages/inspircd/trunk/debian/changelog Wed Dec  3 17:00:39 2008
@@ -1,11 +1,16 @@
 inspircd (1.1.22+dfsg-1) UNRELEASED; urgency=low
 
-  * (NOT RELEASED YET) New upstream release
-  * Remove nenolod from Uploaders as requested 
-  * Merge with upstream discontinue our patch series 02, 03 
-  * Upstream change to staticly linked core Closes: #506862
+  [ Matt Arnold ]
+  * (NOT RELEASED YET) New upstream release.
+  * Remove nenolod from Uploaders as requested.
+  * Merge with upstream discontinue our patch series 02, 03.
+  * Upstream change to staticlly linked core. Closes: #506862.
 
- -- Matt Arnold <mattarnold5 at gmail.com>  Tue, 02 Dec 2008 23:01:41 -0500
+  [ Bradley Smith ]
+  * Add myself to uploaders.
+  * Misc whitespace fixes.
+
+ -- Bradley Smith <bradsmith at debian.org>  Wed, 03 Dec 2008 16:47:55 +0000
 
 inspircd (1.1.21+dfsg-1) unstable; urgency=low
 

Modified: packages/inspircd/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-irc/packages/inspircd/trunk/debian/control?rev=229&op=diff
==============================================================================
--- packages/inspircd/trunk/debian/control (original)
+++ packages/inspircd/trunk/debian/control Wed Dec  3 17:00:39 2008
@@ -7,7 +7,8 @@
 Uploaders: Darren Blaber <dmbtech at gmail.com>,
   Mario Iseli <mario at debian.org>,
   Matt Arnold <mattarnold5 at gmail.com>,
-  Giacomo Catenazzi <cate at debian.org>
+  Giacomo Catenazzi <cate at debian.org>,
+  Bradley Smith <bradsmith at debian.org>
 Build-Depends: debhelper (>= 5), perl-modules, libgnutls-dev, dpatch
 Standards-Version: 3.8.0
 Homepage: http://www.inspircd.org/
@@ -19,7 +20,7 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Provides: ircd
 Description: Modular IRCd written in C++
- InspIRCd is a modular C++ IRC Daemon for several operating systems created 
+ InspIRCd is a modular C++ IRC Daemon for several operating systems created
  to provide a stable, modern, lightweight irc server from scratch and provide
  a vast number of features in a modularised form using an advanced module API.
  By keeping the functionality of the main core to a minimum, the server is very
@@ -32,7 +33,7 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}, inspircd
 Priority: extra
 Description: Modular IRCd written in C++ - debugging symbols
- InspIRCd is a modular C++ IRC Daemon for several operating systems created 
+ InspIRCd is a modular C++ IRC Daemon for several operating systems created
  to provide a stable, modern, lightweight irc server from scratch and provide
  a vast number of features in a modularised form using an advanced module API.
  By keeping the functionality of the main core to a minimum, the server is very

Modified: packages/inspircd/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-irc/packages/inspircd/trunk/debian/rules?rev=229&op=diff
==============================================================================
--- packages/inspircd/trunk/debian/rules (original)
+++ packages/inspircd/trunk/debian/rules Wed Dec  3 17:00:39 2008
@@ -14,20 +14,21 @@
 
 DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null)
 
-ifeq ($(DEB_HOST_ARCH_OS), linux) 
+ifeq ($(DEB_HOST_ARCH_OS), linux)
     SOCKET_ENGINE=--enable-epoll
-else ifeq ($(DEB_HOST_ARCH_OS), kfreebsd) 
+else ifeq ($(DEB_HOST_ARCH_OS), kfreebsd)
     SOCKET_ENGINE=--enable-kqueue
 else ifeq ($(DEB_HOST_ARCH_OS), solaris)
     SOCKET_ENGINE=--enable-ports
 else
     SOCKET_ENGINE=--enable-poll
-endif 
+endif
 
 build: build-stamp
 build-stamp: patch-stamp
 	dh_testdir
-	./configure --disable-interactive --disable-rpath=1 --enable-gnutls $(SOCKET_ENGINE) \
+	./configure --disable-interactive --disable-rpath=1 \
+		--enable-gnutls $(SOCKET_ENGINE) \
 		--enable-ipv6 --prefix=/usr/lib/inspircd \
 		--config-dir=/etc/inspircd \
 		--module-dir=/usr/lib/inspircd/modules \
@@ -41,7 +42,8 @@
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp
-	#Making distclean should remove the symlink, but it doesn't, so we do it here
+	# Making distclean should remove the symlink, but it doesn't, so we do
+	# it here
 	[ ! -f Makefile ] || $(MAKE) distclean
 	rm -rf src/modules/m_ssl_gnutls.cpp
 	dh_clean
@@ -53,11 +55,15 @@
 	dh_installdirs
 	# Use 755 for correct permissions
 	$(MAKE) INSTMODE=755 install DESTDIR=$(CURDIR)/debian/inspircd
-	install -m 640 $(CURDIR)/debian/inspircd.default $(CURDIR)/debian/inspircd/etc/default/inspircd
+	install -m 640 $(CURDIR)/debian/inspircd.default \
+		$(CURDIR)/debian/inspircd/etc/default/inspircd
 	rm -f $(CURDIR)/debian/inspircd/etc/inspircd/*
-	install -o irc -m 640 $(CURDIR)/debian/inspircd.conf $(CURDIR)/debian/inspircd/etc/inspircd/inspircd.conf
-	install -o irc -m 644 $(CURDIR)/debian/inspircd.motd $(CURDIR)/debian/inspircd/etc/inspircd/motd
-	install -o irc -m 644 $(CURDIR)/debian/inspircd.rules $(CURDIR)/debian/inspircd/etc/inspircd/rules
+	install -o irc -m 640 $(CURDIR)/debian/inspircd.conf \
+		$(CURDIR)/debian/inspircd/etc/inspircd/inspircd.conf
+	install -o irc -m 644 $(CURDIR)/debian/inspircd.motd \
+		$(CURDIR)/debian/inspircd/etc/inspircd/motd
+	install -o irc -m 644 $(CURDIR)/debian/inspircd.rules \
+		$(CURDIR)/debian/inspircd/etc/inspircd/rules
 
 binary-indep: build install
 
@@ -88,4 +94,3 @@
 
 .PHONY: binary clean binary-indep binary-arch build install patch unpatch \
         clean1 source
-




More information about the Pkg-irc-commits mailing list