From bf8bff57d6b5c7eccd12b8292442422256f2c15f Mon Sep 17 00:00:00 2001 From: Nick Bebout Date: Fri, 7 Oct 2016 13:17:40 -0500 Subject: [PATCH] Requires too new of dependencies --- .gitignore | 34 --- dead.package | 1 + sources | 1 - znc.init | 90 -------- znc.service | 11 - znc.spec | 628 --------------------------------------------------- 6 files changed, 1 insertion(+), 764 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 znc.init delete mode 100644 znc.service delete mode 100644 znc.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 4e79987..0000000 --- a/.gitignore +++ /dev/null @@ -1,34 +0,0 @@ -/znc-0.096.tar.gz -/znc-0.097.svn2196.tar.bz2 -/znc-0.097.svn2197.tar.bz2 -/znc-0.097.svn2202.tar.bz2 -/znc-0.097.svn2213.tar.bz2 -/znc-0.097.svn2214.tar.bz2 -/znc-0.097.svn2255.tar.bz2 -/znc-0.097.svn2269.tar.bz2 -/znc-0.097.svn2272.tar.xz -/znc-0.097.svn2277.tar.xz -/znc-0.097.tar.xz -/znc-0.098-alpha1.tar.gz -/znc-0.098-beta.tar.gz -/znc-0.098-rc1.tar.gz -/znc-0.098.tar.gz -/znc-0.099.tar.xz -/znc-0.2-alpha1.tar.gz -/znc-0.2-beta1.tar.gz -/znc-0.200-rc1.tar.gz -/znc-0.200.tar.gz -/znc-0.202.tar.gz -/znc-0.204.tar.gz -/znc-0.206.tar.gz -/znc-1.0-alpha1.tar.gz -/znc-1.0-beta1.tar.gz -/znc-1.0.tar.gz -/znc-1.2-alpha1.tar.gz -/znc-1.2-beta1.tar.gz -/znc-1.2-rc2.tar.gz -/znc-1.2.tar.gz -/znc-1.4.tar.gz -/znc-1.6.0.tar.gz -/znc-1.6.1.tar.gz -/znc-1.6.2.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..ee5dc76 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Requires too new of dependencies diff --git a/sources b/sources deleted file mode 100644 index 6cc1d58..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -89f6696ed366661f7432ece343fd19d0 znc-1.6.2.tar.gz diff --git a/znc.init b/znc.init deleted file mode 100644 index aaabbd0..0000000 --- a/znc.init +++ /dev/null @@ -1,90 +0,0 @@ -#!/bin/sh -# -# znc - Advanced IRC Bouncer INIT script for Fedora # -# chkconfig: 35 99 14 -# description: An Advanced IRC bouncer INIT script for -# Fedora-CentOS Variants -# Source function library. -. /etc/rc.d/init.d/functions - -exec=/usr/bin/znc -prog=znc -config=/var/lib/znc -runas=znc - -lockfile=/var/lock/subsys/$prog - -start() { -[ -x $exec ] || exit 5 -echo -n $"Starting $prog: " -# if not running, start it up here, usually something like "daemon $exec" -daemon --user $runas "$exec -d $config >/dev/null 2>&1" -# If you're reckless with your system, comment the line above and -# uncomment this one below... I just don't get it why -# daemon "$exec -r -d $config >/dev/null 2>&1" -retval=$? -echo -[ $retval -eq 0 ] && touch $lockfile -return $retval -} - -stop() { -echo -n $"Stopping $prog: " -# stop it here, often "killproc $prog" -killproc $prog -TERM -retval=$? -echo -[ $retval -eq 0 ] && rm -f $lockfile -return $retval -} - -reload() { -echo -n $"Reloading $prog: " -# stop it here, often "killproc $prog" -killproc $prog -HUP -retval=$? -echo -} - -restart() { -stop -start -} - -rh_status() { -# run checks to determine if the service is running or use generic status -status $prog -} - -rh_status_q() { -rh_status >/dev/null 2>&1 -} - -case "$1" in -start) -rh_status_q && exit 0 -$1 -;; -stop) -rh_status_q || exit 0 -$1 -;; -restart) -$1 -;; -reload) -rh_status_q || exit 7 -$1 -;; -status) -rh_status -;; -condrestart|try-restart) -rh_status_q || exit 0 -restart -;; -*) -echo $"Usage: $0 {start|stop|status|reload|restart|condrestart|try-restart}" -exit 2 -esac -exit $? diff --git a/znc.service b/znc.service deleted file mode 100644 index 55bb678..0000000 --- a/znc.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=ZNC - an advanced IRC bouncer -After=network.target - -[Service] -ExecStart=/usr/bin/znc -User=znc -Type=forking - -[Install] -WantedBy=multi-user.target diff --git a/znc.spec b/znc.spec deleted file mode 100644 index 2788e0d..0000000 --- a/znc.spec +++ /dev/null @@ -1,628 +0,0 @@ -# ZNC is a daemon application and that's why needs hardening -%global _hardened_build 1 - -# Define variables to use in conditionals -%if 0%{?fedora} >= 15 || 0%{?rhel} >= 7 -%global use_systemd 1 -%endif # 0%{?fedora} >= 15 || 0%{?rhel} >= 7 - -%if 0%{?fedora} || 0%{?rhel} >= 6 -%global with_modperl 1 -%endif # 0%{?fedora} || 0%{?rhel} >= 6 - -%if 0%{?fedora} >= 13 || 0%{?rhel} >= 8 -%global __python %{__python3} -%global with_modpython 1 -%endif # 0%{?fedora} >= 13 || 0%{?rhel} >= 8 - -Name: znc -Version: 1.6.2 -Release: 1%{?dist} -Summary: An advanced IRC bouncer -Group: System Environment/Daemons - -License: ASL 2.0 -URL: http://znc.in -Source0: %{url}/releases/%{name}-%{version}.tar.gz - -%if 0%{?use_systemd} -Source1: znc.service -%else # 0%{?use_systemd} -Source1: znc.init -%endif # 0%{?use_systemd} - -%if 0%{?rhel} && 0%{?rhel} <= 5 -BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) -%endif # 0%{?rhel} && 0%{?rhel} <= 5 - -BuildRequires: automake -BuildRequires: c-ares-devel -BuildRequires: cyrus-sasl-devel -BuildRequires: gettext-devel -BuildRequires: libicu-devel -BuildRequires: openssl-devel >= 0.9.8 -BuildRequires: perl(ExtUtils::Embed) - -%if (0%{?fedora} && 0%{?fedora} <= 24) || (0%{?rhel} && 0%{?rhel} <= 9) -Obsoletes: znc-extra <= %{version}-%{release} -%endif # (0%{?fedora} && 0%{?fedora} <= 24) || (0%{?rhel} && 0%{?rhel} <= 9) - -%if 0%{?use_systemd} -BuildRequires: systemd-units -%endif -Requires(pre): shadow-utils -%if 0%{?use_systemd} -Requires(post): systemd-units -Requires(post): systemd-sysv -Requires(preun): systemd-units -Requires(postun): systemd-units -%else # 0%{?use_systemd} -Requires(post): chkconfig -Requires(preun): chkconfig -# This is for /sbin/service -Requires(preun): initscripts -%endif # 0%{?use_systemd} - -%description -ZNC is an IRC bouncer with many advanced features like detaching, -multiple users, per channel playback buffer, SSL, IPv6, transparent -DCC bouncing, Perl and C++ module support to name a few. - - -%package devel -Summary: Development files needed to compile ZNC modules -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} pkgconfig -Requires: openssl-devel c-ares-devel glibc-devel -BuildRequires: pkgconfig - -%description devel -All includes and program files you need to compile your own znc -modules. - - -%package modtcl -Summary: TCL module for ZNC -Group: Development/Libraries - -BuildRequires: tcl-devel - -Requires: %{name} = %{version}-%{release} -Requires: tcl - -%description modtcl -TCL module for ZNC - -%if 0%{?with_modperl} -%package modperl -Summary: perl module for ZNC -Group: Development/Libraries - -BuildRequires: perl-devel -BuildRequires: swig - -Requires: %{name} = %{version}-%{release} -Requires: perl - -Provides: perl(ZNC::Module) = %{version}-%{release} - -%description modperl -perl module for ZNC -%endif # 0%{?with_modperl} - - -%if 0%{?with_modpython} -%package modpython -Summary: python3 module for ZNC -Group: Development/Libraries - -BuildRequires: python3-devel -BuildRequires: swig - -Requires: %{name} = %{version}-%{release} -Requires: python3 - -%description modpython -python3 module for ZNC -%endif # 0%{?with_modpython} - - -%prep -%setup -q -%__perl -pi.add_release -e 's|(?<="ZNC \%1\.3f)|-%{release}|' znc.cpp -chmod -x modules/q.cpp - - -%build -%configure \ - --with-module-prefix=%{_libdir}/znc \ -%if 0%{?with_modperl} - --enable-perl \ -%else - --disable-perl \ -%endif # 0%{?with_modperl} -%if 0%{?with_modpython} - --enable-python \ -%else # 0%{?with_modpython} - --disable-python \ -%endif # 0%{?with_modpython} - --enable-ipv6 --enable-cyrus --enable-tcl -%__make %{?_smp_mflags} - - -%install -%if 0%{?rhel} && 0%{?rhel} <= 5 -%__rm -Rf "%{buildroot}" -%endif # 0%{?rhel} && 0%{?rhel} <= 5 -%__make install DESTDIR="%{buildroot}" -%if 0%{?use_systemd} -mkdir -p %buildroot%{_unitdir} -install -m 0644 %{SOURCE1} %buildroot%{_unitdir}/znc.service -%else # 0%{?use_systemd} -mkdir -p %buildroot%{_initrddir} -install -Dp -m0755 %{SOURCE1} %{buildroot}%{_initrddir}/znc -%endif # 0%{?use_systemd} - - -%if 0%{?rhel} && 0%{?rhel} <= 5 -%clean -%__rm -Rf "%{buildroot}" -%endif # 0%{?rhel} && 0%{?rhel} <= 5 - - -%pre -getent group znc >/dev/null || groupadd -r znc -getent passwd znc >/dev/null || \ - useradd -r -g znc -d /var/lib/znc -s /sbin/nologin \ - -c "Account for ZNC to run as" znc -mkdir -p /var/lib/znc -chown znc:znc /var/lib/znc - - -%post -%if 0%{?use_systemd} -%systemd_post znc.service -%else # 0%{?use_systemd} -# This adds the proper /etc/rc*.d links for the script -/sbin/chkconfig --add znc -%endif # 0%{?use_systemd} - - -%postun -%if 0%{?use_systemd} -%systemd_postun_with_restart znc.service -%else # 0%{?use_systemd} -if [ "$1" -ge "1" ] ; then - /sbin/service znc condrestart >/dev/null 2>&1 || : -fi -%endif # 0%{?use_systemd} - - -%preun -%if 0%{?use_systemd} -%systemd_preun znc.service -%else # 0%{?use_systemd} -if [ $1 -eq 0 ] ; then - /sbin/service znc stop >/dev/null 2>&1 || : - /sbin/chkconfig --del znc || : -fi -%endif # 0%{?use_systemd} - - -%files -%doc AUTHORS LICENSE README.md -%{_bindir}/znc -%{_mandir}/man1/* -%{_libdir}/znc/adminlog.so -%{_libdir}/znc/alias.so -%{_libdir}/znc/autoattach.so -%{_libdir}/znc/autocycle.so -%{_libdir}/znc/autoop.so -%{_libdir}/znc/autoreply.so -%{_libdir}/znc/autovoice.so -%{_libdir}/znc/awaynick.so -%{_libdir}/znc/awaystore.so -%{_libdir}/znc/block_motd.so -%{_libdir}/znc/blockuser.so -%{_libdir}/znc/bouncedcc.so -%{_libdir}/znc/buffextras.so -%{_libdir}/znc/cert.so -%{_libdir}/znc/certauth.so -%{_libdir}/znc/chansaver.so -%{_libdir}/znc/clearbufferonmsg.so -%{_libdir}/znc/clientnotify.so -%{_libdir}/znc/controlpanel.so -%{_libdir}/znc/crypt.so -%{_libdir}/znc/ctcpflood.so -%{_libdir}/znc/cyrusauth.so -%{_libdir}/znc/dcc.so -%{_libdir}/znc/disconkick.so -%{_libdir}/znc/fail2ban.so -%{_libdir}/znc/flooddetach.so -%{_libdir}/znc/identfile.so -%{_libdir}/znc/imapauth.so -%{_libdir}/znc/keepnick.so -%{_libdir}/znc/kickrejoin.so -%{_libdir}/znc/lastseen.so -%{_libdir}/znc/listsockets.so -%{_libdir}/znc/log.so -%{_libdir}/znc/missingmotd.so -%{_libdir}/znc/modules_online.so -%{_libdir}/znc/nickserv.so -%{_libdir}/znc/notes.so -%{_libdir}/znc/notify_connect.so -%{_libdir}/znc/partyline.so -%{_libdir}/znc/perform.so -%{_libdir}/znc/q.so -%{_libdir}/znc/raw.so -%{_libdir}/znc/route_replies.so -%{_libdir}/znc/sample.so -%{_libdir}/znc/sasl.so -%{_libdir}/znc/savebuff.so -%{_libdir}/znc/schat.so -%{_libdir}/znc/send_raw.so -%{_libdir}/znc/shell.so -%{_libdir}/znc/simple_away.so -%{_libdir}/znc/stickychan.so -%{_libdir}/znc/watch.so -%{_libdir}/znc/webadmin.so -%{_datadir}/znc/ -%if 0%{?use_systemd} -%{_unitdir}/znc.service -%else # 0%{?use_systemd} -%{_initrddir}/znc -%endif # 0%{?use_systemd} - -%files devel -%{_bindir}/znc-buildmod -%{_libdir}/pkgconfig/%{name}.pc -%{_includedir}/znc/ - -%files modtcl -%{_libdir}/znc/modtcl.so - -%if 0%{?with_modperl} -%files modperl -%{_libdir}/znc/modperl/ -%{_libdir}/znc/modperl.so -%{_libdir}/znc/perleval.pm -%endif # 0%{?with_modperl} - -%if 0%{?with_modpython} -%files modpython -%{_libdir}/znc/modpython/ -%{_libdir}/znc/modpython.so -%endif # 0%{?with_modpython} - - -%changelog -* Mon Nov 16 2015 Nick Bebout - 1.6.2-1 -- Update to 1.6.2 - -* Tue Nov 10 2015 Fedora Release Engineering - 1.6.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 - -* Wed Oct 28 2015 David Tardon - 1.6.1-2 -- rebuild for ICU 56.1 - -* Mon Aug 3 2015 Nick Bebout - 1.6.1-1 -- Update to 1.6.1 - -* Fri Jun 19 2015 Nick Bebout - 1.6.0-5 -- Revert change to ZNC path - bz#1179832 and bz#1148639 - -* Tue Jun 09 2015 Nick Bebout - 1.6.0-4 -- Add ZNC path to znc.service - bz#1179832 -- Fix command to enable cyrus sasl - bz#1112022 -- Add libicu dep to enable charset module - bz#1202033 - -* Sat Jun 06 2015 Jitka Plesnikova - 1.6.0-3 -- Perl 5.22 rebuild - -* Sat May 02 2015 Kalev Lember - 1.6.0-2 -- Rebuilt for GCC 5 C++11 ABI change - -* Mon Feb 23 2015 Nick Bebout - 1.6.0-1 -- Update to 1.6.0 - -* Wed Aug 27 2014 Jitka Plesnikova - 1.4-7 -- Perl 5.20 rebuild - -* Mon Aug 18 2014 Fedora Release Engineering - 1.4-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Aug 03 2014 Björn Esser - 1.4-5 -- skip the python-subpkg on EPEL <= 7 -- replaced %%define with %%global -- removed %%defattr, since it is not needed for recent releases -- conditionalized stuff for el <= 5 -- small cleanups -- purged unused patches - -* Sat Jun 07 2014 Fedora Release Engineering - 1.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Wed May 28 2014 Kalev Lember - 1.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 - -* Wed May 21 2014 Jaroslav Škarvada - 1.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86 - -* Mon Apr 14 2014 Nick Bebout - 1.2-3 -- Fix potential crash bug when adding channels - -* Mon Nov 11 2013 Nick Bebout - 1.2-2 -- Enable PIE, Fix systemd description, use systemd macros - -* Mon Nov 11 2013 Nick Bebout - 1.2-1 -- Upgrade to 1.2 - -* Fri Oct 25 2013 Nick Bebout - 1.2-0.4.rc2 -- Upgrade to 1.2-rc2 - -* Thu Sep 26 2013 Nick Bebout - 1.2-0.3.beta1 -- Upgrade to 1.2-beta1 - -* Sat Aug 03 2013 Petr Pisar - 1.2-0.2.alpha1 -- Perl 5.18 rebuild - -* Sun Jul 28 2013 Nick Bebout - 1.2-0.1.alpha1 -- Upgrade to 1.2-alpha1 - -* Wed Jul 17 2013 Petr Pisar - 1.0-3 -- Perl 5.18 rebuild - -* Fri Feb 15 2013 Fedora Release Engineering - 1.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Tue Nov 13 2012 Nick Bebout - 1.0-1 -- Update to 1.0 - -* Thu Oct 18 2012 Nick Bebout - 1.0-0.2.beta1 -- Update to 1.0-beta1 - -* Thu Sep 13 2012 Nick Bebout - 1.0-0.1.alpha1 -- Update to 1.0-alpha1 - -* Sun Jul 22 2012 Fedora Release Engineering - 0.206-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Mon Apr 16 2012 Nick Bebout - 0.206-1 -- Upgrade to 0.206 - -* Tue Feb 28 2012 Fedora Release Engineering - 0.204-4 -- Rebuilt for c++ ABI breakage - -* Mon Jan 23 2012 Nick Bebout - 0.204-2 -- Add init script for EPEL - -* Mon Jan 23 2012 Nick Bebout - 0.204-1 -- Update to 0.204 to fix security issue CVE-2012-0033 - -* Mon Jan 09 2012 Nick Bebout - 0.202-2 -- Add glibc-devel, openssl-devel, c-ares-devel to requires for -- znc-devel so znc-buildmod will work - -* Sun Sep 25 2011 Nick Bebout - 0.202-1 -- Update to 0.202 - -* Tue Aug 23 2011 Nick Bebout - 0.200-1 -- Update to 0.200 - -* Mon Aug 15 2011 Nick Bebout - 0.200-0.5.rc1 -- Don't create the znc user on Fedora 14 and lower and on EPEL - -* Mon Aug 15 2011 Nick Bebout - 0.200-0.4.rc1 -- Change znc's homedir to /var/lib/znc - -* Sun Aug 14 2011 Nick Bebout - 0.200-0.3.rc1 -- Re-add modpython, it somehow got disabled accidentally -- Also re-add modperl, it works now - -* Sun Aug 14 2011 Nick Bebout - 0.200-0.2.rc1 -- Create /home/znc upon install - -* Sat Aug 13 2011 Nick Bebout - 0.200-0.1.rc1 -- Update to 0.200-rc1 - -* Sat Aug 6 2011 Nick Bebout - 0.2-0.2.beta1 -- Update to 0.2-beta1, disable perl for now - -* Fri Aug 5 2011 Nick Bebout - 0.2-0.1.alpha1 -- Update to 0.2-alpha1 - -* Mon Aug 1 2011 Nick Bebout - 0.099-0.1.20110801git -- Update to latest git - -* Sat Apr 2 2011 Nick Bebout - 0.098-2 -- Add provides for ZNC::Module to znc-modperl - -* Tue Mar 29 2011 Nick Bebout - 0.098-1 -- Update to znc-0.098 - -* Sat Mar 12 2011 Nick Bebout - 0.098-0.3.rc1 -- Update to znc-0.098-rc1 - -* Wed Mar 02 2011 Nick Bebout - 0.098-0.2.beta -- Update to znc-0.098-beta - -* Wed Feb 23 2011 Nick Bebout - 0.098-0.1.alpha1 -- Update to znc 0.098-alpha1 - -* Tue Feb 15 2011 Nick Bebout - 0.097-8.20110215git -- Update to latest git - -* Wed Feb 09 2011 Nick Bebout - 0.097-7.svn2277 -- Update to svn2277 - -* Mon Jan 24 2011 Nick Bebout - 0.097-6.svn2272 -- Update to svn2272 - -* Mon Jan 17 2011 Nick Bebout - 0.097-5.svn2269 -- Update to svn2269 - -* Fri Jan 7 2011 Nick Bebout - 0.097-4.svn2255 -- Update to svn2255 - -* Mon Jan 3 2011 David Malcolm - 0.097-3.svn2214 -- rebuild for newer python3 (see rhbz#666429) - -* Fri Dec 24 2010 Nick Bebout - 0.097-2.svn2214 -- Patch has been upstreamed, update to svn2214 - -* Wed Dec 22 2010 Nick Bebout - 0.097-1.svn2213 -- Update to znc 0.097-svn2213 which also adds modpython - -* Sun Nov 7 2010 Nick Bebout - 0.096-2 -- Build TCL module, move modperl and modtcl to separate subpackages - -* Sat Nov 6 2010 Nick Bebout - 0.096-1 -- Update to znc 0.096 - -* Fri Sep 10 2010 Nick Bebout - 0.094-1 -- Update to znc 0.094 - -* Tue Aug 10 2010 Nick Bebout - 0.093-2.svn2101 -- Update to znc 0.093.svn2101 to fix CVE-2010-2812 and CVE-2010-2934 - -* Tue Aug 3 2010 Nick Bebout - 0.093-1.svn2098 -- Update to znc 0.093 svn2098 - -* Wed Jul 14 2010 Nick Bebout - 0.092-1 -- Update to znc 0.092 - -* Wed Jun 16 2010 Nick Bebout - 0.090-2 -- Backport r2026 of ZNC subversion repo to fix bug 603915 -- NULL pointer dereference flaw leads to segfault under certain conditions - -* Sun Jun 06 2010 Nick Bebout - 0.090-1 -- Update to znc 0.090 - -* Thu May 27 2010 Nick Bebout - 0.090-0.1.rc1 -- Update to znc 0.090-rc1 - -* Thu May 27 2010 Nick Bebout - 0.089-7.svn2004 -- Update to znc 0.089.svn2004 - -* Tue May 18 2010 Nick Bebout - 0.089-6.svn2000 -- Re-enable saslauth - -* Tue May 18 2010 Nick Bebout - 0.089-5.svn2000 -- Re-enable modperl - -* Tue May 18 2010 Nick Bebout - 0.089-4.svn2000 -- Update to znc 0.089.svn2000 - -* Sun Apr 25 2010 Nick Bebout - 0.089-3.svn1944 -- Update to znc 0.089.svn1944 - -* Wed Apr 7 2010 Nick Bebout - 0.081-2.svn1897 -- Update to znc 0.081.svn1897 - -* Mon Mar 29 2010 Nick Bebout - 0.081-1.svn1850 -- Update to znc 0.081.svn1850 - -* Thu Feb 18 2010 Nick Bebout - 0.080-1 -- Update to znc 0.080 - -* Wed Dec 30 2009 Nick Bebout - 0.078-1 -- Update to znc 0.078 - -* Sun Dec 13 2009 Nick Bebout - 0.078-0.1.rc1 -- Update to znc 0.078.rc1 - -* Mon Dec 7 2009 Nick Bebout - 0.077-1.svn1672 -- Add a DCCVHost config option which specifies the VHost (IP only!) for DCC bouncing. (r1647) -- Users cloned via the admin module no longer automatically connect into IRC. (r1653) -- Inform new clients about their /away status. (r1655) -- The "BUG" messages from route_replies can now be turned off via /msg *route_replies silent yes. (r1660) -- Rewrite znc.conf on SIGUSR1. (r1666) -- ISpoofFormat now supports ExpandString. (r1670) -- Allow specifing port and password for delserver. (r1640) -- Write the config file on restart and shutdown. (r1641) -- Disable c-ares if it is not found unless --enable-c-ares was used. (r1644) (r1645) -- blockuser was missing an admin check. (r1648) -- Sometimes, removing a server caused znc to lose track of which server it is connected to. (r1659) -- Include a more portable header for uint32_t in SHA256.h. (r1665) -- Fixed cases where ZNC didn't properly block PONG replies to its own PINGs. (r1668) -- Fixed a possible crash if a client disconnected before an auth module was able to verify the login. (r1669) -- Away allowed to accidentally execute IRC commands. (r1672) -- Comment out some weird code in Client.cpp. (r1646) -- Remove connect_throttle since it's obsoleted by fail2ban. (r1649) -- Remove outdated sample znc.conf. (r1654) -- route_replies now got a higher timeout before it generates a "BUG" message. (r1657) -- Documented the signals on which znc reacts better. (r1667) -- New module hook OnIRCConnecting(). (r1638) -- Remove obsolete CUtils::GetHashPass(). (r1642) -- A module's GetDescription() now returns a C-String. (r1661) (r1662) -- When opening a module, check the version number first and don't do anything on a mismatch. (r1663) - -* Fri Dec 4 2009 Stepan Kasal - 0.076-3 -- rebuild against perl 5.10.1 - -* Fri Sep 25 2009 Nick Bebout - 0.076-2 -- Fix missing dist tag - -* Fri Sep 25 2009 Nick Bebout - 0.076-1 -- Upgrade to ZNC 0.076 -- http://en.znc.in/wiki/ChangeLog/0.076 - -* Fri Aug 28 2009 Nick Bebout - 0.075-8.svn1613 -- Rebuild with new openssl and svn 1613 -- build 0.075-7.svn1610 existed but I had to remove it from the spec because -- the date was earlier than the date tmraz build the new openssl one - -* Wed Aug 26 2009 Tomas Mraz - 0.075-6.svn1608 -- rebuilt with new openssl - -* Thu Aug 20 2009 Nick Bebout - 0.075-5.svn1608 -- Upgrade to svn 1608 - -* Tue Aug 18 2009 Nick Bebout - 0.075-4.20090818svn1602 -- Upgrade to svn 1602 - -* Sat Aug 8 2009 Nick Bebout - 0.075-3.20090807svn1594 -- Fix source filename - -* Fri Aug 7 2009 Nick Bebout - 0.075-2.20090807svn1594 -- Fix broken source tarball - -* Fri Aug 7 2009 Nick Bebout - 0.075-1.20090807svn1594 -- Upgrade to svn 1594 - -* Mon Jul 27 2009 Fedora Release Engineering - 0.074-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Jul 23 2009 Nick Bebout - 0.074-1 -- Update to 0.074 - -* Wed Jul 22 2009 Nick Bebout - 0.072-3 -- Fix date in changelog, disable c-ares - -* Wed Jul 22 2009 Nick Bebout - 0.072-2 -- Backport patch to fix webadmin skins issue introduced in 0.072 - -* Wed Jul 22 2009 Nick Bebout - 0.072-1 -- Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152 - -* Sun Jul 12 2009 Nick Bebout - 0.070-7 -- Fix License: to be GPLv2 with exceptions - -* Sat Jul 11 2009 Nick Bebout - 0.070-6 -- Fix permissions error in %%prep, not in source - -* Sat Jul 11 2009 Nick Bebout - 0.070-5 -- Fix permissions error on q.cpp and add LICENSE.OpenSSL - -* Sat Jul 11 2009 Nick Bebout - 0.070-4 -- Remove switch to enable debug, fix %%files section - -* Fri Jul 10 2009 Nick Bebout - 0.070-3 -- Move fixfreenode and log into separate znc-extra package -- Move awayping into separate znc-awayping package - -* Thu Jul 9 2009 Nick Bebout - 0.070-2 -- Include modules with main package - -* Wed Jul 8 2009 Nick Bebout - 0.070-1 -- Initial Fedora package based on 0.070 of upstream