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

Jan Steffens heftig at archlinux.org
Sun Feb 9 19:10:41 UTC 2020


    Date: Sunday, February 9, 2020 @ 19:10:41
  Author: heftig
Revision: 375149

archrelease: copy trunk to extra-x86_64

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

----------+
 1.patch  |   64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 PKGBUILD |   72 +++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 103 insertions(+), 33 deletions(-)

Copied: seahorse-nautilus/repos/extra-x86_64/1.patch (from rev 375146, seahorse-nautilus/trunk/1.patch)
===================================================================
--- 1.patch	                        (rev 0)
+++ 1.patch	2020-02-09 19:10:41 UTC (rev 375149)
@@ -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	2020-02-09 19:10:40 UTC (rev 375148)
+++ PKGBUILD	2020-02-09 19:10:41 UTC (rev 375149)
@@ -1,33 +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+57+g390364d
-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=390364db3bb09d7f6e07e3de90c872112584442a  # master
-source=("git+https://gitlab.gnome.org/GNOME/seahorse-nautilus.git#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-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 375147, seahorse-nautilus/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-02-09 19:10:41 UTC (rev 375149)
@@ -0,0 +1,39 @@
+# 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
+}



More information about the arch-commits mailing list