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

Antonio Rojas arojas at archlinux.org
Fri Oct 7 20:13:46 UTC 2016


    Date: Friday, October 7, 2016 @ 20:13:45
  Author: arojas
Revision: 191606

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

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

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

Copied: guitarix2/repos/community-staging-i686/PKGBUILD (from rev 191605, guitarix2/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2016-10-07 20:13:45 UTC (rev 191606)
@@ -0,0 +1,41 @@
+# $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-staging-i686/guitarix2-fix-build.patch (from rev 191605, guitarix2/trunk/guitarix2-fix-build.patch)
===================================================================
--- community-staging-i686/guitarix2-fix-build.patch	                        (rev 0)
+++ community-staging-i686/guitarix2-fix-build.patch	2016-10-07 20:13:45 UTC (rev 191606)
@@ -0,0 +1,44 @@
+--- 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(

Copied: guitarix2/repos/community-staging-x86_64/PKGBUILD (from rev 191605, guitarix2/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2016-10-07 20:13:45 UTC (rev 191606)
@@ -0,0 +1,41 @@
+# $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-staging-x86_64/guitarix2-fix-build.patch (from rev 191605, guitarix2/trunk/guitarix2-fix-build.patch)
===================================================================
--- community-staging-x86_64/guitarix2-fix-build.patch	                        (rev 0)
+++ community-staging-x86_64/guitarix2-fix-build.patch	2016-10-07 20:13:45 UTC (rev 191606)
@@ -0,0 +1,44 @@
+--- 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