LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 03-10-2016, 04:31 PM   #106
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,661

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784

Quote:
Originally Posted by Bindestreck View Post
volti 0.2.3 not working anymore due to new version of python-dbus:

Code:
Traceback (most recent call last):
  File "/usr/bin/volti", line 27, in <module>
    assert dbus.version >= (0, 80, 0)
AssertionError
I notified the maintainer, but if you cannot wait you can change line 27 on python-file /usr/bin/volti:

Code:
assert dbus.version >= (0, 80, 0)
to

Code:
assert dbus.version >= [0, 80, 0]

It is a very small change, instead of tuples it uses a list.

Cheers!
Thanks for reporting
fixed in my branch and soon will be merged to master
 
Old 03-10-2016, 09:21 PM   #107
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
OK , i test modified afpfs-ng for willys , and i understand now, why archlinux patch ...

all patches ,orientation to modified sources to put headers under


/usr/include/afpfs-ng/*.h instead /usr/include/*.h


but i found very most easy way ..


Quote:
# Copy the header files
mkdir -p $PKG/usr/include/$PRGNAM
cd include
for HEADER in *.h; do
install -Dm644 "$HEADER" "$PKG/usr/include/$PRGNAM/$HEADER"
done
cd ..

please update again , and sorry... the patches from archlinux do that , i think better is create the directory , and move the headers inside.


Thanks.
 
Old 03-11-2016, 12:25 AM   #108
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,661

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
done

thanks
 
Old 03-11-2016, 11:33 AM   #109
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,682

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
hwinfo is not compiling on the latest -current. It did compile fine with beta 2 but somewhere between then and the latest batch of updates it broke. Not sure what the problem is but I'll email the maintainer. I tried it on my machine and in a clean virtual machine. Oddly though, it acts like it just doesn't finish rather than actually quitting on a specific error.
 
Old 03-11-2016, 05:14 PM   #110
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,661

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
I just tested on VM and it compiles just fine
Code:
libx86emu:
  MD5SUM check for libx86emu-1.4.tar.xz ... OK
  Building package libx86emu-1.4-x86_64-1_SBo.tgz ... OK
  Installing package libx86emu-1.4-x86_64-1_SBo.tgz ... OK

hwinfo:
  MD5SUM check for hwinfo-20.1.tar.xz ... OK
  Building package hwinfo-20.1-x86_64-1_SBo.tgz ... OK
  Installing package hwinfo-20.1-x86_64-1_SBo.tgz ... OK
 
Old 03-11-2016, 05:41 PM   #111
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,682

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
Hmmm, guess it's a problem on my end. I tested it again and it doesn't error it just doesn't move on to "make install".

Thanks for checking.

I was building in parallel. Should of thought about building it -j1. My mistake. Problem solved.

Last edited by Daedra; 03-11-2016 at 05:51 PM.
 
Old 03-12-2016, 12:50 PM   #112
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
In response to this post I want to report that python3 is another package that will install other programs during the install process. The maintainer seems to explicitly force it in the SlackBuild even.
Code:
Ignoring indexes: https://pypi.python.org/simple
Collecting setuptools
Collecting pip
Installing collected packages: setuptools, pip
Successfully installed pip setuptools
Code:
# If this system already has Python3 with pip in site-packages, ignore it and
# install pip anyway.
sed -i 's|\("install",\)|\1 "--ignore-installed",|' Lib/ensurepip/__init__.py
https://slackbuilds.org/repository/14.1/python/python3/

Last edited by orbea; 03-12-2016 at 12:52 PM.
 
Old 03-12-2016, 01:00 PM   #113
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,096

Original Poster
Rep: Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173Reputation: 4173
yes, but it doesn't download them, it uses bundled versions.
 
Old 03-12-2016, 01:29 PM   #114
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Oh, thanks for the correction.
 
Old 03-12-2016, 09:17 PM   #115
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
With pygobject3 now in current, my devedeng slackbuild needs the dependencies updated (I also updated it) and for a pygobject3-python3 slackbuild to be added. Can someone do that for the 14.2 repo? Thanks!

https://notabug.org/orbea/Slackbuild...bject3-python3
Code:
diff -urN ../devedeng/devedeng.SlackBuild devedeng/devedeng.SlackBuild
--- ../devedeng/devedeng.SlackBuild	2015-11-27 16:34:09.000000000 -0800
+++ devedeng/devedeng.SlackBuild	2016-03-12 19:10:24.171776077 -0800
@@ -2,7 +2,7 @@
 
 # Slackware build script for devedeng
 
-# Copyright 2015 Hunter Sezen California, USA <ovariegata@yahoo.com>
+# Copyright 2015-2016 Hunter Sezen California, USA <ovariegata@yahoo.com>
 # All rights reserved.
 #
 # Redistribution and use of this script, with or without modification, is
@@ -23,11 +23,17 @@
 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 PRGNAM=devedeng
-VERSION=${VERSION:-4.4.0}
-BUILD=${BUILD:-1}
+VERSION=${VERSION:-4.5.0}
+BUILD=${BUILD:-2}
 TAG=${TAG:-_SBo}
 
-ARCH=noarch
+if [ -z "$ARCH" ]; then
+  case "$( uname -m )" in
+    i?86) ARCH=i486 ;;
+    arm*) ARCH=arm ;;
+       *) ARCH=$( uname -m ) ;;
+  esac
+fi
 
 CWD=$(pwd)
 TMP=${TMP:-/tmp/SBo}
@@ -51,9 +57,6 @@
 
 python3 setup.py install --root=$PKG
 
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
-    | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
 mv $PKG/usr/share/man $PKG/usr
 
 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
diff -urN ../devedeng/devedeng.info devedeng/devedeng.info
--- ../devedeng/devedeng.info	2015-11-27 16:34:09.000000000 -0800
+++ devedeng/devedeng.info	2016-03-12 19:10:24.171776077 -0800
@@ -1,10 +1,10 @@
 PRGNAM="devedeng"
-VERSION="4.4.0"
+VERSION="4.5.0"
 HOMEPAGE="http://www.rastersoft.com/programas/devede.html"
-DOWNLOAD="https://github.com/rastersoft/devedeng/archive/4.4.0.tar.gz"
-MD5SUM="017944a396762cfd2ee1a5b2ec8a9b74"
+DOWNLOAD="https://github.com/rastersoft/devedeng/archive/4.5.0.tar.gz"
+MD5SUM="f53b5067025d7f0e355f9aa09c933d6f"
 DOWNLOAD_x86_64=""
 MD5SUM_x86_64=""
-REQUIRES="dvdauthor ffmpeg vcdimager gnome-common py3cairo pygobject3"
+REQUIRES="dvdauthor ffmpeg vcdimager pygobject3-python3"
 MAINTAINER="Hunter Sezen"
 EMAIL="ovariegata@yahoo.com"
Note: The build number relates to my own notabug repo, maybe it should be changed for SBo (?), but I don't think it really matters.
Edit: Also, it really should be removed from the 14.1 repo, it will never work there. Replacing it with the original devede slackbuild which was never supposed to have been removed would work.

Last edited by orbea; 03-12-2016 at 09:19 PM.
 
Old 03-12-2016, 10:07 PM   #116
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,661

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
done
 
1 members found this post helpful.
Old 03-14-2016, 03:49 AM   #117
solarfields
Senior Member
 
Registered: Feb 2006
Location: slackalaxy.com
Distribution: Slackware, CRUX
Posts: 1,449

Rep: Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997Reputation: 997
Quote:
after some thought, i decided to revert back to 9.20.1 since the new 9.38.1 caused jalview to break when extracting the .bin file. Probably need more time to investigate this problem
If jalview is the only problematic archive for p7zip, I can host its source gzipped on SF. No need to downgrade it for everyone just because of jalview.
 
Old 03-15-2016, 05:30 PM   #118
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
When updating my devedeng SlackBuild to 4.6.1 I realized it was installing stuff to "usr/share/doc", oops...
Also, gnome-common is not directly needed for devedeng and as far as I can tell its not needed for pygobject3-python3 either. That was a dependency left over from the previous pygobject3 slackbuild, but seems either erroneous or just outdated?

Code:
diff -u /home/orbea/gittings/orbea/SlackBuilds/multimedia/devedeng/devedeng.SlackBuild devedeng/devedeng.SlackBuild
--- /home/orbea/gittings/orbea/SlackBuilds/multimedia/devedeng/devedeng.SlackBuild	2016-03-07 09:06:51.204139378 -0800
+++ devedeng/devedeng.SlackBuild	2016-03-15 12:56:26.780113691 -0700
@@ -23,8 +23,8 @@
 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 PRGNAM=devedeng
-VERSION=${VERSION:-4.5.0}
-BUILD=${BUILD:-2}
+VERSION=${VERSION:-4.6.1}
+BUILD=${BUILD:-1}
 TAG=${TAG:-_SBo}
 
 if [ -z "$ARCH" ]; then
@@ -60,7 +60,9 @@
 mv $PKG/usr/share/man $PKG/usr
 
 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a README.md $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a COPYING *.md $PKG/usr/doc/$PRGNAM-$VERSION
+mv $PKG/usr/share/doc/$PRGNAM/html $PKG/usr/doc/$PRGNAM-$VERSION
+rm -rf $PKG/usr/share/doc
 cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
 
 mkdir -p $PKG/install
diff -u /home/orbea/gittings/orbea/SlackBuilds/multimedia/devedeng/devedeng.info devedeng/devedeng.info
--- /home/orbea/gittings/orbea/SlackBuilds/multimedia/devedeng/devedeng.info	2016-03-12 19:02:46.316631751 -0800
+++ devedeng/devedeng.info	2016-03-15 12:46:31.371508031 -0700
@@ -1,8 +1,8 @@
 PRGNAM="devedeng"
-VERSION="4.5.0"
+VERSION="4.6.1"
 HOMEPAGE="http://www.rastersoft.com/programas/devede.html"
-DOWNLOAD="https://github.com/rastersoft/devedeng/archive/4.5.0.tar.gz"
-MD5SUM="f53b5067025d7f0e355f9aa09c933d6f"
+DOWNLOAD="https://github.com/rastersoft/devedeng/archive/4.6.1.tar.gz"
+MD5SUM="2a2b423ab954f6e521242b150d40b13d"
 DOWNLOAD_x86_64=""
 MD5SUM_x86_64=""
 REQUIRES="dvdauthor ffmpeg vcdimager pygobject3-python3"
 
Old 03-16-2016, 05:13 AM   #119
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,661

Rep: Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784Reputation: 1784
Thanks Orbea
your diff has been applied in my branch
 
Old 03-24-2016, 11:59 AM   #120
ecoslacker
Member
 
Registered: Feb 2011
Location: The Matrix
Distribution: Slackware
Posts: 30

Rep: Reputation: 0
I have a question: Should the package poppler-qt5 be updated to poppler-0.42.0? that is the version of poppler that comes with -current now.
 
  


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 08:39 AM.

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