debian/0000755000000000000000000000000012200250145007155 5ustar debian/docs0000644000000000000000000000004211366764453010054 0ustar BUG_FORM README KNOWNBUGS UPDATES debian/rules0000755000000000000000000000303012200247370010237 0ustar #!/usr/bin/make -f CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) CFLAGS += -g -Wall build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: dh_testdir ./configure --prefix=/usr --mandir=/usr/share/man \ --with-ssl \ --with-ipv6 \ --with-perl \ --libexecdir=/usr/lib/epic5 --program-prefix=$(CURDIR)/debian/epic5 $(MAKE) CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" touch build-stamp clean: dh_testdir rm -f build-stamp install-stamp [ ! -f Makefile ] || $(MAKE) distclean dh_clean install-stamp: build-stamp dh_testdir dh_testroot dh_clean -k -pepic5 dh_installdirs -pepic5 $(MAKE) install install: build install-stamp binary-indep: # Nothing to see, move along... binary-arch: build install dh_testdir dh_testroot dh_installdocs -a doc/* -XCVS -Xdoc/epic.1 dh_installmenu -a ifndef DEBUG dh_strip -a endif install -m 644 $(CURDIR)/debian/local \ $(CURDIR)/debian/epic5/usr/share/epic5/script/local dh_installchangelogs -a dh_installexamples -a install -m 644 debian/epic5.irc $(CURDIR)/debian/epic5/etc/epic5 install -m 644 $(CURDIR)/debian/local \ $(CURDIR)/debian/epic5/usr/share/epic5/script/local echo "irc.debian.org:6667" > $(CURDIR)/debian/epic5/etc/epic5/servers dh_link -a dh_compress -a dh_fixperms -a dh_makeshlibs -a dh_shlibdeps -a dh_gencontrol -a dh_installdeb -a dh_md5sums -a dh_builddeb -a binary: binary-indep binary-arch .PHONY: binary binary-arch binary-indep clean build install debian/preinst0000644000000000000000000000074011366764453010615 0ustar #!/bin/bash -e if [ "$1" = "upgrade" -o "$1" = "install" ]; then install -m 755 -d /etc/epic5 # this file needs to be preserved, then deleted if [ -e /etc/irc/servers-epic5 ]; then cp /etc/irc/servers-epic5 /etc/epic5/servers rm /etc/irc/servers-epic5 fi # this one we use only if we don't have anything else to use ... if [ ! -e /etc/epic5/servers -a -e /etc/irc/servers ]; then install -m 644 /etc/irc/servers /etc/epic5/servers fi fi #DEBHELPER# debian/README.Debian0000644000000000000000000000535611366764453011257 0ustar epic5 for Debian ---------------- A handfull of miscellaneous notes: * Eight bit characters - If you're having trouble typing or seeing eight bit characters in epic especially under screen, it's probably because one of epic's sets is not set properly. Try adding to your rc file: ^set EIGHT_BIT_CHARACTERS on ^set HIGH_BIT_ESCAPE 0 If that doesn't fix it, the script might be overriding the settings. If so, change it at the input prompt and use the script's save command (traditionally /save) If that doesn't fix it, take a plastic foam rubber object such as a Pool Noodle and proceed to *FWOP!* the author of the script mercilessly. + Note from (Jeremy Nelson): due to some unfortunate signed-unsigned casting conflicts, it is not possible for epic users to input character 255. (...) To work around this problem, add this to startup script: /eval bind $chr(255) parse_command {xtype -l $chr(255)} bind ^@ parse_command {xtype -l $chr(255)} + Startup scripts: in absence of ~/.epicrc epic5 would use ~/.ircrc, but the primary startup script is the ~/.epicrc or anything that the environment variable $EPICRC points to. * If you've installed an epic5-script-* package, some default script will be run if you have neither ~/.epicrc nor ~/.ircrc files. There are a few script packages for epic5 now, have a look at one of them for making your own. examples/wrapper.irc contains the base wrapper to use if your script isn't totally global-install-friendly. + TCL support explicitely disabled until someone needs that. Please file a wishlist bug, if you need TCL compiled in. + New key binding mechanism: there is completely new key binding mechanism in epic 1.1.7. The new mechanism is clear and easy-to-use. IT'S ALSO INCOMPATIBLE WITH PREVIOUS VERSIONS. THIS IS NOT A BUG. Support for old META-x bindings is removed. Read the /usr/share/doc/epic5/keys for more precise information. In short, what to do if your script suddenly stops working: Locate something like: BIND META_CHARACTER Where is a key binding prefix and is a number, e.g. 1, 2, 3. Remove this command or change it to what you like, e.g. you can prevent the prefix itself from being interpreted: BIND ^X NOTHING Now, locate all occurences of: BIND META- Where is the rest of your chosen key binding. Replace all of these lines with: BIND "^X" The script should work again. (*) Joseph Carter Sat, 24 Mar 2001 02:43:08 -0800 (+) Miros/law L. Baran Wed, 2 Oct 2002 21:04:43 +0200 debian/dirs0000644000000000000000000000014011366764453010064 0ustar usr/bin usr/lib/epic5 usr/share/doc usr/share/epic5/script usr/share/man/man1 etc/irc etc/epic5 debian/compat0000644000000000000000000000000211366764453010403 0ustar 5 debian/menu0000644000000000000000000000020111366764453010065 0ustar ?package(epic5): needs="text" section="Applications/Network/Communication" hints="IRC" title="epic5" \ command="/usr/bin/epic5" debian/wrapper.irc0000644000000000000000000000151611366764453011367 0ustar # wrapper.irc # # Some scripts require things like being in a directory in your LOAD_PATH # ~/.such as irc or similar locations. In order to accomidate these # scripts installed globally, it may be necessary to load a wrapper script # first. This wrapper will add a pair of directories to your path. For # most scripts, changing the name of the first variable should do the trick. ^assign _wrapper.name #SCRIPT# ^assign _wrapper.conf /etc/epic5 ^assign _wrapper.dir /usr/share/epic5 unless (match($_wrapper.conf/$_wrapper.name $split(: $LOAD_PATH))) { ^set LOAD_PATH $LOAD_PATH:$_wrapper.conf/$_wrapper.name } unless (match($_wrapper.dir/$_wrapper.name $split(: $LOAD_PATH))) { ^set LOAD_PATH $LOAD_PATH:$_wrapper.dir/$_wrapper.name } ## Anything else your script needs, put it here... load $_wrapper.name\-real.irc ^purge _wrapper debian/copyright0000644000000000000000000001472511366764453011151 0ustar This package was first debianized by David N. Welton , later redone by Joseph Carter . Then it was maintained by Miros/law L. Baran . It's currently maintained by Kurt Roeckx It was downloaded from upstream ftp server at epicsol.org (for instructions look at http://www.epicsol.org/). The upstream sources in *.tar.gz form are at ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/ Most of it is copyright by: * Copyright (c) 1990 Regents of the University of California. * Copyright (c) 1990 Michael Sandroff. * Copyright (c) 1990-1992 Tomi Ollila * Copyright (c) 1991, 1992 Troy Rollo. * Copyright (c) 1992-1996 Matthew Green. * Copyright (c) 1992-1997 Paul Falstad * Copyright © 1993, 1997 Jeremy Nelson. * Copyright © 1994 Jake Khuon. * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project * Copyright C 2000 Juraj Bednar. * Copyright (c) 2000-2001, Aaron D. Gifford * Copyright C 1998 J. Kean Johnston, used with permission * Copyright (c) 1995-2001 Kungliga Tekniska Högskolan (Royal Institute of Technology, Stockholm, Sweden). * Copyright Tom Zickel * Copyright(c) 1996 Colten Edwards * Copyright C 1993-2008 EPIC Software Labs. With following license: * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notices, the above paragraph (the one permitting redistribution), * this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The names of the author(s) may not be used to endorse or promote * products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. contrib/ircman.c is: /* ircman.c by David N. Welton */ /* This is free software under the terms of the GNU GPL */ On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'. source/compat.c is a collection of functions by different people, and with different licenses. Some of them are already mentioned above. tparm is written by Ross Ridge and is in the public domain. Some part of the compat.c file are written by EPIC Software Labs contributers and are in the public domain. The strlcpy, strlcat functions are: Copyright (c) 1998 Todd C. Miller With the following license: * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE * FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. The Arc4 random number generator is: * Copyright 1996 David Mazieres . With the following license: * Modification and redistribution in source and binary forms is * permitted provided that due credit is given to the author and the * OpenBSD project (for instance by leaving this copyright notice * intact). humanize_number is: * Copyright (c) 1997, 1998, 1999, 2002 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, * NASA Ames Research Center, by Luke Mewburn and by Tomas Svensson. * With the following license: * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notices, the above paragraph (the one permitting redistribution), * this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the NetBSD * Foundation, Inc. and its contributors. * 4. The names of the author(s) may not be used to endorse or promote * products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. debian/control0000644000000000000000000000160611366764453010613 0ustar Source: epic5 Section: net Priority: optional Maintainer: Kurt Roeckx Standards-Version: 3.8.0 Build-depends: debhelper (>= 5), libncurses5-dev, libssl-dev, libperl-dev, ruby-dev, ruby, tcl-dev Homepage: http://www.epicsol.org/ Package: epic5 Architecture: any Section: net Priority: optional Provides: irc Depends: ${shlibs:Depends}, ${misc:Depends} Suggests: epic5-script Description: epic irc client, version 5 epic5 is an irc client based on ircII. It is primarily suited to users who wish to write their own irc scripts or have irc scripts written by others. . Previous versions of epic were 100% compatible with ircII 2.8.2, though this is no longer the case. Instead we've taken a new direction and chosen to find places where compatibility with ircII is undesirable and fix them. No gratuitous incompatibilities have been added, though many new features have been. debian/examples0000644000000000000000000000002311366764453010741 0ustar debian/wrapper.irc debian/prerm0000644000000000000000000000021411366764453010252 0ustar #!/bin/sh update-alternatives --remove irc /usr/bin/epic5 update-alternatives --remove epic5-default.irc /etc/epic5/epic5.irc #DEBHELPER# debian/source/0000755000000000000000000000000011366764700010500 5ustar debian/source/format0000644000000000000000000000001411366764700011706 0ustar 3.0 (quilt) debian/local0000644000000000000000000000014011366764453010215 0ustar unless ((fexist(~/.epicrc) > -1) || (fexist(~/.ircrc) > -1)) { ^load /etc/epic5/default.irc } debian/watch0000644000000000000000000000012211366764453010231 0ustar version=3 http://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-([0-9.]+).tar.gz debian/epic5.irc0000644000000000000000000000057011366764453010713 0ustar # epic5.irc # # This script gets run if you have no ~/.epicrc or ~/.ircrc or other # script packages installed. If you install a script package but for some # reason want this script to be the default, edit the symlink yourself # (/etc/alternatives/epic5-default.irc).. # # Changes you make to this file will be preserved, it is a conffile. ^load tc ^load newaway ^load man debian/patches/0000755000000000000000000000000012200250142010601 5ustar debian/patches/manual.patch0000644000000000000000000001463411366765733013144 0ustar Index: epic5-1.1.2/doc/epic.1 =================================================================== --- epic5-1.1.2.orig/doc/epic.1 2010-05-01 08:52:29.000000000 +0000 +++ epic5-1.1.2/doc/epic.1 2010-05-01 08:52:34.000000000 +0000 @@ -1,10 +1,10 @@ .Dd April 22, 1999 .Dt EPIC 1 .Sh NAME -.Nm epic +.Nm epic5 .Nd Internet Relay Chat client for UNIX like systems .Sh SYNOPSIS -.Nm epic +.Nm epic5 .Op Ar \-a .Op Ar \-b .Op Ar \-B @@ -142,19 +142,20 @@ If you don't want your users to spoof their usernames, install identd, and do everyone on IRC a favor. .It nickname The first bare word found is taken as the default nickname to use. -This overrides all other options, including the -n option and the +This overrides all other options, including the \-n option and the .Ev IRCNICK environment variable. If all else fails, then the client uses your login name as the default nickname. .It server,[server] After the nickname, a list of one or more server specifications can be listed. -Unless you specify the -a option, this will replace your default server list! -The -a option forces any servers listed here to be appended to the default server list. +Unless you specify the \-a option, this will replace your default server list! +The \-a option forces any servers listed here to be appended to the default server list. The format for server specifications is: .sp .Dl hostname:port:password:nick .sp Any item can be omitted by leaving the field blank, and any trailing colons can also be omitted. +.El .Sh "DETAILED DESCRIPTION" .Ss "The Screen:" The screen is split into two parts, separated by an inverse-video status line (if supported). @@ -164,16 +165,16 @@ The lower part of the screen (a single line) accepts keyboard input. .sp Some terminals do not support certain features required by -.Nm epic +.Nm epic5 , in which case you receive a message stating this. If this occurs, try changing the terminal type or run -.Nm epic -with the -d option. +.Nm epic5 +with the \-d option. .Ss "Irc Commands:" Any line beginning with the slash character .Dq / is regarded as an -.Nm epic +.Nm epic5 command (the command character may be changed). Any line not beginning with this character is treated as a message to be sent to the current channel. The client has a built in help system. @@ -182,7 +183,7 @@ to open up the help system. .Ss "The .ircrc File:" When -.Nm epic +.Nm epic5 is executed, it checks the user's home directory for a .Pa ~/.ircrc file, executing the commands in the file. @@ -191,42 +192,44 @@ This allows predefinition of aliases and other features. .Sh PRACTICAL EXAMPLES Certainly any description of -.Nm epic +.Nm epic5 in this man page will be sorely inadequate because most of the confusion doesn't even start until after you get the client to connect to a server. But if you really have problems getting the client to connect to a server, try some of these: -.Bl -tag -width "epic" -.It Nm epic +.Bl -tag -width "epic5" +.It Nm epic5 Try this first. This will assume all the defaults. -If the person who is maintaining epic at your site has done a halfway decent job, this will put you on a server that is somewhat local to you. -.It Nm "epic nickname irc.domain.com" +If the person who is maintaining epic5 at your site has done a halfway decent job, this will put you on a server that is somewhat local to you. +.It Nm "epic5 nickname irc.domain.com" or something similar will attempt to connect to the irc server running on the host "irc.domain.com" (fill in a real irc server here) with the nickname of well, "nickname". This is the most common way to specify an alternate server to use. -.It Nm "epic nickname irc.domain.com:6664" +.It Nm "epic5 nickname irc.domain.com:6664" Sometimes, some servers are really busy, and it can take them a long time to establish a connection with you on the default port (6667). Most major servers on big public networks accept connections on many different ports, with the most common being most or all of the ports between 6660 and 6675. You can usually connect much faster if you use a port other than 6667, if the server you're connecting to supports an alternate port. -.It Nm "epic nickname irc.efnet.net" +.It Nm "epic5 nickname irc.efnet.net" If you're totally stumped and trying to get on efnet, try this. -.It Nm "epic nickname irc.undernet.org" +.It Nm "epic5 nickname irc.undernet.org" If you're totally stumped and trying to get on undernet, try this. -.It Nm "epic nickname irc.dal.net" +.It Nm "epic5 nickname irc.dal.net" If you're totally stumped and trying to get on dalnet, try this. +.El .Sh "FILES" -.Bl -tag -width "/usr/local/share/epic" -.It Nm /usr/local/bin/epic +.Bl -tag -width "/usr/share/epic5" +.It Nm /usr/bin/epic5 the default location of the binary .It Nm ~/.ircrc default initialization file .It Nm ~/.irc/ directory you can put your own -.Nm epic +.Nm epic5 scripts into, that can then be loaded with /load -.It Nm /usr/local/share/epic +.It Nm /usr/share/epic5 default directory containing message-of-the-day, master initialization, help files and -.Nm epic +.Nm epic5 scripts +.El .Sh "THE HELP FILES" Starting up the client is the easy part. Once you get connected, you'll probably find you have no idea what you're doing. @@ -251,7 +254,7 @@ .Pa Lots of great help for new irc users. .Sh "SIGNALS" -.Nm epic +.Nm epic5 handles the following signals gracefully .Pp .TP @@ -259,6 +262,7 @@ .It SIGUSR1 Closes all DCC connections and EXEC'd processes. .Pp +.El .Sh "ENVIRONMENT VARIABLES" It can be helpful to predefine certain variables in in the .Pa ~/.cshrc @@ -281,6 +285,7 @@ .Pa /etc/password .It Ev TERM The type of terminal emulation to use +.El .Sh "SEE ALSO" .Xr ircd 8 .Sh BUGS @@ -298,13 +303,13 @@ The online documentation probably should be in docbook form rather than in the current help format. The entire help system is a hack. -This manual page only describes the options to epic, but doesn't tell +This manual page only describes the options to epic5, but doesn't tell you what to do once you get connected. .Sh AUTHORS Program written by Michael Sandrof (ms5n+@andrew.cmu.edu). The copyright holder is Matthew Green (mrg@mame.mu.oz.au). This software is maintained by EPIC Software Labs (list@epicsol.org). - +.PP At one time or another, this man page has been edited by Darren Reed, R.P.C. Rodgers, the lynX, Matthew Green, and EPIC Software Labs. .\" end of man page debian/patches/config.patch0000644000000000000000000000414011422030717013077 0ustar Index: epic5-1.1.2/include/config.h =================================================================== --- epic5-1.1.2.orig/include/config.h 2010-05-01 10:56:40.000000000 +0200 +++ epic5-1.1.2/include/config.h 2010-05-01 10:56:49.000000000 +0200 @@ -41,7 +41,7 @@ * the client will NOT compile and work properly! Use the default here if * you dont have other servers to use. */ -#define DEFAULT_SERVER "localhost irc.efnet.net irc.undernet.org irc.dal.net" +#define DEFAULT_SERVER "irc.debian.org irc.efnet.net irc.undernet.org irc.dal.net" /* * This is an experimental feature to thwart infinite recursion. It is not @@ -222,7 +222,7 @@ * hostname:portnum:password (with the portnum and password being * optional). This server list will supercede the DEFAULT_SERVER */ -#define SERVERS_FILE "ircII.servers" +#define SERVERS_FILE "/etc/epic5/servers" /* * The compile sequence records the user/host/time of the compile, @@ -242,7 +242,7 @@ * format of what the default load path is to be. The %s format indicates * the runtime IRCLIB value. This value is only used at startup time. */ -#define DEFAULT_IRCPATH "~/.epic:~/.irc:%s/script:." +#define DEFAULT_IRCPATH ".:~/.epic:~/.irc:/usr/local/share/epic5/script:%s/script" #define IMPLIED_ON_HOOKS @@ -262,7 +262,7 @@ #define DEFAULT_BEEP_MAX 3 #define DEFAULT_BLINK_VIDEO 1 #define DEFAULT_BOLD_VIDEO 1 -#define DEFAULT_CHANNEL_NAME_WIDTH 0 +#define DEFAULT_CHANNEL_NAME_WIDTH 16 #define DEFAULT_CLOCK 1 #define DEFAULT_CLOCK_24HOUR 0 #define DEFAULT_CLOCK_FORMAT NULL @@ -298,7 +298,7 @@ #define DEFAULT_FLOOD_WARNING 0 #define DEFAULT_HIDE_PRIVATE_CHANNELS 0 #define DEFAULT_HIGHLIGHT_CHAR "BOLD" -#define DEFAULT_HIGH_BIT_ESCAPE 2 +#define DEFAULT_HIGH_BIT_ESCAPE 0 #define DEFAULT_HOLD_SLIDER 100 #define DEFAULT_INDENT 0 #define DEFAULT_INPUT_INDICATOR_LEFT "+ " @@ -422,7 +422,7 @@ #define DEFAULT_USER_INFORMATION "EPIC5 -- Into the abyss" #define DEFAULT_WORD_BREAK ".,; \t" #define DEFAULT_WSERV_TYPE "screen" -#define DEFAULT_XTERM "xterm" +#define DEFAULT_XTERM "x-terminal-emulator" #define DEFAULT_XTERM_OPTIONS NULL /* debian/patches/series0000644000000000000000000000004512200247376012034 0ustar config.patch manual.patch path.patch debian/patches/path.patch0000644000000000000000000000156012200250142012560 0ustar Index: epic5-1.1.6/Makefile.in =================================================================== --- epic5-1.1.6.orig/Makefile.in 2013-08-06 19:33:12.000000000 +0000 +++ epic5-1.1.6/Makefile.in 2013-08-06 19:37:04.000000000 +0000 @@ -117,15 +117,7 @@ installepic5 installirc: epic5 installdirs test if ./my_test \( ! -f $(IP)$(DESTDIR)$(EPIC) \) \ -o source/epic5 -nt $(IP)$(DESTDIR)$(EPIC); then \ - $(INSTALL_PROGRAM) source/epic5 $(IP)$(DESTDIR)$(EPIC); \ - if ./my_test -f $(IP)$(DESTDIR)$(EPIC_OLD); then \ - $(RM) $(IP)$(DESTDIR)$(EPIC_OLD); \ - fi; \ - if ./my_test -f $(IP)$(DESTDIR)$(EPIC_LINK); then \ - $(MV) $(IP)$(DESTDIR)$(EPIC_LINK) $(IP)$(DESTDIR)$(EPIC_OLD); \ - fi; \ - $(RM) $(IP)$(DESTDIR)$(EPIC_LINK); \ - ln -s $(epic5)-$(VERSION) $(IP)$(DESTDIR)$(EPIC_LINK); \ + $(INSTALL_PROGRAM) source/epic5 $(IP)$(DESTDIR)$(EPIC_LINK); \ fi # debian/postinst0000644000000000000000000000053111366764453011012 0ustar #!/bin/sh -e update-alternatives --install /usr/bin/irc irc /usr/bin/epic5 19 \ --slave /usr/share/man/man1/irc.1.gz irc.1 \ /usr/share/man/man1/epic5.1.gz update-alternatives --install /etc/epic5/default.irc epic5-default.irc \ /etc/epic5/epic5.irc 19 #DEBHELPER# debian/changelog0000644000000000000000000006141212200243704011036 0ustar epic5 (1.1.6-1) unstable; urgency=low * New upstream release -- Kurt Roeckx Tue, 06 Aug 2013 21:00:20 +0200 epic5 (1.1.5-1) unstable; urgency=low * New upstream release * Add build-arch and build-indep targets * Use dpkg-buildflags to set CFLAGS / LDFLAGS -- Kurt Roeckx Tue, 21 May 2013 22:10:21 +0200 epic5 (1.1.4-1) unstable; urgency=low * New upstream release -- Kurt Roeckx Mon, 06 Aug 2012 20:10:12 +0200 epic5 (1.1.2-2) unstable; urgency=low * Fix config.patch to set defaults to epic5 instead of epic4. -- Kurt Roeckx Thu, 22 Jul 2010 13:54:33 +0200 epic5 (1.1.2-1) unstable; urgency=low * New upstream release * Switch to dpkg-source 3.0 (quilt) format -- Kurt Roeckx Sat, 01 May 2010 08:43:45 +0000 epic5 (1.1.1-1) unstable; urgency=low * New upstream release -- Kurt Roeckx Tue, 13 Apr 2010 22:40:11 +0200 epic5 (1.0-2) unstable; urgency=low * Add missing copyright information * Enable tcl support, add build dependency on tcl-dev * Don't call configure with --without-tcl * Fix typo in description still mentioning 4 instead of 5. * Add build depedency on ruby so that configure enabales ruby support -- Kurt Roeckx Sun, 18 Jan 2009 13:51:21 +0100 epic5 (1.0-1) unstable; urgency=low * Initial release of epic5 -- Kurt Roeckx Fri, 26 Dec 2008 14:13:31 +0100 epic4 (1:2.10-1) unstable; urgency=low * New upstream release -- Kurt Roeckx Tue, 18 Nov 2008 23:00:46 +0100 epic4 (1:2.8-1) unstable; urgency=low * New maintainer (Closes: #503558) * New upstream release (Closes: #443125) * Remove conflicts (Closes: #468425) -- Kurt Roeckx Fri, 31 Oct 2008 19:06:06 +0100 epic4 (1:2.6-1.2) unstable; urgency=low * Non-maintainer upload. * Fixed bashism in debian/rules (patch by Chris Lamb) (closes: #484378) * Lintian cleanup (closes: #477173): - Don't ignore error from make distclean - Replaced PWD by CURDIR in debian/rules - Converted debian/copyright to UTF-8 - Call dh_makeshlibs in right order - Updated/fixed menu section * Updated standards version to 3.8.0 * Added Homepage and watch file -- Peter Eisentraut Sun, 22 Jun 2008 19:37:39 +0200 epic4 (1:2.6-1.1) unstable; urgency=low * Non-maintainer upload. * Bump to Standards-Version 3.7.3. * Apply patch from Evgeni Golov to fix FTBFS. closes: #476055. -- Clint Adams Mon, 21 Apr 2008 11:02:53 -0400 epic4 (1:2.6-1) unstable; urgency=medium * New upstream bugfix release (includes: fix for crash caused by /NICK on ircnet) * Use -O1 in debian/rules to avoid problems with aliasing (Closes: 401090). This is quite important, hence the medium urgency. Thanks go to Kurt Roeckx for spotting this. -- Miroslaw L. Baran Thu, 30 Nov 2006 21:59:45 +0100 epic4 (1:2.4-1) unstable; urgency=low * New upstream release: stability fixes. (Closes: #378020) * Updated debhelper compatibility level and policy version. * Acknowledged NMU by Kurt Roeckx. -- Miroslaw L. Baran Sun, 8 Oct 2006 17:35:53 +0200 epic4 (1:2.2-2.1) unstable; urgency=low * Non-maintainer upload. * Add build dependency on libperl-dev (Closes: #376946) -- Kurt Roeckx Wed, 12 Jul 2006 16:29:10 +0000 epic4 (1:2.2-2) unstable; urgency=low * Rebuilt for the new OpenSSL version. * Bumped the standards version. -- Miros/law L. Baran Sun, 9 Oct 2005 13:11:40 +0200 epic4 (1:2.2-1) unstable; urgency=low * New stable upstream release - this is final release of the epic4 line. (Closes: #293488) -- Miros/law L. Baran Mon, 28 Mar 2005 21:25:02 +0200 epic4 (1:2.0-2) unstable; urgency=high * Incorporated changes from stable CVS (to commit_id 716), mostly bugfixes and IRCnet uniqueID support. * Fix: avoid NULL deref on empty numeric replies - thus urgency high. * Fix: do not segfault after pressing the key bound to the TOGGLE_STOP_SCREEN action (Closes: #247464). * This release is more or less identical to the RC1 for EPIC4-2.2 (i.e. EPIC4-2.1.1). -- Miros/law L. Baran Sun, 15 Aug 2004 13:37:44 +0200 epic4 (1:2.0-1) unstable; urgency=low * New upstream release: epic4-2.0 STABLE. * Added note about the ascii 255 character to the README.Debian. -- Miros/law L. Baran Sun, 14 Mar 2004 00:37:29 +0100 epic4 (1:1.2.8-1) unstable; urgency=medium * New upstream release. Amended upstream EPIC4-2.0 RC1. * Updated download URIs in debian/copyright. * New policy version in debian/control: 3.6.1. * If it's possible, let this version go into sarge. -- Miros/law L. Baran Sun, 25 Jan 2004 20:59:07 +0100 epic4 (1:1.2.7-1) unstable; urgency=low * New upstream release. Upstream EPIC4-2.0 RC1. * Package unreleased. -- Miros/law L. Baran Thu, 22 Jan 2004 21:51:02 +0100 epic4 (1:1.2.6-1) unstable; urgency=medium * New upstream version: mostly stability fixes. * Urgency medium, as this is the new sarge's epic4 in spe. -- Miros/law L. Baran Fri, 2 Jan 2004 23:08:18 +0100 epic4 (1:1.2.2-1) unstable; urgency=low * Unreleased. * New upstream version: beta release, many bugfixes. Definitely abandoning CVS snapshots in epic4 package. (Closes: #202916). * Enabled 'quote nick', because of broken ircservers somewhere on the Net (closes: #198232). Thanks to Kevin Arima, who provided a patch. * Perl interpreter enabled again (closes: #159119). -- Miros/law L. Baran Fri, 5 Dec 2003 21:35:56 +0100 epic4 (1:1.1.12.20030903-1) unstable; urgency=medium * Unreleased. * Snapshot from upstream CVS as of 03.09.2003: new upstream release. * Acknowledged NMU by Simon Richter . -- Miros/law L. Baran Wed, 3 Sep 2003 20:04:57 +0200 epic4 (1:1.1.11.20030409-2.1) unstable; urgency=low * NMU, asked for by Kevin Arima . Rationale can be found at http://lists.debian.org/debian-mentors/2003/debian-mentors-200309/msg00008.html * Fixes a problem when DCC_STORE_PATH_VAR has not been set up (Closes: #207615) * Fixes a buffer overrun in the handling of CTCP UTC (Closes: #208008) -- Simon Richter Wed, 3 Sep 2003 00:47:43 +0200 epic4 (1:1.1.11.20030409-2) unstable; urgency=high * Applied security patch from Jeremy Nelson (fixes the alloca underrun problem when a rogue IRC server sends a CTCP request from an extremely large nickname). -- Miros/law L. Baran Sat, 24 May 2003 22:35:39 +0200 epic4 (1:1.1.11.20030409-1) unstable; urgency=high * New upstream release. Snapshot from upstream CVS as of version 1.1.11. Many changes, including the fix for potentially user exploitable buffer overflow in the /userhost command (closes: #188226, #174435). * Applied Martin Schulze's patch, preventing a potential buffer overflow during evaluation of the text for the status bar. Thanks, Martin. * Perl and tcl bindings explicitely disabled. * Urgency high because of the security fix. * Updated the debian/copyright file. * Small packaging corrections. -- Miros/law L. Baran Wed, 9 Apr 2003 23:16:56 +0200 epic4 (1:1.1.7.20021209-1) unstable; urgency=low * Snapshot from upstream CVS as of 09.12.2002. Unreleased. -- Miros/law L. Baran Mon, 9 Dec 2002 14:23:55 +0100 epic4 (1:1.1.7.20020907-2) unstable; urgency=low * Added note about new key binding mechanism in README.Debian. -- Miros/law L. Baran Wed, 2 Oct 2002 21:07:19 +0200 epic4 (1:1.1.7.20020907-1) unstable; urgency=low * Snapshot from upstream CVS as of 07.09.2002: new upstream release. Changes include: + full IPv6 support. (Closes: #116451) + rewritten key input/binding system (not completely backwards-compatible, e.g. meta-x key bindings are gone, please read /usr/share/doc/epic4/keys for more precise information). * Changed the NAN handling code in check_val(), this should make epic script parser work again with any value beginning with 'nan', many thanks to J. S. Connell. (Closes: #156368) * Perl support temporarily disabled (epic does not yet compile with perl 5.8). -- Miros/law L. Baran Tue, 10 Sep 2002 12:10:10 +0200 epic4 (1:1.1.5.20020630-1) unstable; urgency=low * Snapshot from upstream CVS as of 30.06.2002: new upstream release, now one can use '-p' option with the /dcc chat, and changing channel in secondary window works properly. (Closes: #145633, #142074, #143535) * Added a patch from Goswin Brederlow, preventing from SIGFPE on Alpha in certain situations. Thanks, Goswin. (Closes: #147351) -- Miros/law L. Baran Sun, 30 Jun 2002 17:54:28 +0200 epic4 (1:1.1.2.20020219-2) unstable; urgency=medium * 'Here comes the main again' release. * Moved back to main. * HIGH_BIT_ESCAPE set to 0 again. -- Miros/law L. Baran Tue, 26 Mar 2002 18:32:48 +0100 epic4 (1:1.1.2.20020219-1) unstable; urgency=low * Snapshot from upstream CVS as of 19.02.2002 (Closes: #133581, '/window channel' without arguments doesn't crash epic4 now). * Small changes in debian/rules (now build-depends on debhelper 3.4.8, which has proper dh_installdocs -X support). This was done independently from NMU. * The debian/copyright file synchronized with NMU. -- Miros/law L. Baran Wed, 20 Feb 2002 16:47:47 +0100 epic4 (1:1.1.2.20020129-1.1) unstable; urgency=low * NMU * debian/copyright: - accepted patch from Istvan Sebestyen to add a debian/copyright file that is done The Right Way (tm) (Closes: #132575) * debian/rules: - avoid removing debian/copyright on clean: and installing COPYRIGHT as debian/copyright -- Gustavo Noronha Silva Sat, 16 Feb 2002 16:45:53 -0200 epic4 (1:1.1.2.20020129-1) unstable; urgency=high * Snapshot from upstream CVS as of 29.01.2002, includes SSL support, perl support and fix for the security issues with ROM characters and alternate charset toggling. (With thanks to Joseph Carter, Closes: #125784) * Perl support enabled. * SSL support enabled (this moves epic4 into the non-US). * Changed versioning scheme (now includes CVS snapshot date). * Tightened dependency on epic4-help (now versioned). * Small manpage corrections. (Closes: #100521) * Imported into private CVS repository. -- Miros/law L. Baran Fri, 1 Feb 2002 11:42:07 +0100 epic4 (1:1.0.1-2) unstable; urgency=low * Adopted with Joseph Carter's consent. -- Miros/law L. Baran Mon, 29 Oct 2001 15:25:25 +0100 epic4 (1:1.0.1-1) unstable; urgency=low * New upstream version * set XTERM now uses x-terminal-emulator by default (Closes: #93900) * fixed Suggests: epic4-help - it's a dependency now (Closes: #92556) * Applied Igor Belyi's patch so -port works with DCC (Closes: #93700) -- Joseph Carter Tue, 17 Apr 2001 14:59:03 -0700 epic4 (1:1.0-1) unstable; urgency=low * New upstream version - 1.0 at long last! -- Joseph Carter Sat, 31 Mar 2001 21:58:02 -0800 epic4 (1:0.10.1-1) unstable; urgency=low * New upstream version (release voting restarted, if you find bugs with this version, hop needs to know immediately) * New standards version ("We've upped our standards, so up yours!" heh) * Now uses debhelper v3 features - build dep on debhelper >= 3.0.0 * Window bug in 0.9.12 fixed (Closes: #87634) * Polling loop bug fixed upstream (Closes: #81639) * tabscript is gone, tc is the replacement (Closes: #82349) * This version should work better for you Alexandre (Closes: #88444) * Added IRC menu hint (Closes: #80073) * Sorry Remi, this took way too long.. (Closes: #79367) * -H will cause epic to use the correct IP, provided your /etc/hosts is configured properly. epic4 (like many programs) will by default just grab the first interface it finds. (Closes: #44371) -- Joseph Carter Sat, 24 Mar 2001 02:43:32 -0800 epic4 (1:0.9.12-1) unstable; urgency=low * I finally get sick of waiting for 0.9.12 and upload 0.9.9 instead, and would you look at this? New upstream version. =) -- Joseph Carter Wed, 29 Nov 2000 17:58:29 -0500 epic4 (1:0.9.9-1) unstable; urgency=low * New upstream version at upstream request * At time of packaging, 0.9.11 is available. 0.9.9 is more stable. * No longer tries infinitely to resolve a host (Closes: #71260) * Copy tc to tabscript for backward compatibility (Closes: #65023) * No such fle/directory bug is fixed upstream (Closes: #65563) * Sharing server file with ircII would be a bad idea (Closes: #69287) * Added build-depends (Closes: #70278) * Now depends on epic4-help (Closes: #71849) -- Joseph Carter Mon, 27 Nov 2000 13:40:55 -0500 epic4 (1:0.9.6-1) unstable; urgency=low * New upstream version -- Joseph Carter Thu, 17 Aug 2000 17:17:56 -0500 epic4 (pre2.508-2) frozen unstable; urgency=medium * functions.c fix for axur (Closes: #63266) -- Joseph Carter Tue, 2 May 2000 06:32:06 -0700 epic4 (pre2.508-1) frozen unstable; urgency=medium * New upstream version * Fixes the last-column bug (Closes: #62794) * Fixes join bug in axur script (Closes: #61856, #61647) * Now use tabscript instead of tc at hop's suggestion (Closes: #61858) * Provides: irc, by request (Closes: #62486) -- Joseph Carter Tue, 25 Apr 2000 18:28:11 -0700 epic4 (pre2.507-1) frozen unstable; urgency=medium * New upstream version (Closes: #58508) -- Joseph Carter Thu, 30 Mar 2000 04:49:35 -0800 epic4 (pre2.503-1) unstable; urgency=medium * New upstream version * This is a reupload adding a patch to fix an infinite loop. Since I pulled the old out of incoming within 20 minutes of putting it there, I'm not making this a -2. -- Joseph Carter Sun, 19 Dec 1999 15:39:51 -0800 epic4 (pre2.400-2) unstable; urgency=medium * Upstream provided a fix for the slash-space bug -- Joseph Carter Thu, 2 Dec 1999 14:52:13 -0800 epic4 (pre2.400-1) unstable; urgency=medium * New upstream version * Many bugs fixed -- Joseph Carter Wed, 1 Dec 1999 13:35:26 -0800 epic4 (pre2.200-2) unstable; urgency=medium * Patch around segv when epic tries to update a window's input line and the window no longer exists -- Joseph Carter Thu, 25 Nov 1999 11:02:27 -0800 epic4 (pre2.200-1) unstable; urgency=low * New upstream version * no more debconf dependency, no longer needed * rewrote preinst and postinst for cleaner slink upgrades * checked package against policy 3.1.0 -- Joseph Carter Sat, 13 Nov 1999 14:41:19 -0800 epic4 (pre2.100-1) unstable; urgency=low * New upstream version -- Joseph Carter Fri, 12 Nov 1999 01:34:57 -0800 epic4 (pre2.004-19991102-1) unstable; urgency=low * New upstream version * Crashed frequently, never released. -- Joseph Carter Thu, 4 Nov 1999 23:31:02 -0800 epic4 (pre2.004-19991021-1) unstable; urgency=low * At long last, a new upstream version ! * preinst now uses debconf to more cleanly deal with the musical servers file. Will now let you remove /etc/irc/servers if no other package is actually using it. Smoother upgrade from slink. Please test this! * epic4-dbg /usr/doc symlink issue squashed * irc.1 manpage symlink fixed -- Joseph Carter Sun, 31 Oct 1999 23:04:27 -0800 epic4 (pre2.004-19990909-1) unstable; urgency=low * New upstream version * Built with gcc 2.95 again - hope this works! -- Joseph Carter Sun, 19 Sep 1999 13:39:13 -0700 epic4 (pre2.004-19990903-2) unstable; urgency=low * Build with gcc 2.7.2 - this version does not run properly if compiled under gcc 2.95. hop will upstream fix soon (Closes: #44557, #44628) * bug in epic4-dbg postrm squashed (Closes: #44627) -- Joseph Carter Wed, 8 Sep 1999 17:11:28 -0700 epic4 (pre2.004-19990903-1) unstable; urgency=low * New upstream version * Note /save changes may cause issues with some scripts -- Joseph Carter Tue, 7 Sep 1999 05:28:28 -0700 epic4 (pre2.004-19990718-1) unstable; urgency=low * New upstream version * Policy 3.0.1, debhelper v2 -- Joseph Carter Sun, 25 Jul 1999 03:58:02 -0700 epic4 (pre2.004-19990618-3) unstable; urgency=HIGH * prerm booboo that WILL break things is fixed -- Joseph Carter Fri, 25 Jun 1999 23:19:55 -0700 epic4 (pre2.004-19990618-2) unstable; urgency=low * A few fixes to the script-debian examples * Updated README.Debian and split script info into SCRIPTS.Debian * Another possible DoS in the ANSI parser fixed -- Joseph Carter Thu, 24 Jun 1999 06:43:15 -0700 epic4 (pre2.004-19990618-1) unstable; urgency=low * New upstream version. * README.Debian now exists and contains useful info, including how to package epic4 scripts sanely. * Applied Robohak's patch to fix TERM_DOES_BRIGHT_BLINK's handling of the blink attribute. Please test this, information is in README.Debian. * By popular demand (and threats to string me up if I didn't) I've made HIGH_BIT_ESCAPE default to 0 again. This will help people who run epic4 under screen or other things with broken terminfo's. * Moved current directory to the start of the default LOAD_PATH * /usr/bin/epic4 is now an alternative for irc, albeit only at priority 19 since epic4 is not totally ircII compatible anymore. (Closes: #30346) * There is finally a default script, /etc/epic4/epic4.irc. It's installed as an alternative for epic4-default.irc at priority 19, is a conffile, and will be superceded by any script package you might install. * Because ircii removes /etc/irc/servers when purged (gah!) we can't rely on it not getting eaten---we now use /etc/epic4/servers. * added pkgscript directory to the examples. Contents of it are an example debian directory for scripts, similar to what dh_make would give you.. (created with it in fact) * Fixed rules file for the above and more... * Added /usr/local/share/epic4/script to load path. (Closes: #35192) -- Joseph Carter Tue, 22 Jun 1999 19:57:01 -0700 epic4 (pre2.003-5) unstable; urgency=low * Added /usr/local/share/epic4/script to load path, Closes: bug#35192 -- Joseph Carter Sun, 23 May 1999 21:06:28 -0700 epic4 (pre2.003-4) unstable; urgency=low * I never understood why pana hated the DCC checksum code so much. It screws with ip masquerading. Disabled. * Got rid of /usr/libexec in the package -- Joseph Carter Mon, 17 May 1999 17:09:45 -0700 epic4 (pre2.003-3) unstable; urgency=low * glibc2.1 build--will no longer run on slink * hop asked me to undef some debug code in ircaux.c, done so * more FHS migration stuff * debian/* cleanups -- Joseph Carter Fri, 14 May 1999 12:26:59 -0700 epic4 (pre2.003-2) unstable; urgency=low * If pre2.002 and .003 were upgraded from slink versions, the rename and de-conffile-ization of the serverlist would have eaten your old list and created a new one with just irc.debian.org in it. No more. Your old serverlist will be preserved if /etc/irc/servers doesn't already exist. -- Joseph Carter Sat, 27 Feb 1999 03:12:38 -0800 epic4 (pre2.003-1) unstable; urgency=low * New upstream version fixing many nasties in pre2.002 * manpage now only in /usr/man, not in /usr/doc too -- Joseph Carter Wed, 24 Feb 1999 18:37:27 -0800 epic4 (pre2.002-1) unstable; urgency=low * New upstream version * It's official, we now have a new beta! * Please note the serverlist is now /etc/irc/servers which is not owned as a conffile. It's created if it doesn't exist but otherwise the file is considered "hands-off" much like the ircii package. * Upstream author believes that because epic4 is not completely compatible with ircII anymore, naming epic4 as an alternative for ircII is a bad idea. (closes #30346) -- Joseph Carter Tue, 23 Feb 1999 08:57:40 -0800 epic4 (pre2.001NR16-1) unstable; urgency=low * New upstream version * NOBLINK_16_COLOR included upstream, now called TERM_DOES_BOLD_BLINK. * Forked epic4-dbg which contains binaries compiled for debugging * Rewrote debian/rules to facilitate fork and upstream changes * Went mad as a result of debian/rules rewrite and trying to figure out why source didn't support what I was trying to do in order to build the new -dbg package. -- Joseph Carter Wed, 17 Feb 1999 18:53:43 -0800 epic4 (pre2.001NR8-2) unstable; urgency=low * Samll change to support ^c16 so a few lame mirc scripts look right * Added set NOBLINK_16_COLOR, uses blink attribute for "bright backgrounds" if your setup allows that. It is always off by default. * Removed doc/reg.c, it shouldn't be there according to author. -- Joseph Carter Sat, 21 Nov 1998 06:36:18 -0800 epic4 (pre2.001NR8-1) unstable; urgency=low * New upstream version * This is an NR version and may be unstable, caveat downloader - It should not be included in any release of any distribution * Binary is unstripped for testing reasons * Changed a color value to make ^c16 work the way lame mirc scripts use it -- Joseph Carter Mon, 16 Nov 1998 00:20:22 -0800 epic4 (pre2-5) unstable; urgency=low * Binary is now stripped again for slink release - no new bugs reported * Minor cleanups which don't affect functionability. * New email address for Debian maintainer -- Joseph Carter Tue, 13 Oct 1998 15:00:29 -0700 epic4 (pre2-4) unstable; urgency=low * Binary is NOT stripped which should aid in bug traching. -- Joseph Carter Sun, 30 Aug 1998 07:30:21 +0000 epic4 (pre2-3) unstable; urgency=low * Turned flow control back on. * Set default for HIGH_BIT_ESCAPE to 0. (#22917) -- Joseph Carter Fri, 24 Jul 1998 23:29:26 +0000 epic4 (pre2-2) unstable; urgency=low * Applied a pair of upstream patches -- Joseph Carter Thu, 16 Jul 1998 08:04:48 +0000 epic4 (pre2-1) unstable; urgency=low * New upstream source - pre2 at last! * Patched bug when using gzipped scripts. -- Joseph Carter Mon, 13 Jul 1998 23:05:26 +0000 epic4 (pre1.400-1) unstable; urgency=low * New upstream source. * Priority changed to optional. * Turned off flow control to allow bind of ctrl-s and q. Please let me know this turns out to be a problem. -- Joseph Carter Mon, 6 Jul 1998 02:02:30 +0000 epic4 (pre1.300-2) unstable; urgency=low * New maintainer. * debian/rules cleaned up and converted to debhelper format. * unused files removed from source package diffs. * Fixed serverlist bug. -- Joseph Carter Sun, 5 Jul 1998 00:09:13 +0000 epic4 (pre1.300-1) unstable; urgency=low * New upstream version. * Fixes #18979. * Fixes #23197 -- David N. Welton Sat, 20 Jun 1998 11:04:37 -0700 epic4 (pre1.200-1) unstable; urgency=low * New upstream version. -- David N. Welton Sun, 24 May 1998 14:21:13 -0700 epic4 (pre1.100-1) unstable; urgency=low * New upstream source - release candidate! -- David N. Welton Sat, 25 Apr 1998 13:49:34 -0700 epic4 (pre1.041-1) unstable; urgency=low * New upstream version. * Took binaries out of lib directory, and changed names to wserv.epic4, etc. -- David N. Welton Sun, 4 Jan 1998 13:31:24 -0800 epic4 (pre1.040-1) unstable; urgency=low * New upstream version * Fixes Bug#16116 * Fixes Bug#16096 * At least it does if I guessed the regexp syntax right.. hrumph. -- David N. Welton Thu, 18 Dec 1997 23:14:33 -0800 epic4 (pre1.039-1) unstable; urgency=low * New upstream version - here's hoping it's somewhat stable! -- David N. Welton Sun, 14 Dec 1997 17:24:43 -0800 epic4 (pre1.028-2) unstable; urgency=low * Fixed a symlink bug -- David N. Welton Sat, 1 Nov 1997 12:03:05 -0800 epic4 (pre1.028-1) unstable; urgency=low * Initial Release. -- David N. Welton Mon, 20 Oct 1997 22:25:31 -0700