All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH] libsecret: upgrade 0.20.4 -> 0.20.5
@ 2022-02-23 11:46 Wang Mingyu
  2022-02-24 11:54 ` Richard Purdie
  0 siblings, 1 reply; 2+ messages in thread
From: Wang Mingyu @ 2022-02-23 11:46 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

determinism.patch
removed since it's included in 0.20.5

Changelog:
=========
 * Drop autotools-based build [!44]
 * Use G_GNUC_NULL_TERMINATED where appropriate [!65]
 * collection, methods, prompt: Port to GTask [!66, !93]
 * Detect local storage in snaps in the same way as flatpaks [!67]
 * Add bash-completion for secret-tool [!70, #50, !72]
 * secret-tool: Add locking capabilities to secret tool [#28, !75]
 * secret-file-backend: Avoid closing the same file descriptor twice [!78]
 * Add support for TPM2 based secret storage [!83, !90, !95]
 * Create default collection after DBus.Error.UnknownObject [!94]
 * Port documentation to gi-docgen [!101]
 * GI annotation and documentation fixes [!63, !64, !102, !103, #66]
 * Build fixes [#54, !62, !68, #59, !73, !77, !82, !84, !85, !88]
 * Updated translations

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libsecret/libsecret/determinism.patch     | 37 -------------------
 ...ibsecret_0.20.4.bb => libsecret_0.20.5.bb} |  4 +-
 2 files changed, 1 insertion(+), 40 deletions(-)
 delete mode 100644 meta/recipes-gnome/libsecret/libsecret/determinism.patch
 rename meta/recipes-gnome/libsecret/{libsecret_0.20.4.bb => libsecret_0.20.5.bb} (88%)

diff --git a/meta/recipes-gnome/libsecret/libsecret/determinism.patch b/meta/recipes-gnome/libsecret/libsecret/determinism.patch
deleted file mode 100644
index ad96e8f59b..0000000000
--- a/meta/recipes-gnome/libsecret/libsecret/determinism.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-secret-enum-types.c/h.template: Fix reproducibility issue 
-
-When full filenames are used in generated sources it makes the resulting
-debug packages non-reproducible. Best practise is to use basename in
-comments instead.
-
-Signed-off-by: Richard Purdie richard.purdie@linuxfoundation.org
-Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/libsecret/-/merge_requests/68]
-
-Index: libsecret-0.20.4/libsecret/secret-enum-types.c.template
-===================================================================
---- libsecret-0.20.4.orig/libsecret/secret-enum-types.c.template
-+++ libsecret-0.20.4/libsecret/secret-enum-types.c.template
-@@ -23,8 +23,8 @@
- /*** END file-header ***/
- 
- /*** BEGIN file-production ***/
--#include "@filename@"
--/* enumerations from "@filename@" */
-+#include "@basename@"
-+/* enumerations from "@basename@" */
- /*** END file-production ***/
- 
- /*** BEGIN value-header ***/
-Index: libsecret-0.20.4/libsecret/secret-enum-types.h.template
-===================================================================
---- libsecret-0.20.4.orig/libsecret/secret-enum-types.h.template
-+++ libsecret-0.20.4/libsecret/secret-enum-types.h.template
-@@ -27,7 +27,7 @@ G_BEGIN_DECLS
- 
- /*** BEGIN file-production ***/
- 
--/* enumerations from "@filename@" */
-+/* enumerations from "@basename@" */
- /*** END file-production ***/
- 
- /*** BEGIN value-header ***/
diff --git a/meta/recipes-gnome/libsecret/libsecret_0.20.4.bb b/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb
similarity index 88%
rename from meta/recipes-gnome/libsecret/libsecret_0.20.4.bb
rename to meta/recipes-gnome/libsecret/libsecret_0.20.5.bb
index 39ecdd770a..edb2b4a882 100644
--- a/meta/recipes-gnome/libsecret/libsecret_0.20.4.bb
+++ b/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb
@@ -14,9 +14,7 @@ inherit gnomebase gtk-doc vala gobject-introspection manpages
 
 DEPENDS += "glib-2.0 libgcrypt gettext-native"
 
-SRC_URI += " file://determinism.patch"
-
-SRC_URI[archive.sha256sum] = "325a4c54db320c406711bf2b55e5cb5b6c29823426aa82596a907595abb39d28"
+SRC_URI[archive.sha256sum] = "3fb3ce340fcd7db54d87c893e69bfc2b1f6e4d4b279065ffe66dac9f0fd12b4d"
 
 GTKDOC_MESON_OPTION = 'gtk_doc'
 
-- 
2.25.1



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

* Re: [OE-core] [PATCH] libsecret: upgrade 0.20.4 -> 0.20.5
  2022-02-23 11:46 [OE-core] [PATCH] libsecret: upgrade 0.20.4 -> 0.20.5 Wang Mingyu
@ 2022-02-24 11:54 ` Richard Purdie
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2022-02-24 11:54 UTC (permalink / raw)
  To: wangmy, openembedded-core

On Wed, 2022-02-23 at 19:46 +0800, wangmy wrote:
> determinism.patch
> removed since it's included in 0.20.5
> 
> Changelog:
> =========
>  * Drop autotools-based build [!44]
>  * Use G_GNUC_NULL_TERMINATED where appropriate [!65]
>  * collection, methods, prompt: Port to GTask [!66, !93]
>  * Detect local storage in snaps in the same way as flatpaks [!67]
>  * Add bash-completion for secret-tool [!70, #50, !72]
>  * secret-tool: Add locking capabilities to secret tool [#28, !75]
>  * secret-file-backend: Avoid closing the same file descriptor twice [!78]
>  * Add support for TPM2 based secret storage [!83, !90, !95]
>  * Create default collection after DBus.Error.UnknownObject [!94]
>  * Port documentation to gi-docgen [!101]
>  * GI annotation and documentation fixes [!63, !64, !102, !103, #66]
>  * Build fixes [#54, !62, !68, #59, !73, !77, !82, !84, !85, !88]
>  * Updated translations
> 

https://autobuilder.yoctoproject.org/typhoon/#/builders/108/builds/2653

There is an issue with the documentation changes here.

Cheers,

Richard



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

end of thread, other threads:[~2022-02-24 11:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-23 11:46 [OE-core] [PATCH] libsecret: upgrade 0.20.4 -> 0.20.5 Wang Mingyu
2022-02-24 11:54 ` Richard Purdie

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.