[arch-commits] Commit in nautilus-python/trunk (2 files)

Balló György bgyorgy at archlinux.org
Mon Jan 15 01:55:36 UTC 2018


    Date: Monday, January 15, 2018 @ 01:55:36
  Author: bgyorgy
Revision: 282303

upgpkg: nautilus-python 1.2.2-1

Update to new version

Modified:
  nautilus-python/trunk/PKGBUILD
Deleted:
  nautilus-python/trunk/0001-Fix-string-comparison.patch

----------------------------------+
 0001-Fix-string-comparison.patch |   25 -------------------------
 PKGBUILD                         |   16 ++++------------
 2 files changed, 4 insertions(+), 37 deletions(-)

Deleted: 0001-Fix-string-comparison.patch
===================================================================
--- 0001-Fix-string-comparison.patch	2018-01-15 01:33:32 UTC (rev 282302)
+++ 0001-Fix-string-comparison.patch	2018-01-15 01:55:36 UTC (rev 282303)
@@ -1,25 +0,0 @@
-From c6781c4eae7f820c1d832177539bc90e1ec4e3e4 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <ballogyor at gmail.com>
-Date: Thu, 11 Jan 2018 11:12:22 +0100
-Subject: [PATCH] Fix string comparison
-
----
- src/nautilus-python.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/nautilus-python.c b/src/nautilus-python.c
-index 694d555..bbffb97 100644
---- a/src/nautilus-python.c
-+++ b/src/nautilus-python.c
-@@ -248,7 +248,7 @@ nautilus_python_check_all_directories(GTypeModule *module) {
-     while (*temp != NULL) {
-         gchar *dir = g_build_filename(*temp,
-             "nautilus-python", "extensions", NULL);
--        if (dir != prefix_extension_dir) {
-+        if (g_strcmp0 (dir, prefix_extension_dir) != 0) {
-             dirs = g_list_append(dirs, dir);
-         }
- 
--- 
-2.15.1
-

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2018-01-15 01:33:32 UTC (rev 282302)
+++ PKGBUILD	2018-01-15 01:55:36 UTC (rev 282303)
@@ -4,8 +4,8 @@
 
 pkgbase=nautilus-python
 pkgname=('python-nautilus' 'python2-nautilus')
-pkgver=1.2.1
-pkgrel=3
+pkgver=1.2.2
+pkgrel=1
 pkgdesc="Python bindings for the Nautilus Extension API"
 arch=('x86_64')
 url="https://wiki.gnome.org/Projects/NautilusPython"
@@ -12,17 +12,9 @@
 license=('GPL')
 depends=('nautilus' 'python-gobject' 'python2-gobject')
 makedepends=('gtk-doc')
-source=(https://download.gnome.org/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz
-        0001-Fix-string-comparison.patch)
-sha256sums=('36f98a8cc191b4ffcbcd7835eb80f99f39095b221c0ab65b4c84a859f9a9b10f'
-            'acad9ef3bbf1093a83c3a61f1789985c78d6e6ef3e06070fb1eda6176cd181bd')
+source=(https://download.gnome.org/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('90cda3fd613ed012214e47c2dc6f814db4e204a5af38e840479819ab9c59f112')
 
-prepare() {
-  cd $pkgbase-$pkgver
-  patch -Np1 -i ../0001-Fix-string-comparison.patch
-  autoreconf -fi
-}
-
 build() {
   # Python 3 version
   [ -d gtk3 ] || cp -r $pkgbase-$pkgver python3



More information about the arch-commits mailing list