debian/0000755000000000000000000000000012222045624007165 5ustar debian/compat0000644000000000000000000000000211517525574010400 0ustar 7 debian/NEWS0000644000000000000000000000054011520001111007642 0ustar ii (1.3-1) unstable; urgency=low - The new upstream release no longer opens a directory for server messages like quit or a nickname change. This means no longer nickname directory spam but also that you have to monitor the server out file for these messages. -- Nico Golde Sat, 14 Jul 2007 20:49:01 +0200 debian/source/0000755000000000000000000000000011520001030010444 5ustar debian/source/format0000644000000000000000000000001411520001030011652 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000326011517525574011136 0ustar This package was debianized by Daniel Baumann on Sat, 3 Feb 2007 19:08:00 +0100 and is now maintained by Nico Golde It was downloaded from . Upstream Author: Nico Golde and Anselm Garbe Copyright: 2005-2007 Nico Golde 2005-2006 and Anselm Garbe License: MIT/X Consortium License Copyright (C) 2005-2007 Nico Golde Copyright (C) 2005-2006 Anselm R. Garbe Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. The Debian packaging is Copyright (C) 2007-2009, Nico Golde and is licensed under the GPL-2, see `/usr/share/common-licenses/GPL-2'. debian/watch0000644000000000000000000000007511517525574010235 0ustar version=3 http://code.suckless.org/dl/tools/ii-(.*)\.tar\.gz debian/rules0000755000000000000000000000203012222045624010240 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk build-arch: build build-indep: build build: build-stamp build-stamp: dh_testdir # Building package CFLAGS="$(CFLAGS)" $(MAKE) PREFIX=/usr touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp # Cleaning package [ ! -f Makefile ] || $(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # Installing package $(MAKE) install DESTDIR=$(CURDIR)/debian/ii PREFIX=/usr rm -f =$(CURDIR)/debian/ii/usr/share/doc/ii/CHANGES # Removing double files rm -f debian/ii/usr/share/doc/ii/LICENSE binary-indep: build install binary-arch: build install dh_testdir dh_testroot dh_installchangelogs CHANGES dh_installdocs dh_install dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/control0000644000000000000000000000160512222045330010564 0ustar Source: ii Section: net Priority: optional Maintainer: Nico Golde Build-Depends: debhelper (>= 7), dpkg-dev (>= 1.16.1~) Standards-Version: 3.9.4 Homepage: http://tools.suckless.org/ii/ Package: ii Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: minimalist FIFO and filesystem-based IRC client ii (irc it) is a minimalist FIFO and filesystem-based IRC client. It creates an irc directory tree with server, channel and nick name directories. In every directory a FIFO in file and a normal out file is created. . The in file is used to communicate with the servers and the out files contain the server messages. For every channel and every nick name there are related in and out files created. This allows IRC communication from command line and adheres to the Unix philosophy. . It consists of <= 500 lines of code and is the big brother of sic. debian/patches/0000755000000000000000000000000012222044046010611 5ustar debian/patches/series0000644000000000000000000000011312222044024012015 0ustar remove_static_lib_search_path_includes.patch respect_dpkg_buildflags.patch debian/patches/remove_static_lib_search_path_includes.patch0000644000000000000000000000176012222043253021556 0ustar Description: do not include static library paths in the search path This package has one or more -L/usr/lib in its build system, which will make it ftbfs if there is libraries under /usr/lib, while is not the default architecture, mips* for example. . ii (1.7-2) unstable; urgency=high . * Enable hardening options. * Introduce build-arch and build-indep targets to rules. * Fix upstream homepage (Closes: #693116). * Do not explicitely include /usr/lib as library search path, but just use the default (Closes: #722784). Author: Nico Golde Bug-Debian: http://bugs.debian.org/722784 --- ii-1.7.orig/config.mk +++ ii-1.7/config.mk @@ -16,7 +16,7 @@ VERSION = 1.7 # includes and libs INCLUDES = -I. -I${INCDIR} -I/usr/include -LIBS = -L${LIBDIR} -L/usr/lib -lc +LIBS = -lc # uncomment and comment other variables for compiling on Solaris #LIBS = -L${LIBDIR} -L/usr/lib -lc -lsocket -lnsl #CFLAGS = -g ${INCLUDES} -DVERSION=\"${VERSION}\" debian/patches/respect_dpkg_buildflags.patch0000644000000000000000000000056512222044045016505 0ustar Author: Nico Golde Description: Respect dpkg-buildflags --- ii-1.7.orig/config.mk +++ ii-1.7/config.mk @@ -23,5 +23,5 @@ LIBS = -lc # compiler CC = cc -CFLAGS = -g -O0 -W -Wall ${INCLUDES} -DVERSION=\"${VERSION}\" -LDFLAGS = ${LIBS} +CFLAGS += -g -O0 -W -Wall ${INCLUDES} -DVERSION=\"${VERSION}\" +LDFLAGS += ${LIBS} debian/changelog0000644000000000000000000000621412222044371011040 0ustar ii (1.7-2) unstable; urgency=high * Enable hardening options. * Introduce build-arch and build-indep targets to rules. * Fix upstream homepage (Closes: #693116). * Do not explicitly include /usr/lib as library search path, but just use the default (Closes: #722784). -- Nico Golde Sun, 29 Sep 2013 17:22:44 +0200 ii (1.7-1) unstable; urgency=low * New upstream release. * Bump standards version (no changes required). * debian/control: fix upstream homepage. -- Nico Golde Sat, 05 Jan 2013 17:50:18 +0100 ii (1.6-1) unstable; urgency=low * New upstream release. -- Nico Golde Mon, 31 Jan 2011 21:48:11 +0100 ii (1.5-1) unstable; urgency=low * New upstream release. * Switch to dpkg-source 3.0 (quilt) format * Bump policy version, no changes needed * Use paragraphs rather than asterisks in NEWS.Debian -- Nico Golde Wed, 26 Jan 2011 12:15:37 +0100 ii (1.4-3) unstable; urgency=low * Replace echo with printf in query.sh so it doesn't need to rely on the XSI extension of SuSv3 (Closes: #530976). -- Nico Golde Mon, 01 Jun 2009 13:40:33 +0200 ii (1.4-2) unstable; urgency=low * Remove unneeded bashism in query script (Closes: #530103). * Small copyright adjustments, nothing worth to mention. * Bump policy version, no changes needed. * Use dh_prep rather than dh_clean -k in debian/rules. -- Nico Golde Sat, 23 May 2009 17:19:37 +0200 ii (1.4-1) unstable; urgency=low * New upstream release. -- Nico Golde Sat, 09 Aug 2008 13:48:56 +0200 ii (1.3-2) unstable; urgency=low * Bump to policy version 3.8.0, no changes needed. * Bump compat level and debhelper dependency to 7. * Make Homepage a real control field and fix URL. * Fix tarball localtion in watch file. -- Nico Golde Tue, 22 Jul 2008 18:54:24 +0200 ii (1.3-1) unstable; urgency=low * New upstream release. -- Nico Golde Sat, 14 Jul 2007 20:49:01 +0200 ii (1.2-1) unstable; urgency=low * New upstream release. -- Nico Golde Sat, 23 Jun 2007 13:45:51 +0200 ii (1.1-3) unstable; urgency=low * FIxed copyright years. -- Nico Golde Sat, 09 Jun 2007 14:39:59 +0200 ii (1.1-2) unstable; urgency=low * Handing package over to Nico. -- Daniel Baumann Mon, 23 Apr 2007 08:42:00 +0200 ii (1.1-1) unstable; urgency=low * New upstream release. -- Nico Golde Wed, 04 Apr 2007 10:41:46 +0200 ii (1+fixed-3) unstable; urgency=low * Updated Nicos email address. -- Daniel Baumann Wed, 28 Mar 2007 21:41:00 +0100 ii (1+fixed-2) unstable; urgency=low * Updated homepage in control and copyright. -- Daniel Baumann Wed, 14 Mar 2007 09:45:00 +0100 ii (1+fixed-1) unstable; urgency=low * Upstream did change the release tarball again. -- Daniel Baumann Sat, 3 Feb 2007 21:50:00 +0100 ii (1-1) unstable; urgency=low * Initial release (Closes: #340682). -- Daniel Baumann Sat, 3 Feb 2007 19:08:00 +0100