From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Johan Oudinet <johan.oudinet@gmail.com>
Cc: buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH v2 22/23] package/ejabberd: bump version to 24.07
Date: Wed, 4 Sep 2024 00:48:53 +0200 [thread overview]
Message-ID: <ZteSVQdsV9Fy7auE@landeda> (raw)
In-Reply-To: <20240829144940.209964-23-johan.oudinet@gmail.com>
Johan, All,
On 2024-08-29 16:49 +0200, Johan Oudinet spake thusly:
> and update the two patched accordingly. Ejabberd now uses rebar3 by
> default, so use the --with-rebar configure option to set the correct
> rebar binary to use.
>
> Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
> ---
> ...not-download-or-compile-dependencies.patch | 23 +++++++++----------
> package/ejabberd/0002-fix-ejabberdctl.patch | 19 ++++++++-------
Ditto, the patches are modified with the appropriate Upstream tag, so
.checkpackageignore must be updated at the same time. I see you did that
in the last patch, but it really belongs to this one.
I've fixed when applying.
Thanks!
Regards,
Yann E. MORIN.
> package/ejabberd/ejabberd.hash | 4 ++--
> package/ejabberd/ejabberd.mk | 5 ++--
> 4 files changed, 25 insertions(+), 26 deletions(-)
>
> diff --git a/package/ejabberd/0001-Makefile.in-do-not-download-or-compile-dependencies.patch b/package/ejabberd/0001-Makefile.in-do-not-download-or-compile-dependencies.patch
> index abcc8975b2..69f25304b5 100644
> --- a/package/ejabberd/0001-Makefile.in-do-not-download-or-compile-dependencies.patch
> +++ b/package/ejabberd/0001-Makefile.in-do-not-download-or-compile-dependencies.patch
> @@ -1,37 +1,36 @@
> -From bf3571da4a68a6a857ab7ad8256f8276b3687a38 Mon Sep 17 00:00:00 2001
> -From: Johan Oudinet <johan.oudinet@gmail.com>
> -Date: Fri, 13 May 2022 14:22:37 +0200
> +From bfcc72e5bb96fc9fc1f3558191a1a3f40c7f159a Mon Sep 17 00:00:00 2001
> +From: Johan Oudinet <johan.oudinet@gmail.com>
> +Date: Fri, 2 Aug 2024 17:32:37 +0200
> Subject: [PATCH] Makefile.in: do not download or compile dependencies
>
> -Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
> -[Bernd: updated for version 23.04]
> -Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> +Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
> +Upstream: N/A, not upstreamable
> ---
> Makefile.in | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/Makefile.in b/Makefile.in
> -index ab0e9d967..6e54168a7 100644
> +index 5adf241d5..74aad3156 100644
> --- a/Makefile.in
> +++ b/Makefile.in
> -@@ -155,7 +155,7 @@ else
> - endif
> - endif
> +@@ -201,7 +201,7 @@ endif
> + #' main targets
> + #
>
> -all: scripts deps src
> +all: scripts src
>
> deps: $(DEPSDIR)/.got
>
> -@@ -169,7 +169,7 @@ $(DEPSDIR)/.built: $(DEPSDIR)/.got
> +@@ -215,7 +215,7 @@ $(DEPSDIR)/.got:
> $(DEPSDIR)/.built: $(DEPSDIR)/.got
> $(REBAR) compile && :> $(DEPSDIR)/.built
>
> -src: $(DEPSDIR)/.built
> +src:
> $(REBAR) $(SKIPDEPS) compile
> + $(EXPLICIT_ELIXIR_COMPILE)
>
> - update:
> --
> 2.34.1
>
> diff --git a/package/ejabberd/0002-fix-ejabberdctl.patch b/package/ejabberd/0002-fix-ejabberdctl.patch
> index ae28f3a632..89504d11c5 100644
> --- a/package/ejabberd/0002-fix-ejabberdctl.patch
> +++ b/package/ejabberd/0002-fix-ejabberdctl.patch
> @@ -1,30 +1,29 @@
> -From 4283f675f21d3923e200092cec6418014a03ad52 Mon Sep 17 00:00:00 2001
> -From: Johan Oudinet <johan.oudinet@gmail.com>
> -Date: Thu, 26 Dec 2019 17:06:34 +0100
> +From d403c0bca48f2678c70763c3faca41c9adc76658 Mon Sep 17 00:00:00 2001
> +From: Johan Oudinet <johan.oudinet@gmail.com>
> +Date: Fri, 2 Aug 2024 17:39:07 +0200
> Subject: [PATCH] fix ejabberdctl
>
> Change default values so ejabberdctl run commands as ejabberd user.
>
> -Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
> -[Bernd: updated for version 23.04]
> -Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> +Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
> +Upstream: N/A (specific to buildroot)
> ---
> ejabberdctl.template | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/ejabberdctl.template b/ejabberdctl.template
> -index a940c3df7..5166e5a27 100755
> +index 83ec7e1bd..513c48c25 100755
> --- a/ejabberdctl.template
> +++ b/ejabberdctl.template
> -@@ -17,7 +17,7 @@ SCRIPT_DIR=$(cd "${0%/*}" && pwd)
> +@@ -17,7 +17,7 @@ ERTS_VSN="{{erts_vsn}}"
> ERL="{{erl}}"
> - IEX="{{bindir}}/iex"
> EPMD="{{epmd}}"
> + IEX="{{iexpath}}"
> -INSTALLUSER="{{installuser}}"
> +INSTALLUSER=ejabberd
>
> # check the proper system user is used
> case $(id -un) in
> --
> -2.20.1
> +2.34.1
>
> diff --git a/package/ejabberd/ejabberd.hash b/package/ejabberd/ejabberd.hash
> index 15e879be19..e6d9b2560e 100644
> --- a/package/ejabberd/ejabberd.hash
> +++ b/package/ejabberd/ejabberd.hash
> @@ -1,4 +1,4 @@
> -# From https://static.process-one.net/ejabberd/downloads/23.04/ejabberd-23.04.tar.gz.sum
> -sha256 6ff1d41a1ff6261a0c846193647d8ec143e82142859bf1cfdc62299022ceb2ad ejabberd-23.04.tar.gz
> +# From https://static.process-one.net/ejabberd/downloads/24.07/ejabberd-24.07.tar.gz.sum
> +sha256 c0fb746acba81a5db41de97c03968c1f681a13b1b6c1a895b7182e33820c18d9 ejabberd-24.07.tar.gz
> # Locally computed
> sha256 469bb8cfa3ef22c102875ff31932450c075e6908ff3f7d36893485c0c30898eb COPYING
> diff --git a/package/ejabberd/ejabberd.mk b/package/ejabberd/ejabberd.mk
> index 58b544fb84..df9fc1c1d0 100644
> --- a/package/ejabberd/ejabberd.mk
> +++ b/package/ejabberd/ejabberd.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -EJABBERD_VERSION = 23.04
> +EJABBERD_VERSION = 24.07
> EJABBERD_SITE = https://static.process-one.net/ejabberd/downloads/$(EJABBERD_VERSION)
> EJABBERD_LICENSE = GPL-2.0+ with OpenSSL exception
> EJABBERD_LICENSE_FILES = COPYING
> @@ -36,7 +36,8 @@ EJABBERD_CONF_ENV = \
>
> EJABBERD_CONF_OPTS = \
> --enable-system-deps \
> - --disable-erlang-version-check
> + --disable-erlang-version-check \
> + --with-rebar="$(HOST_DIR)/bin/rebar"
>
> define EJABBERD_INSTALL_TARGET_CMDS
> $(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) all install -C $(@D)
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2024-09-03 22:49 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-29 14:49 [Buildroot] [PATCH v2 00/23] Update Ejabberd and its dependencies Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 01/23] package/erlang-stun: renamed from erlang-p1-stun Johan Oudinet
2024-09-03 22:47 ` Yann E. MORIN
2024-08-29 14:49 ` [Buildroot] [PATCH v2 02/23] package/erlang-stun: bump version to 1.2.14 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 03/23] package/erlang-fast-xml: renamed from erlang-p1-xml Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 04/23] package/erlang-fast-xml: bump version to 1.1.52 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 05/23] package/erlang-xmpp: renamed from erlang-p1-xmpp Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 06/23] package/erlang-xmpp: bump version to 1.8.3 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 07/23] package/erlang-p1-utils: bump version to 1.0.26 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 08/23] package/erlang-p1-cache-tab: bump version to 1.0.31 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 09/23] package/erlang-p1-tls: bump version to 1.1.21 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 10/23] package/erlang-p1-stringprep: bump version to 1.0.30 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 11/23] package/erlang-fast-yaml: renamed from erlang-p1-yaml Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 12/23] package/erlang-fast-yaml: bump version to 1.0.37 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 13/23] package/erlang-p1-yconf: bump version to 1.0.16 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 14/23] package/erlang-p1-oauth2: bump version to 0.6.14 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 15/23] package/erlang-p1-pkix: bump version to 1.0.10 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 16/23] package/erlang-eimp: bump version to 1.0.23 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 17/23] package/erlang-p1-mqtree: bump version to 1.0.17 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 18/23] package/erlang-jose: bump version to 1.11.10 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 19/23] package/erlang-p1-acme: bump version to 1.0.23 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 20/23] package/erlang-p1-sip: bump version to 1.0.54 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 21/23] package/erlang-p1-zlib: bump version to 1.0.13 Johan Oudinet
2024-08-29 14:49 ` [Buildroot] [PATCH v2 22/23] package/ejabberd: bump version to 24.07 Johan Oudinet
2024-09-03 22:48 ` Yann E. MORIN [this message]
2024-08-29 14:49 ` [Buildroot] [PATCH v2 23/23] package/ejabberd: fix warnings reported by check-package Johan Oudinet
2024-09-03 22:45 ` [Buildroot] [PATCH v2 00/23] Update Ejabberd and its dependencies Yann E. MORIN
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=ZteSVQdsV9Fy7auE@landeda \
--to=yann.morin.1998@free.fr \
--cc=buildroot@buildroot.org \
--cc=johan.oudinet@gmail.com \
/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