[arch-commits] Commit in seahorse-nautilus/repos/extra-x86_64 (4 files)

Jan Steffens heftig at gemini.archlinux.org
Mon Jul 18 19:22:13 UTC 2022


    Date: Monday, July 18, 2022 @ 19:22:12
  Author: heftig
Revision: 451456

archrelease: copy trunk to extra-x86_64

Added:
  seahorse-nautilus/repos/extra-x86_64/1.patch
    (from rev 451454, seahorse-nautilus/trunk/1.patch)
  seahorse-nautilus/repos/extra-x86_64/PKGBUILD
    (from rev 451454, seahorse-nautilus/trunk/PKGBUILD)
Deleted:
  seahorse-nautilus/repos/extra-x86_64/1.patch
  seahorse-nautilus/repos/extra-x86_64/PKGBUILD

----------+
 1.patch  |  128 ++++++++++++++++++++++++++++++-------------------------------
 PKGBUILD |   80 +++++++++++++++++++-------------------
 2 files changed, 105 insertions(+), 103 deletions(-)

Deleted: 1.patch
===================================================================
--- 1.patch	2022-07-18 19:22:12 UTC (rev 451455)
+++ 1.patch	2022-07-18 19:22:12 UTC (rev 451456)
@@ -1,64 +0,0 @@
-From aaa6af5f6249fc1e25c6913bb4dfe2561fda4a40 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <ballogyor at gmail.com>
-Date: Thu, 13 Dec 2018 22:08:12 +0100
-Subject: [PATCH] Fix UI files usage
-
-This was incomplete in the meson port.
----
- meson.build            | 2 --
- tool/meson.build       | 2 +-
- tool/seahorse-widget.c | 4 ++--
- 3 files changed, 3 insertions(+), 5 deletions(-)
-
-diff --git a/meson.build b/meson.build
-index 2fe05ee..7af175a 100644
---- a/meson.build
-+++ b/meson.build
-@@ -19,7 +19,6 @@ po_dir = join_paths(meson.source_root(), 'po')
- datadir = join_paths(seahorse_nautilus_prefix, get_option('datadir'))
- bindir = join_paths(seahorse_nautilus_prefix, get_option('bindir'))
- localedir = join_paths(seahorse_nautilus_prefix, get_option('localedir'))
--uidir = join_paths(datadir, 'seahorse-nautilus', 'ui')
- config_h_dir = include_directories('.')
- 
- # Dependencies
-@@ -75,7 +74,6 @@ conf.set_quoted('G_LOG_DOMAIN', meson.project_name())
- conf.set_quoted('DATA_DIR', datadir)
- conf.set_quoted('LOCALEDIR', localedir)
- conf.set_quoted('GNOMELOCALEDIR', localedir)
--conf.set_quoted('SEAHORSE_UIDIR', uidir)
- conf.set('HAVE_LIBNOTIFY', libnotify_enabled)
- config_file = configure_file(
-   output: 'config.h',
-diff --git a/tool/meson.build b/tool/meson.build
-index b2e4194..7791305 100644
---- a/tool/meson.build
-+++ b/tool/meson.build
-@@ -43,7 +43,7 @@ seahorse_tool_cflags = [
- ]
- 
- seahorse_tool = executable('seahorse-tool',
--  seahorse_tool_sources,
-+  seahorse_tool_sources, resources,
-   dependencies: seahorse_tool_dependencies,
-   c_args: seahorse_tool_cflags,
-   include_directories: config_h_dir,
-diff --git a/tool/seahorse-widget.c b/tool/seahorse-widget.c
-index 57e0117..1955823 100644
---- a/tool/seahorse-widget.c
-+++ b/tool/seahorse-widget.c
-@@ -204,9 +204,9 @@ object_set_property (GObject *object, guint prop_id, const GValue *value, GParam
-         g_return_if_fail (swidget->name == NULL);
-         swidget->name = g_value_dup_string (value);
-         path = g_strdup_printf ("%sseahorse-%s.ui",
--                                SEAHORSE_UIDIR, swidget->name);
-+                                "/org/gnome/Seahorse/", swidget->name);
-         swidget->gtkbuilder = gtk_builder_new ();
--        gtk_builder_add_from_file (swidget->gtkbuilder, path, &error);
-+        gtk_builder_add_from_resource (swidget->gtkbuilder, path, &error);
-         if (error != NULL) {
-             g_warning ("couldn't load ui file: %s", error->message);
-             g_error_free (error);
--- 
-2.24.1
-

Copied: seahorse-nautilus/repos/extra-x86_64/1.patch (from rev 451454, seahorse-nautilus/trunk/1.patch)
===================================================================
--- 1.patch	                        (rev 0)
+++ 1.patch	2022-07-18 19:22:12 UTC (rev 451456)
@@ -0,0 +1,64 @@
+From aaa6af5f6249fc1e25c6913bb4dfe2561fda4a40 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <ballogyor at gmail.com>
+Date: Thu, 13 Dec 2018 22:08:12 +0100
+Subject: [PATCH] Fix UI files usage
+
+This was incomplete in the meson port.
+---
+ meson.build            | 2 --
+ tool/meson.build       | 2 +-
+ tool/seahorse-widget.c | 4 ++--
+ 3 files changed, 3 insertions(+), 5 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index 2fe05ee..7af175a 100644
+--- a/meson.build
++++ b/meson.build
+@@ -19,7 +19,6 @@ po_dir = join_paths(meson.source_root(), 'po')
+ datadir = join_paths(seahorse_nautilus_prefix, get_option('datadir'))
+ bindir = join_paths(seahorse_nautilus_prefix, get_option('bindir'))
+ localedir = join_paths(seahorse_nautilus_prefix, get_option('localedir'))
+-uidir = join_paths(datadir, 'seahorse-nautilus', 'ui')
+ config_h_dir = include_directories('.')
+ 
+ # Dependencies
+@@ -75,7 +74,6 @@ conf.set_quoted('G_LOG_DOMAIN', meson.project_name())
+ conf.set_quoted('DATA_DIR', datadir)
+ conf.set_quoted('LOCALEDIR', localedir)
+ conf.set_quoted('GNOMELOCALEDIR', localedir)
+-conf.set_quoted('SEAHORSE_UIDIR', uidir)
+ conf.set('HAVE_LIBNOTIFY', libnotify_enabled)
+ config_file = configure_file(
+   output: 'config.h',
+diff --git a/tool/meson.build b/tool/meson.build
+index b2e4194..7791305 100644
+--- a/tool/meson.build
++++ b/tool/meson.build
+@@ -43,7 +43,7 @@ seahorse_tool_cflags = [
+ ]
+ 
+ seahorse_tool = executable('seahorse-tool',
+-  seahorse_tool_sources,
++  seahorse_tool_sources, resources,
+   dependencies: seahorse_tool_dependencies,
+   c_args: seahorse_tool_cflags,
+   include_directories: config_h_dir,
+diff --git a/tool/seahorse-widget.c b/tool/seahorse-widget.c
+index 57e0117..1955823 100644
+--- a/tool/seahorse-widget.c
++++ b/tool/seahorse-widget.c
+@@ -204,9 +204,9 @@ object_set_property (GObject *object, guint prop_id, const GValue *value, GParam
+         g_return_if_fail (swidget->name == NULL);
+         swidget->name = g_value_dup_string (value);
+         path = g_strdup_printf ("%sseahorse-%s.ui",
+-                                SEAHORSE_UIDIR, swidget->name);
++                                "/org/gnome/Seahorse/", swidget->name);
+         swidget->gtkbuilder = gtk_builder_new ();
+-        gtk_builder_add_from_file (swidget->gtkbuilder, path, &error);
++        gtk_builder_add_from_resource (swidget->gtkbuilder, path, &error);
+         if (error != NULL) {
+             g_warning ("couldn't load ui file: %s", error->message);
+             g_error_free (error);
+-- 
+2.24.1
+

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-07-18 19:22:12 UTC (rev 451455)
+++ PKGBUILD	2022-07-18 19:22:12 UTC (rev 451456)
@@ -1,39 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Balló György <ballogyor+arch at gmail dot com>
-
-pkgname=seahorse-nautilus
-pkgver=3.11.92+66+g02c81f1
-pkgrel=1
-pkgdesc="PGP encryption and signing for nautilus"
-arch=(x86_64)
-url="https://gitlab.gnome.org/GNOME/seahorse-nautilus.git/"
-license=(GPL)
-depends=(libcryptui nautilus libgnome-keyring)
-makedepends=(meson git)
-_commit=02c81f1dda64571f837fc2cc9180fe2a86d8d8b6  # master
-source=("git+https://gitlab.gnome.org/GNOME/seahorse-nautilus.git#commit=$_commit"
-        1.patch)
-sha256sums=('SKIP'
-            '7e27ab3bc132bc3c3039da1490c1a972297469b97caeb7236a01779933251a47')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # https://bugs.archlinux.org/task/61061
-  # https://gitlab.gnome.org/GNOME/seahorse-nautilus/merge_requests/1
-  git apply -3 ../1.patch
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}

Copied: seahorse-nautilus/repos/extra-x86_64/PKGBUILD (from rev 451454, seahorse-nautilus/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-07-18 19:22:12 UTC (rev 451456)
@@ -0,0 +1,41 @@
+# Maintainer: Jan Alexander Steffens (heftig) <heftig at archlinux.org>
+# Contributor: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=seahorse-nautilus
+pkgver=3.11.92+r88+g86214b8
+pkgrel=1
+epoch=1
+pkgdesc="PGP encryption and signing for nautilus"
+url="https://gitlab.gnome.org/GNOME/seahorse-nautilus"
+arch=(x86_64)
+license=(GPL)
+depends=(libcryptui nautilus libgnome-keyring)
+makedepends=(meson git)
+options=(debug)
+_commit=86214b89bc6f605e28025df896a3a306bf3c5f52  # master
+source=("git+$url.git#commit=$_commit"
+        1.patch)
+sha256sums=('SKIP'
+            '7e27ab3bc132bc3c3039da1490c1a972297469b97caeb7236a01779933251a47')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  # https://bugs.archlinux.org/task/61061
+  # https://gitlab.gnome.org/GNOME/seahorse-nautilus/merge_requests/1
+  git apply -3 ../1.patch
+}
+
+build() {
+  arch-meson $pkgname build
+  meson compile -C build
+}
+
+package() {
+  meson install -C build --destdir "$pkgdir"
+}



More information about the arch-commits mailing list