Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libsoc: bump to 0.7.1
@ 2015-12-09 14:03 yegorslists at googlemail.com
  2015-12-09 22:11 ` Thomas Petazzoni
  0 siblings, 1 reply; 3+ messages in thread
From: yegorslists at googlemail.com @ 2015-12-09 14:03 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Remove upstreamed patch.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 ...0001-spi-fix-build-against-MUSL-C-library.patch | 28 ----------------------
 package/libsoc/libsoc.mk                           |  2 +-
 2 files changed, 1 insertion(+), 29 deletions(-)
 delete mode 100644 package/libsoc/0001-spi-fix-build-against-MUSL-C-library.patch

diff --git a/package/libsoc/0001-spi-fix-build-against-MUSL-C-library.patch b/package/libsoc/0001-spi-fix-build-against-MUSL-C-library.patch
deleted file mode 100644
index 7e8061b..0000000
--- a/package/libsoc/0001-spi-fix-build-against-MUSL-C-library.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 647a3af126943b2251c82340ab7c81706b2eb805 Mon Sep 17 00:00:00 2001
-From: Yegor Yefremov <yegorslists@googlemail.com>
-Date: Fri, 27 Nov 2015 10:24:12 +0100
-Subject: [PATCH] spi: fix build against MUSL C library
-
-Without <linux/ioctl.h> include compiler cannot find _IOC_SIZEBITS
-macro, when using MUSL C library.
-
-Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
----
- lib/spi.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lib/spi.c b/lib/spi.c
-index 8465f75..6d1f78a 100644
---- a/lib/spi.c
-+++ b/lib/spi.c
-@@ -6,6 +6,7 @@
- #include <fcntl.h>
- #include <sys/ioctl.h>
- #include <linux/types.h>
-+#include <linux/ioctl.h>
- #include <linux/spi/spidev.h>
- 
- #include "libsoc_spi.h"
--- 
-2.1.4
-
diff --git a/package/libsoc/libsoc.mk b/package/libsoc/libsoc.mk
index 99bea17..84e281f 100644
--- a/package/libsoc/libsoc.mk
+++ b/package/libsoc/libsoc.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBSOC_VERSION = 0.6.4
+LIBSOC_VERSION = 0.7.1
 LIBSOC_SITE = $(call github,jackmitch,libsoc,$(LIBSOC_VERSION))
 LIBSOC_LICENSE = LGPLv2.1
 LIBSOC_LICENSE_FILES = COPYING
-- 
2.1.4

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

* [Buildroot] [PATCH] libsoc: bump to 0.7.1
  2015-12-09 14:03 [Buildroot] [PATCH] libsoc: bump to 0.7.1 yegorslists at googlemail.com
@ 2015-12-09 22:11 ` Thomas Petazzoni
  2015-12-09 22:31   ` Yegor Yefremov
  0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2015-12-09 22:11 UTC (permalink / raw)
  To: buildroot

Yegor,

On Wed,  9 Dec 2015 15:03:29 +0100, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Remove upstreamed patch.
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
>  ...0001-spi-fix-build-against-MUSL-C-library.patch | 28 ----------------------
>  package/libsoc/libsoc.mk                           |  2 +-
>  2 files changed, 1 insertion(+), 29 deletions(-)
>  delete mode 100644 package/libsoc/0001-spi-fix-build-against-MUSL-C-library.patch

Applied, thanks. You could add a hash file for this package, since we
now add hash files for github-sourced packages.

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

* [Buildroot] [PATCH] libsoc: bump to 0.7.1
  2015-12-09 22:11 ` Thomas Petazzoni
@ 2015-12-09 22:31   ` Yegor Yefremov
  0 siblings, 0 replies; 3+ messages in thread
From: Yegor Yefremov @ 2015-12-09 22:31 UTC (permalink / raw)
  To: buildroot

On Wed, Dec 9, 2015 at 11:11 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> Yegor,
>
> On Wed,  9 Dec 2015 15:03:29 +0100, yegorslists at googlemail.com wrote:
>> From: Yegor Yefremov <yegorslists@googlemail.com>
>>
>> Remove upstreamed patch.
>>
>> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
>> ---
>>  ...0001-spi-fix-build-against-MUSL-C-library.patch | 28 ----------------------
>>  package/libsoc/libsoc.mk                           |  2 +-
>>  2 files changed, 1 insertion(+), 29 deletions(-)
>>  delete mode 100644 package/libsoc/0001-spi-fix-build-against-MUSL-C-library.patch
>
> Applied, thanks. You could add a hash file for this package, since we
> now add hash files for github-sourced packages.

Will do. Thanks.

Yegor

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

end of thread, other threads:[~2015-12-09 22:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-09 14:03 [Buildroot] [PATCH] libsoc: bump to 0.7.1 yegorslists at googlemail.com
2015-12-09 22:11 ` Thomas Petazzoni
2015-12-09 22:31   ` Yegor Yefremov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox