public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Randy Barlow <randy@electronsweatshop.com>
To: git-commits@fedoraproject.org
Subject: [rpms/ejabberd] f45: Update to 17.09 (#1427123).
Date: Wed, 23 Sep 2026 19:07:39 GMT	[thread overview]
Message-ID: <179019045960.1.6844395270622301314.rpms-ejabberd-359f17b69ec7@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/ejabberd
            Branch : f45
            Commit : 359f17b69ec7d98791c1280f43b7668ec19c7c0d
            Author : Randy Barlow <randy@electronsweatshop.com>
            Date   : 2017-11-11T00:59:24-05:00
            Stats  : +35/-521 in 5 file(s)
            URL    : https://src.fedoraproject.org/rpms/ejabberd/c/359f17b69ec7d98791c1280f43b7668ec19c7c0d?branch=f45

            Log:
            Update to 17.09 (#1427123).

Signed-off-by: Randy Barlow <randy@electronsweatshop.com>

---
diff --git a/.gitignore b/.gitignore
index 4d09921..cd42879 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
 /16.12.tar.gz
 /17.01.tar.gz
 /ejabberd-17.07.tar.gz
+/ejabberd-17.09.tar.gz

diff --git a/ejabberd-0002-Drop-post_hook_configure-from-rebar.config.patch b/ejabberd-0002-Drop-post_hook_configure-from-rebar.config.patch
index 62b280b..e21d75d 100644
--- a/ejabberd-0002-Drop-post_hook_configure-from-rebar.config.patch
+++ b/ejabberd-0002-Drop-post_hook_configure-from-rebar.config.patch
@@ -1,18 +1,18 @@
-From 38ad990f72bdaf94cb2fb821154861b11167cabd Mon Sep 17 00:00:00 2001
+From a2c9bedb099a5e1efe3562e61679752351ef819e Mon Sep 17 00:00:00 2001
 From: Randy Barlow <randy@electronsweatshop.com>
-Date: Sun, 22 Oct 2017 12:55:16 -0400
+Date: Sat, 11 Nov 2017 00:46:13 -0500
 Subject: [PATCH] Drop post_hook_configure from rebar.config.
 
 Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
 ---
- rebar.config | 9 ---------
- 1 file changed, 9 deletions(-)
+ rebar.config | 10 ----------
+ 1 file changed, 10 deletions(-)
 
 diff --git a/rebar.config b/rebar.config
-index 240e2b6a..465e1aab 100644
+index 323605f2..a2159da8 100644
 --- a/rebar.config
 +++ b/rebar.config
-@@ -145,15 +145,6 @@
+@@ -152,16 +152,6 @@
  {if_version_above, "17", {cover_enabled, true}}.
  {cover_export_enabled, true}.
  
@@ -23,11 +23,12 @@ index 240e2b6a..465e1aab 100644
 -                       {"fast_xml", [{if_var_true, full_xml, "--enable-full-xml"}]},
 -                       {if_var_true, pam, {"epam", []}},
 -                       {if_var_true, zlib, {"ezlib", []}},
+-		       {if_var_true, graphics, {"eimp", []}},
 -                       {if_var_true, iconv, {"iconv", []}}]}.
 -
  {port_env, [{"CFLAGS", "-g -O2 -Wall"}]}.
  
  {port_specs, [{"priv/lib/jid.so", ["c_src/jid.c"]}]}.
 -- 
-2.14.2
+2.14.3
 

diff --git a/ejabberd-0004-Enable-systemd-notification-if-available.patch b/ejabberd-0004-Enable-systemd-notification-if-available.patch
index 816e442..cac0873 100644
--- a/ejabberd-0004-Enable-systemd-notification-if-available.patch
+++ b/ejabberd-0004-Enable-systemd-notification-if-available.patch
@@ -1,10 +1,10 @@
-From 7792016b3ec67a7feb97ec374cecfb70bc632f39 Mon Sep 17 00:00:00 2001
+From 026f1819fc45d8945f811173b48265f0af772b5c Mon Sep 17 00:00:00 2001
 From: Randy Barlow <randy@electronsweatshop.com>
-Date: Sun, 22 Oct 2017 12:17:34 -0400
+Date: Sat, 11 Nov 2017 00:48:30 -0500
 Subject: [PATCH] Enable systemd notification if available.
 
 This patch was originally written by Peter Lemenkov, and was
-adapted for ejabberd 17.07.
+adapted for ejabberd 17.09.
 
 Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
 ---
@@ -12,17 +12,17 @@ Signed-off-by: Randy Barlow <randy@electronsweatshop.com>
  1 file changed, 1 insertion(+)
 
 diff --git a/src/ejabberd_app.erl b/src/ejabberd_app.erl
-index b52450d2..0cd449cb 100644
+index 56f22522..b0796afb 100644
 --- a/src/ejabberd_app.erl
 +++ b/src/ejabberd_app.erl
-@@ -56,6 +56,7 @@ start(normal, _Args) ->
+@@ -53,6 +53,7 @@ start(normal, _Args) ->
      case ejabberd_sup:start_link() of
  	{ok, SupPid} ->
  	    register_elixir_config_hooks(),
 +        {module, sd_notify} == code:load_file(sd_notify) andalso sd_notify:sd_notify(0, "READY=1\nSTATUS=Initialized\nMAINPID=" ++ os:getpid() ++ "\n"),
+ 	    ejabberd_cluster:wait_for_sync(infinity),
  	    {T2, _} = statistics(wall_clock),
  	    ?INFO_MSG("ejabberd ~s is started in the node ~p in ~.2fs",
- 		      [?VERSION, node(), (T2-T1)/1000]),
 -- 
-2.14.2
+2.14.3
 

diff --git a/ejabberd.spec b/ejabberd.spec
index ee298df..09ebcce 100644
--- a/ejabberd.spec
+++ b/ejabberd.spec
@@ -4,8 +4,8 @@
 
 
 Name:           ejabberd
-Version:        17.07
-Release:        2%{?dist}
+Version:        17.09
+Release:        1%{?dist}
 
 License:        GPLv2+
 Summary:        A distributed, fault-tolerant Jabber/XMPP server
@@ -41,29 +41,29 @@ Patch4: ejabberd-0004-Enable-systemd-notification-if-available.patch
 
 
 BuildRequires:  elixir >= 1.4.4
-BuildRequires:  erlang-cache_tab >= 1.0.9
+BuildRequires:  erlang-cache_tab >= 1.0.11
 BuildRequires:  erlang-epam >= 1.0.3
-BuildRequires:  erlang-esip >= 1.0.13
+BuildRequires:  erlang-esip >= 1.0.16
 BuildRequires:  erlang-ezlib >= 1.0.2
-BuildRequires:  erlang-fast_tls >= 1.0.13
-BuildRequires:  erlang-fast_xml >= 1.1.23
-BuildRequires:  erlang-fast_yaml >= 1.0.10
-BuildRequires:  erlang-iconv >= 1.0.5
+BuildRequires:  erlang-fast_tls >= 1.0.16
+BuildRequires:  erlang-fast_xml >= 1.1.24
+BuildRequires:  erlang-fast_yaml >= 1.0.11
+BuildRequires:  erlang-iconv >= 1.0.6
 BuildRequires:  erlang-jiffy >= 0.14.8
 BuildRequires:  erlang-lager >= 3.4.2
 BuildRequires:  erlang-luerl >= 0.2
 BuildRequires:  erlang-meck >= 0.8.4
 BuildRequires:  erlang-odbc
 BuildRequires:  erlang-p1_mysql >= 1.0.3
-BuildRequires:  erlang-p1_oauth2 >= 0.6.1
+BuildRequires:  erlang-p1_oauth2 >= 0.6.2
 BuildRequires:  erlang-p1_pgsql >= 1.1.3
-BuildRequires:  erlang-p1_utils >= 1.0.9
+BuildRequires:  erlang-p1_utils >= 1.0.10
 BuildRequires:  erlang-rebar
 BuildRequires:  erlang-riak_client
 BuildRequires:  erlang-sd_notify
-BuildRequires:  erlang-stringprep >= 1.0.9
-BuildRequires:  erlang-stun >= 1.0.12
-BuildRequires:  erlang-xmpp >= 1.1.13
+BuildRequires:  erlang-stringprep >= 1.0.10
+BuildRequires:  erlang-stun >= 1.0.15
+BuildRequires:  erlang-xmpp >= 1.1.15
 BuildRequires:  expat-devel >= 1.95
 BuildRequires:  git
 BuildRequires:  libyaml-devel >= 0.1.4
@@ -144,7 +144,7 @@ cp %{S:14} %{S:15} %{S:16} .
 %build
 autoreconf -ivf
 
-%configure --enable-odbc --enable-mysql --enable-pgsql --enable-pam --enable-zlib --enable-iconv --enable-debug --enable-lager --libdir=%{_libdir}/erlang/lib/ --with-erlang=%{_libdir}/erlang/ --enable-system-deps --enable-stun
+%configure --disable-graphics --enable-odbc --enable-mysql --enable-pgsql --enable-pam --enable-zlib --enable-iconv --enable-debug --enable-lager --libdir=%{_libdir}/erlang/lib/ --with-erlang=%{_libdir}/erlang/ --enable-system-deps --enable-stun
 
 %{erlang_compile}
 
@@ -350,6 +350,10 @@ fi
 
 
 %changelog
+* Fri Nov 10 2017 Randy Barlow <bowlofeggs@fedoraproject.org> - 17.09-1
+- Update to 17.09 (#1427123).
+- https://blog.process-one.net/ejabberd-17-09/
+
 * Sun Oct 22 2017 Randy Barlow <bowlofeggs@fedoraproject.org> - 17.07-2
 - In 17.07-1 I had accidentally reverted my patch to depend on epam
   instead of p1_pam. This build fixes that again.
@@ -404,495 +408,3 @@ fi
 - Use -set-cookie in ejabberdctl so root can attach to the node (#1163812).
 - Mark ejabberdctl as executable.
 - Dropped unnecessary gcc-g++ BuildRequires.
-
-* Thu Nov 10 2016 Randy Barlow <bowlofeggs@fedoraproject.org> - 16.09-2
-- Use the correct path for erl in ejabberdctl (#1393652).
-- Drop NoNewPrivileges=true from the unit file (#1393587).
-
-* Mon Oct 17 2016 Randy Barlow <randy@electronsweatshop.com> - 16.09-1
-- Update to 16.09 (#1376238).
-
-* Mon Oct 17 2016 Peter Lemenkov <lemenkov@gmail.com> - 16.08-3
-- Fix FTBFS in Rawhide
-
-* Thu Aug 18 2016 Peter Lemenkov <lemenkov@gmail.com> - 16.08-2
-- Reenable systemd notification
-- Drop outdated dependency - p1_xmlrpc
-- Add missing dependency - erlang-odbc
-- Rearrange patches
-
-* Sun Aug 07 2016 Randy Barlow <randy@electronsweatshop.com> - 16.08-1
-- Update to 16.08.
-- Drop the R19 patch since it is included upstream now.
-
-* Sat Jul 30 2016 Randy Barlow <randy@electronsweatshop.com> - 16.06.1-1
-- Update to 16.01.1 (#1351186).
-- Backport commit 0737958b to build on Erlang 19.
-- Remove commented make edoc, since upstream no longer ships docs in this source.
-
-* Wed Jul 06 2016 Jeremy Cline <jeremy@jcline.org> - 16.06-1
-- Update to 16.06 (#1351186)
-
-* Tue May 03 2016 Randy Barlow <rbarlow@redhat.coM> - 16.04-1
-- Update to 16.04.
-- Remove a commented patch.
-
-* Sun Apr 24 2016 Randy Barlow <rbarlow@redhat.com> - 16.03-1
-- Update to 16.03.
-- Use the new Erlang auto-requires abilities.
-- Remove some commented code.
-- Fixed mixed spaces and tabs (used spaces).
-- Fixed use of macro in changelog.
-- Add the READMEs as docs.
-- Remove dependencies on NIF and DRV since this package no longer ships C code.
-
-* Fri Apr 15 2016 Randy Barlow <rbarlow@redhat.com> - 16.02-2
-- Remove the filter_provides statement. It is no longer needed, and it is suspected to cause
-  problems with ARM dependencies.
-- Remove some unused commented patches.
-
-* Sun Mar 06 2016 Randy Barlow <rbarlow@redhat.com> - 16.02-1
-- Update to 16.02
-
-* Sun Mar 06 2016 Randy Barlow <rbarlow@redhat.com> - 16.01-4
-- Run ejabberdctl with bash when stopping in the unit file (#1314753).
-
-* Sun Feb 28 2016 Randy Barlow <rbarlow@redhat.com> - 16.01-3
-- Set permissions to 755 on ejabberdctl so the ejabberd user can start the daemon (#1312709).
-- Drop the commented deps source, as it is not used.
-
-* Tue Feb 16 2016 Randy Barlow <rbarlow@redhat.com> - 16.01-2
-- Clean up the requirements, adding versions where they are known.
-
-* Tue Feb 16 2016 Randy Barlow <rbarlow@redhat.com> - 16.01-1
-- Raise the version to 16.01.
-
-* Fri Feb 12 2016 Randy Barlow <rbarlow@redhat.com> - 15.11-1
-- Raise the version to 15.11.
-
-* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 14.07-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Fri Nov 14 2014 Dan Horák <dan[at]danny.cz> - 14.07-6
-- increase stack size for hevea on ppc64* (#1164209)
-
-* Fri Nov 14 2014 Dan Horák <dan[at]danny.cz> - 14.07-5
-- hevea exists for all relevant arches, enables build on s390(x) and ppc64(le) (#1161098)
-
-* Wed Nov 12 2014 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 14.07-4
-- add aarch64 support
-
-* Tue Nov 04 2014 Peter Lemenkov <lemenkov@gmail.com> - 14.07-3
-- Rebuild with Erlang 17.3.3
-
-* Sun Aug 31 2014 Peter Lemenkov <lemenkov@gmail.com> - 14.07-2
-- Temporarily disable external http support (--with-http)
-- Temporarily disable systemd notify
-- Add missing BuildRequires: git
-
-* Sat Aug 30 2014 Peter Lemenkov <lemenkov@gmail.com> - 14.07-1
-- Ver. 14.07
-- Dropped support for EPEL5, EPEL6
-- Dropped initial untested support for GSSAPI - nobody is interested in testing
-  and further developing this
-- Fixed https://bugzilla.redhat.com/1089475
-- Fixed https://bugzilla.redhat.com/1117450
-
-* Thu Aug 28 2014 Peter Lemenkov <lemenkov@gmail.com> - 2.1.13-10
-- Rebuild with Erlang 17.2.1
-
-* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.13-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
-
-* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.13-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Sun Oct 27 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.1.13-7
-- Fixed systemd service-file
-
-* Sat Oct 26 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.1.13-6
-- Fix polkit again
-- Add dependency on Erlang's driver version
-
-* Fri Sep 27 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.1.13-5
-- Fix wrong polkit policy (rhbz #1009408)
-
-* Sun Sep 15 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.1.13-4
-- Use polkit instead of usermode on modern systems
-- Restore user/group provides
-
-* Thu Sep 05 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.1.13-3
-- TEMPORARY disable hevea - it's broken in F19+
-- Fix building with unversioned docdir
-- Move away from fedora-usermgmt
-
-* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.13-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Sat Jun 29 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.1.13-1
-- Ver. 2.1.13
-- Don't install or use /etc/sysconfig/ejabberd on systemd-enabled systems
-- Build with PIE (if available)
-- Re-generate configure scripts
-
-* Fri Mar 15 2013 Peter Lemenkov <lemenkov@gmail.com> - 2.1.12-1
-- Ver. 2.1.12
-
-* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.11-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Sun Oct 28 2012 Peter Lemenkov <lemenkov@gmail.com> - 2.1.11-6
-- Fixed rhbz #846856
-
-* Mon Sep 10 2012 Peter Lemenkov <lemenkov@gmail.com> - 2.1.11-5
-- Cherry-picked three new patches from upstream trunk
-
-* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.11-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Sun Jul 15 2012 Peter Lemenkov <lemenkov@gmail.com> - 2.1.11-3
-- Fixed rhbz #758601 (no /etc/pam.d/password-auth in EL5)
-
-* Sun Jul 15 2012 Peter Lemenkov <lemenkov@gmail.com> - 2.1.11-2
-- Updated mod_admin_extra to work with R15B (see rhbz #840039)
-- Updated list of arches where we don't have hevea
-- Dropped abandonded and not working modules
-
-* Sun May 06 2012 Peter Lemenkov <lemenkov@gmail.com> - 2.1.11-1
-- Ver. 2.1.11
-- Fixed systemd installation
-
-* Sun Jan 15 2012 Peter Lemenkov <lemenkov@gmail.com> - 2.1.10-3
-- Fixed systemd unit file
-
-* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.10-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Wed Dec 28 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.1.10-1
-- Ver. 2.1.10
-- Works with systemd (closes rhbz #767793)
-
-* Sun Dec 18 2011 Dan Horák <dan[at]danny.cz> - 2.1.9-2
-- pdf docs require hevea, they are not prebuilt
-
-* Tue Nov 22 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.1.9-1
-- Ver. 2.1.9
-- Fix for CVE-2011-4320
-
-* Mon Jul 11 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.1.8-3
-- Fix for systemd (F15+ only, see rhbz #656581)
-
-* Sat Jun 18 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.1.8-2
-- Fix ejabberdctl again
-
-* Fri Jun 03 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.1.8-1
-- Ver. 2.1.8 (very urgent bugfix for 2.1.7)
-
-* Wed Jun 01 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.1.7-1
-- Ver. 2.1.7 (bugfixes and security)
-
-* Wed Jun 01 2011 Paul Whalen <paul.whalen@senecac.on.ca> - 2.1.6-5
-- Added arm to conditional to build without hevea.
-
-* Thu Feb 24 2011 Peter Lemenkov <lemenkov@gmail.com> - 2.1.6-4
-- Updated @online@ patch
-
-* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.6-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Tue Jan 25 2011 Martin Langhoff <martin@laptop.org> 2.1.6-2
-- Apply rebased @online@ patch from OLPC - EJAB-1391
-
-* Tue Dec 14 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.6-1
-- Ver. 2.1.6 (Bugfix release)
-
-* Thu Aug 26 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.5-6
-- More patches from trunk
-- Rebased patches
-
-* Thu Aug 26 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.5-5
-- Backported %%patch11 from upstream (fixes LDAP)
-
-* Wed Aug 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.5-4
-- Add accidentally forgotten changes to ejabberd.logrotate
-
-* Wed Aug 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.5-3
-- Fixed http-poll (BOSH)
-- New version of GSSAPI patch (backported from upstream)
-- Fixed logrotate rule
-
-* Wed Aug  4 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.5-2
-- Don't require dos2unix for building anymore
-
-* Wed Aug  4 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.5-1
-- Ver. 2.1.5
-- OpenSSL >= 0.9.8
-- Doc-file features.* dropped (just a part of guide.*)
-- Dropped upstreamed patches
-- Don't use autoreconf
-
-* Fri Jul 16 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.4-3
-- Fix for Erlang/OTP R14A
-- Added BR: autoconf
-
-* Fri Jun 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.4-2
-- No hevea for EL-6
-- No hevea for s390 and s390x
-
-* Fri Jun  4 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.4-1
-- Ver. 2.1.4
-- Rebased patches
-
-* Mon Mar 29 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.3-6
-- File permissions for captcha.sh were fixed
-
-* Thu Mar 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.3-5
-- Init-script fixed
-
-* Thu Mar 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.3-4
-- Really fix issue with "File operation error: eacces".
-
-* Thu Mar 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.3-3
-- Relax access rights of /usr/sbin/ejabberdctl (from 0550 to 0755)
-- Invoke symlinked consolehelper instead of /usr/sbin/ejabberdctl
-  in init-script
-- Fixed "File operation error: eacces" issue. See rhbz #564686.
-
-* Thu Mar 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.3-2
-- Init-script enhancements
-
-* Fri Mar 12 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.3-1
-- Ver. 2.1.3
-- Patches rebased
-
-* Fri Mar  5 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.2-4
-- Fixed issue with {erorr,nxdomain}
-
-* Tue Feb 16 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.2-3
-- Do not try to backup DB on every fresh install
-- Do not force copying old erlang cookie file
-- Add missing release notes for ver. 2.1.2
-- Require erlang-esasl for krb5 support
-- No such %%configure option - --enable-debug
-- Patches were rebased and renumbered
-- Add new BR util-linux(-ng)
-
-* Fri Jan 29 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.2-2
-- Fixed BZ #559925 (EJAB-1173)
-- Changed order of rpmbuild targets in this spec to more natural one.
-
-* Mon Jan 18 2010 Peter Lemenkov <lemenkov@gmail.com> 2.1.2-1
-- Ver. 2.1.2
-
-* Thu Dec 24 2009 Peter Lemenkov <lemenkov@gmail.com> 2.1.1-1
-- Ver. 2.1.1
-- Dropped patches 9,11,12,13 (accepted upstream)
-
-* Thu Dec 10 2009 Peter Lemenkov <lemenkov@gmail.com> 2.1.0-2
-- DB backups are made on every upgrade/uninstall
-- Fixed installation of captcha.sh example helper
-- Added patches 9,10,11,12,13 from Debian's package
-
-* Fri Nov 20 2009 Peter Lemenkov <lemenkov@gmail.com> 2.1.0-1
-- Ver. 2.1.0
-- Upstream no longer providing ChangeLog
-- Dropped ejabberd-build.patch (upstreamed)
-- Dropped ejabberd-captcha.patch (upstreamed)
-- Dropped ejabberd-decrease_buffers_in_mod_proxy65.patch (upstreamed)
-- Dropped ejabberd-dynamic_compile_loglevel.patch (upstreamed)
-- Dropped ejabberd-turn_off_error_messages_in_mod_caps.patch (upstreamed)
-- Docs reorganized and added ability to rebuild them if possible
-- Added back ppc64 target
-- SQL-scripts moved to %%{_datadir}/%%{name} from %%doc
-
-* Thu Nov  5 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.5-10
-- mod_ctlextra was updated from r873 to r1020
-- Fix for BZ# 533021
-
-* Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> - 2.0.5-9
-- Use password-auth common PAM configuration instead of system-auth
-
-* Wed Sep  9 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.5-8
-- Fixed possible issue in the config file for logrotate
-- Fixed possible issue while creating dummy certificate
-- Added patches #5,6,7,8 from Debian
-
-* Thu Aug 27 2009 Tomas Mraz <tmraz@redhat.com> - 2.0.5-7
-- rebuilt with new openssl
-
-* Tue Aug 25 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.5-6
-- Since now, we using only ejabberdctl in the init-script (bz# 502361)
-
-* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.5-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Tue Apr 21 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.5-3
-- CAPTCHA is back - let's test it.
-
-* Sat Apr  4 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.5-2
-- Really disable CAPTCHA
-
-* Fri Apr  3 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.5-1
-- Ver. 2.0.5
-- Temporarily disabled CAPTCHA support
-
-* Sun Mar 15 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.4-2
-- Support for CAPTCHA (XEP-0158)
-- Updated mod_ctlextra.erl (fixed EJAB-789, EJAB-864)
-
-* Sun Mar 15 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.4-1
-- Ver. 2.0.4
-
-* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Mon Jan 26 2009 Peter Lemenkov <lemenkov@gmail.com> 2.0.3-1
-- Ver. 2.0.3
-- Merged some stuff from git://dev.laptop.org/users/martin/ejabberd-xs.git
-
-* Fri Jan 16 2009 Tomas Mraz <tmraz@redhat.com> 2.0.2-4
-- rebuild with new openssl
-
-* Thu Oct  2 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.2-3
-- Fixed broken ejabberdctl (BZ# 465196)
-
-* Sat Aug 30 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.2-2
-- Added missing Requires
-
-* Fri Aug 29 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.2-1
-- Ver. 2.0.2
-
-* Sat Aug  9 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.2-0.3.beta1
-- PAM support (BZ# 452803)
-
-* Sat Aug  9 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.2-0.2.beta1
-- Fix build with --fuzz=0
-
-* Sat Aug  9 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.2-0.1.beta1
-- Version 2.0.2-beta1
-- Fixed BZ# 452326
-- Fixed BZ# 227270
-
-* Sun Jun 22 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.1-4
-- Last minute fix (issue with shortnames/fqdn)
-
-* Sun Jun 22 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.1-3
--Fixed BZ# 439583, 452326, 451554
-
-* Thu May 29 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.1-2
-- Fixed BZ# 439583
-
-* Sat May 24 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.1-1
-- Ver. 2.0.1
-- Upstreamed patches dropped
-- No longer uses versioned libdir (/usr/lib/ejabberd-x.x.x)
-- Added sql-scripts in docs-directory
-
-* Mon May  5 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.0-3
-- Fix build against R11B-2
-
-* Sat Feb 23 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.0-2
-- Disable docs again for EPEL (we haven't hevea for EPEL)
-
-* Sat Feb 23 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.0-1
-- Version 2.0.0
-
-* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.0-0.4.rc1
-- Autorebuild for GCC 4.3
-
-* Wed Jan 23 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.0-0.3.rc1
-- Really enabled some previously disabled modules
-
-* Wed Jan 23 2008 Peter Lemenkov <lemenkov@gmail.com> 2.0.0-0.2.rc1
-- Enabled some previously disabled modules
-
-* Sat Jan 19 2008 Matej Cepl <mcepl@redhat.com> 2.0.0-0.1.rc1
-- Upgrade to the current upsteram version.
-- Make ejabberd.init LSB compliant (missing Provides: tag)
-
-* Thu Dec 27 2007 Matej Cepl <mcepl@redhat.com> 2.0.0-0.beta1.mc.1
-- Experimental build from the upstream betaversion.
-
-* Tue Dec 11 2007 Matej Cepl <mcepl@redhat.com> 1.1.4-2.fc9
-- rebuild against new ssl library.
-- rebuild against the newest erlang (see Patch
-- fix %%changelog
-
-* Wed Sep  5 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.4-1
-- Drop LDAP patch
-- Update mod_ctlextra
-- Update to 1.1.4
-
-* Tue Sep  4 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-11
-- Fix ejabberdctl wrapper script - #276071
-
-* Wed Aug 22 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-10
-- Re-exclude ppc64
-
-* Wed Aug 22 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-9
-- Fix license
-- Don't exclude ppc64
-
-* Wed Aug 22 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-8
-- Bump & rebuild to build against latest erlang package.
-
-* Tue Jul 31 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-7
-- Bump release and rebuild due to Koji hiccups.
-
-* Tue Jul 31 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-6
-- Don't try building on PPC64 since hevea isn't available on PPC64.
-
-* Tue Jul 31 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-5
-- Sigh...
-
-* Tue Jul 31 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-4
-- Don't forget to add patch.
-
-* Thu Jul 26 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-3
-- Add ejabberdctl (#199873)
-- Add patch to fix LDAP authentication. (#248268)
-- Add a sleep in init script between stop/start when restarting.
-- LSB compliance cleanups for init script. (#246917)
-- Don't mention "reload" in the init script usage string. (#227254)
-
-* Tue Jul 24 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-2
-- Update mod_ctlextra
-
-* Fri Feb  2 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.3-1
-- Update to 1.1.3
-
-* Wed Oct 11 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.2-2
-- Fix logrotate script (BZ#210366)
-
-* Mon Aug 28 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-10
-- Bump release and rebuild.
-
-* Mon Jul 3 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-9
-- Updated init script - should hopefully fix some problems with status & stop commands.
-
-* Mon Jun 26 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-8
-- Bump release to that tagging works on FC-5.
-
-* Thu Jun 22 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-7
-- Oops drop bad patch.
-
-* Thu Jun 22 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-6
-- Split documentation off to a subpackage.
-- Own _libdir/ejabberd-version
-- Mark %%{_sysconfdir}/logrotate.d/ejabberd as %%config
-
-* Thu Jun  8 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-5
-- Patch the makefile so that it adds a soname to shared libs.
-
-* Fri May 26 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-4
-- Modify AD modules not to check for group membership.
-
-* Thu May 25 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-3
-- Add some extra modules
-
-* Wed May 24 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-2
-- Munge Makefile.in a bit more...
-- Change ownership/permissions - not *everything* needs to be owned by ejabberd
-
-* Wed May 24 2006 Jeffrey C. Ollie <jeff@ocjtech.us> - 1.1.1-1
-- First version for Fedora Extras

diff --git a/sources b/sources
index 141a21a..fed0909 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (ejabberd-17.07.tar.gz) = 1302f965ea049e198163a378c0c8b7e6f87e3c0d52ae56b9d13d77361ab1ec2dc4a8ef1ac0a8df7bfed0125fd28522a31664791714ca002a170a16fe805097d0
+SHA512 (ejabberd-17.09.tar.gz) = 3eb253642d6688bbe93d0a1234ac29725ed02ed929a1b87a8424e9d01b2200eb174192cd164ba2c31fb8082e92b2886e4068effa504f66025809685867ba90f0

                 reply	other threads:[~2026-09-23 19:07 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=179019045960.1.6844395270622301314.rpms-ejabberd-359f17b69ec7@fedoraproject.org \
    --to=randy@electronsweatshop.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox