[arch-commits] Commit in guitarix2/repos (6 files)

Antonio Rojas arojas at archlinux.org
Fri Nov 11 19:58:41 UTC 2016


    Date: Friday, November 11, 2016 @ 19:58:41
  Author: arojas
Revision: 195405

archrelease: copy trunk to community-i686, community-x86_64

Added:
  guitarix2/repos/community-i686/PKGBUILD
    (from rev 195404, guitarix2/trunk/PKGBUILD)
  guitarix2/repos/community-x86_64/PKGBUILD
    (from rev 195404, guitarix2/trunk/PKGBUILD)
Deleted:
  guitarix2/repos/community-i686/PKGBUILD
  guitarix2/repos/community-i686/guitarix2-fix-build.patch
  guitarix2/repos/community-x86_64/PKGBUILD
  guitarix2/repos/community-x86_64/guitarix2-fix-build.patch

--------------------------------------------+
 /PKGBUILD                                  |   68 +++++++++++++++++++++++++++
 community-i686/PKGBUILD                    |   41 ----------------
 community-i686/guitarix2-fix-build.patch   |   44 -----------------
 community-x86_64/PKGBUILD                  |   41 ----------------
 community-x86_64/guitarix2-fix-build.patch |   44 -----------------
 5 files changed, 68 insertions(+), 170 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-11-11 19:57:36 UTC (rev 195404)
+++ community-i686/PKGBUILD	2016-11-11 19:58:41 UTC (rev 195405)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: speps <speps at aur dot archlinux dot org>
-
-pkgname=guitarix2
-pkgver=0.35.1
-pkgrel=2
-pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
-arch=('i686' 'x86_64')
-url="http://guitarix.sourceforge.net/"
-license=('GPL')
-depends=('gtkmm' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs' 'webkitgtk2'
-         'zita-convolver' 'zita-resampler' 'desktop-file-utils')
-makedepends=('python' 'python2' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
-optdepends=('meterbridge: sound meters')
-provides=('guitarix' 'gx_head')
-conflicts=('guitarix' 'gx_head')
-replaces=('guitarix' 'gx_head')
-source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz" guitarix2-fix-build.patch)
-md5sums=('fb7269fe6fdde4c493be65f974819bb4'
-         '1a2a417e19652e7eaf1779aff81a9564')
-
-prepare() {
-  cd guitarix-$pkgver
-  patch -p1 -i ../guitarix2-fix-build.patch # Debian patch
-}
-
-build() {
-  cd guitarix-$pkgver
-  python2 waf configure --prefix=/usr \
-                        --no-desktop-update \
-                        --no-ldconfig \
-                        --no-faust \
-                        --shared-lib \
-                        --lib-dev
-  python2 waf build
-}
-
-package() {
-  cd guitarix-$pkgver
-  python2 waf install --destdir="$pkgdir"
-}

Copied: guitarix2/repos/community-i686/PKGBUILD (from rev 195404, guitarix2/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-11-11 19:58:41 UTC (rev 195405)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: speps <speps at aur dot archlinux dot org>
+
+pkgname=guitarix2
+pkgver=0.35.2
+pkgrel=1
+pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
+arch=('i686' 'x86_64')
+url="http://guitarix.sourceforge.net/"
+license=('GPL')
+depends=('gtkmm' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs' 'webkitgtk2' 'zita-convolver' 'zita-resampler')
+makedepends=('python' 'python2' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz")
+md5sums=('34c9becf43145eac7281abad5de4540f')
+
+build() {
+  cd guitarix-$pkgver
+  python2 waf configure --prefix=/usr \
+                        --no-desktop-update \
+                        --no-ldconfig \
+                        --no-faust \
+                        --shared-lib \
+                        --lib-dev
+  python2 waf build
+}
+
+package() {
+  cd guitarix-$pkgver
+  python2 waf install --destdir="$pkgdir"
+}

Deleted: community-i686/guitarix2-fix-build.patch
===================================================================
--- community-i686/guitarix2-fix-build.patch	2016-11-11 19:57:36 UTC (rev 195404)
+++ community-i686/guitarix2-fix-build.patch	2016-11-11 19:58:41 UTC (rev 195405)
@@ -1,44 +0,0 @@
---- guitarix-0.35.1/src/gx_head/engine/gx_system.cpp.orig	2016-10-07 19:41:19.707493651 +0000
-+++ guitarix-0.35.1/src/gx_head/engine/gx_system.cpp	2016-10-07 19:42:18.128197974 +0000
-@@ -349,7 +349,7 @@
- 	file->enumerate_children(G_FILE_ATTRIBUTE_STANDARD_NAME
- 				 "," G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME);
-     Glib::RefPtr<Gio::FileInfo> file_info;
--    while ((file_info = child_enumeration->next_file()) != 0) {
-+    while (file_info = child_enumeration->next_file()) {
- 	if (file_info->get_file_type() == Gio::FILE_TYPE_DIRECTORY) {
- 	    Glib::RefPtr<Gio::File> child = file->get_child(
- 		file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME));
-diff --git a/trunk/src/gx_head/engine/ladspaback.cpp b/trunk/src/gx_head/engine/ladspaback.cpp
-index 2a6bd01..be934a7 100644
---- guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
-+++ guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
-@@ -1622,7 +1622,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& options, std::vector<std:
-                                      "," G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE);
-         Glib::RefPtr<Gio::FileInfo> file_info;
- 
--        while ((file_info = child_enumeration->next_file()) != 0) {
-+        while ((file_info = child_enumeration->next_file())) {
-             if (file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) == "application/x-sharedlib") {
-                 std::string nm = file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME);
-                 if (lib_is_blacklisted(nm)) {
-@@ -1650,7 +1650,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& options, std::vector<std:
-                                      "," G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE);
-         Glib::RefPtr<Gio::FileInfo> file_info;
- 
--        while ((file_info = child_enumeration->next_file()) != 0) {
-+        while ((file_info = child_enumeration->next_file())) {
- 	    //if not f.endswith((".rdf",".rdfs")):
-             if (file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) == "application/rdf+xml") {
-                 std::string nm = file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME);
---- guitarix-0.35.1/src/gx_head/engine/gx_system.cpp.orig	2016-10-07 19:53:44.599882708 +0000
-+++ guitarix-0.35.1/src/gx_head/engine/gx_system.cpp	2016-10-07 19:53:56.963366468 +0000
-@@ -329,7 +329,7 @@
- 				       "," G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME
- 				       "," G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE);
-         Glib::RefPtr<Gio::FileInfo> file_info;
--        while ((file_info = child_enumeration->next_file()) != 0) {
-+        while (file_info = child_enumeration->next_file()) {
- 	    if (file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) == "audio/x-wav") {
- 		listing.push_back(
- 		    FileName(

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-11-11 19:57:36 UTC (rev 195404)
+++ community-x86_64/PKGBUILD	2016-11-11 19:58:41 UTC (rev 195405)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: speps <speps at aur dot archlinux dot org>
-
-pkgname=guitarix2
-pkgver=0.35.1
-pkgrel=2
-pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
-arch=('i686' 'x86_64')
-url="http://guitarix.sourceforge.net/"
-license=('GPL')
-depends=('gtkmm' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs' 'webkitgtk2'
-         'zita-convolver' 'zita-resampler' 'desktop-file-utils')
-makedepends=('python' 'python2' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
-optdepends=('meterbridge: sound meters')
-provides=('guitarix' 'gx_head')
-conflicts=('guitarix' 'gx_head')
-replaces=('guitarix' 'gx_head')
-source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz" guitarix2-fix-build.patch)
-md5sums=('fb7269fe6fdde4c493be65f974819bb4'
-         '1a2a417e19652e7eaf1779aff81a9564')
-
-prepare() {
-  cd guitarix-$pkgver
-  patch -p1 -i ../guitarix2-fix-build.patch # Debian patch
-}
-
-build() {
-  cd guitarix-$pkgver
-  python2 waf configure --prefix=/usr \
-                        --no-desktop-update \
-                        --no-ldconfig \
-                        --no-faust \
-                        --shared-lib \
-                        --lib-dev
-  python2 waf build
-}
-
-package() {
-  cd guitarix-$pkgver
-  python2 waf install --destdir="$pkgdir"
-}

Copied: guitarix2/repos/community-x86_64/PKGBUILD (from rev 195404, guitarix2/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-11-11 19:58:41 UTC (rev 195405)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: speps <speps at aur dot archlinux dot org>
+
+pkgname=guitarix2
+pkgver=0.35.2
+pkgrel=1
+pkgdesc="A simple mono guitar amplifier and FX for JACK using Faust"
+arch=('i686' 'x86_64')
+url="http://guitarix.sourceforge.net/"
+license=('GPL')
+depends=('gtkmm' 'liblrdf' 'lilv' 'bluez-libs' 'boost-libs' 'webkitgtk2' 'zita-convolver' 'zita-resampler')
+makedepends=('python' 'python2' 'boost' 'eigen' 'gperf' 'intltool' 'lv2')
+optdepends=('meterbridge: sound meters')
+provides=('guitarix' 'gx_head')
+conflicts=('guitarix' 'gx_head')
+replaces=('guitarix' 'gx_head')
+source=("http://download.sourceforge.net/project/guitarix/guitarix/$pkgname-$pkgver.tar.xz")
+md5sums=('34c9becf43145eac7281abad5de4540f')
+
+build() {
+  cd guitarix-$pkgver
+  python2 waf configure --prefix=/usr \
+                        --no-desktop-update \
+                        --no-ldconfig \
+                        --no-faust \
+                        --shared-lib \
+                        --lib-dev
+  python2 waf build
+}
+
+package() {
+  cd guitarix-$pkgver
+  python2 waf install --destdir="$pkgdir"
+}

Deleted: community-x86_64/guitarix2-fix-build.patch
===================================================================
--- community-x86_64/guitarix2-fix-build.patch	2016-11-11 19:57:36 UTC (rev 195404)
+++ community-x86_64/guitarix2-fix-build.patch	2016-11-11 19:58:41 UTC (rev 195405)
@@ -1,44 +0,0 @@
---- guitarix-0.35.1/src/gx_head/engine/gx_system.cpp.orig	2016-10-07 19:41:19.707493651 +0000
-+++ guitarix-0.35.1/src/gx_head/engine/gx_system.cpp	2016-10-07 19:42:18.128197974 +0000
-@@ -349,7 +349,7 @@
- 	file->enumerate_children(G_FILE_ATTRIBUTE_STANDARD_NAME
- 				 "," G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME);
-     Glib::RefPtr<Gio::FileInfo> file_info;
--    while ((file_info = child_enumeration->next_file()) != 0) {
-+    while (file_info = child_enumeration->next_file()) {
- 	if (file_info->get_file_type() == Gio::FILE_TYPE_DIRECTORY) {
- 	    Glib::RefPtr<Gio::File> child = file->get_child(
- 		file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME));
-diff --git a/trunk/src/gx_head/engine/ladspaback.cpp b/trunk/src/gx_head/engine/ladspaback.cpp
-index 2a6bd01..be934a7 100644
---- guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
-+++ guitarix-0.35.1/src/gx_head/engine/ladspaback.cpp
-@@ -1622,7 +1622,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& options, std::vector<std:
-                                      "," G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE);
-         Glib::RefPtr<Gio::FileInfo> file_info;
- 
--        while ((file_info = child_enumeration->next_file()) != 0) {
-+        while ((file_info = child_enumeration->next_file())) {
-             if (file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) == "application/x-sharedlib") {
-                 std::string nm = file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME);
-                 if (lib_is_blacklisted(nm)) {
-@@ -1650,7 +1650,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& options, std::vector<std:
-                                      "," G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE);
-         Glib::RefPtr<Gio::FileInfo> file_info;
- 
--        while ((file_info = child_enumeration->next_file()) != 0) {
-+        while ((file_info = child_enumeration->next_file())) {
- 	    //if not f.endswith((".rdf",".rdfs")):
-             if (file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) == "application/rdf+xml") {
-                 std::string nm = file_info->get_attribute_byte_string(G_FILE_ATTRIBUTE_STANDARD_NAME);
---- guitarix-0.35.1/src/gx_head/engine/gx_system.cpp.orig	2016-10-07 19:53:44.599882708 +0000
-+++ guitarix-0.35.1/src/gx_head/engine/gx_system.cpp	2016-10-07 19:53:56.963366468 +0000
-@@ -329,7 +329,7 @@
- 				       "," G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME
- 				       "," G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE);
-         Glib::RefPtr<Gio::FileInfo> file_info;
--        while ((file_info = child_enumeration->next_file()) != 0) {
-+        while (file_info = child_enumeration->next_file()) {
- 	    if (file_info->get_attribute_string(G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE) == "audio/x-wav") {
- 		listing.push_back(
- 		    FileName(



More information about the arch-commits mailing list