Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] package/erofs-utils: bump version to 1.3
Date: Tue, 29 Jun 2021 22:30:41 +0200	[thread overview]
Message-ID: <20210629203041.GV2829@scaer> (raw)
In-Reply-To: <20210625220506.2968-1-hsiangkao@aol.com>

Gao, All,

On 2021-06-26 06:05 +0800, Gao Xiang via buildroot spake thusly:
> - new upstream version (mainly add big pcluster support);
> - add 0001-erofs-utils-manpage-only-install-erofsfuse.1-with-th.patch [1].
> 
> [1] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/patch/?id=7ab34000c672adca90388a8fcb1f70a7d391d35c
> 
> Signed-off-by: Gao Xiang <hsiangkao@aol.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  ...age-only-install-erofsfuse.1-with-th.patch | 32 +++++++++++++++++++
>  package/erofs-utils/erofs-utils.hash          |  2 +-
>  package/erofs-utils/erofs-utils.mk            |  2 +-
>  3 files changed, 34 insertions(+), 2 deletions(-)
>  create mode 100644 package/erofs-utils/0001-erofs-utils-manpage-only-install-erofsfuse.1-with-th.patch
> 
> diff --git a/package/erofs-utils/0001-erofs-utils-manpage-only-install-erofsfuse.1-with-th.patch b/package/erofs-utils/0001-erofs-utils-manpage-only-install-erofsfuse.1-with-th.patch
> new file mode 100644
> index 000000000000..0aa99d5324d0
> --- /dev/null
> +++ b/package/erofs-utils/0001-erofs-utils-manpage-only-install-erofsfuse.1-with-th.patch
> @@ -0,0 +1,32 @@
> +From 7ab34000c672adca90388a8fcb1f70a7d391d35c Mon Sep 17 00:00:00 2001
> +From: David Michael <fedora.dm0@gmail.com>
> +Date: Thu, 3 Jun 2021 16:18:57 -0400
> +Subject: [PATCH] erofs-utils: manpage: only install erofsfuse.1 with the
> + command
> +
> +Link: https://lore.kernel.org/r/87lf7q3dn2.fsf at gmail.com
> +Reviewed-by: Gao Xiang <xiang@kernel.org>
> +Signed-off-by: David Michael <fedora.dm0@gmail.com>
> +Signed-off-by: Gao Xiang <xiang@kernel.org>
> +---
> + man/Makefile.am | 6 +++++-
> + 1 file changed, 5 insertions(+), 1 deletion(-)
> +
> +diff --git a/man/Makefile.am b/man/Makefile.am
> +index ffcf6f81c255..0df947b6fbf7 100644
> +--- a/man/Makefile.am
> ++++ b/man/Makefile.am
> +@@ -1,5 +1,9 @@
> + # SPDX-License-Identifier: GPL-2.0+
> + # Makefile.am
> + 
> +-dist_man_MANS = mkfs.erofs.1 erofsfuse.1
> ++dist_man_MANS = mkfs.erofs.1
> + 
> ++EXTRA_DIST = erofsfuse.1
> ++if ENABLE_FUSE
> ++man_MANS = erofsfuse.1
> ++endif
> +-- 
> +2.20.1
> +
> diff --git a/package/erofs-utils/erofs-utils.hash b/package/erofs-utils/erofs-utils.hash
> index 0de52d28a906..8bbb0885689b 100644
> --- a/package/erofs-utils/erofs-utils.hash
> +++ b/package/erofs-utils/erofs-utils.hash
> @@ -1,3 +1,3 @@
>  # Locally computed
> -sha256  6b2ea15c3b092bd9a3abd966f78bc01c6caacb94022643ff34cf69893ee04e84  erofs-utils-1.2.1.tar.gz
> +sha256  132635740039bbe76d743aea72378bfae30dbf034e123929f5d794198d4c0b12  erofs-utils-1.3.tar.gz
>  sha256  feee3b3157dcdf78d4f50edefbd5dd7adf8b6d52c11bfaaa746a85a373256713  COPYING
> diff --git a/package/erofs-utils/erofs-utils.mk b/package/erofs-utils/erofs-utils.mk
> index 5d547148b204..e35470b02edc 100644
> --- a/package/erofs-utils/erofs-utils.mk
> +++ b/package/erofs-utils/erofs-utils.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -EROFS_UTILS_VERSION = 1.2.1
> +EROFS_UTILS_VERSION = 1.3
>  EROFS_UTILS_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot
>  EROFS_UTILS_LICENSE = GPL-2.0+
>  EROFS_UTILS_LICENSE_FILES = COPYING
> -- 
> 2.20.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/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.  |
'------------------------------^-------^------------------^--------------------'

      reply	other threads:[~2021-06-29 20:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20210625220506.2968-1-hsiangkao.ref@aol.com>
2021-06-25 22:05 ` [Buildroot] [PATCH] package/erofs-utils: bump version to 1.3 Gao Xiang
2021-06-29 20:30   ` Yann E. MORIN [this message]

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=20210629203041.GV2829@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /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