[arch-commits] Commit in geany-plugins/repos/community-x86_64 (4 files)

2018-03-22 Thread Eli Schwartz via arch-commits
Date: Thursday, March 22, 2018 @ 19:12:07
  Author: eschwartz
Revision: 310722

archrelease: copy trunk to community-x86_64

Added:
  geany-plugins/repos/community-x86_64/PKGBUILD
(from rev 310721, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/community-x86_64/enchant-2.patch
(from rev 310721, geany-plugins/trunk/enchant-2.patch)
Deleted:
  geany-plugins/repos/community-x86_64/PKGBUILD
  geany-plugins/repos/community-x86_64/enchant-2.patch

-+
 PKGBUILD|   89 --
 enchant-2.patch |  104 +++---
 2 files changed, 100 insertions(+), 93 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-22 19:11:49 UTC (rev 310721)
+++ PKGBUILD2018-03-22 19:12:07 UTC (rev 310722)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Gerardo Exequiel Pozzi 
-# Contributor: Patrick Melo 
-
-pkgname=geany-plugins
-pkgver=1.33
-pkgrel=1
-pkgdesc='Plugins for Geany'
-arch=('x86_64')
-url='https://plugins.geany.org/'
-license=('GPL')
-depends=("geany>=$pkgver" 'ctpl' 'gpgme' 'gtkspell3' 'libgit2' 'lua51')
-makedepends=('cppcheck' 'intltool')
-source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;)
-sha256sums=('12825739e2c3caefbc1ad57e62f1e4f691af8db8368f173aa84c43dffb4503a2')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  autoreconf -fi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  # Looking forward to Python 3 being supported
-  export PYTHON=/usr/bin/python2
-
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: plugins.geany.org/downloads.html
-# vim: ts=2 sw=2 et:

Copied: geany-plugins/repos/community-x86_64/PKGBUILD (from rev 310721, 
geany-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-22 19:12:07 UTC (rev 310722)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Patrick Melo 
+
+pkgname=geany-plugins
+pkgver=1.33
+pkgrel=2
+pkgdesc='Plugins for Geany'
+arch=('x86_64')
+url='https://plugins.geany.org/'
+license=('GPL')
+depends=("geany>=$pkgver" 'ctpl' 'gpgme' 'gtkspell3' 'libgit2' 'lua51')
+makedepends=('cppcheck' 'intltool')
+source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2"{,.sig}
+
"https://github.com/geany/geany-plugins/commit/3d02ec2a2b0d3ccfeb28503534b95e60861e6fe8.patch;)
+sha256sums=('12825739e2c3caefbc1ad57e62f1e4f691af8db8368f173aa84c43dffb4503a2'
+'SKIP'
+'1e71e3aec1acbfb9a1e5bb803504bf8cc6feaf999dc24fb1e4d30760e3aacb99')
+validpgpkeys=('CD38C008828C2EF1B63A8ED1B5688B006F78F01E') # Frank Lanitz 

+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # backport fix for https://github.com/geany/geany-plugins/pull/729
+  patch -p1 < ../3d02ec2a2b0d3ccfeb28503534b95e60861e6fe8.patch
+
+  autoreconf -fi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # Looking forward to Python 3 being supported
+  export PYTHON=/usr/bin/python2
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: plugins.geany.org/downloads.html
+# vim: ts=2 sw=2 et:

Deleted: enchant-2.patch
===
--- enchant-2.patch 2018-03-22 19:11:49 UTC (rev 310721)
+++ enchant-2.patch 2018-03-22 19:12:07 UTC (rev 310722)
@@ -1,52 +0,0 @@
 geany-plugins-1.32/spellcheck/src/speller.c.orig   2017-10-17 
04:58:25.0 +
-+++ geany-plugins-1.32/spellcheck/src/speller.c2017-11-23 
09:20:27.280196692 +
-@@ -470,7 +470,7 @@
-   g_return_if_fail(sc_speller_dict != NULL);
-   g_return_if_fail(word != NULL);
- 
--  enchant_dict_add_to_pwl(sc_speller_dict, word, -1);
-+  enchant_dict_add(sc_speller_dict, word, -1);
- }
- 
- gboolean sc_speller_dict_check(const gchar *word)
-@@ -518,24 +518,6 @@
-   if (sc_speller_dict != NULL)
-   enchant_broker_free_dict(sc_speller_broker, sc_speller_dict);
- 
--#if HAVE_ENCHANT_1_5
--  {
--  const gchar *old_path;
--  gchar *new_path;
--
--  /* add custom dictionary path for myspell (primarily used on 
Windows) */
--  old_path = enchant_broker_get_param(sc_speller_broker, 
"enchant.myspell.dictionary.path");
--

[arch-commits] Commit in geany-plugins/repos/community-x86_64 (4 files)

2018-03-02 Thread Alexander Rødseth via arch-commits
Date: Friday, March 2, 2018 @ 22:25:57
  Author: arodseth
Revision: 301637

archrelease: copy trunk to community-x86_64

Added:
  geany-plugins/repos/community-x86_64/PKGBUILD
(from rev 301636, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/community-x86_64/enchant-2.patch
(from rev 301636, geany-plugins/trunk/enchant-2.patch)
Deleted:
  geany-plugins/repos/community-x86_64/PKGBUILD
  geany-plugins/repos/community-x86_64/enchant-2.patch

-+
 PKGBUILD|   84 +--
 enchant-2.patch |  104 +++---
 2 files changed, 93 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-02 22:25:44 UTC (rev 301636)
+++ PKGBUILD2018-03-02 22:25:57 UTC (rev 301637)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Gerardo Exequiel Pozzi 
-# Contributor: Patrick Melo 
-
-pkgname=geany-plugins
-pkgver=1.32
-pkgrel=4
-pkgdesc='Plugins for Geany'
-arch=('x86_64')
-url='https://plugins.geany.org/'
-license=('GPL')
-depends=("geany>=$pkgver" 'ctpl' 'gpgme' 'gtkspell3' 'libgit2' 'lua51')
-makedepends=('cppcheck' 'intltool')
-source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;
-enchant-2.patch)
-sha256sums=('78d4b394fe22fda298e80a22616421efdd4a419eb227b99eadca73f65abac117'
-'094a613b600e42de9b23c3586abf25f3b0695eb62ca2d341e82c0a5633fefeb8')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../enchant-2.patch
-  autoreconf -fi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  # Looking forward to Python 3 being supported
-  export PYTHON=/usr/bin/python2
-
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: plugins.geany.org/downloads.html
-# vim: ts=2 sw=2 et:

Copied: geany-plugins/repos/community-x86_64/PKGBUILD (from rev 301636, 
geany-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-02 22:25:57 UTC (rev 301637)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Patrick Melo 
+
+pkgname=geany-plugins
+pkgver=1.33
+pkgrel=1
+pkgdesc='Plugins for Geany'
+arch=('x86_64')
+url='https://plugins.geany.org/'
+license=('GPL')
+depends=("geany>=$pkgver" 'ctpl' 'gpgme' 'gtkspell3' 'libgit2' 'lua51')
+makedepends=('cppcheck' 'intltool')
+source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;)
+sha256sums=('12825739e2c3caefbc1ad57e62f1e4f691af8db8368f173aa84c43dffb4503a2')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  autoreconf -fi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # Looking forward to Python 3 being supported
+  export PYTHON=/usr/bin/python2
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: plugins.geany.org/downloads.html
+# vim: ts=2 sw=2 et:

Deleted: enchant-2.patch
===
--- enchant-2.patch 2018-03-02 22:25:44 UTC (rev 301636)
+++ enchant-2.patch 2018-03-02 22:25:57 UTC (rev 301637)
@@ -1,52 +0,0 @@
 geany-plugins-1.32/spellcheck/src/speller.c.orig   2017-10-17 
04:58:25.0 +
-+++ geany-plugins-1.32/spellcheck/src/speller.c2017-11-23 
09:20:27.280196692 +
-@@ -470,7 +470,7 @@
-   g_return_if_fail(sc_speller_dict != NULL);
-   g_return_if_fail(word != NULL);
- 
--  enchant_dict_add_to_pwl(sc_speller_dict, word, -1);
-+  enchant_dict_add(sc_speller_dict, word, -1);
- }
- 
- gboolean sc_speller_dict_check(const gchar *word)
-@@ -518,24 +518,6 @@
-   if (sc_speller_dict != NULL)
-   enchant_broker_free_dict(sc_speller_broker, sc_speller_dict);
- 
--#if HAVE_ENCHANT_1_5
--  {
--  const gchar *old_path;
--  gchar *new_path;
--
--  /* add custom dictionary path for myspell (primarily used on 
Windows) */
--  old_path = enchant_broker_get_param(sc_speller_broker, 
"enchant.myspell.dictionary.path");
--  if (old_path != NULL)
--  new_path = g_strconcat(
--  old_path, G_SEARCHPATH_SEPARATOR_S, 
sc_info->dictionary_dir, NULL);
--  else
--  new_path = sc_info->dictionary_dir;
--
--  

[arch-commits] Commit in geany-plugins/repos/community-x86_64 (4 files)

2018-01-29 Thread Balló György via arch-commits
Date: Monday, January 29, 2018 @ 14:10:48
  Author: bgyorgy
Revision: 287774

archrelease: copy trunk to community-x86_64

Added:
  geany-plugins/repos/community-x86_64/PKGBUILD
(from rev 287773, geany-plugins/trunk/PKGBUILD)
  geany-plugins/repos/community-x86_64/enchant-2.patch
(from rev 287773, geany-plugins/trunk/enchant-2.patch)
Deleted:
  geany-plugins/repos/community-x86_64/PKGBUILD
  geany-plugins/repos/community-x86_64/enchant-2.patch

-+
 PKGBUILD|   87 ++---
 enchant-2.patch |  104 +++---
 2 files changed, 95 insertions(+), 96 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-29 14:10:42 UTC (rev 287773)
+++ PKGBUILD2018-01-29 14:10:48 UTC (rev 287774)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Angel 'angvp' Velasquez 
-# Contributor: Gerardo Exequiel Pozzi 
-# Contributor: Patrick Melo 
-
-pkgname=geany-plugins
-pkgver=1.32
-pkgrel=3
-pkgdesc='Plugins for Geany'
-arch=('x86_64')
-url='https://plugins.geany.org/'
-license=('GPL')
-depends=("geany>=$pkgver" 'ctpl' 'desktop-file-utils' 'gpgme' 'gtkspell' 
'libgit2' 'lua51' 'pygtk' 'python2' 'vte')
-makedepends=('cppcheck' 'gdb' 'intltool' 'libgit2' 'vala')
-optdepends=('hspell: hebrew spell checker')
-source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;
-enchant-2.patch)
-sha256sums=('78d4b394fe22fda298e80a22616421efdd4a419eb227b99eadca73f65abac117'
-'094a613b600e42de9b23c3586abf25f3b0695eb62ca2d341e82c0a5633fefeb8')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../enchant-2.patch
-  autoreconf -fi
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  # Looking forward to Python 3 being supported
-  export PYTHON=/usr/bin/python2
-
-  ./configure --prefix=/usr --libexecdir=/usr/lib
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-}
-
-# getver: plugins.geany.org/downloads.html
-# vim: ts=2 sw=2 et:

Copied: geany-plugins/repos/community-x86_64/PKGBUILD (from rev 287773, 
geany-plugins/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-01-29 14:10:48 UTC (rev 287774)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Angel 'angvp' Velasquez 
+# Contributor: Gerardo Exequiel Pozzi 
+# Contributor: Patrick Melo 
+
+pkgname=geany-plugins
+pkgver=1.32
+pkgrel=4
+pkgdesc='Plugins for Geany'
+arch=('x86_64')
+url='https://plugins.geany.org/'
+license=('GPL')
+depends=("geany>=$pkgver" 'ctpl' 'gpgme' 'gtkspell3' 'libgit2' 'lua51')
+makedepends=('cppcheck' 'intltool')
+source=("https://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2;
+enchant-2.patch)
+sha256sums=('78d4b394fe22fda298e80a22616421efdd4a419eb227b99eadca73f65abac117'
+'094a613b600e42de9b23c3586abf25f3b0695eb62ca2d341e82c0a5633fefeb8')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../enchant-2.patch
+  autoreconf -fi
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  # Looking forward to Python 3 being supported
+  export PYTHON=/usr/bin/python2
+
+  ./configure --prefix=/usr --libexecdir=/usr/lib
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
+}
+
+# getver: plugins.geany.org/downloads.html
+# vim: ts=2 sw=2 et:

Deleted: enchant-2.patch
===
--- enchant-2.patch 2018-01-29 14:10:42 UTC (rev 287773)
+++ enchant-2.patch 2018-01-29 14:10:48 UTC (rev 287774)
@@ -1,52 +0,0 @@
 geany-plugins-1.32/spellcheck/src/speller.c.orig   2017-10-17 
04:58:25.0 +
-+++ geany-plugins-1.32/spellcheck/src/speller.c2017-11-23 
09:20:27.280196692 +
-@@ -470,7 +470,7 @@
-   g_return_if_fail(sc_speller_dict != NULL);
-   g_return_if_fail(word != NULL);
- 
--  enchant_dict_add_to_pwl(sc_speller_dict, word, -1);
-+  enchant_dict_add(sc_speller_dict, word, -1);
- }
- 
- gboolean sc_speller_dict_check(const gchar *word)
-@@ -518,24 +518,6 @@
-   if (sc_speller_dict != NULL)
-   enchant_broker_free_dict(sc_speller_broker, sc_speller_dict);
- 
--#if HAVE_ENCHANT_1_5
--  {
--  const gchar *old_path;
--  gchar *new_path;
--
--  /* add custom dictionary path for myspell (primarily used on 
Windows) */
--  old_path = enchant_broker_get_param(sc_speller_broker, 
"enchant.myspell.dictionary.path");
--  if (old_path != NULL)
--