* [Buildroot] [PATCH 1/1] btrfs-progs: drop dependency on acl and attr
@ 2015-07-06 7:25 Christophe Vu-Brugier
2015-07-06 10:12 ` Gustavo Zacarias
2015-07-06 12:02 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Christophe Vu-Brugier @ 2015-07-06 7:25 UTC (permalink / raw)
To: buildroot
btrfs-progs does not depend on libacl since version v4.0.1:
ab5984f btrfs-progs: convert: drop dependency on sys/acl.h
https://git.kernel.org/cgit/linux/kernel/git/kdave/btrfs-progs.git/commit/?id=ab5984ff6cce6f12063720b6dafc1afcd6606853
Moreover, btrfs-progs does not depend on attr since version v3.14:
b5fe148 btrfs-progs: include <sys/xattr.h> instead of <attr/xattr.h>
https://git.kernel.org/cgit/linux/kernel/git/kdave/btrfs-progs.git/commit/?id=b5fe148715ea295e2b951ec6c90409b9d81978d8
Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
---
package/btrfs-progs/Config.in | 2 --
package/btrfs-progs/btrfs-progs.mk | 2 +-
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/package/btrfs-progs/Config.in b/package/btrfs-progs/Config.in
index 9a2bd6c..dc0fa81 100644
--- a/package/btrfs-progs/Config.in
+++ b/package/btrfs-progs/Config.in
@@ -3,8 +3,6 @@ config BR2_PACKAGE_BTRFS_PROGS
depends on BR2_USE_WCHAR # util-linux
depends on BR2_USE_MMU # util-linux
depends on BR2_TOOLCHAIN_HAS_THREADS
- select BR2_PACKAGE_ACL
- select BR2_PACKAGE_ATTR
select BR2_PACKAGE_E2FSPROGS
select BR2_PACKAGE_LZO
select BR2_PACKAGE_UTIL_LINUX
diff --git a/package/btrfs-progs/btrfs-progs.mk b/package/btrfs-progs/btrfs-progs.mk
index 0190baa..b8833a7 100644
--- a/package/btrfs-progs/btrfs-progs.mk
+++ b/package/btrfs-progs/btrfs-progs.mk
@@ -7,7 +7,7 @@
BTRFS_PROGS_VERSION = 4.1
BTRFS_PROGS_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/people/kdave/btrfs-progs
BTRFS_PROGS_SOURCE = btrfs-progs-v$(BTRFS_PROGS_VERSION).tar.xz
-BTRFS_PROGS_DEPENDENCIES = host-pkgconf acl attr e2fsprogs lzo util-linux zlib
+BTRFS_PROGS_DEPENDENCIES = host-pkgconf e2fsprogs lzo util-linux zlib
BTRFS_PROGS_CONF_OPTS = --disable-backtrace
BTRFS_PROGS_LICENSE = GPLv2
BTRFS_PROGS_LICENSE_FILES = COPYING
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] btrfs-progs: drop dependency on acl and attr
2015-07-06 7:25 [Buildroot] [PATCH 1/1] btrfs-progs: drop dependency on acl and attr Christophe Vu-Brugier
@ 2015-07-06 10:12 ` Gustavo Zacarias
2015-07-06 12:02 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Gustavo Zacarias @ 2015-07-06 10:12 UTC (permalink / raw)
To: buildroot
On 06/07/15 04:25, Christophe Vu-Brugier wrote:
> btrfs-progs does not depend on libacl since version v4.0.1:
>
> ab5984f btrfs-progs: convert: drop dependency on sys/acl.h
> https://git.kernel.org/cgit/linux/kernel/git/kdave/btrfs-progs.git/commit/?id=ab5984ff6cce6f12063720b6dafc1afcd6606853
>
> Moreover, btrfs-progs does not depend on attr since version v3.14:
>
> b5fe148 btrfs-progs: include <sys/xattr.h> instead of <attr/xattr.h>
> https://git.kernel.org/cgit/linux/kernel/git/kdave/btrfs-progs.git/commit/?id=b5fe148715ea295e2b951ec6c90409b9d81978d8
>
> Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Indeed, thanks for looking into this.
Regards.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] btrfs-progs: drop dependency on acl and attr
2015-07-06 7:25 [Buildroot] [PATCH 1/1] btrfs-progs: drop dependency on acl and attr Christophe Vu-Brugier
2015-07-06 10:12 ` Gustavo Zacarias
@ 2015-07-06 12:02 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-07-06 12:02 UTC (permalink / raw)
To: buildroot
Dear Christophe Vu-Brugier,
On Mon, 6 Jul 2015 09:25:24 +0200, Christophe Vu-Brugier wrote:
> btrfs-progs does not depend on libacl since version v4.0.1:
>
> ab5984f btrfs-progs: convert: drop dependency on sys/acl.h
> https://git.kernel.org/cgit/linux/kernel/git/kdave/btrfs-progs.git/commit/?id=ab5984ff6cce6f12063720b6dafc1afcd6606853
>
> Moreover, btrfs-progs does not depend on attr since version v3.14:
>
> b5fe148 btrfs-progs: include <sys/xattr.h> instead of <attr/xattr.h>
> https://git.kernel.org/cgit/linux/kernel/git/kdave/btrfs-progs.git/commit/?id=b5fe148715ea295e2b951ec6c90409b9d81978d8
>
> Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
> ---
> package/btrfs-progs/Config.in | 2 --
> package/btrfs-progs/btrfs-progs.mk | 2 +-
> 2 files changed, 1 insertion(+), 3 deletions(-)
Applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-06 12:02 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-06 7:25 [Buildroot] [PATCH 1/1] btrfs-progs: drop dependency on acl and attr Christophe Vu-Brugier
2015-07-06 10:12 ` Gustavo Zacarias
2015-07-06 12:02 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox