LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 06-23-2016, 04:55 AM   #271
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,100

Original Poster
Rep: Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177

hi brobr, this is already fixed on my personal branch, it will go in the master branch at the next merge

https://slackbuilds.org/cgit/slackbu...6e90ded7227645
 
Old 06-23-2016, 06:52 PM   #272
brobr
Member
 
Registered: Oct 2003
Location: uk
Distribution: Slackware
Posts: 974

Rep: Reputation: 239Reputation: 239Reputation: 239
Hi Matteo, Thanks. Have you also upgraded the corresponding python3-QT5 bindings (PyQT5) to version 5.6? And if so, did it compile OK for you? I ran into a dbus-arch-deps.h not found error:

Code:
make[1]: Leaving directory '/home/sbo_64/tmp/sbopkg.LkGRiT/PyQt5_gpl-5.6/qmlscene'
cd dbus/ && ( test -e Makefile || /usr/bin/qmake-qt5 /home/sbo_64/tmp/sbopkg.LkGRiT/PyQt5_gpl-5.6/dbus/dbus.pro -o Makefile ) && make -f Makefile 
make[1]: Entering directory '/home/sbo_64/tmp/sbopkg.LkGRiT/PyQt5_gpl-5.6/dbus'
g++ -c -pipe -fno-exceptions -O2 -fPIC -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DSIP_PROTECTED_IS_PUBLIC -Dprotected=public -DQT_NO_DEBUG -DQT_PLUGIN -DQT_CORE_LIB -I. -I. -isystem /usr/include/python3.5 -isystem /usr/include/python3.5m -isystem /usr/include/dbus-1.0 -I. -isystem /usr/include/qt5 -isystem /usr/include/qt5/QtCore -I. -I/usr/lib64/qt5/mkspecs/linux-g++ -o dbus.o dbus.cpp
In file included from /usr/include/dbus-1.0/dbus/dbus-python.h:33:0,
                 from dbus.cpp:27:
/usr/include/dbus-1.0/dbus/dbus.h:29:33: fatal error: dbus/dbus-arch-deps.h: No such file or directory
Any clue how to bypass that?

Thanks,

Rob

Note, if you have not changed the PyQT5 bindings-package yet, its SlackBuild needs some adaptation as the PKG name has changed from PyQT-gpl to PyQT5_gpl (see attached diffs).

EDIT the dbus files are on my system as expected:
Nr Location Package Content
1 slackware64/a dbus-1.10.8-x86_64-1.txz usr/lib64/dbus-1.0/include/dbus/dbus-arch-deps.h
1 slackware64/a dbus-1.10.8-x86_64-1.txz usr/include/dbus-1.0/dbus/dbus.h
Attached Files
File Type: txt pyqt5-info-diff.txt (658 Bytes, 19 views)
File Type: txt pyqt5-slackbuild-diff.txt (747 Bytes, 5 views)

Last edited by brobr; 06-23-2016 at 06:58 PM.
 
Old 06-24-2016, 12:27 AM   #273
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,100

Original Poster
Rep: Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177Reputation: 4177
hi brobr, if you want to build the latest python3-PyQt5 from SBo be sure to apply Marcel's patch from his branch to the script in the SBo's master branch and then apply this below on top of it
Code:
diff -Naur python3-PyQt5.orig/python3-PyQt5.SlackBuild python3-PyQt5/python3-PyQt5.SlackBuild
--- python3-PyQt5.orig/python3-PyQt5.SlackBuild 2016-06-24 07:22:09.372055434 +0200
+++ python3-PyQt5/python3-PyQt5.SlackBuild      2016-06-24 06:39:54.724914816 +0200
@@ -70,7 +70,7 @@
 rm -rf $PKG
 mkdir -p $TMP $PKG $OUTPUT
 cd $TMP
-rm -rf $SRCNAM-$VERSION
+rm -rf ${SRCNAM}_gpl-$VERSION
 tar xvf $CWD/${SRCNAM}_gpl-$VERSION.tar.gz
 cd ${SRCNAM}_gpl-$VERSION
 chown -R root:root .
@@ -80,6 +80,9 @@
  \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
   -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
 
+# This is needed or an include from dbus is missed (tnx, Archlinux)
+sed -i '/target_config.dbus_inc_dirs = \[\]/d' configure.py
+
 export QTDIR=/usr/lib${LIBDIRSUFFIX}/qt5
 export QT5DIR=/usr/lib${LIBDIRSUFFIX}/qt5
 
diff -Naur python3-PyQt5.orig/python3-PyQt5.info python3-PyQt5/python3-PyQt5.info
--- python3-PyQt5.orig/python3-PyQt5.info       2016-06-24 07:22:09.373055561 +0200
+++ python3-PyQt5/python3-PyQt5.info    2016-06-24 06:46:03.777819543 +0200
@@ -5,6 +5,6 @@
 MD5SUM="dbfc885c0548e024ba5260c4f44e0481"
 DOWNLOAD_x86_64=""
 MD5SUM_x86_64=""
-REQUIRES="python3-sip qt5"
+REQUIRES="python3-sip qt5-webkit"
 MAINTAINER="Marcel Saegebarth"
 EMAIL="marc@mos6581.de"
notice that now it depends on qt5-webkit (available on willy's branch), that had been splitted from qt5.
 
2 members found this post helpful.
Old 06-24-2016, 04:52 AM   #274
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
this patch is now applied in my branch and will go to master branch in the next merge soon
 
2 members found this post helpful.
Old 06-24-2016, 07:18 AM   #275
brobr
Member
 
Registered: Oct 2003
Location: uk
Distribution: Slackware
Posts: 974

Rep: Reputation: 239Reputation: 239Reputation: 239
Thank you all, I'll wait until the master-branch is updated and then try to compile it all again.
Cheers,

Rob

EDIT: after willysr's update, compilation went OK and the stuff relying on these libraries is working again.

Last edited by brobr; 06-26-2016 at 09:14 AM.
 
Old 06-24-2016, 09:16 PM   #276
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
it's now merged back to master branch
 
Old 07-21-2016, 04:08 PM   #277
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Hi , that i report some time a go ...

If system have installed protobuf , using SBo slackbuild , then , clementine see and try to use, but clementine wants the static stuff.

protobuf by default have in slackbuild ,disable-static , that cause clementine no start to build.


I propose remove "disable static" , in the protobuf slackbuild.

Thanks.


EDIT: I know protobuf is not dependency for clementine, but if system have like (mixxx package or another one) , then the problem appears.

I build long time a go , protobuf with static enabled , and no problems detected to other builds.
 
Old 07-21-2016, 05:08 PM   #278
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
protobuf is a dep for clementine since last January
 
Old 07-21-2016, 06:19 PM   #279
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
Originally Posted by willysr View Post
protobuf is a dep for clementine since last January
if disable-static ..i cant build clementine.

i need rebuild protobuf ..and remove

--disable-static

in the configuration.
 
Old 07-21-2016, 06:35 PM   #280
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
Tested fine here using sbopkg without any changes to protobuf
Code:
python-gflags:
  MD5SUM check for python-gflags-2.0.tar.gz ... OK
  Building package python-gflags-2.0-x86_64-1_SBo.tgz ... OK
  Installing package python-gflags-2.0-x86_64-1_SBo.tgz ... OK

six:
  MD5SUM check for six-1.10.0.tar.gz ... OK
  Building package six-1.10.0-x86_64-1_SBo.tgz ... OK
  Installing package six-1.10.0-x86_64-1_SBo.tgz ... OK

python-dateutil:
  MD5SUM check for python-dateutil-2.4.2.tar.gz ... OK
  Building package python-dateutil-2.4.2-x86_64-1_SBo.tgz ... OK
  Installing package python-dateutil-2.4.2-x86_64-1_SBo.tgz ... OK

pytz:
  MD5SUM check for pytz-2014.10.tar.bz2 ... OK
  Building package pytz-2014.10-x86_64-1_SBo.tgz ... OK
  Installing package pytz-2014.10-x86_64-1_SBo.tgz ... OK

protobuf:
  MD5SUM check for protobuf-2.6.1.tar.bz2 ... OK
  Building package protobuf-2.6.1-x86_64-1_SBo.tgz ... OK
  Installing package protobuf-2.6.1-x86_64-1_SBo.tgz ... OK

libechonest:
  MD5SUM check for libechonest-2.3.0.tar.bz2 ... OK
  Building package libechonest-2.3.0-x86_64-1_SBo.tgz ... OK
  Installing package libechonest-2.3.0-x86_64-1_SBo.tgz ... OK

cryptopp:
  MD5SUM check for cryptopp562.zip ... OK
  Building package cryptopp-5.6.2-x86_64-3_SBo.tgz ... OK
  Installing package cryptopp-5.6.2-x86_64-3_SBo.tgz ... OK

chromaprint:
  MD5SUM check for chromaprint-1.2.tar.gz ... OK
  Building package chromaprint-1.2-x86_64-1_SBo.tgz ... OK
  Installing package chromaprint-1.2-x86_64-1_SBo.tgz ... OK

clementine:
  MD5SUM check for 1.3.1.tar.gz ... OK
  Building package clementine-1.3.1-x86_64-1_SBo.tgz ... OK
  Installing package clementine-1.3.1-x86_64-1_SBo.tgz ... OK
 
Old 07-21-2016, 06:41 PM   #281
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
my fault ...sorry

culprit is my cryptopp package , because are compiled against libspotify ... and libspotify wants , the static protobuf causing trobles.


sbo scripts are fine , ... sorry again.
 
Old 07-22-2016, 04:49 PM   #282
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
perl-CPANPLUS (0.9156) --> link borken

this works
https://cpan.metacpan.org/authors/id...-0.9156.tar.gz



perl-CPANPLUS-Dist-Build (0.78) --> link borken

this works
https://cpan.metacpan.org/authors/id...ld-0.78.tar.gz

Last edited by USUARIONUEVO; 07-22-2016 at 04:59 PM.
 
Old 07-22-2016, 05:59 PM   #283
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,336

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
perl-Config-Find --> 0.26 NOT BUILD --> 0.31 builds ok (slackware 14.2)
 
Old 07-22-2016, 06:04 PM   #284
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
Quote:
Originally Posted by USUARIONUEVO View Post
perl-CPANPLUS (0.9156) --> link borken

this works
https://cpan.metacpan.org/authors/id...-0.9156.tar.gz



perl-CPANPLUS-Dist-Build (0.78) --> link borken

this works
https://cpan.metacpan.org/authors/id...ld-0.78.tar.gz
Fixed in my branch, thanks

Code:
commit 630324e40c503924fbed9e6baa3f1aaa8f71a91b
Author: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Date:   Sat Jul 23 06:02:19 2016 +0700

    perl/perl-CPANPLUS-Dist-Build: Fix DOWNLOAD.
    
    Thanks to USUARIONUEVO.
    
    Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>

commit 156c361aed8e4eb16f969e6124484e01eb9136fd
Author: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Date:   Sat Jul 23 06:01:21 2016 +0700

    perl/perl-CPANPLUS: Fix DOWNLOAD.
    
    Thanks to USUARIONUEVO.
    
    Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
 
Old 07-22-2016, 06:04 PM   #285
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,662

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
Quote:
Originally Posted by USUARIONUEVO View Post
perl-Config-Find --> 0.26 NOT BUILD --> 0.31 builds ok (slackware 14.2)
this one builds fine
Code:
perl-Probe-Perl:
  MD5SUM check for Probe-Perl-0.03.tar.gz ... OK
  Building package perl-Probe-Perl-0.03-x86_64-1_SBo.tgz ... OK
  Installing package perl-Probe-Perl-0.03-x86_64-1_SBo.tgz ... OK

perl-IPC-Run3:
  MD5SUM check for IPC-Run3-0.048.tar.gz ... OK
  Building package perl-IPC-Run3-0.048-x86_64-1_SBo.tgz ... OK
  Installing package perl-IPC-Run3-0.048-x86_64-1_SBo.tgz ... OK

perl-Test-Script:
  MD5SUM check for Test-Script-1.07.tar.gz ... OK
  Building package perl-Test-Script-1.07-x86_64-1_SBo.tgz ... OK
  Installing package perl-Test-Script-1.07-x86_64-1_SBo.tgz ... OK

perl-File-Which:
  MD5SUM check for File-Which-1.09.tar.gz ... OK
  Building package perl-File-Which-1.09-x86_64-1_SBo.tgz ... OK
  Installing package perl-File-Which-1.09-x86_64-1_SBo.tgz ... OK

perl-File-HomeDir:
  MD5SUM check for File-HomeDir-1.00.tar.gz ... OK
  Building package perl-File-HomeDir-1.00-x86_64-1_SBo.tgz ... OK
  Installing package perl-File-HomeDir-1.00-x86_64-1_SBo.tgz ... OK

perl-Config-Find:
  MD5SUM check for Config-Find-0.26.tar.gz ... OK
  Building package perl-Config-Find-0.26-x86_64-1_SBo.tgz ... OK
  Installing package perl-Config-Find-0.26-x86_64-1_SBo.tgz ... OK
 
  


Reply

Tags
current, sbo, sbopkg, slackrepo



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Error building gst1-plugins-good 1.4.1 from SBO l0rddarkf0rce Slackware 4 10-06-2014 05:58 PM
[SOLVED] Failure building nvidia-kernel Slackbuild from SBo sysfce2 Slackware 7 07-02-2011 01:10 AM
problems building fontforge from SBo gtludwig Slackware 7 05-12-2010 01:52 PM
Pls help me take my 1st step! verysoon Fedora - Installation 2 12-12-2005 07:49 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration