* [Buildroot] [PATCH 1/1] package/file: bump version to 5.33
@ 2018-06-13 17:16 Bernd Kuhls
2018-06-13 20:26 ` Thomas Petazzoni
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Bernd Kuhls @ 2018-06-13 17:16 UTC (permalink / raw)
To: buildroot
Added license hashes, added optional dependency to libseccomp provided
by upstream in this version bump.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
package/file/file.hash | 5 ++++-
package/file/file.mk | 9 ++++++++-
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/package/file/file.hash b/package/file/file.hash
index fee516c8e2..a6b40be349 100644
--- a/package/file/file.hash
+++ b/package/file/file.hash
@@ -1,2 +1,5 @@
# Locally calculated
-sha256 8639dc4d1b21e232285cd483604afc4a6ee810710e00e579dbe9591681722b50 file-5.32.tar.gz
+sha256 1c52c8c3d271cd898d5511c36a68059cda94036111ab293f01f83c3525b737c6 file-5.33.tar.gz
+sha256 3c0ad13c36f891a9b4f951e59eb2fc108065a46f849697cc6fd3cdb41cc23a3d COPYING
+sha256 d98ee4d8d95e7d021a5dfc41f137ecc3b624a7b98e8bd793130202d12a21ed57 src/mygetopt.h
+sha256 85e358d575ad4ac5b38b623a25b24246ccff3c7e680d930c0a9ff5228fe434b6 src/vasprintf.c
diff --git a/package/file/file.mk b/package/file/file.mk
index df0e0f0eb9..422e29b1ce 100644
--- a/package/file/file.mk
+++ b/package/file/file.mk
@@ -4,7 +4,7 @@
#
################################################################################
-FILE_VERSION = 5.32
+FILE_VERSION = 5.33
FILE_SITE = ftp://ftp.astron.com/pub/file
FILE_DEPENDENCIES = host-file zlib
HOST_FILE_DEPENDENCIES = host-zlib
@@ -13,5 +13,12 @@ FILE_INSTALL_STAGING = YES
FILE_LICENSE = BSD-2-Clause, BSD-4-Clause (one file), BSD-3-Clause (one file)
FILE_LICENSE_FILES = COPYING src/mygetopt.h src/vasprintf.c
+ifeq ($(BR2_PACKAGE_LIBSECCOMP),y)
+FILE_CONF_OPTS += --enable-libseccomp
+FILE_DEPENDENCIES += libseccomp
+else
+FILE_CONF_OPTS += --disable-libseccomp
+endif
+
$(eval $(autotools-package))
$(eval $(host-autotools-package))
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/file: bump version to 5.33
2018-06-13 17:16 [Buildroot] [PATCH 1/1] package/file: bump version to 5.33 Bernd Kuhls
@ 2018-06-13 20:26 ` Thomas Petazzoni
2018-06-17 15:55 ` Peter Korsgaard
2018-07-17 7:28 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-06-13 20:26 UTC (permalink / raw)
To: buildroot
Hello,
On Wed, 13 Jun 2018 19:16:14 +0200, Bernd Kuhls wrote:
> Added license hashes, added optional dependency to libseccomp provided
> by upstream in this version bump.
>
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
> package/file/file.hash | 5 ++++-
> package/file/file.mk | 9 ++++++++-
> 2 files changed, 12 insertions(+), 2 deletions(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/file: bump version to 5.33
2018-06-13 17:16 [Buildroot] [PATCH 1/1] package/file: bump version to 5.33 Bernd Kuhls
2018-06-13 20:26 ` Thomas Petazzoni
@ 2018-06-17 15:55 ` Peter Korsgaard
2018-07-17 7:28 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-06-17 15:55 UTC (permalink / raw)
To: buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:
> Added license hashes, added optional dependency to libseccomp provided
> by upstream in this version bump.
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Committed to 2018.02.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/file: bump version to 5.33
2018-06-13 17:16 [Buildroot] [PATCH 1/1] package/file: bump version to 5.33 Bernd Kuhls
2018-06-13 20:26 ` Thomas Petazzoni
2018-06-17 15:55 ` Peter Korsgaard
@ 2018-07-17 7:28 ` Peter Korsgaard
2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-07-17 7:28 UTC (permalink / raw)
To: buildroot
>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:
> Added license hashes, added optional dependency to libseccomp provided
> by upstream in this version bump.
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Committed to 2018.05.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-07-17 7:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-13 17:16 [Buildroot] [PATCH 1/1] package/file: bump version to 5.33 Bernd Kuhls
2018-06-13 20:26 ` Thomas Petazzoni
2018-06-17 15:55 ` Peter Korsgaard
2018-07-17 7:28 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox