znc/znc.spec

593 lines
18 KiB
RPMSpec
Raw Normal View History

# ZNC is a daemon application and that's why needs hardening
%global _hardened_build 1
2011-08-13 22:34:31 +00:00
# Define variables to use in conditionals
%if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
%global use_systemd 1
%endif # 0%{?fedora} >= 15 || 0%{?rhel} >= 7
2011-08-13 22:34:31 +00:00
%if 0%{?fedora} || 0%{?rhel} >= 6
%global with_modperl 1
%endif # 0%{?fedora} || 0%{?rhel} >= 6
2013-11-11 23:30:20 +00:00
%if 0%{?fedora} >= 13 || 0%{?rhel} >= 8
%global with_modpython 1
%endif # 0%{?fedora} >= 13 || 0%{?rhel} >= 8
2011-09-25 20:17:26 +00:00
Name: znc
2014-05-16 01:21:58 +00:00
Version: 1.4
Release: 5%{?dist}
Summary: An advanced IRC bouncer
Group: System Environment/Daemons
License: ASL 2.0
2011-02-16 00:25:29 +00:00
URL: http://znc.in
Source0: %{url}/releases/%{name}-%{version}.tar.gz
2012-01-23 21:10:00 +00:00
%if 0%{?use_systemd}
2011-08-13 22:34:31 +00:00
Source1: znc.service
%else # 0%{?use_systemd}
2012-09-14 01:13:57 +00:00
Source1: znc.init
%endif # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
%if 0%{?rhel} && 0%{?rhel} <= 5
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%endif # 0%{?rhel} && 0%{?rhel} <= 5
2009-08-08 04:33:34 +00:00
BuildRequires: automake
BuildRequires: c-ares-devel
BuildRequires: cyrus-sasl-devel
BuildRequires: gettext-devel
BuildRequires: openssl-devel >= 0.9.8
BuildRequires: perl(ExtUtils::Embed)
%if (0%{?fedora} && 0%{?fedora} <= 24) || (0%{?rhel} && 0%{?rhel} <= 9)
2012-09-14 01:13:57 +00:00
Obsoletes: znc-extra <= %{version}-%{release}
%endif # (0%{?fedora} && 0%{?fedora} <= 24) || (0%{?rhel} && 0%{?rhel} <= 9)
2012-09-14 01:13:57 +00:00
%if 0%{?use_systemd}
2011-08-13 22:34:31 +00:00
BuildRequires: systemd-units
%endif
Requires(pre): shadow-utils
%if 0%{?use_systemd}
2011-08-13 22:34:31 +00:00
Requires(post): systemd-units
Requires(post): systemd-sysv
Requires(preun): systemd-units
Requires(postun): systemd-units
%else # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
Requires(post): chkconfig
Requires(preun): chkconfig
# This is for /sbin/service
Requires(preun): initscripts
%endif # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
%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}
2011-08-14 20:27:53 +00:00
%package modperl
Summary: perl module for ZNC
Group: Development/Libraries
BuildRequires: perl-devel
BuildRequires: swig
2011-08-14 20:27:53 +00:00
Requires: %{name} = %{version}-%{release}
Requires: perl
2011-08-14 20:27:53 +00:00
Provides: perl(ZNC::Module) = %{version}-%{release}
%description modperl
perl module for ZNC
%endif # 0%{?with_modperl}
2011-08-14 20:27:53 +00:00
%if 0%{?with_modpython}
2011-08-14 20:27:53 +00:00
%package modpython
Summary: python3 module for ZNC
Group: Development/Libraries
BuildRequires: python3-devel
BuildRequires: swig
2011-08-14 20:27:53 +00:00
Requires: %{name} = %{version}-%{release}
Requires: python3
2011-08-14 20:27:53 +00:00
%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-sasl --enable-tcl
%__make %{?_smp_mflags}
2011-08-13 22:34:31 +00:00
%install
%if 0%{?rhel} && 0%{?rhel} <= 5
%__rm -Rf "%{buildroot}"
%endif # 0%{?rhel} && 0%{?rhel} <= 5
%__make install DESTDIR="%{buildroot}"
%if 0%{?use_systemd}
2011-08-13 22:34:31 +00:00
mkdir -p %buildroot%{_unitdir}
install -m 0644 %{SOURCE1} %buildroot%{_unitdir}/znc.service
%else # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
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
2012-01-23 21:10:00 +00:00
%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
2011-08-13 22:34:31 +00:00
%post
%if 0%{?use_systemd}
%systemd_post znc.service
%else # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
# This adds the proper /etc/rc*.d links for the script
/sbin/chkconfig --add znc
%endif # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
%postun
%if 0%{?use_systemd}
2013-11-11 23:30:20 +00:00
%systemd_postun_with_restart znc.service
%else # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
if [ "$1" -ge "1" ] ; then
/sbin/service znc condrestart >/dev/null 2>&1 || :
fi
%endif # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
%preun
%if 0%{?use_systemd}
2013-11-11 23:30:20 +00:00
%systemd_preun znc.service
%else # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
if [ $1 -eq 0 ] ; then
2012-01-25 01:10:21 +00:00
/sbin/service znc stop >/dev/null 2>&1 || :
/sbin/chkconfig --del znc || :
2012-01-23 21:10:00 +00:00
fi
%endif # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
%files
2013-07-29 02:24:24 +00:00
%doc AUTHORS LICENSE README.md
%{_bindir}/znc
%{_mandir}/man1/*
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/adminlog.so
%{_libdir}/znc/autoattach.so
%{_libdir}/znc/autocycle.so
%{_libdir}/znc/autoop.so
%{_libdir}/znc/autoreply.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/autovoice.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/awaynick.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/awaystore.so
%{_libdir}/znc/block_motd.so
2010-04-26 02:56:57 +00:00
%{_libdir}/znc/blockuser.so
2011-08-05 22:48:44 +00:00
%{_libdir}/znc/bouncedcc.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/buffextras.so
2011-08-05 22:48:44 +00:00
%{_libdir}/znc/cert.so
2010-08-03 18:03:55 +00:00
%{_libdir}/znc/certauth.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/chansaver.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/charset.so
%{_libdir}/znc/clearbufferonmsg.so
2010-02-18 19:07:59 +00:00
%{_libdir}/znc/clientnotify.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/controlpanel.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/crypt.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/ctcpflood.so
#%{_libdir}/znc/cyrusauth.so
%{_libdir}/znc/dcc.so
2010-04-26 02:56:57 +00:00
%{_libdir}/znc/disconkick.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/fail2ban.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/flooddetach.so
2011-08-05 22:48:44 +00:00
%{_libdir}/znc/identfile.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/imapauth.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/keepnick.so
%{_libdir}/znc/kickrejoin.so
2010-04-26 02:56:57 +00:00
%{_libdir}/znc/lastseen.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/listsockets.so
%{_libdir}/znc/log.so
%{_libdir}/znc/missingmotd.so
2013-09-26 22:32:12 +00:00
%{_libdir}/znc/modules_online.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/nickserv.so
2010-03-30 04:06:57 +00:00
%{_libdir}/znc/notes.so
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/notify_connect.so
2009-08-21 05:20:21 +00:00
%{_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
2012-09-14 01:13:57 +00:00
%{_libdir}/znc/sasl.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/savebuff.so
%{_libdir}/znc/schat.so
2010-05-19 02:40:59 +00:00
%{_libdir}/znc/send_raw.so
%{_libdir}/znc/shell.so
2009-08-21 05:20:21 +00:00
%{_libdir}/znc/simple_away.so
%{_libdir}/znc/stickychan.so
%{_libdir}/znc/watch.so
%{_libdir}/znc/webadmin.so
%{_datadir}/znc/
%if 0%{?use_systemd}
2011-08-13 22:34:31 +00:00
%{_unitdir}/znc.service
%else # 0%{?use_systemd}
2012-01-23 21:10:00 +00:00
%{_initrddir}/znc
%endif # 0%{?use_systemd}
%files devel
%{_bindir}/znc-buildmod
2012-09-14 01:13:57 +00:00
#%{_bindir}/znc-config
%{_libdir}/pkgconfig/%{name}.pc
%{_includedir}/znc/
%files modtcl
%{_libdir}/znc/modtcl.so
%if 0%{?with_modperl}
2011-08-14 20:27:53 +00:00
%files modperl
%{_libdir}/znc/modperl/
%{_libdir}/znc/modperl.so
%{_libdir}/znc/perleval.pm
%endif # 0%{?with_modperl}
2011-08-14 20:27:53 +00:00
%if 0%{?with_modpython}
2011-08-14 20:27:53 +00:00
%files modpython
%{_libdir}/znc/modpython/
%{_libdir}/znc/modpython.so
%endif # 0%{?with_modpython}
%changelog
* Sun Aug 03 2014 Björn Esser <bjoern.esser@gmail.com> - 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 <rel-eng@lists.fedoraproject.org> - 1.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 1.4-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 1.4-2
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
2014-04-15 01:29:03 +00:00
* Mon Apr 14 2014 Nick Bebout <nb@fedoraproject.org> - 1.2-3
- Fix potential crash bug when adding channels
2013-11-11 23:30:20 +00:00
* Mon Nov 11 2013 Nick Bebout <nb@fedoraproject.org> - 1.2-2
- Enable PIE, Fix systemd description, use systemd macros
2013-11-11 16:53:21 +00:00
* Mon Nov 11 2013 Nick Bebout <nb@fedoraproject.org> - 1.2-1
- Upgrade to 1.2
2013-10-26 01:04:51 +00:00
* Fri Oct 25 2013 Nick Bebout <nb@fedoraproject.org> - 1.2-0.4.rc2
- Upgrade to 1.2-rc2
2013-09-26 22:13:30 +00:00
* Thu Sep 26 2013 Nick Bebout <nb@fedoraproject.org> - 1.2-0.3.beta1
- Upgrade to 1.2-beta1
2013-08-03 12:57:04 +00:00
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1.2-0.2.alpha1
- Perl 5.18 rebuild
2013-07-28 21:45:10 +00:00
* Sun Jul 28 2013 Nick Bebout <nb@fedoraproject.org> - 1.2-0.1.alpha1
- Upgrade to 1.2-alpha1
2013-07-17 13:30:12 +00:00
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.0-3
- Perl 5.18 rebuild
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-11-13 23:41:56 +00:00
* Tue Nov 13 2012 Nick Bebout <nb@fedoraproject.org> - 1.0-1
- Update to 1.0
2012-10-19 00:12:44 +00:00
* Thu Oct 18 2012 Nick Bebout <nb@fedoraproject.org> - 1.0-0.2.beta1
- Update to 1.0-beta1
2012-09-14 01:13:57 +00:00
* Thu Sep 13 2012 Nick Bebout <nb@fedoraproject.org> - 1.0-0.1.alpha1
- Update to 1.0-alpha1
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.206-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-04-17 04:03:50 +00:00
* Mon Apr 16 2012 Nick Bebout <nb@fedoraproject.org> - 0.206-1
- Upgrade to 0.206
2012-02-28 20:43:13 +00:00
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.204-4
- Rebuilt for c++ ABI breakage
2012-01-23 21:10:00 +00:00
* Mon Jan 23 2012 Nick Bebout <nb@fedoraproject.org> - 0.204-2
- Add init script for EPEL
2012-01-23 17:12:50 +00:00
* Mon Jan 23 2012 Nick Bebout <nb@fedoraproject.org> - 0.204-1
- Update to 0.204 to fix security issue CVE-2012-0033
* Mon Jan 09 2012 Nick Bebout <nb@fedoraproject.org> - 0.202-2
- Add glibc-devel, openssl-devel, c-ares-devel to requires for
- znc-devel so znc-buildmod will work
2011-09-25 20:17:26 +00:00
* Sun Sep 25 2011 Nick Bebout <nb@fedoraproject.org> - 0.202-1
- Update to 0.202
2011-08-23 21:57:41 +00:00
* Tue Aug 23 2011 Nick Bebout <nb@fedoraproject.org> - 0.200-1
- Update to 0.200
2011-08-16 02:20:51 +00:00
* Mon Aug 15 2011 Nick Bebout <nb@fedoraproject.org> - 0.200-0.5.rc1
- Don't create the znc user on Fedora 14 and lower and on EPEL
2011-08-15 18:05:20 +00:00
* Mon Aug 15 2011 Nick Bebout <nb@fedoraproject.org> - 0.200-0.4.rc1
- Change znc's homedir to /var/lib/znc
2011-08-14 20:27:53 +00:00
* Sun Aug 14 2011 Nick Bebout <nb@fedoraproject.org> - 0.200-0.3.rc1
- Re-add modpython, it somehow got disabled accidentally
- Also re-add modperl, it works now
2011-08-14 20:06:56 +00:00
* Sun Aug 14 2011 Nick Bebout <nb@fedoraproject.org> - 0.200-0.2.rc1
- Create /home/znc upon install
2011-08-13 22:34:31 +00:00
* Sat Aug 13 2011 Nick Bebout <nb@fedoraproject.org> - 0.200-0.1.rc1
- Update to 0.200-rc1
2011-08-07 00:46:18 +00:00
* Sat Aug 6 2011 Nick Bebout <nb@fedoraproject.org> - 0.2-0.2.beta1
2011-08-13 22:34:31 +00:00
- Update to 0.2-beta1, disable perl for now
2011-08-07 00:46:18 +00:00
2011-08-05 22:48:44 +00:00
* Fri Aug 5 2011 Nick Bebout <nb@fedoraproject.org> - 0.2-0.1.alpha1
- Update to 0.2-alpha1
* Mon Aug 1 2011 Nick Bebout <nb@fedoraproject.org> - 0.099-0.1.20110801git
- Update to latest git
2011-04-03 02:15:57 +00:00
* Sat Apr 2 2011 Nick Bebout <nb@fedoraproject.org> - 0.098-2
- Add provides for ZNC::Module to znc-modperl
2011-04-01 23:00:18 +00:00
* Tue Mar 29 2011 Nick Bebout <nb@fedoraproject.org> - 0.098-1
- Update to znc-0.098
2011-03-12 19:25:07 +00:00
* Sat Mar 12 2011 Nick Bebout <nb@fedoraproject.org> - 0.098-0.3.rc1
- Update to znc-0.098-rc1
2011-03-03 22:32:31 +00:00
* Wed Mar 02 2011 Nick Bebout <nb@fedoraproject.org> - 0.098-0.2.beta
- Update to znc-0.098-beta
* Wed Feb 23 2011 Nick Bebout <nb@fedoraproject.org> - 0.098-0.1.alpha1
- Update to znc 0.098-alpha1
2011-02-16 00:25:29 +00:00
* Tue Feb 15 2011 Nick Bebout <nb@fedoraproject.org> - 0.097-8.20110215git
- Update to latest git
2011-02-09 20:20:09 +00:00
* Wed Feb 09 2011 Nick Bebout <nb@fedoraproject.org> - 0.097-7.svn2277
2011-02-12 02:24:39 +00:00
- Update to svn2277
2011-01-24 17:22:13 +00:00
* Mon Jan 24 2011 Nick Bebout <nb@fedoraproject.org> - 0.097-6.svn2272
- Update to svn2272
2011-01-17 22:30:29 +00:00
* Mon Jan 17 2011 Nick Bebout <nb@fedoraproject.org> - 0.097-5.svn2269
- Update to svn2269
* Fri Jan 7 2011 Nick Bebout <nb@fedoraproject.org> - 0.097-4.svn2255
- Update to svn2255
* Mon Jan 3 2011 David Malcolm <dmalcolm@redhat.com> - 0.097-3.svn2214
- rebuild for newer python3 (see rhbz#666429)
* Fri Dec 24 2010 Nick Bebout <nb@fedoraproject.org> - 0.097-2.svn2214
- Patch has been upstreamed, update to svn2214
2010-12-25 05:04:00 +00:00
* Wed Dec 22 2010 Nick Bebout <nb@fedoraproject.org> - 0.097-1.svn2213
- Update to znc 0.097-svn2213 which also adds modpython
* Sun Nov 7 2010 Nick Bebout <nb@fedoraproject.org> - 0.096-2
- Build TCL module, move modperl and modtcl to separate subpackages
2010-11-07 02:22:58 +00:00
* Sat Nov 6 2010 Nick Bebout <nb@fedoraproject.org> - 0.096-1
- Update to znc 0.096
2010-09-11 00:23:39 +00:00
* Fri Sep 10 2010 Nick Bebout <nb@fedoraproject.org> - 0.094-1
- Update to znc 0.094
* Tue Aug 10 2010 Nick Bebout <nb@fedoraproject.org> - 0.093-2.svn2101
- Update to znc 0.093.svn2101 to fix CVE-2010-2812 and CVE-2010-2934
2010-08-03 18:03:55 +00:00
* Tue Aug 3 2010 Nick Bebout <nb@fedoraproject.org> - 0.093-1.svn2098
- Update to znc 0.093 svn2098
2010-07-14 05:32:40 +00:00
* Wed Jul 14 2010 Nick Bebout <nb@fedoraproject.org> - 0.092-1
- Update to znc 0.092
* Wed Jun 16 2010 Nick Bebout <nb@fedoraproject.org> - 0.090-2
2010-06-16 22:08:21 +00:00
- Backport r2026 of ZNC subversion repo to fix bug 603915
- NULL pointer dereference flaw leads to segfault under certain conditions
2010-06-06 23:02:09 +00:00
* Sun Jun 06 2010 Nick Bebout <nb@fedoraproject.org> - 0.090-1
- Update to znc 0.090
2009-12-07 16:17:00 +00:00
2010-05-28 03:56:59 +00:00
* Thu May 27 2010 Nick Bebout <nb@fedoraproject.org> - 0.090-0.1.rc1
- Update to znc 0.090-rc1
2010-05-28 02:18:00 +00:00
* Thu May 27 2010 Nick Bebout <nb@fedoraproject.org> - 0.089-7.svn2004
- Update to znc 0.089.svn2004
2010-05-19 03:00:47 +00:00
* Tue May 18 2010 Nick Bebout <nb@fedoraproject.org> - 0.089-6.svn2000
- Re-enable saslauth
2010-05-19 02:49:20 +00:00
* Tue May 18 2010 Nick Bebout <nb@fedoraproject.org> - 0.089-5.svn2000
- Re-enable modperl
2010-05-19 02:33:16 +00:00
* Tue May 18 2010 Nick Bebout <nb@fedoraproject.org> - 0.089-4.svn2000
- Update to znc 0.089.svn2000
* Sun Apr 25 2010 Nick Bebout <nb@fedoraproject.org> - 0.089-3.svn1944
2010-04-26 02:56:57 +00:00
- Update to znc 0.089.svn1944
2010-04-08 01:33:40 +00:00
* Wed Apr 7 2010 Nick Bebout <nb@fedoraproject.org> - 0.081-2.svn1897
- Update to znc 0.081.svn1897
2010-03-30 03:55:54 +00:00
* Mon Mar 29 2010 Nick Bebout <nb@fedoraproject.org> - 0.081-1.svn1850
- Update to znc 0.081.svn1850
2010-02-18 19:07:59 +00:00
* Thu Feb 18 2010 Nick Bebout <nb@fedoraproject.org> - 0.080-1
- Update to znc 0.080
2009-12-30 20:52:34 +00:00
* Wed Dec 30 2009 Nick Bebout <nb@fedoraproject.org> - 0.078-1
- Update to znc 0.078
2009-12-14 05:48:28 +00:00
* Sun Dec 13 2009 Nick Bebout <nb@fedoraproject.org> - 0.078-0.1.rc1
- Update to znc 0.078.rc1
2009-12-30 20:52:34 +00:00
2009-12-07 16:17:00 +00:00
* Mon Dec 7 2009 Nick Bebout <nb@fedoraproject.org> - 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)
2009-12-06 23:41:29 +00:00
* Fri Dec 4 2009 Stepan Kasal <skasal@redhat.com> - 0.076-3
- rebuild against perl 5.10.1
2009-09-25 06:08:55 +00:00
* Fri Sep 25 2009 Nick Bebout <nb@fedoraproject.org> - 0.076-2
- Fix missing dist tag
* Fri Sep 25 2009 Nick Bebout <nb@fedoraproject.org> - 0.076-1
2009-09-25 06:01:11 +00:00
- Upgrade to ZNC 0.076
- http://en.znc.in/wiki/ChangeLog/0.076
* Fri Aug 28 2009 Nick Bebout <nb@fedoraproject.org> - 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
2009-08-26 15:31:37 +00:00
* Wed Aug 26 2009 Tomas Mraz <tmraz@redhat.com> - 0.075-6.svn1608
2009-08-21 16:38:39 +00:00
- rebuilt with new openssl
2009-08-21 05:20:21 +00:00
* Thu Aug 20 2009 Nick Bebout <nb@fedoraproject.org> - 0.075-5.svn1608
- Upgrade to svn 1608
* Tue Aug 18 2009 Nick Bebout <nb@fedoraproject.org> - 0.075-4.20090818svn1602
- Upgrade to svn 1602
2009-08-08 05:34:02 +00:00
* Sat Aug 8 2009 Nick Bebout <nb@fedoraproject.org> - 0.075-3.20090807svn1594
- Fix source filename
2009-08-08 04:43:08 +00:00
* Fri Aug 7 2009 Nick Bebout <nb@fedoraproject.org> - 0.075-2.20090807svn1594
- Fix broken source tarball
2009-08-08 04:33:34 +00:00
* Fri Aug 7 2009 Nick Bebout <nb@fedoraproject.org> - 0.075-1.20090807svn1594
- Upgrade to svn 1594
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.074-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2009-07-23 18:10:45 +00:00
* Thu Jul 23 2009 Nick Bebout <nb@fedoraproject.org> - 0.074-1
- Update to 0.074
2009-08-08 04:33:34 +00:00
2009-07-23 02:53:18 +00:00
* Wed Jul 22 2009 Nick Bebout <nb@fedoraproject.org> - 0.072-3
- Fix date in changelog, disable c-ares
2009-08-08 04:33:34 +00:00
2009-07-23 02:53:18 +00:00
* Wed Jul 22 2009 Nick Bebout <nb@fedoraproject.org> - 0.072-2
2009-07-23 01:56:02 +00:00
- Backport patch to fix webadmin skins issue introduced in 0.072
2009-08-08 04:33:34 +00:00
* Wed Jul 22 2009 Nick Bebout <nb@fedoraproject.org> - 0.072-1
2009-07-23 01:56:02 +00:00
- Upgrade to 0.072 of ZNC, fixes security issue in bug # 513152
2009-08-08 04:33:34 +00:00
* Sun Jul 12 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-7
- Fix License: to be GPLv2 with exceptions
2009-08-08 04:33:34 +00:00
* Sat Jul 11 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-6
- Fix permissions error in %%prep, not in source
2009-08-08 04:33:34 +00:00
* Sat Jul 11 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-5
- Fix permissions error on q.cpp and add LICENSE.OpenSSL
2009-08-08 04:33:34 +00:00
* Sat Jul 11 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-4
- Remove switch to enable debug, fix %%files section
2009-08-08 04:33:34 +00:00
* Fri Jul 10 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-3
- Move fixfreenode and log into separate znc-extra package
- Move awayping into separate znc-awayping package
2009-08-08 04:33:34 +00:00
* Thu Jul 9 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-2
- Include modules with main package
2009-08-08 04:33:34 +00:00
* Wed Jul 8 2009 Nick Bebout <nb@fedoraproject.org> - 0.070-1
- Initial Fedora package based on 0.070 of upstream