Re: Version 0.35.2-2 of guitarix is marked for autoremoval from testing on 2017-07-30.

2017-08-03 Thread Hermann Meyer

Am 22.07.2017 um 06:34 schrieb Hermann Meyer:


Hi

It is affected by RC bug #866641 <https://bugs.debian.org/866641>.

Please consider to update guitarix to the latest version 0.35.5, which 
fix this "bug".



regards

hermann




Really, no one?

It's a pity to see guitarix in debian in such a bad shape. I've tried to 
contact VĂ­ctor Cuadrado Juan, who is the current maintainer from the 
(Debian Multimedia Maintainers 
<https://qa.debian.org/developer.php?login=pkg-multimedia-maintainers@lists.alioth.debian.org>) 
team, for guitarix in debian, but get no response.


For me , as upstream maintainer, the current situation is a real pity.
Guitarix is in debian since 2013 05 05 and I'm, as upstream maintainer 
have all the time full-fill any request of debian maintainers.

Next removal is date is  2017-08-13.
Seeing that it is for a "bug" witch is currently unrelated for 
debian-testing, is a way more annoying.


Are the debian multimedia maintainers been in such a bad shape to let it 
go and leaf me, as upstream maintainer alone?


regards
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Version 0.35.2-2 of guitarix is marked for autoremoval from testing on 2017-07-30.

2017-07-21 Thread Hermann Meyer


Hi

It is affected by RC bug #866641 .

Please consider to update guitarix to the latest version 0.35.5, which 
fix this "bug".



regards

hermann


___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#866641: guitarix: depends on libwebkitgtk-1.0-0 which is deprecated

2017-07-14 Thread Hermann Meyer
And a new release is out, 0.35.4, which dropping the dependency to 
libwebkitgtk  at all.


https://sourceforge.net/projects/guitarix/

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#866641: guitarix: depends on libwebkitgtk-1.0-0 which is deprecated

2017-07-05 Thread Hermann Meyer


Hi


So I've now removed webkit from guitarix.

Next release will come without webkit, but a new online preset fetcher 
(Gio::File) and menu.



regards

hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#866641: guitarix: depends on libwebkitgtk-1.0-0 which is deprecated

2017-07-01 Thread Hermann Meyer



Am 01.07.2017 um 13:28 schrieb Jeremy Bicha:

On Sat, Jul 1, 2017 at 3:44 AM, Hermann Meyer <brumm...@web.de> wrote:

Any plans to provide webkit2 with gtk2 support, e.g. build with |

No, sorry. gtk3 has stabilized now with version 3.22.* So it's a great
time to upgrade your app. gtk3 natively supports Hi-DPI and GNOME on
Wayland.

Thanks,
Jeremy Bicha


Thanks, a pity.
I don't think that gtk2 will be skipped for the next stable release.
Here are no plans to upgrade to gtk3 at any time soon.
But webkit is a optional dependency. If webkit isn't found,
or disabled by configure, this feature will simple be disabled.

regards
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#866641: guitarix: depends on libwebkitgtk-1.0-0 which is deprecated

2017-07-01 Thread Hermann Meyer


Hi

Any plans to provide webkit2 with gtk2 support, e.g. build with |

--with-gtk=2.|0

regards
hermann|||


|

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#839354: guitarix: FTBFS: ../src/gx_head/engine/ladspaback.cpp:1625:61: error: no match for 'operator!=' (operand types are 'Glib::RefPtr' and 'int')

2016-10-11 Thread Hermann Meyer

Hi

I've updated my box now, and be able to reproduce and fix the error.
I've pushed out a new release to fix this and some other bugs.

V0.35.2 is out.

https://sourceforge.net/projects/guitarix/

regards
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#839354: guitarix: FTBFS: ../src/gx_head/engine/ladspaback.cpp:1625:61: error: no match for 'operator!=' (operand types are 'Glib::RefPtr' and 'int')

2016-10-03 Thread Hermann Meyer

> ../src/gx_head/engine/ladspaback.cpp:1625:61: error: no match for 'operator!=' 
(operand types are 'Glib::RefPtr' and 'int')
>  while ((file_info = child_enumeration->next_file()) != 0) {
> ~^~~~



Hi

Even if I cant reproduce the build failure here locally, I notice that 
the comparison against 0 isn't really needed.


Find attached a patch to fix that.

regards
hermann
diff --git a/trunk/src/gx_head/engine/ladspaback.cpp b/trunk/src/gx_head/engine/ladspaback.cpp
index 2a6bd01..be934a7 100644
--- a/trunk/src/gx_head/engine/ladspaback.cpp
+++ b/trunk/src/gx_head/engine/ladspaback.cpp
@@ -1622,7 +1622,7 @@ void LadspaPluginList::load(gx_system::CmdlineOptions& options, std::vector 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 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);
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#831124: guitarix: FTBFS with GCC 6: ../libgxwmm/gxwmm/gainline.h:25:110: error: call of overloaded 'abs(double)' is ambiguous

2016-07-19 Thread Hermann Meyer

Hi

. . and a new upstream release is out (0.35.1) which fix the build fail 
with GCC6.


changelog:
This release mainly fix the build issue with GCC6.(Debian #831124)
  * Add back the oc_2 plugin
  * fix icon size of widget-gxwidgets-gxhslider.png (make lintian happy)
  * fix range of graphic eq
  * add support for nominalBlockLength in GxAmps.lv2 and GxCabinet.lv2
  * enable faust-0.9.73 as good version to build guitarix
  * New themes: grungy sun, grungy sun dark, grandma, psycedelic, nebula
  * enable file browser in remote interface
  * add BassBoom plugin (sub-bass harmonics)
  * add Multiband Clipper plugin
  * add tooltip to the Master Volume controller

regards
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#831124: guitarix: FTBFS with GCC 6: ../libgxwmm/gxwmm/gainline.h:25:110: error: call of overloaded 'abs(double)' is ambiguous

2016-07-15 Thread Hermann Meyer

Hi

This is already fixed in upstream on 2016-05-16
here is the fix commit:
https://sourceforge.net/p/guitarix/git/ci/975b3b5cbd6b7b8a74f4da9eb687c9af8538178c/

regards
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#820046: guitarix: does not respect DEB_BUILD_OPTIONS=parallel max value

2016-04-05 Thread Hermann Meyer
Ups, sorry, you need to pass -j $(NUMJOBS) to the build command, not to 
configure.


regards
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#820046: guitarix: does not respect DEB_BUILD_OPTIONS=parallel max value

2016-04-04 Thread Hermann Meyer
If you use the DEB_BUILD_OPTIONS=parallel flag, you must past the 
$(NUMJOBS) somehow to the waf configure flags.

https://www.debian.org/doc/debian-policy/ch-source.html#s-debianrules-options

guitarix wscript accept the -j$(NUMJOBS) parameter.

regards
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#748545: Does not work - starts, but does nothing

2014-06-06 Thread hermann meyer

Hi

gxtuner works here without problems.

Do you use jack with rt-priory ?
the pitch-tracker thread in gxtuner runs usually with jack-priory -6, so 
a lower priory then jack itself and all other jack-aware apps. This is 
done to never conflict with other audio threads which may work on 
critical (real-time) data.
If you use jack with a to low rt-priory, or without rt-rights, it may be 
that the pitch-tracker thread never get finished before the time-line ends.


greets
hermann

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers