cee96b6
%{!?lua_version: %global lua_version %{lua: print(string.sub(_VERSION, 5))}}
cee96b6
13f1b3f
%global sslcert    %{_sysconfdir}/pki/%{name}/localhost.crt
13f1b3f
%global sslkey     %{_sysconfdir}/pki/%{name}/localhost.key
13f1b3f
13f1b3f
Summary:           Flexible communications server for Jabber/XMPP
13f1b3f
Name:              prosody
6edd127
Version:           0.11.7
f0672c1
Release:           2%{?dist}
13f1b3f
License:           MIT
13f1b3f
URL:               https://prosody.im/
13f1b3f
Source0:           https://prosody.im/downloads/source/%{name}-%{version}.tar.gz
d1b865f
Source1:           https://prosody.im/downloads/source/%{name}-%{version}.tar.gz.asc
4a6857f
Source2:           gpgkey-32A9EDDE3609931EB98CEAC315907E8E7BDD6BFE.gpg
33be128
Source3:           prosody.service
33be128
Source4:           prosody.logrotate
33be128
Source5:           prosody.tmpfilesd
33be128
Source6:           prosody-localhost.cfg.lua
33be128
Source7:           prosody-example.com.cfg.lua
1b9ad80
Patch0:            prosody-0.11.0-config.patch
8bd5d5a
Patch1:            prosody-0.11.4-lua53.patch
6edd127
Patch2:            prosody-0.11.5-lua54.patch
6ab1dc4
BuildRequires:     gnupg2
33be128
BuildRequires:     gcc
33be128
BuildRequires:     libicu-devel
33be128
BuildRequires:     openssl-devel
33be128
BuildRequires:     lua
33be128
BuildRequires:     lua-devel
33be128
BuildRequires:     systemd
8dfad06
Requires:          %{_bindir}/openssl
13f1b3f
Requires(pre):     shadow-utils
13f1b3f
Requires(post):    systemd, %{_bindir}/openssl
13f1b3f
Requires(preun):   systemd
13f1b3f
Requires(postun):  systemd
13f1b3f
BuildRequires:     systemd
cee96b6
Requires:          lua(abi) = %{lua_version}
33be128
Requires:          lua-filesystem
33be128
Requires:          lua-expat
33be128
Requires:          lua-socket
33be128
Requires:          lua-sec
33be128
%if 0%{?rhel} && 0%{?rhel} < 8
cee96b6
Requires:          lua-bitop
Johan Cwiklinski d3805ac
%endif
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%description
13f1b3f
Prosody is a flexible communications server for Jabber/XMPP written in Lua.
Johan Cwiklinski d3805ac
It aims to be easy to use, and light on resources. For developers it aims
13f1b3f
to be easy to extend and give a flexible system on which to rapidly develop
13f1b3f
added functionality, or prototype new protocols.
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%prep
6edd127
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
13f1b3f
%setup -q
13f1b3f
%patch0 -p1 -b .config
cee96b6
%patch1 -p1 -b .lua53
e346b66
%patch2 -p1 -b .lua54
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%build
Johan Cwiklinski d3805ac
./configure \
13f1b3f
  --prefix=%{_prefix} \
13f1b3f
  --libdir=%{_libdir} \
33be128
  --idn-library=icu \
6ab1dc4
  --add-cflags="$RPM_OPT_FLAGS" \
6ab1dc4
  --add-ldflags="$RPM_LD_FLAGS" \
13f1b3f
  --no-example-certs
33be128
%make_build
Johan Cwiklinski d3805ac
13f1b3f
# Make prosody-migrator
33be128
%make_build -C tools/migration
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%install
13f1b3f
mkdir -p $RPM_BUILD_ROOT{%{_sysconfdir}/pki,%{_localstatedir}/{lib,log}/%{name}}/
33be128
%make_install
Johan Cwiklinski d3805ac
13f1b3f
# Install prosody-migrator
33be128
%make_install -C tools/migration
Johan Cwiklinski d3805ac
13f1b3f
# Install ejabberd2prosody
13f1b3f
install -p -m 755 tools/ejabberd2prosody.lua $RPM_BUILD_ROOT%{_bindir}/ejabberd2prosody
13f1b3f
sed -e 's@;../?.lua@;%{_libdir}/%{name}/util/?.lua;%{_libdir}/%{name}/?.lua;@' \
bd97dfa
  -i $RPM_BUILD_ROOT%{_bindir}/ejabberd2prosody
13f1b3f
touch -c -r tools/ejabberd2prosody.lua $RPM_BUILD_ROOT%{_bindir}/ejabberd2prosody
13f1b3f
install -p -m 644 tools/erlparse.lua $RPM_BUILD_ROOT%{_libdir}/%{name}/util/
13f1b3f
13f1b3f
# Move certificates directory and symlink it
13f1b3f
mv -f $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/certs/ $RPM_BUILD_ROOT%{_sysconfdir}/pki/%{name}/
13f1b3f
ln -s ../pki/%{name}/ $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/certs
13f1b3f
33be128
# Install systemd unit files and tmpfiles
33be128
install -D -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_unitdir}/%{name}.service
6ab1dc4
install -D -p -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/%{name}
33be128
install -D -p -m 644 %{SOURCE5} $RPM_BUILD_ROOT%{_tmpfilesdir}/%{name}.conf
33be128
mkdir -p $RPM_BUILD_ROOT/run/%{name}/
Johan Cwiklinski d3805ac
13f1b3f
# Keep configuration file timestamp
13f1b3f
touch -c -r prosody.cfg.lua.dist.config $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/prosody.cfg.lua
Johan Cwiklinski d3805ac
13f1b3f
# Install virtual host configuration
33be128
install -D -p -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/conf.d/localhost.cfg.lua
33be128
install -D -p -m 644 %{SOURCE7} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/conf.d/example.com.cfg.lua
Johan Cwiklinski d3805ac
13f1b3f
# Fix permissions for rpmlint
13f1b3f
chmod 755 $RPM_BUILD_ROOT%{_libdir}/%{name}/util/*.so
Johan Cwiklinski d3805ac
13f1b3f
# Fix incorrect end-of-line encoding
13f1b3f
sed -e 's/\r//g' -i doc/stanza.txt doc/session.txt doc/roster_format.txt
Johan Cwiklinski d3805ac
13f1b3f
%pre
13f1b3f
getent group %{name} > /dev/null || %{_sbindir}/groupadd -r %{name}
13f1b3f
getent passwd %{name} > /dev/null || %{_sbindir}/useradd -r -g %{name} -d %{_localstatedir}/lib/%{name} -s /sbin/nologin -c "Prosody XMPP Server" %{name}
13f1b3f
exit 0
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%post
Johan Cwiklinski 0bbaa5f
%systemd_post %{name}.service
Johan Cwiklinski d3805ac
13f1b3f
if [ ! -f %{sslkey} ]; then
13f1b3f
  umask 077
1b9ad80
  %{_bindir}/openssl genrsa 4096 > %{sslkey} 2> /dev/null
13f1b3f
  chown root:%{name} %{sslkey}
13f1b3f
  chmod 640 %{sslkey}
Johan Cwiklinski d3805ac
fi
Johan Cwiklinski d3805ac
13f1b3f
if [ ! -f %{sslcert} ]; then
33be128
  FQDN=`hostname 2> /dev/null`
13f1b3f
  if [ "x${FQDN}" = "x" ]; then
13f1b3f
    FQDN=localhost.localdomain
13f1b3f
  fi
13f1b3f
1b9ad80
  %{_bindir}/openssl req -new -key %{sslkey} -x509 -sha256 -days 365 -set_serial $RANDOM -out %{sslcert} \
1b9ad80
    -subj "/C=--/ST=SomeState/L=SomeCity/O=SomeOrganization/OU=SomeOrganizationalUnit/CN=${FQDN}/emailAddress=root@${FQDN}"
13f1b3f
  chmod 644 %{sslcert}
Johan Cwiklinski d3805ac
fi
Johan Cwiklinski d3805ac
13f1b3f
%preun
13f1b3f
%systemd_preun %{name}.service
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%postun
Johan Cwiklinski 0bbaa5f
%systemd_postun_with_restart %{name}.service
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%files
13f1b3f
%license COPYING
6ab1dc4
%doc AUTHORS CHANGES HACKERS README doc/*
Johan Cwiklinski d3805ac
%{_bindir}/%{name}
Johan Cwiklinski d3805ac
%{_bindir}/%{name}ctl
13f1b3f
%{_bindir}/%{name}-migrator
13f1b3f
%{_bindir}/ejabberd2prosody
13f1b3f
%{_libdir}/%{name}/
111eb3b
%dir %attr(0750,root,%{name}) %{_sysconfdir}/pki/%{name}/
13f1b3f
%config(noreplace) %attr(0640,root,%{name}) %{_sysconfdir}/pki/%{name}/*
111eb3b
%dir %attr(0750,root,%{name}) %{_sysconfdir}/%{name}/
13f1b3f
%config(noreplace) %attr(0640,root,%{name}) %{_sysconfdir}/%{name}/*.cfg.lua
111eb3b
%dir %attr(0750,root,%{name}) %{_sysconfdir}/%{name}/conf.d/
13f1b3f
%config(noreplace) %attr(0640,root,%{name}) %{_sysconfdir}/%{name}/conf.d/*.cfg.lua
111eb3b
%attr(0750,root,%{name}) %{_sysconfdir}/%{name}/certs
13f1b3f
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
Johan Cwiklinski d3805ac
%{_unitdir}/%{name}.service
13f1b3f
%{_tmpfilesdir}/%{name}.conf
13f1b3f
%dir %attr(0755,%{name},%{name}) /run/%{name}/
111eb3b
%dir %attr(0750,%{name},%{name}) %{_localstatedir}/lib/%{name}/
111eb3b
%dir %attr(0750,%{name},%{name}) %{_localstatedir}/log/%{name}/
13f1b3f
%{_mandir}/man1/%{name}*.1*
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
%changelog
f0672c1
* Thu Oct 08 2020 Robert Scheck <robert@fedoraproject.org> 0.11.7-2
f0672c1
- Added upstream patches for better Lua 5.4 support (#1886456)
f0672c1
6edd127
* Thu Oct 01 2020 Robert Scheck <robert@fedoraproject.org> 0.11.7-1
6edd127
- Upgrade to 0.11.7 (#1877424)
6edd127
6edd127
* Wed Sep 09 2020 Robert Scheck <robert@fedoraproject.org> 0.11.6-1
6edd127
- Upgrade to 0.11.6 (#1877424)
6edd127
f4c82c8
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.5-4
f4c82c8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
f4c82c8
e346b66
* Tue Jun 30 2020 Tom Callaway <spot@fedoraproject.org> - 0.11.5-3
e346b66
- fix build with lua 5.4
e346b66
e6fc989
* Tue Jun 30 2020 Björn Esser <besser82@fedoraproject.org> - 0.11.5-2
e6fc989
- Rebuilt for Lua 5.4
e6fc989
4a6857f
* Mon Apr 06 2020 Robert Scheck <robert@fedoraproject.org> 0.11.5-1
4a6857f
- Upgrade to 0.11.5 (#1816855)
4a6857f
8bd5d5a
* Mon Feb 10 2020 Robert Scheck <robert@fedoraproject.org> 0.11.4-1
8bd5d5a
- Upgrade to 0.11.4 (#1792635)
8bd5d5a
ab1e8ef
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.3-2
ab1e8ef
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
ab1e8ef
cee96b6
* Mon Sep 30 2019 Robert Scheck <robert@fedoraproject.org> 0.11.3-1
cee96b6
- Upgrade to 0.11.3 (#1756953)
cee96b6
3f0deb7
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.2-3
3f0deb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
3f0deb7
7db0685
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.2-2
7db0685
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
7db0685
db931a4
* Fri Jan 18 2019 Robert Scheck <robert@fedoraproject.org> 0.11.2-1
db931a4
- Upgrade to 0.11.2
db931a4
346a0ef
* Thu Nov 29 2018 Robert Scheck <robert@fedoraproject.org> 0.11.1-1
346a0ef
- Upgrade to 0.11.1
346a0ef
1b9ad80
* Mon Nov 19 2018 Robert Scheck <robert@fedoraproject.org> 0.11.0-1
1b9ad80
- Upgrade to 0.11.0
1b9ad80
1b9ad80
* Sun Aug 19 2018 Robert Scheck <robert@fedoraproject.org> 0.10.2-3
1b9ad80
- Don't attempt to reload during logrotate if prosody is stopped
1b9ad80
31c92e0
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.2-2
31c92e0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
31c92e0
0caefb9
* Thu May 31 2018 Robert Scheck <robert@fedoraproject.org> 0.10.2-1
0caefb9
- Upgrade to 0.10.2 (#1584801)
0caefb9
- Changed log rotation from weekly/52 to local system defaults
0caefb9
aa313c9
* Tue May 15 2018 Robert Scheck <robert@fedoraproject.org> 0.10.1-1
aa313c9
- Upgrade to 0.10.1 (#1578371)
aa313c9
91c5460
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-2
91c5460
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
91c5460
6ab1dc4
* Wed Sep 27 2017 Robert Scheck <robert@fedoraproject.org> 0.10.0-1
6ab1dc4
- Upgrade to 0.10.0 (#1497877)
6ab1dc4
c31d0ab
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-4
c31d0ab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c31d0ab
9654770
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-3
9654770
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
9654770
5d711ff
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-2
5d711ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5d711ff
bcf2986
* Thu Jan 12 2017 Robert Scheck <robert@fedoraproject.org> 0.9.12-1
bcf2986
- Upgrade to 0.9.12 (#1412102)
bcf2986
b00453f
* Mon Nov 07 2016 Robert Scheck <robert@fedoraproject.org> 0.9.11-1
b00453f
- Upgrade to 0.9.11 (#1391802)
b00453f
8dfad06
* Sun Apr 17 2016 Robert Scheck <robert@fedoraproject.org> 0.9.10-3
8dfad06
- Added runtime requirement to %%{_bindir}/openssl (#1319227)
8dfad06
ec878aa
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.10-2
ec878aa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
ec878aa
f4cb174
* Wed Jan 27 2016 Robert Scheck <robert@fedoraproject.org> 0.9.10-1
f4cb174
- Upgrade to 0.9.10 (#1302463)
f4cb174
e5766fc
* Tue Jan 12 2016 Robert Scheck <robert@fedoraproject.org> 0.9.9-2
e5766fc
- Added upstream patch to open /dev/urandom read-only
e5766fc
707c7f0
* Fri Jan 08 2016 Robert Scheck <robert@fedoraproject.org> 0.9.9-1
707c7f0
- Upgrade to 0.9.9 (#1296983, #1296984)
707c7f0
bd97dfa
* Sun Sep 27 2015 Robert Scheck <robert@fedoraproject.org> 0.9.8-6
bd97dfa
- Fixed shebang for ejabberd2prosody
bd97dfa
- Backported support for IPv6 DNS servers (#1256677)
bd97dfa
6ab1dc4
* Sun Aug 23 2015 Robert Scheck <robert@fedoraproject.org> 0.9.8-5
b399695
- Start after network-online.target not network.target (#1256062)
b399695
9af39c8
* Wed Jul 15 2015 Robert Scheck <robert@fedoraproject.org> 0.9.8-4
9af39c8
- Change default CA paths to /etc/pki/tls/certs(/ca-bundle.crt)
9af39c8
f499eb5
* Wed Jul 01 2015 Robert Scheck <robert@fedoraproject.org> 0.9.8-3
f499eb5
- Fixed the wrong logrotate configuration to not use a wildcard
f499eb5
4bc86a0
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-2
4bc86a0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
4bc86a0
13f1b3f
* Sat Apr 18 2015 Robert Scheck <robert@fedoraproject.org> 0.9.8-1
13f1b3f
- Upgrade to 0.9.8 (#1152126)
13f1b3f
13f1b3f
* Sat Feb 14 2015 Robert Scheck <robert@fedoraproject.org> 0.9.7-1
13f1b3f
- Upgrade to 0.9.7 (#985563, #1152126)
13f1b3f
c26412a
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-4
c26412a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c26412a
bf3084b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.4-3
bf3084b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
bf3084b
c86ab6b
* Tue Jun 03 2014 Jan Kaluza <jkaluza@redhat.com> - 0.9.4-2
c86ab6b
- add missing lua-socket-compat dependency
c86ab6b
bdc9216
* Fri May 30 2014 Jan Kaluza <jkaluza@redhat.com> - 0.9.4-1
bdc9216
- update to version 0.9.4
bdc9216
- build with luajit
bdc9216
Johan Cwiklinski 9e55a7a
* Wed Sep 11 2013 Johan Cwiklinski <johan AT x-tnd DOT be> - 0.9.1-1
Johan Cwiklinski 9e55a7a
- Update to 0.9.1
Johan Cwiklinski 9e55a7a
ffaa92a
* Thu Aug 22 2013 Matěj Cepl <mcepl@redhat.com> - 0.9.0-1
ffaa92a
- Final upstream release.
ffaa92a
Johan Cwiklinski 7473ee6
* Wed Aug 07 2013 Johan Cwiklinski <johan AT x-tnd DOT be> - 0.9.0-0.5.rc5
Johan Cwiklinski 7473ee6
- Update to 0.9.0rc5
Johan Cwiklinski 7473ee6
Johan Cwiklinski f775893
* Fri Jun 21 2013 Johan Cwiklinski <johan AT x-tnd DOT be> - 0.9.0-0.4.rc4
Johan Cwiklinski f775893
- Update to 0.9.0rc4
Johan Cwiklinski f775893
Johan Cwiklinski 27084b5
* Fri Jun 21 2013 Johan Cwiklinski <johan AT x-tnd DOT be> - 0.9.0-0.3.rc3
Johan Cwiklinski 27084b5
- Update to 0.9.0rc3
Johan Cwiklinski 27084b5
Johan Cwiklinski cb90849
* Fri Jun 07 2013 Johan Cwiklinski <johan AT x-tnd DOT be> - 0.9.0-0.2.rc2
Johan Cwiklinski cb90849
- Update to 0.9.0rc2
Johan Cwiklinski cb90849
a27991a
* Wed May 15 2013 Tom Callaway <spot@fedoraproject.org> - 0.9.0-0.1.beta1
a27991a
- update to 0.9.0beta1, rebuild for lua 5.2
a27991a
Johan Cwiklinski 7083ae9
* Sat Apr 27 2013 Robert Scheck <robert@fedoraproject.org> - 0.8.2-9
Johan Cwiklinski 7083ae9
- Apply wise permissions to %%{_sysconfdir}/%%{name} (#955384)
Johan Cwiklinski 7083ae9
- Apply wise permissions to default SSL certificates (#955380)
Johan Cwiklinski 7083ae9
- Do not ship %%{_sysconfdir}/%%{name}/certs by default (#955385)
Johan Cwiklinski 7083ae9
8565854
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-8
8565854
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
8565854
Johan Cwiklinski 0bbaa5f
* Thu Sep 27 2012 Johan Cwiklinski <johan At x-tnd DOt be> 0.8.2-7
Johan Cwiklinski 0bbaa5f
- Use systemd-rpm macros, bz #850282
Johan Cwiklinski 0bbaa5f
7fb8d29
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-6
7fb8d29
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7fb8d29
Johan Cwiklinski d3805ac
* Mon May 07 2012 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.2-5
Johan Cwiklinski d3805ac
- Missing rhel %%ifs
Johan Cwiklinski d3805ac
- Change the way SSL certificate is generated
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Sun May 06 2012 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.2-4
Johan Cwiklinski d3805ac
- ghost %%{_localstatedir}/run/%%{name}
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Sun May 06 2012 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.2-3
Johan Cwiklinski d3805ac
- Add missing requires
Johan Cwiklinski d3805ac
- Add rhel %%ifs
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Mon Mar 05 2012 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.2-2
Johan Cwiklinski d3805ac
- Switch to systemd for Fedora >= 15, keep sysv for EPEL builds
Johan Cwiklinski d3805ac
- Remove some macros that should not be used
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Thu Jun 23 2011 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.2-1.trashy
Johan Cwiklinski d3805ac
- 0.8.2
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Tue Jun 7 2011 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.1-1.trashy
Johan Cwiklinski d3805ac
- 0.8.1
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Sun May 8 2011 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.0-3.trashy
Johan Cwiklinski d3805ac
- tmpfiles.d configuration for F-15
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Sat Apr 16 2011 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.0-2.trashy
Johan Cwiklinski d3805ac
- Now requires lua-dbi
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Fri Apr 8 2011 Johan Cwiklinski <johan AT x-tnd DOT be> 0.8.0-1.trashy
Johan Cwiklinski d3805ac
- 0.8.0
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Sun Jan 23 2011 Johan Cwiklinski <johan AT x-tnd DOT be> 0.7.0-4.trashy
Johan Cwiklinski d3805ac
- Redefine _initddir and _sharedstatedir marcos for EL-5
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Sat Dec 11 2010 Johan Cwiklinski <johan AT x-tnd DOT be> 0.7.0-3
Johan Cwiklinski d3805ac
- Apply ssl patch before sed on libdir; to avoid a patch context issue 
Johan Cwiklinski d3805ac
  building on i686 
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Sat Sep 11 2010 Johan Cwiklinski <johan AT x-tnd DOT be> 0.7.0-2
Johan Cwiklinski d3805ac
- No longer ships default ssl certificates, generates one at install
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Wed Jul 14 2010 Johan Cwiklinski <johan AT x-tnd DOT be> 0.7.0-1
Johan Cwiklinski d3805ac
- Update to 0.7.0
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Wed Apr 28 2010 Johan Cwiklinski <johan AT x-tnd DOT be> 0.6.2-1
Johan Cwiklinski d3805ac
- Update to 0.6.2
Johan Cwiklinski d3805ac
Johan Cwiklinski d3805ac
* Thu Dec 31 2009 Johan Cwiklinski <johan AT x-tnd DOT be> 0.6.1-1
Johan Cwiklinski d3805ac
- Initial packaging