All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link
@ 2018-06-12 17:40 Baruch Siach
  2018-06-12 17:40 ` [Buildroot] [PATCH 2/3] f2fs-tools: bump to version 1.10.0 Baruch Siach
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Baruch Siach @ 2018-06-12 17:40 UTC (permalink / raw)
  To: buildroot

As noted in the sourceforge page, the project is not using sourceforge
anymore. Use the gitweb summary page instead.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/f2fs-tools/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/f2fs-tools/Config.in b/package/f2fs-tools/Config.in
index f0630e99c6d3..e373096380be 100644
--- a/package/f2fs-tools/Config.in
+++ b/package/f2fs-tools/Config.in
@@ -6,7 +6,7 @@ config BR2_PACKAGE_F2FS_TOOLS
 	help
 	  Tools for Flash-Friendly File System (F2FS)
 
-	  http://sourceforge.net/projects/f2fs-tools/
+	  https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git
 
 comment "f2fs-tools needs a toolchain w/ wchar"
 	depends on !BR2_USE_WCHAR
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/3] f2fs-tools: bump to version 1.10.0
  2018-06-12 17:40 [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Baruch Siach
@ 2018-06-12 17:40 ` Baruch Siach
  2018-06-12 20:25   ` Peter Korsgaard
  2018-06-12 17:40 ` [Buildroot] [PATCH 3/3] f2fs-tools: add selinux and libblk optional dependencies Baruch Siach
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Baruch Siach @ 2018-06-12 17:40 UTC (permalink / raw)
  To: buildroot

Add license file hash.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/f2fs-tools/f2fs-tools.hash | 3 ++-
 package/f2fs-tools/f2fs-tools.mk   | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/package/f2fs-tools/f2fs-tools.hash b/package/f2fs-tools/f2fs-tools.hash
index 36c3b115c643..cef779084c22 100644
--- a/package/f2fs-tools/f2fs-tools.hash
+++ b/package/f2fs-tools/f2fs-tools.hash
@@ -1,2 +1,3 @@
 # Locally computed
-sha256 aefd2a67e8ddf9db92145dde41b4a697d1c498ff2e113fbfd26ce1efa6cc3f2d  f2fs-tools-v1.8.0.tar.gz
+sha256 424ea9fd2472ea062f21c4268a82a7ad435b6f704e41a494424068c11dec4c24  f2fs-tools-v1.10.0.tar.gz
+sha256 662abb3a8a80b36ae7036c289dd1e03b361ee5dd2e6fd5211d0d8d029146449f  COPYING
diff --git a/package/f2fs-tools/f2fs-tools.mk b/package/f2fs-tools/f2fs-tools.mk
index 9b827df08626..333a2cf7d4ef 100644
--- a/package/f2fs-tools/f2fs-tools.mk
+++ b/package/f2fs-tools/f2fs-tools.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-F2FS_TOOLS_VERSION = v1.8.0
+F2FS_TOOLS_VERSION = v1.10.0
 F2FS_TOOLS_SITE = http://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git
 F2FS_TOOLS_SITE_METHOD = git
 F2FS_TOOLS_CONF_ENV = ac_cv_file__git=no
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 3/3] f2fs-tools: add selinux and libblk optional dependencies
  2018-06-12 17:40 [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Baruch Siach
  2018-06-12 17:40 ` [Buildroot] [PATCH 2/3] f2fs-tools: bump to version 1.10.0 Baruch Siach
@ 2018-06-12 17:40 ` Baruch Siach
  2018-06-12 20:24   ` Peter Korsgaard
  2018-06-12 20:24 ` [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Peter Korsgaard
  2018-06-17 15:55 ` Peter Korsgaard
  3 siblings, 1 reply; 7+ messages in thread
From: Baruch Siach @ 2018-06-12 17:40 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/f2fs-tools/f2fs-tools.mk | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/package/f2fs-tools/f2fs-tools.mk b/package/f2fs-tools/f2fs-tools.mk
index 333a2cf7d4ef..1736dc4ead00 100644
--- a/package/f2fs-tools/f2fs-tools.mk
+++ b/package/f2fs-tools/f2fs-tools.mk
@@ -15,4 +15,18 @@ F2FS_TOOLS_INSTALL_STAGING = YES
 F2FS_TOOLS_LICENSE = GPL-2.0
 F2FS_TOOLS_LICENSE_FILES = COPYING
 
+ifeq ($(BR2_PACKAGE_LIBSELINUX),y)
+F2FS_TOOLS_CONF_OPTS += --with-selinux
+F2FS_TOOLS_DEPENDENCIES += libselinux
+else
+F2FS_TOOLS_CONF_OPTS += --without-selinux
+endif
+
+ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBBLKID),y)
+# util-linux is a dependency already, no need to list it again
+F2FS_TOOLS_CONF_OPTS += --with-blkid
+else
+F2FS_TOOLS_CONF_OPTS += --without-blkid
+endif
+
 $(eval $(autotools-package))
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link
  2018-06-12 17:40 [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Baruch Siach
  2018-06-12 17:40 ` [Buildroot] [PATCH 2/3] f2fs-tools: bump to version 1.10.0 Baruch Siach
  2018-06-12 17:40 ` [Buildroot] [PATCH 3/3] f2fs-tools: add selinux and libblk optional dependencies Baruch Siach
@ 2018-06-12 20:24 ` Peter Korsgaard
  2018-06-17 15:55 ` Peter Korsgaard
  3 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2018-06-12 20:24 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > As noted in the sourceforge page, the project is not using sourceforge
 > anymore. Use the gitweb summary page instead.

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 3/3] f2fs-tools: add selinux and libblk optional dependencies
  2018-06-12 17:40 ` [Buildroot] [PATCH 3/3] f2fs-tools: add selinux and libblk optional dependencies Baruch Siach
@ 2018-06-12 20:24   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2018-06-12 20:24 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/3] f2fs-tools: bump to version 1.10.0
  2018-06-12 17:40 ` [Buildroot] [PATCH 2/3] f2fs-tools: bump to version 1.10.0 Baruch Siach
@ 2018-06-12 20:25   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2018-06-12 20:25 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > Add license file hash.
 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link
  2018-06-12 17:40 [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Baruch Siach
                   ` (2 preceding siblings ...)
  2018-06-12 20:24 ` [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Peter Korsgaard
@ 2018-06-17 15:55 ` Peter Korsgaard
  3 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2018-06-17 15:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > As noted in the sourceforge page, the project is not using sourceforge
 > anymore. Use the gitweb summary page instead.

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2018.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-06-17 15:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-12 17:40 [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Baruch Siach
2018-06-12 17:40 ` [Buildroot] [PATCH 2/3] f2fs-tools: bump to version 1.10.0 Baruch Siach
2018-06-12 20:25   ` Peter Korsgaard
2018-06-12 17:40 ` [Buildroot] [PATCH 3/3] f2fs-tools: add selinux and libblk optional dependencies Baruch Siach
2018-06-12 20:24   ` Peter Korsgaard
2018-06-12 20:24 ` [Buildroot] [PATCH 1/3] f2fs-tools: update homepage link Peter Korsgaard
2018-06-17 15:55 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.