All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2
@ 2020-03-25  6:47 Wang Mingyu
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] avro-c: upgrade 1.9.1 -> 1.9.2 Wang Mingyu
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Wang Mingyu @ 2020-03-25  6:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb b/meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb
index 88d495b68..7fec96ccc 100644
--- a/meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb
+++ b/meta-filesystems/recipes-utils/fatresize/fatresize_1.0.2.bb
@@ -4,9 +4,9 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 
 SRC_URI = "git://salsa.debian.org/parted-team/fatresize.git;protocol=https"
-SRCREV = "3f80afc76ad82d4a1b852a6c8dea24cd9f5e7a24"
+SRCREV = "eb87617875abe47fb307ac3c5a741afc4f88b855"
 
-PV = "1.0.2-11"
+PV = "1.0.2"
 
 S = "${WORKDIR}/git"
 
-- 
2.17.1




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

* [oe] [meta-oe] [PATCH] avro-c: upgrade 1.9.1 -> 1.9.2
  2020-03-25  6:47 [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Wang Mingyu
@ 2020-03-25  6:47 ` Wang Mingyu
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] epeg: upgrade to 0.9.2 Wang Mingyu
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2020-03-25  6:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="y", Size: 3263 bytes --]

0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch
removed since it is included in 1.9.2

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 ...-C-to-be-built-on-musl-based-systems.patch | 42 -------------------
 .../avro/{avro-c_1.9.1.bb => avro-c_1.9.2.bb} |  3 +-
 2 files changed, 1 insertion(+), 44 deletions(-)
 delete mode 100644 meta-oe/recipes-support/avro/avro-c/0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch
 rename meta-oe/recipes-support/avro/{avro-c_1.9.1.bb => avro-c_1.9.2.bb} (76%)

diff --git a/meta-oe/recipes-support/avro/avro-c/0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch b/meta-oe/recipes-support/avro/avro-c/0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch
deleted file mode 100644
index 8964d6b72..000000000
--- a/meta-oe/recipes-support/avro/avro-c/0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 9b39a985bcd6cd34f0820f3680f145d46c0e56bd Mon Sep 17 00:00:00 2001
-From: Titouan Christophe <titouan.christophe@railnova.eu>
-Date: Sun, 8 Dec 2019 01:55:59 +0100
-Subject: [PATCH] Allow avro C to be built on musl based systems.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-The type `ssize_t` is defined in sys/types.h, and nowhere else
-in the musl standard C library, so it should be included for the
-compilation to succeed.
-
-This fixes several errors like:
-
-    In file included from src/generic.c:29:0:
-    src/generic.c: In function ‘avro_generic_value_new’:
-    src/avro_generic_internal.h:63:39:
-        error: ‘ssize_t’ undeclared (first use in this function);
-               did you mean ‘size_t’?
-
-Upstream-Status: Backport
-Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
----
- lang/c/src/avro_generic_internal.h | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/lang/c/src/avro_generic_internal.h b/lang/c/src/avro_generic_internal.h
-index 709403c03..9843ed652 100644
---- a/lang/c/src/avro_generic_internal.h
-+++ b/lang/c/src/avro_generic_internal.h
-@@ -24,6 +24,8 @@ extern "C" {
- #define CLOSE_EXTERN
- #endif
- 
-+#include <sys/types.h>
-+
- #include "avro/generic.h"
- #include "avro/schema.h"
- #include "avro/value.h"
--- 
-2.24.1
-
diff --git a/meta-oe/recipes-support/avro/avro-c_1.9.1.bb b/meta-oe/recipes-support/avro/avro-c_1.9.2.bb
similarity index 76%
rename from meta-oe/recipes-support/avro/avro-c_1.9.1.bb
rename to meta-oe/recipes-support/avro/avro-c_1.9.2.bb
index 8954c9802..0642179fb 100644
--- a/meta-oe/recipes-support/avro/avro-c_1.9.1.bb
+++ b/meta-oe/recipes-support/avro/avro-c_1.9.2.bb
@@ -8,9 +8,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=6d502b41f76179fc84e536236f359cae"
 DEPENDS = "jansson zlib xz"
 
 BRANCH = "branch-1.9"
-SRCREV = "89218262cde62e98fcb3778b86cd3f03056c54f3"
+SRCREV = "bf20128ca6138a830b2ea13e0490f3df6b035639"
 SRC_URI = "git://github.com/apache/avro;branch=${BRANCH} \
-           file://0001-Allow-avro-C-to-be-built-on-musl-based-systems.patch;patchdir=../../ \
            file://0001-cmake-Use-GNUInstallDirs-instead-of-hard-coded-paths.patch;patchdir=../../ \
           "
 
-- 
2.17.1




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

* [oe] [meta-oe] [PATCH] epeg: upgrade to 0.9.2
  2020-03-25  6:47 [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Wang Mingyu
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] avro-c: upgrade 1.9.1 -> 1.9.2 Wang Mingyu
@ 2020-03-25  6:47 ` Wang Mingyu
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] lapack: upgrade 3.8.0 -> 3.9.0 Wang Mingyu
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2020-03-25  6:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 meta-oe/recipes-support/epeg/epeg_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/epeg/epeg_git.bb b/meta-oe/recipes-support/epeg/epeg_git.bb
index 6b23bbf78..8ca574014 100644
--- a/meta-oe/recipes-support/epeg/epeg_git.bb
+++ b/meta-oe/recipes-support/epeg/epeg_git.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=e7732a9290ea1e4b034fdc15cf49968d \
 DEPENDS = "jpeg libexif"
 
 SRC_URI = "git://github.com/mattes/epeg.git"
-SRCREV = "337f55346425fbf2d283e794b702318ef2a74bcb"
+SRCREV = "9a175cd67eaa61fe45413d8da82da72936567047"
 S = "${WORKDIR}/git"
 
 inherit autotools pkgconfig
-- 
2.17.1




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

* [oe] [meta-oe] [PATCH] lapack: upgrade 3.8.0 -> 3.9.0
  2020-03-25  6:47 [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Wang Mingyu
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] avro-c: upgrade 1.9.1 -> 1.9.2 Wang Mingyu
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] epeg: upgrade to 0.9.2 Wang Mingyu
@ 2020-03-25  6:47 ` Wang Mingyu
  2020-04-15  6:44   ` Martin Jansa
  2020-03-25  6:47 ` [oe] [meta-perl][PATCH] libnet-dns-perl: upgrade 1.22 -> 1.23 Wang Mingyu
  2020-03-25  7:57 ` [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Adrian Bunk
  4 siblings, 1 reply; 7+ messages in thread
From: Wang Mingyu @ 2020-03-25  6:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 .../lapack/{lapack_3.8.0.bb => lapack_3.9.0.bb}             | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-devtools/lapack/{lapack_3.8.0.bb => lapack_3.9.0.bb} (75%)

diff --git a/meta-oe/recipes-devtools/lapack/lapack_3.8.0.bb b/meta-oe/recipes-devtools/lapack/lapack_3.9.0.bb
similarity index 75%
rename from meta-oe/recipes-devtools/lapack/lapack_3.8.0.bb
rename to meta-oe/recipes-devtools/lapack/lapack_3.9.0.bb
index 7544744b3..56c01c533 100644
--- a/meta-oe/recipes-devtools/lapack/lapack_3.8.0.bb
+++ b/meta-oe/recipes-devtools/lapack/lapack_3.9.0.bb
@@ -13,9 +13,9 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=930f8aa500a47c7dab0f8efb5a1c9a40"
 
 DEPENDS = "libgfortran"
 
-SRC_URI = "http://www.netlib.org/lapack/lapack-${PV}.tar.gz"
-SRC_URI[md5sum] = "96591affdbf58c450d45c1daa540dbd2"
-SRC_URI[sha256sum] = "deb22cc4a6120bff72621155a9917f485f96ef8319ac074a7afbc68aab88bcf6"
+SRC_URI = "https://github.com/Reference-LAPACK/lapack/archive/v${PV}.tar.gz"
+SRC_URI[md5sum] = "0b251e2a8d5f949f99b50dd5e2200ee2"
+SRC_URI[sha256sum] = "106087f1bb5f46afdfba7f569d0cbe23dacb9a07cd24733765a0e89dbe1ad573"
 
 EXTRA_OECMAKE = " -DBUILD_SHARED_LIBS=ON "
 OECMAKE_GENERATOR = "Unix Makefiles"
-- 
2.17.1




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

* [oe] [meta-perl][PATCH] libnet-dns-perl: upgrade 1.22 -> 1.23
  2020-03-25  6:47 [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Wang Mingyu
                   ` (2 preceding siblings ...)
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] lapack: upgrade 3.8.0 -> 3.9.0 Wang Mingyu
@ 2020-03-25  6:47 ` Wang Mingyu
  2020-03-25  7:57 ` [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Adrian Bunk
  4 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2020-03-25  6:47 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 .../{libnet-dns-perl_1.22.bb => libnet-dns-perl_1.23.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-perl/recipes-perl/libnet/{libnet-dns-perl_1.22.bb => libnet-dns-perl_1.23.bb} (92%)

diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.22.bb b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.23.bb
similarity index 92%
rename from meta-perl/recipes-perl/libnet/libnet-dns-perl_1.22.bb
rename to meta-perl/recipes-perl/libnet/libnet-dns-perl_1.23.bb
index 621908b3a..e10daf2ef 100644
--- a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.22.bb
+++ b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.23.bb
@@ -9,8 +9,8 @@ DEPENDS += "perl"
 
 SRC_URI = "http://search.cpan.org/CPAN/authors/id/N/NL/NLNETLABS/Net-DNS-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "f9b4f0b2613398d27434d94b456583ef"
-SRC_URI[sha256sum] = "03cd6a733e1cab6f817b4c4dcb7b29575002f8c543fb85e94c6290bc224d4c12"
+SRC_URI[md5sum] = "105517139b39650f78c21b2e461ac97e"
+SRC_URI[sha256sum] = "cf327f31063b96cd3421be43a1d6cb41eaa61d0595450032e57905b1bd6b2c3e"
 
 UPSTREAM_CHECK_REGEX = "Net\-DNS\-(?P<pver>(\d+\.\d+))(?!_\d+).tar"
 
-- 
2.17.1




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

* Re: [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2
  2020-03-25  6:47 [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Wang Mingyu
                   ` (3 preceding siblings ...)
  2020-03-25  6:47 ` [oe] [meta-perl][PATCH] libnet-dns-perl: upgrade 1.22 -> 1.23 Wang Mingyu
@ 2020-03-25  7:57 ` Adrian Bunk
  4 siblings, 0 replies; 7+ messages in thread
From: Adrian Bunk @ 2020-03-25  7:57 UTC (permalink / raw)
  To: Wang Mingyu; +Cc: openembedded-devel

On Tue, Mar 24, 2020 at 11:47:14PM -0700, Wang Mingyu wrote:
>...
> -PV = "1.0.2-11"
> +PV = "1.0.2"
>...

PV shouldn't be going backwards.

>...
> -SRCREV = "3f80afc76ad82d4a1b852a6c8dea24cd9f5e7a24"
> +SRCREV = "eb87617875abe47fb307ac3c5a741afc4f88b855"
>...

This downgrades from 1.0.2-11 to 1.0.2-9.

cu
Adrian

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

* Re: [oe] [meta-oe] [PATCH] lapack: upgrade 3.8.0 -> 3.9.0
  2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] lapack: upgrade 3.8.0 -> 3.9.0 Wang Mingyu
@ 2020-04-15  6:44   ` Martin Jansa
  0 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2020-04-15  6:44 UTC (permalink / raw)
  To: Wang Mingyu; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1637 bytes --]

This causes
ERROR: lapack-3.9.0-r0 do_package_qa: QA Issue: lapack: SRC_URI uses
unstable GitHub archives [src-uri-bad]

Will send patch shortly.


On Wed, Mar 25, 2020 at 2:43 AM Wang Mingyu <wangmy@cn.fujitsu.com> wrote:

> Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
> ---
>  .../lapack/{lapack_3.8.0.bb => lapack_3.9.0.bb}             | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>  rename meta-oe/recipes-devtools/lapack/{lapack_3.8.0.bb =>
> lapack_3.9.0.bb} (75%)
>
> diff --git a/meta-oe/recipes-devtools/lapack/lapack_3.8.0.bb
> b/meta-oe/recipes-devtools/lapack/lapack_3.9.0.bb
> similarity index 75%
> rename from meta-oe/recipes-devtools/lapack/lapack_3.8.0.bb
> rename to meta-oe/recipes-devtools/lapack/lapack_3.9.0.bb
> index 7544744b3..56c01c533 100644
> --- a/meta-oe/recipes-devtools/lapack/lapack_3.8.0.bb
> +++ b/meta-oe/recipes-devtools/lapack/lapack_3.9.0.bb
> @@ -13,9 +13,9 @@ LIC_FILES_CHKSUM =
> "file://LICENSE;md5=930f8aa500a47c7dab0f8efb5a1c9a40"
>
>  DEPENDS = "libgfortran"
>
> -SRC_URI = "http://www.netlib.org/lapack/lapack-${PV}.tar.gz"
> -SRC_URI[md5sum] = "96591affdbf58c450d45c1daa540dbd2"
> -SRC_URI[sha256sum] =
> "deb22cc4a6120bff72621155a9917f485f96ef8319ac074a7afbc68aab88bcf6"
> +SRC_URI = "
> https://github.com/Reference-LAPACK/lapack/archive/v${PV}.tar.gz"
> +SRC_URI[md5sum] = "0b251e2a8d5f949f99b50dd5e2200ee2"
> +SRC_URI[sha256sum] =
> "106087f1bb5f46afdfba7f569d0cbe23dacb9a07cd24733765a0e89dbe1ad573"
>
>  EXTRA_OECMAKE = " -DBUILD_SHARED_LIBS=ON "
>  OECMAKE_GENERATOR = "Unix Makefiles"
> --
> 2.17.1
>
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 3111 bytes --]

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

end of thread, other threads:[~2020-04-15  6:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-25  6:47 [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Wang Mingyu
2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] avro-c: upgrade 1.9.1 -> 1.9.2 Wang Mingyu
2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] epeg: upgrade to 0.9.2 Wang Mingyu
2020-03-25  6:47 ` [oe] [meta-oe] [PATCH] lapack: upgrade 3.8.0 -> 3.9.0 Wang Mingyu
2020-04-15  6:44   ` Martin Jansa
2020-03-25  6:47 ` [oe] [meta-perl][PATCH] libnet-dns-perl: upgrade 1.22 -> 1.23 Wang Mingyu
2020-03-25  7:57 ` [oe] [meta-filesystems] [PATCH] fatresize: upgrade 1.0.2-11 -> 1.0.2 Adrian Bunk

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.