LinuxQuestions.org
Help answer threads with 0 replies.
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 10-28-2016, 06:14 PM   #346
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 USUARIONUEVO View Post
sparsehash --> link broken
Fixed in my branch
 
Old 10-28-2016, 06:40 PM   #347
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
libewf --> broken link
 
Old 10-28-2016, 06:49 PM   #348
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 USUARIONUEVO View Post
libewf --> broken link
Fixed in my branch

Thanks
 
Old 10-28-2016, 08:50 PM   #349
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
sorry , but gambas3 is not fixed.


problem is arround qt5 ,...and variable do..if qt5 exists , then enable qt5

in some case ... no need variables..need directly

Quote:
--disable-qt5

im getting same error in build 2 like build 1.

upgrade version or directly make a disable qt5


gambas3-3.8.4 + qt5 = conflict build 1 and build 2 same errors arround qt5 core.


qt5 package ,is compiled form sbo

system is slackware64-14.2 updated (last updates 1 october )

Last edited by USUARIONUEVO; 10-28-2016 at 08:58 PM.
 
Old 10-28-2016, 11:27 PM   #350
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
sequel --> fails to build

slackware64-14.2
 
Old 10-28-2016, 11:48 PM   #351
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 USUARIONUEVO View Post
sorry , but gambas3 is not fixed.


problem is arround qt5 ,...and variable do..if qt5 exists , then enable qt5

in some case ... no need variables..need directly




im getting same error in build 2 like build 1.

upgrade version or directly make a disable qt5


gambas3-3.8.4 + qt5 = conflict build 1 and build 2 same errors arround qt5 core.


qt5 package ,is compiled form sbo

system is slackware64-14.2 updated (last updates 1 october )
sorry, i made a typo
it should be fixed in my branch now
 
Old 10-28-2016, 11:49 PM   #352
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 USUARIONUEVO View Post
sequel --> fails to build

slackware64-14.2
this works fine here
 
Old 10-29-2016, 06:34 AM   #353
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
Quote:
Originally Posted by willysr View Post
this works fine here

yea, sorry for noise arround that.

Its working , sorry.


OFFTOPIC: Sorry , but i comment , if you think arround how is possible im getting amount of "links" broken etc , im use a little script with the help of slapt-src.

Im not a bash pro , but this is the easy code , you can change SECTION , to test a group of slackbuilds, like perl , ruby , or some category with non too much big number of packages.


Quote:
#!/bin/bash

# Colors
CIERRE=${CIERRE:-"[0m"}
AMARILLO=${AMARILLO:-"[1;33m"}
ROSA=${ROSA:-"[1;35m"}

BRANCH=`cat /etc/slackware-version|cut -d ' ' -f2`
WEB=https://slackbuilds.org/repository

# First update package list
echo "$AMARILLO Updating package list from slackbuilds ... $CIERRE"
slapt-src -u

# Ruby
SECTION=ruby
for x in `curl -s $WEB/$BRANCH/$SECTION/| grep 'href="/repository/'|grep $BRANCH/$SECTION|cut -d / -f5|sort`; do
EXISTE=`ls /var/log/packages/|grep -o $x|head -1`
if [ -z "$EXISTE" ]; then
clear
echo
echo "$AMARILLO You no have this:$ROSA $x $CIERRE"
sleep 1
yes y | TAG=sw slapt-src -i $x || exit 1
clear
fi
done


Im now testing ruby section , frist i get is this ...MD5 error in package heroku-client

Quote:
Error de MD5SUM para heroku-client.tgz

Last edited by USUARIONUEVO; 10-29-2016 at 06:52 AM.
 
Old 10-29-2016, 07:34 AM   #354
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
daq ,fails to build.

i fix adding -j1 in the make

Quote:
make -j1
 
Old 10-29-2016, 07:42 AM   #355
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 USUARIONUEVO View Post
Im now testing ruby section , frist i get is this ...MD5 error in package heroku-client
Fixed in my branch

daq, however, built fine normally without adding -j1 here
 
Old 10-29-2016, 08:02 AM   #356
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
gtkdialog --> link broken


arround daq , i read i found the solution in google.

problem is when "parallel build" , im not sure what cpus do a paralle builds, i have i7 6700k ,and problem exist.


pastebin from console compiling daq --> error
http://pastebin.com/G0HHqWWQ

./scanner.l:70:21: error fatal: tokdefs.h NO SUCH FILE OR DIRECTORY


making -j1 builds fine.

Last edited by USUARIONUEVO; 10-29-2016 at 08:10 AM.
 
Old 10-29-2016, 07:06 PM   #357
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 854

Rep: Reputation: 383Reputation: 383Reputation: 383Reputation: 383
The latest texlive does not build on -current

relevant output:
Code:
make[6]: Entering directory '/tmp/SBo/texlive-20160523-source/build/texk/dvipng/doc'
restore=: && backupdir=".am$$" && \
am__cwd=`pwd` && CDPATH="${ZSH_VERSION+.}:" && cd ../../../../texk/dvipng/doc && \
rm -rf $backupdir && mkdir $backupdir && \
if (/usr/bin/makeinfo --version) >/dev/null 2>&1; then \
  for f in ../../../../texk/dvipng/doc/dvipng.info ../../../../texk/dvipng/doc/dvipng.info-[0-9] ../../../../texk/dvipng/doc/dvipng.info-[0-9][0-9] ../../../../texk/dvipng/doc/dvipng.i[0-9] ../../../../texk/dvipng/doc/dvipng.i[0-9][0-9]; do \
    if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
  done; \
else :; fi && \
cd "$am__cwd"; \
if /usr/bin/makeinfo -D no-option -D no-env -D no-acronym   -I ../../../../texk/dvipng/doc \
 -o ../../../../texk/dvipng/doc/dvipng.info ../../../../texk/dvipng/doc/dvipng.texi; \
then \
  rc=0; \
  CDPATH="${ZSH_VERSION+.}:" && cd ../../../../texk/dvipng/doc; \
else \
  rc=$?; \
  CDPATH="${ZSH_VERSION+.}:" && cd ../../../../texk/dvipng/doc && \
  $restore $backupdir/* `echo "./../../../../texk/dvipng/doc/dvipng.info" | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
/bin/sh: line 19:  3279 Segmentation fault      ( /usr/bin/makeinfo --version ) > /dev/null 2>&1
/bin/sh: line 19:  3280 Segmentation fault      /usr/bin/makeinfo -D no-option -D no-env -D no-acronym -I ../../../../texk/dvipng/doc -o ../../../../texk/dvipng/doc/dvipng.info ../../../../texk/dvipng/doc/dvipng.texi
Makefile:415: recipe for target '../../../../texk/dvipng/doc/dvipng.info' failed
make[6]: *** [../../../../texk/dvipng/doc/dvipng.info] Error 139
make[6]: Leaving directory '/tmp/SBo/texlive-20160523-source/build/texk/dvipng/doc'
Makefile:373: recipe for target 'all' failed
make[5]: *** [all] Error 2
make[5]: Leaving directory '/tmp/SBo/texlive-20160523-source/build/texk/dvipng/doc'
Makefile:906: recipe for target 'all-recursive' failed
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory '/tmp/SBo/texlive-20160523-source/build/texk/dvipng'
Makefile:675: recipe for target 'all' failed
make[3]: *** [all] Error 2
make[3]: Leaving directory '/tmp/SBo/texlive-20160523-source/build/texk/dvipng'
Makefile:901: recipe for target 'recurse' failed
make[2]: *** [recurse] Error 1
make[2]: Leaving directory '/tmp/SBo/texlive-20160523-source/build/texk'
Makefile:481: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/tmp/SBo/texlive-20160523-source/build/texk'
Makefile:569: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1
[root: /home/eduardo/Downloads/build/texlive]#
I tried to build this against the following texlive versions:

Code:
texlive-20160523-x86_64-6jsc
texlive-docs-20160622-noarch-1jsc
texlive-extra-20160622-noarch-4jsc
texlive-fonts-20160622-noarch-3jsc
 
Old 10-29-2016, 07:10 PM   #358
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
o.O

Code:
/bin/sh: line 19:  3279 Segmentation fault      ( /usr/bin/makeinfo --version ) > /dev/null 2>&1
/bin/sh: line 19:  3280 Segmentation fault      /usr/bin/makeinfo -D no-option -D no-env -D no-acronym -I ../../../../texk/dvipng/doc -o ../../../../texk/dvipng/doc/dvipng.info ../../../../texk/dvipng/doc/dvipng.texi
 
Old 10-29-2016, 09:59 PM   #359
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 USUARIONUEVO View Post
gtkdialog --> link broken


arround daq , i read i found the solution in google.

problem is when "parallel build" , im not sure what cpus do a paralle builds, i have i7 6700k ,and problem exist.


pastebin from console compiling daq --> error
http://pastebin.com/G0HHqWWQ

./scanner.l:70:21: error fatal: tokdefs.h NO SUCH FILE OR DIRECTORY


making -j1 builds fine.
Both daq and gtkdialog are now fixed in my branch
 
Old 10-30-2016, 04:49 AM   #360
franzen
Member
 
Registered: Nov 2012
Distribution: slackware
Posts: 535

Rep: Reputation: 379Reputation: 379Reputation: 379Reputation: 379
Quote:
Originally Posted by orbea View Post
o.O

Code:
/bin/sh: line 19:  3279 Segmentation fault      ( /usr/bin/makeinfo --version ) > /dev/null 2>&1
/bin/sh: line 19:  3280 Segmentation fault      /usr/bin/makeinfo -D no-option -D no-env -D no-acronym -I ../../../../texk/dvipng/doc -o ../../../../texk/dvipng/doc/dvipng.info ../../../../texk/dvipng/doc/dvipng.texi
@sombragris: What happens if you type "/usr/bin/makeinfo --version"?

Quote:
I tried to build this against the following texlive versions:
The texlive build doesn't depend on another texlive-package.
 
  


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 10:36 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