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 v2 1/1] package/fuse-overlayfs: new package
Date: Sat, 20 Jun 2020 22:55:48 +0200	[thread overview]
Message-ID: <20200620205548.GS2351@scaer> (raw)
In-Reply-To: <20200619180431.57528-1-christian@paral.in>

Christian, All,

On 2020-06-19 11:04 -0700, Christian Stewart spake thusly:
> FUSE-overlayfs is an implementation of overlay+shiftfs in FUSE, intended to be
> used as the backing filesystem for rootless containers.
> 
> Reference: http://github.com/containers/fuse-overlayfs
> 
> Signed-off-by: Christian Stewart <christian@paral.in>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
> 
> v1 -> v2:
> 
>  - remove superfluous autoconf, automake deps
>  - fix check-package warnings about Config.in
> 
> ---
>  DEVELOPERS                                 |  1 +
>  package/Config.in                          |  1 +
>  package/fuse-overlayfs/Config.in           | 15 +++++++++++++++
>  package/fuse-overlayfs/fuse-overlayfs.hash |  4 ++++
>  package/fuse-overlayfs/fuse-overlayfs.mk   | 15 +++++++++++++++
>  5 files changed, 36 insertions(+)
>  create mode 100644 package/fuse-overlayfs/Config.in
>  create mode 100644 package/fuse-overlayfs/fuse-overlayfs.hash
>  create mode 100644 package/fuse-overlayfs/fuse-overlayfs.mk
> 
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 7cd67a5540..dc9fa8a718 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -539,6 +539,7 @@ F:	package/docker-cli/
>  F:	package/docker-containerd/
>  F:	package/docker-engine/
>  F:	package/docker-proxy/
> +F:	package/fuse-overlayfs/
>  F:	package/go/
>  F:	package/mosh/
>  F:	package/pkg-golang.mk
> diff --git a/package/Config.in b/package/Config.in
> index 7e4476d337..dc24921e0f 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -203,6 +203,7 @@ menu "Filesystem and flash utilities"
>  	source "package/f2fs-tools/Config.in"
>  	source "package/flashbench/Config.in"
>  	source "package/fscryptctl/Config.in"
> +	source "package/fuse-overlayfs/Config.in"
>  	source "package/fwup/Config.in"
>  	source "package/genext2fs/Config.in"
>  	source "package/genpart/Config.in"
> diff --git a/package/fuse-overlayfs/Config.in b/package/fuse-overlayfs/Config.in
> new file mode 100644
> index 0000000000..7647c5a1a4
> --- /dev/null
> +++ b/package/fuse-overlayfs/Config.in
> @@ -0,0 +1,15 @@
> +config BR2_PACKAGE_FUSE_OVERLAYFS
> +	bool "fuse-overlayfs"
> +	depends on !BR2_STATIC_LIBS # libfuse3
> +	depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse3
> +	depends on BR2_USE_MMU # libfuse3
> +	select BR2_PACKAGE_LIBFUSE3
> +	help
> +	  FUSE-overlayfs is an implementation of overlay+shiftfs in
> +	  FUSE, intended to be used for rootless containers.
> +
> +	  http://github.com/containers/fuse-overlayfs
> +
> +comment "fuse-overlayfs needs a toolchain w/ threads, dynamic library"
> +	depends on BR2_USE_MMU
> +	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
> diff --git a/package/fuse-overlayfs/fuse-overlayfs.hash b/package/fuse-overlayfs/fuse-overlayfs.hash
> new file mode 100644
> index 0000000000..ee1eb694c9
> --- /dev/null
> +++ b/package/fuse-overlayfs/fuse-overlayfs.hash
> @@ -0,0 +1,4 @@
> +# Locally computed
> +sha256	060168c2d5a8c6cc768b4542eba9953b7ff4a31f94bfb2e05b3d1051390838b1  fuse-overlayfs-1.1.0.tar.gz
> +# Locally computed
> +sha256	8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903  COPYING
> diff --git a/package/fuse-overlayfs/fuse-overlayfs.mk b/package/fuse-overlayfs/fuse-overlayfs.mk
> new file mode 100644
> index 0000000000..25f4eadd11
> --- /dev/null
> +++ b/package/fuse-overlayfs/fuse-overlayfs.mk
> @@ -0,0 +1,15 @@
> +################################################################################
> +#
> +# fuse-overlayfs
> +#
> +################################################################################
> +
> +FUSE_OVERLAYFS_VERSION = 1.1.0
> +FUSE_OVERLAYFS_SITE = $(call github,containers,fuse-overlayfs,v$(FUSE_OVERLAYFS_VERSION))
> +FUSE_OVERLAYFS_LICENSE = GPL-3.0
> +FUSE_OVERLAYFS_LICENSE_FILES = COPYING
> +
> +FUSE_OVERLAYFS_AUTORECONF = YES
> +FUSE_OVERLAYFS_DEPENDENCIES = libfuse3 host-pkgconf
> +
> +$(eval $(autotools-package))
> -- 
> 2.27.0
> 
> _______________________________________________
> 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:[~2020-06-20 20:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-19 18:04 [Buildroot] [PATCH v2 1/1] package/fuse-overlayfs: new package Christian Stewart
2020-06-20 20:55 ` 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=20200620205548.GS2351@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