f9b56b2
%if 0%{?fedora} >= 15 || 0%{?rhel} >= 6
7fe5b47
%bcond_without otr
7fe5b47
%else
7fe5b47
%bcond_with otr
7fe5b47
%endif
7fe5b47
7fe5b47
%if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
7fe5b47
%bcond_without systemd
7fe5b47
%else
7fe5b47
%bcond_with systemd
7fe5b47
%endif
7fe5b47
96ff676
# libpurple requires forkdaemon or inetd mode, however forkdaemon needed
bda4144
# adapted SELinux policy in former times.
462f057
%if 0%{?fedora} >= 22 || 0%{?rhel} >= 7
ad289e8
%bcond_without purple
ad289e8
%else
ad289e8
%bcond_with purple
ad289e8
%endif
ad289e8
91860b3
%if 0%{?fedora} >= 22 || 0%{?rhel} >= 8
91860b3
%bcond_without python3
91860b3
%else
91860b3
%bcond_with python3
91860b3
%endif
91860b3
8532f55
%global github_owner    bitlbee
8532f55
%global github_name     bitlbee
8532f55
%global commit          0b1448f070917daf4966097a06b47fc4b2ce0c92
8532f55
%global shortcommit     %(c=%{commit}; echo ${c:0:7})
91860b3
350336b
Summary:           IRC to other chat networks gateway
350336b
Name:              bitlbee
8532f55
Version:           3.5.2
8532f55
Release:           0.1.20180919git%{shortcommit}%{?dist}
2e1c9b3
License:           GPLv2+ and MIT
350336b
Group:             System Environment/Daemons
6b85be9
URL:               https://www.bitlbee.org/
8532f55
#Source0:           https://get.bitlbee.org/src/%{name}-%{version}.tar.gz
8532f55
Source0:           https://github.com/%{github_owner}/%{github_name}/archive/%{commit}/%{name}-%{commit}.tar.gz
96ff676
# Downstream: Run bitlbee as non-root and bind to 127.0.0.1 only
96ff676
Patch0:            bitlbee-forkdaemon.patch
1979579
2e1c9b3
Requires(pre):     shadow-utils
46a61ff
BuildRequires:     gcc
c738ac7
BuildRequires:     libxslt, docbook-style-xsl
c738ac7
BuildRequires:     glib2-devel >= 2.14
da3107d
BuildRequires:     gnutls-devel
7fe5b47
%if %{with systemd}
e57ae71
BuildRequires:     pkgconfig(systemd)
a96797f
Requires:          systemd-units
a96797f
%else
5003895
Requires(preun):   /sbin/service
a96797f
Requires:          xinetd
e57ae71
%endif
7fe5b47
%if %{with otr}
da3107d
BuildRequires:     libotr-devel >= 4.0
0be1f4f
%endif
ad289e8
%if %{with purple}
ad289e8
BuildRequires:     libpurple-devel
ad289e8
%endif
91860b3
%if %{with python3}
91860b3
BuildRequires:     python3-devel
91860b3
%else
91860b3
BuildRequires:     python2-devel
91860b3
%endif
350336b
350336b
%description
350336b
Bitlbee is an IRC to other chat networks gateway. Bitlbee can be used as
350336b
an IRC server which forwards everything you say to people on other chat
6b85be9
networks like XMPP/Jabber (including Google Talk and Hipchat), MSN/Skype,
6b85be9
AIM and ICQ, the Twitter microblogging network (and all other Twitter API
6b85be9
compatible services like status.net).
350336b
2ab6504
%package devel
2ab6504
Summary:           Development files for bitlbee
2ab6504
Group:             Development/Libraries
f3960a7
Requires:          %{name}%{?_isa} = %{version}-%{release}, pkgconfig
2ab6504
2ab6504
%description devel
2ab6504
The bitlbee-devel package includes header files necessary for building and
2ab6504
developing programs and plugins which use bitlbee.
2ab6504
7fe5b47
%if %{with otr}
1f2ca1b
%package otr
1f2ca1b
Summary:           OTR plugin for bitlbee
1f2ca1b
Group:             System Environment/Daemons
f3960a7
Requires:          %{name}%{?_isa} = %{version}-%{release}
1f2ca1b
1f2ca1b
%description otr
5003895
The bitlbee-otr package includes OTR plugin for bitlbee. Not completely
5003895
stable and not 100% foolproof so use at your own risk.
1f2ca1b
%endif
1f2ca1b
350336b
%prep
574f2d1
echo With OTR %with_otr
574f2d1
echo With systemd %with_systemd
8532f55
%setup -q -n %{name}-%{commit}
96ff676
%if %{with systemd}
da3107d
%patch0 -p1
f03c519
%endif
292f823
350336b
%build
a9ed831
# Note that we cannot use openssl in Fedora packages ... it breaks GPL
91860b3
%if %{with python3}
91860b3
export PYTHON=$(which python3)
91860b3
%else
91860b3
export PYTHON=$(which python2)
91860b3
%endif
350336b
CFLAGS="$RPM_OPT_FLAGS" ./configure \
350336b
        --prefix=%{_prefix} \
350336b
        --bindir=%{_sbindir} \
350336b
        --etcdir=%{_sysconfdir}/%{name} \
350336b
        --mandir=%{_mandir} \
350336b
        --datadir=%{_datadir}/%{name} \
350336b
        --config=%{_localstatedir}/lib/%{name} \
2ab6504
        --pcdir=%{_libdir}/pkgconfig \
2ab6504
        --plugindir=%{_libdir}/%{name} \
350336b
        --strip=0 \
2dc6f9e
        --plugins=1 \
da3107d
        --ssl=gnutls \
ad289e8
%if %{with purple}
ad289e8
        --msn=1 \
ad289e8
        --jabber=1 \
ad289e8
        --oscar=1 \
ad289e8
        --twitter=1 \
ad289e8
        --purple=1 \
ad289e8
%endif
7fe5b47
%if %{with otr}
1f2ca1b
        --otr=plugin
1f2ca1b
%endif
350336b
4069518
make %{?_smp_mflags}
350336b
8e0d7cd
( cd doc/user-guide ; make user-guide.html )
8e0d7cd
350336b
%install
350336b
rm -rf $RPM_BUILD_ROOT
d44470f
make DESTDIR=$RPM_BUILD_ROOT install install-dev install-etc
350336b
2ab6504
# Install some files manually to their correct destination
2ab6504
mkdir -p $RPM_BUILD_ROOT{%{_localstatedir}/lib,%{_libdir}}/%{name}
7fe5b47
%if %{with systemd}
da3107d
make DESTDIR=$RPM_BUILD_ROOT install-systemd
7fe5b47
%else
75512a2
install -D -p -m 644 doc/%{name}.xinetd \
75512a2
    $RPM_BUILD_ROOT%{_sysconfdir}/xinetd.d/%{name}
a96797f
%endif
2ab6504
install -D -p -m 644 %{name}.conf $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/%{name}.conf
350336b
2dc6f9e
# Convert everything to UTF-8
ac02d77
for cnvfile in doc/CREDITS; do
3f07c5b
    iconv -f iso-8859-1 -t utf-8 -o ${cnvfile}.utf8 ${cnvfile}
3f07c5b
    touch -c -r ${cnvfile} ${cnvfile}.utf8
3f07c5b
    mv -f ${cnvfile}.utf8 ${cnvfile}
a96797f
done
2dc6f9e
350336b
%pre
2e1c9b3
getent group %{name} > /dev/null || %{_sbindir}/groupadd -r %{name}
2e1c9b3
getent passwd %{name} > /dev/null || %{_sbindir}/useradd -r -g %{name} -d %{_localstatedir}/lib/%{name} -s /sbin/nologin -c "BitlBee User" %{name}
2e1c9b3
exit 0
350336b
3f07c5b
%post
7fe5b47
%if %{with systemd}
566011b
  %systemd_post %{name}.service
566011b
%endif
3f07c5b
350336b
%preun
7fe5b47
%if %{with systemd}
566011b
  %systemd_preun %{name}.service
566011b
%else
7fe5b47
if [ $1 -eq 0 ]; then
566011b
  /sbin/service xinetd condrestart > /dev/null 2>&1
7fe5b47
fi
3f07c5b
%endif
3f07c5b
3f07c5b
%postun
7fe5b47
%if %{with systemd}
566011b
  %systemd_postun_with_restart %{name}.service
566011b
%else
75512a2
if [ $1 -eq 1 ]; then
75512a2
  /sbin/service xinetd condrestart > /dev/null 2>&1
75512a2
fi
566011b
%endif
350336b
350336b
%files
358859c
%license COPYING
358859c
%doc doc/{AUTHORS,CHANGES,CREDITS,FAQ,README}
8e0d7cd
%doc doc/user-guide/*.xml doc/user-guide/user-guide.html
350336b
%dir %{_sysconfdir}/%{name}
e57ae71
%config(noreplace) %{_sysconfdir}/%{name}/*
350336b
%{_sbindir}/%{name}
1f2ca1b
%dir %{_libdir}/%{name}/
350336b
%{_datadir}/%{name}/
350336b
%{_mandir}/man?/%{name}*
350336b
%attr(0700,bitlbee,bitlbee) %dir %{_localstatedir}/lib/%{name}
7fe5b47
%if %{with systemd}
024a8cd
%{_unitdir}/%{name}*
a96797f
%else
a96797f
%config(noreplace) %{_sysconfdir}/xinetd.d/%{name}
e57ae71
%endif
350336b
2ab6504
%files devel
2ab6504
%doc doc/example_plugin.c
2ab6504
%{_includedir}/%{name}/
2ab6504
%{_libdir}/pkgconfig/%{name}.pc
2ab6504
7fe5b47
%if %{with otr}
1f2ca1b
%files otr
1f2ca1b
%{_libdir}/%{name}/otr.so
1f2ca1b
%endif
1f2ca1b
350336b
%changelog
8532f55
* Wed Sep 19 2018 Adam Williamson <awilliam@redhat.com> - 3.5.2-0.1.20180919git0b1448f
8532f55
- Bump to latest git snapshot (for openssl 1.1 and twitter fixes)
8532f55
4578026
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-7
4578026
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
4578026
3f79589
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.5.1-6
3f79589
- Rebuilt for Python 3.7
3f79589
ee95982
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-5
ee95982
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ee95982
78e9ddb
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-4
78e9ddb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
78e9ddb
a270283
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-3
a270283
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a270283
9766172
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.1-2
9766172
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
9766172
ac02d77
* Mon Jan 30 2017 Robert Scheck <robert@fedoraproject.org> 3.5.1-1
ac02d77
- Upgrade to 3.5.1
ac02d77
91860b3
* Mon Jan 09 2017 Matěj Cepl <mcepl@redhat.com> - 3.5-1
91860b3
- New upstream release (#1411171)
91860b3
f9b56b2
* Tue Jun 14 2016 Matěj Cepl <mcepl@redhat.com> - 3.4.2-2
f9b56b2
- Switch off build OTR plugin for EL6 (see
f9b56b2
  https://bugs.bitlbee.org/ticket/1163 for explanation, and if desired
f9b56b2
  an user must build himself https://github.com/dequis/bitlbee-otr3;
f9b56b2
  fixes #1346182).
f9b56b2
e8ff98e
* Sun Mar 20 2016 Matěj Cepl <mcepl@redhat.com> - 3.4.2-1
e8ff98e
- New upstream release (#1319428)
e8ff98e
187402c
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.1-2
187402c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
187402c
8e0d7cd
* Wed Jun 17 2015 Matej Cepl <mcepl@redhat.com> - 3.4.1-1
8e0d7cd
- New upstream release (#1205936)
8e0d7cd
358859c
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-2
1fb05b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1fb05b8
da3107d
* Thu Mar 26 2015 Matej Cepl <mcepl@redhat.com> - 3.4-1
da3107d
- New upstream release.
da3107d
- Requires libotr >= 4 (so EPEL-6 will require new build of libotr 4)
da3107d
bf01fa5
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.2-5
bf01fa5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
bf01fa5
ab3bf00
* Thu Aug 07 2014 Robert Scheck <robert@fedoraproject.org> 3.2.2-4
ab3bf00
- Disable libpurple due to dbus issues also in EPEL (#1126930)
ab3bf00
e1f059f
* Tue Jul 22 2014 Robert Scheck <robert@fedoraproject.org> 3.2.2-3
e1f059f
- Really disable libpurple support for Fedora except Rawhide
e1f059f
cbc7905
* Mon Jul 14 2014 Robert Scheck <robert@fedoraproject.org> 3.2.2-2
cbc7905
- Enable forkdaemon due lacking SELinux policy in Rawhide only
cbc7905
- Disable libpurple conflicting with the daemon mode (#1117553)
cbc7905
ad289e8
* Sun Jul 06 2014 Robert Scheck <robert@fedoraproject.org> 3.2.2-1
ad289e8
- Upgrade to 3.2.2 (#1116567)
ad289e8
- Enable libpurple support additionally to built-in protocols
ad289e8
0c1b9c2
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.1-5
0c1b9c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0c1b9c2
Matej Cepl 3fb93ab
* Thu May 29 2014 Matěj Cepl <mcepl@redhat.com> - 3.2.1-4
Matej Cepl 3fb93ab
- Add server_args to /etc/xinetd.d/bitlbee (#1102062)
Matej Cepl 3fb93ab
75512a2
* Wed Feb 05 2014 Matěj Cepl <mcepl@redhat.com> - 3.2.1-3
75512a2
- Eliminate our own bitlbee.xinetd by patching the upstream one.
75512a2
62ba30f
* Wed Dec 18 2013 Robert Scheck <robert@fedoraproject.org> 3.2.1-2
62ba30f
- Some spec file cleanups and ensure that RHEL 5 builds again
62ba30f
539df90
* Thu Nov 28 2013 Matěj Cepl <mcepl@redhat.com> - 3.2.1-1
59aa51e
- Update to the latest upstream (mainly Twitter API issues, #1035504)
539df90
5003895
* Tue Sep 24 2013 Adam Williamson <awilliam@redhat.com> - 3.2-7.20130713bzr997
7ae3787
- let's just go to latest upstream bzr, since there's no new release
7ae3787
- drop nss-crash-rhbz922447.patch, merged upstream as rev 987
7ae3787
292f823
* Fri Aug 16 2013 Matěj Cepl <mcepl@redhat.com> - 3.2-6
292f823
- systemd socket should be opened over IPv6 as well (#949303)
1979579
- return fix for NSS crash (#922447)
292f823
292f823
* Fri Aug 16 2013 Matěj Cepl <mcepl@redhat.com> - 3.2-5
292f823
- Add a conditional patch for F>=20 to build with libotr4
292f823
84e9074
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-4
84e9074
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
84e9074
dd77fa0
* Tue Apr 02 2013 Matěj Cepl <mcepl@redhat.com> - 3.2-3
dd77fa0
- Add upstream patch to avoid double-free crash (#922447)
dd77fa0
0915fe5
* Thu Mar 14 2013 Robert Scheck <robert@fedoraproject.org> 3.2-2
0915fe5
- Add accidentially lost OTR support for RHEL 5 and 6 (#919912)
0915fe5
566011b
* Wed Feb 20 2013 Robert Scheck <robert@fedoraproject.org> 3.2-1
566011b
- Upgrade to 3.2 (#912675, thanks to Eike Hein and Rex Dieter)
566011b
- Use the new systemd macros (#850048, thanks to Václav Pavlín)
566011b
998e7b5
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.5-5
998e7b5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
998e7b5
86388c3
* Tue Jul 24 2012 Matej Cepl <mcepl@redhat.com> - 3.0.5-4
7fe5b47
- The last version of SSL/NSS patch for the upstream #714
7fe5b47
81cec16
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.5-3
81cec16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
81cec16
39f066f
* Thu Jun 21 2012 Matej Cepl <mcepl@redhat.com> - 3.0.5-2
39f066f
- Add more error handling to lib/ssl_nss.c
39f066f
- Checking patches for compatibility with the current state of the word
39f066f
  and updating comments.
7fe5b47
- Improve otr conditional
39f066f
948b567
* Sat Mar 31 2012 Adam Williamson <awilliam@redhat.com> - 3.0.5-1
948b567
- new upstream release 3.0.5
948b567
0639f7f
* Sat Jan 14 2012 Adam Williamson <awilliam@redhat.com> - 3.0.4-3
0639f7f
- add upstream fix for a high-priority twitter disconnect/crasher
0639f7f
e6d6483
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.4-2
e6d6483
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e6d6483
bdd602b
* Tue Dec 06 2011 Adam Williamson <awilliam@redhat.com> - 3.0.4-1
bdd602b
- new upstream release 3.0.4
bdd602b
- drop 823_822.diff (merged upstream obviously)
bdd602b
d653e14
* Fri Nov 11 2011 Adam Williamson <awilliam@redhat.com> - 3.0.3-6
d653e14
- 823_822.diff: fix MSN login (upstream rev #823)
d653e14
f37371c
* Thu Aug 04 2011 Matěj Cepl <mcepl@redhat.com> - 3.0.3-5
f37371c
- Tiny typo in systemd units.
f37371c
e77e2ca
* Sat Jul 30 2011 Matěj Cepl <mcepl@redhat.com> - 3.0.3-4
e77e2ca
- Rebuilt against new libraries.
e77e2ca
066ba90
* Thu Jul 28 2011 Matěj Cepl <mcepl@redhat.com> - 3.0.3-3
066ba90
- Add Restart=always to systemd (following discussion on upstream #738).
066ba90
d76f62d
* Mon Jul 25 2011 Matěj Cepl <mcepl@redhat.com> - 3.0.3-2
d76f62d
- One more fix to the systemd unit files (#705096)
d76f62d
b78a6ae
* Wed Mar 09 2011 Matěj Cepl <mcepl@redhat.com> - 3.0.2-1
b78a6ae
- New upstream release. We can eliminate parts which were already merged
b78a6ae
  upstream (ssl_pending patch)
b78a6ae
86e48e1
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-9
86e48e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
86e48e1
1ec8b27
* Sun Jan 09 2011 Matěj Cepl <mcepl@redhat.com> - 3.0.1-8
1ec8b27
- Fix crash when no SRV record is provided (#668190); fix by Ricky Zhou
1ec8b27
a96797f
* Wed Dec 29 2010 Matěj Cepl <mcepl@redhat.com> - 3.0.1-7
a96797f
- Adding more missing systemd-support pieces and eliminate xinetd on F<15
a96797f
3d85263
* Tue Dec 28 2010 Matěj Cepl <mcepl@redhat.com> - 3.0.1-6
3d85263
- commented all patches with status of their upstreaming
3d85263
- two tiny fixes for SSL implementation (#666022)
3d85263
e57ae71
* Mon Dec 27 2010 Matěj Cepl <mcepl@redhat.com> - 3.0.1-5
e57ae71
- Systemd support
e57ae71
d4fdeea
* Mon Dec 27 2010 Matěj Cepl <mcepl@redhat.com> - 3.0.1-4
d4fdeea
- Add Ricky Zhou's fixed patch for libresolv (#663934)
d4fdeea
53d0801
* Sun Dec 26 2010 Matěj Cepl <mcepl@redhat.com> - 3.0.1-3
53d0801
- Add bitlbee-des3-implement patch with working ssl_des3_encrypt
3d85263
implementation by Ricky Zhou.
53d0801
e5330f0
* Sat Dec 25 2010 Matěj Cepl <mcepl@redhat.com> - 3.0.1-2
e5330f0
- Implement missing ssl_pending() (Fix by Ricky Zhou, #665553)
e5330f0
a9ed831
* Sat Dec 04 2010 Matěj Cepl <mcepl@redhat.com> - 3.0.1-1
a9ed831
- New upstream release
1f2ca1b
- Switched to NSS (3DES still via lib/des.c)
1f2ca1b
- Added -otr subpackage with optional OTR plugin.
a9ed831
89c9c32
* Sun Nov 21 2010 Matěj Cepl <mcepl@redhat.com> - 3.0-2
89c9c32
- Get rid of bad regexp magic, now with pure DESTDIR.
89c9c32
fdefc88
* Fri Oct 22 2010 Matěj Cepl <mcepl@redhat.com> - 3.0-1
fdefc88
- New upstream release.
fdefc88
9435edd
* Sun Jul 04 2010 Robert Scheck <robert@fedoraproject.org> 1.2.8-1
9435edd
- Upgrade to 1.2.8
9435edd
c9e9aa3
* Sat May 15 2010 Robert Scheck <robert@fedoraproject.org> 1.2.7-1
c9e9aa3
- Upgrade to 1.2.7
c9e9aa3
647b9f8
* Sun Apr 25 2010 Robert Scheck <robert@fedoraproject.org> 1.2.6a-3
647b9f8
- Updated the description to reflect twitter support
647b9f8
- Really fixed the optional libresolv patch this time
647b9f8
4b3d380
* Tue Apr 20 2010 Robert Scheck <robert@fedoraproject.org> 1.2.6a-2
4b3d380
- Remerged the optional libresolv patch for 1.2.6a
4b3d380
d1f3695
* Tue Apr 20 2010 Robert Scheck <robert@fedoraproject.org> 1.2.6a-1
d1f3695
- Upgrade to 1.2.6a (#584071)
d1f3695
f03c519
* Thu Mar 18 2010 Robert Scheck <robert@fedoraproject.org> 1.2.5-1
f03c519
- Upgrade to 1.2.5
f03c519
c5dc8ed
* Sat Oct 17 2009 Robert Scheck <robert@fedoraproject.org> 1.2.4-1
c5dc8ed
- Upgrade to 1.2.4
c5dc8ed
2ab6504
* Mon Aug 17 2009 Robert Scheck <robert@fedoraproject.org> 1.2.3-4
2ab6504
- Updated libresolv patch to not segfault when connecting to the
e5330f0
Jabber/XMPP server if there's no SRV record (#506719, #501786)
2ab6504
- Added -devel subpackage with header files for plugins (#504882)
2ab6504
2ab6504
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.3-3
2ab6504
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2ab6504
2ab6504
* Mon Feb 23 2009 Robert Scheck <robert@fedoraproject.org> 1.2.3-2
2ab6504
- Rebuilt against gcc 4.4 and rpm 4.6
2ab6504
546d192
* Sun Sep 07 2008 Robert Scheck <robert@fedoraproject.org> 1.2.3-1
546d192
- Upgrade to 1.2.3 (#461424)
546d192
cf8fe53
* Wed Aug 27 2008 Robert Scheck <robert@fedoraproject.org> 1.2.2-1
cf8fe53
- Upgrade to 1.2.2 (#460355)
cf8fe53
4ce68a1
* Mon Jul 07 2008 Robert Scheck <robert@fedoraproject.org> 1.2.1-1
4ce68a1
- Upgrade to 1.2.1 (thanks to Matěj Cepl)
4ce68a1
2dc6f9e
* Tue Apr 15 2008 Robert Scheck <robert@fedoraproject.org> 1.2-1
2dc6f9e
- Upgrade to 1.2 (#439047, thanks to Matěj Cepl)
2dc6f9e
2dc6f9e
* Sun Feb 10 2008 Robert Scheck <robert@fedoraproject.org> 1.0.4-2
2dc6f9e
- Rebuilt against gcc 4.3
2dc6f9e
2e1c9b3
* Wed Aug 29 2007 Robert Scheck <robert@fedoraproject.org> 1.0.4-1
2e1c9b3
- Upgrade to 1.0.4
2e1c9b3
- Updated the license tag according to the guidelines
2e1c9b3
247687f
* Mon May 07 2007 Robert Scheck <robert@fedoraproject.org> 1.0.3-6
247687f
- Rebuilt
247687f
350336b
* Sat Oct 21 2006 Robert Scheck <robert@fedoraproject.org> 1.0.3-5
350336b
- Create a bitlbee user and condrestart xinetd instead of reload
350336b
350336b
* Fri Aug 04 2006 Robert Scheck <robert@fedoraproject.org> 1.0.3-4
350336b
- Switched to gnutls per default for SSL support (#196591 #c12)
350336b
350336b
* Mon Jun 26 2006 Robert Scheck <robert@fedoraproject.org> 1.0.3-3
350336b
- Added patch for using CFLAGS env (#196591 #c4, upstream #171)
350336b
350336b
* Sun Jun 25 2006 Robert Scheck <robert@fedoraproject.org> 1.0.3-2
350336b
- Changes to match with Fedora Packaging Guidelines (#196591)
350336b
350336b
* Sun Jun 25 2006 Robert Scheck <robert@fedoraproject.org> 1.0.3-1
350336b
- Upgrade to 1.0.3
350336b
350336b
* Sun Apr 02 2006 Robert Scheck <robert@fedoraproject.org> 1.0.2-1
350336b
- Upgrade to 1.0.2
350336b
350336b
* Sun Jan 15 2006 Robert Scheck <robert@fedoraproject.org> 1.0.1-1
350336b
- Upgrade to 1.0.1
350336b
350336b
* Wed Dec 28 2005 Robert Scheck <robert@fedoraproject.org> 1.0-2
350336b
- Rebuilt against gcc 4.1
350336b
350336b
* Mon Dec 05 2005 Robert Scheck <robert@fedoraproject.org> 1.0-1
350336b
- Upgrade to 1.0
350336b
350336b
* Sat Nov 12 2005 Robert Scheck <robert@fedoraproject.org> 0.92-4
350336b
- Rebuilt against openssl 0.9.8a
350336b
350336b
* Sun Aug 28 2005 Robert Scheck <robert@fedoraproject.org> 0.92-3
350336b
- Added patch, that allows specifying the Jabber server manually
350336b
- Don't start bitlbee per default as xinetd service
350336b
350336b
* Sun Jul 03 2005 Robert Scheck <robert@fedoraproject.org> 0.92-2
350336b
- Added patch giving ICQ/AIM support for typing notifications
350336b
350336b
* Fri Jul 01 2005 Robert Scheck <robert@fedoraproject.org> 0.92-1
350336b
- Upgrade to 0.92
350336b
- Initial spec file for Fedora Core