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


Closed Thread
  Search this Thread
Old 06-03-2016, 05:45 PM   #1171
Ellendhel
Member
 
Registered: Aug 2015
Location: Wilmington, NC
Distribution: Slackware
Posts: 64

Rep: Reputation: 51

ntp-4.2.8p8 has been published to fix a security vulnerability.

It would be nice to have this updated for the new version (it will affect the previous one as well, of course).
 
1 members found this post helpful.
Old 06-03-2016, 06:37 PM   #1172
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Hey Patrick, is there anyway we could get a simple script for llvm, like mesa, that fetches the latest git/svn edition in the /source?

Just in case someone might need it.

Last edited by ReaperX7; 06-03-2016 at 06:46 PM.
 
Old 06-03-2016, 06:48 PM   #1173
archfan
Member
 
Registered: Mar 2016
Location: /dev/hug
Distribution: Slackware 14.2 x64
Posts: 85

Rep: Reputation: 32
(Is there a benefit in running a more recent llvm version? I get why someone would run mesa-git but what about llvm? Just asking out of curiosity. )
 
Old 06-03-2016, 06:57 PM   #1174
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
I would imagine a developer might want to see and test things for him/herself and a simple script might be beneficial to aiding them. Newer features might be beneficial even to some and some extras for llvm often require, since they are git/svn sources, the most recent code from llvm.
 
Old 06-03-2016, 06:58 PM   #1175
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,512

Rep: Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479
Quote:
Originally Posted by ReaperX7 View Post
Just in case someone might need it.
https://en.wikipedia.org/wiki/You_aren't_gonna_need_it
 
5 members found this post helpful.
Old 06-03-2016, 08:07 PM   #1176
Nille_kungen
Member
 
Registered: Jul 2005
Distribution: Slackware64-current
Posts: 587

Rep: Reputation: 201Reputation: 201Reputation: 201
Quote:
Originally Posted by archfan View Post
(Is there a benefit in running a more recent llvm version? I get why someone would run mesa-git but what about llvm? Just asking out of curiosity. )
If you got amd hardware and use open drivers then you might need to update llvm before you update mesa to get the most out of your hardware.
If anyone wants a script for it then start by writing the script and then you may try to get it included and show that there's use for it, and the ones that like to use the script could use it even if it's included or not.
 
Old 06-03-2016, 11:28 PM   #1177
DarkVision
Member
 
Registered: Jul 2007
Posts: 199

Rep: Reputation: Disabled
Quote:
Originally Posted by ReaperX7 View Post
Hey Patrick, is there anyway we could get a simple script for llvm, like mesa, that fetches the latest git/svn edition in the /source?
If you just want to get latest llvm/git without any extras like compiler-rt or frontends... i have a lot of self-made buildscripts for various packages that will fetch latest git (or a specific git-commit). I just modified a sample to get latest llvm from a github-mirror:
Code:
#!/bin/sh
CWD=$(pwd)

# This is the username for the github project.
GITUSER=llvm-mirror
# This is the repository name on github.
GITPROJECT=llvm

# Get the commit history.
echo "Retrieving latest llvm/git commit..."
wget -O ${CWD}/tmp -q https://github.com/${GITUSER}/${GITPROJECT}/commits/master

# Get the date of last commit.
PACKAGE_RELEASE_DATE_GIT=`grep -m1 "time datetime" ${CWD}/tmp | sed "s,.*datetime=\",,g" | sed "s,T.*,,g" | sed "s,-,,g" | sed "s,^20,,g"`
# Get the commit id.
PACKAGE_RELEASE_REV_GIT=`grep -m1 "a href=.*/commits/" ${CWD}/tmp | sed "s,.*/commits/,,g" | sed "s,\".*,,g"`

# Remove the temporary stuff...
rm ${CWD}/tmp

# Name of the archive to create...
PACKAGE_SOURCE_NAME=llvm-${PACKAGE_RELEASE_DATE_GIT}git${PACKAGE_RELEASE_REV_GIT:0:7}.tar.gz

# Already there?
if ! test -f ${PACKAGE_SOURCE_NAME}; then
  # Get latest git...
  wget -O ${PACKAGE_SOURCE_NAME} \
       https://github.com/${GITUSER}/${GITPROJECT}/tarball/$PACKAGE_RELEASE_REV_GIT
  echo
  echo "LLVM git/master with HEAD at ${PACKAGE_RELEASE_REV_GIT} packaged as ${PACKAGE_SOURCE_NAME}"
  echo
else
  # latest git already there...
  echo
  echo "Nothing to download."
  echo "LLVM git/master with HEAD at ${PACKAGE_RELEASE_REV_GIT} already packaged as ${PACKAGE_SOURCE_NAME}"
  echo
fi
For LLVM and/or MESA from git... it may compile or not
 
Old 06-04-2016, 04:16 AM   #1178
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Code:
xfce/xfce4-panel-4.12.0-x86_64-3.txz:  Rebuilt.
  Blink taskbar buttons for notification 4 times, not G_MAXUINT times.
Thank you!

--
Best regards,
Andrzej Telszewski
 
Old 06-04-2016, 04:38 AM   #1179
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,222

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
maybe too late:

xf86-input-evdev-2.10.3

ftp://ftp.x.org/pub/individual/drive...-2.10.3.tar.gz

intel-gpu-tools-1.15.tar.gz

ftp://ftp.x.org/pub/individual/app/i...ls-1.15.tar.gz

Last edited by gmgf; 06-04-2016 at 04:44 AM.
 
Old 06-04-2016, 09:06 AM   #1180
stureedy
Member
 
Registered: Jul 2009
Location: Lexington, Kentucky, USA
Distribution: Slackware
Posts: 45
Blog Entries: 4

Rep: Reputation: 2
KRDC and lack of xfreerdp

Is there a plan to recompile XRDC to use rdesktop or to add xfreerdp? As it stands now, KRDC seems broken.

When trying to connect to rdp://user@winbox.fake gives the error: "Could not start "xfreerdp"; make sure xfreerdp is properly installed."
 
Old 06-04-2016, 10:09 AM   #1181
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
I found a minor issue while working on a python3 version of python-setuptools. It isn't copying any of the documentation over because no .txt files exist in the source. Quick patch available below.

Code:
--- python-setuptools/python-setuptools.SlackBuild      2016-05-30 14:03:18.000000000 -0400
+++ python-setuptools/python-setuptools.SlackBuild.new  2016-06-04 11:07:06.439785313 -0400
@@ -56,7 +56,7 @@
 python setup.py install --root=$PKG
 
 mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION
-cp -a *.txt $PKG/usr/doc/$PKGNAM-$VERSION
+cp -a CHANGES.rst PKG-INFO README.rst $PKG/usr/doc/$PKGNAM-$VERSION
 find $PKG/usr/doc/$PKGNAM-$VERSION -type f -exec chmod 0644 {} \;
 
 mkdir -p $PKG/install
 
Old 06-04-2016, 01:02 PM   #1182
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
One (possibly final one)... I already requested this earlier, and I don't know if it was missed or just decided against. For those who sometimes install into /usr/local, the packagename.pc file might be put in /usr/local/share/pkgconfig instead of /usr/local/lib{64}/pkgconfig. I know this is the case with compiz-bcop. This can cause ./configure to not detect the package without overriding the PKG_CONFIG_PATH to include the extra location. After a bit of thought, I decided it'd probably be best to just add the extra location to PKG_CONFIG_PATH rather than symlink /usr/local/lib64/pkgconfig and /usr/local/share/pkgconfig like is done in /usr, just in case files already exist in /usr/local/share/pkgconfig.

In case it was missed and not ignored, here's a patch for 64bit:

Code:
--- /etc/profile.d/pkgconfig.sh 2010-07-28 21:21:12.000000000 -0400
+++ pkgconfig.sh        2016-06-04 13:45:12.816493584 -0400
@@ -1,7 +1,7 @@
 #!/bin/sh
 if [ ! "$PKG_CONFIG_PATH" = "" ]; then
-  PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/local/lib64/pkgconfig
+  PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/local/lib64/pkgconfig:/usr/local/share/pkgconfig
 else
-  PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig
+  PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/local/share/pkgconfig
 fi
 export PKG_CONFIG_PATH
only in patch2:
unchanged:
--- /etc/profile.d/pkgconfig.csh        2010-07-28 21:21:12.000000000 -0400
+++ pkgconfig.csh       2016-06-04 13:46:15.981704709 -0400
@@ -1,6 +1,6 @@
 #!/bin/csh
 if ( $?PKG_CONFIG_PATH ) then
-    setenv PKG_CONFIG_PATH ${PKG_CONFIG_PATH}:/usr/local/lib64/pkgconfig
+    setenv PKG_CONFIG_PATH ${PKG_CONFIG_PATH}:/usr/local/lib64/pkgconfig:/usr/local/share/pkgconfig
 else
-    setenv PKG_CONFIG_PATH /usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig
+    setenv PKG_CONFIG_PATH /usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/local/share/pkgconfig
 endif
And 32bit:

Code:
--- /etc/profile.d/pkgconfig.sh 2010-07-28 21:21:12.000000000 -0400
+++ pkgconfig.sh        2016-06-04 13:45:12.816493584 -0400
@@ -1,7 +1,7 @@
 #!/bin/sh
 if [ ! "$PKG_CONFIG_PATH" = "" ]; then
-  PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig
+  PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig
 else
-  PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
+  PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/usr/local/share/pkgconfig
 fi
 export PKG_CONFIG_PATH
only in patch2:
unchanged:
--- /etc/profile.d/pkgconfig.csh        2010-07-28 21:21:12.000000000 -0400
+++ pkgconfig.csh       2016-06-04 13:46:15.981704709 -0400
@@ -1,6 +1,6 @@
 #!/bin/csh
 if ( $?PKG_CONFIG_PATH ) then
-    setenv PKG_CONFIG_PATH ${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig
+    setenv PKG_CONFIG_PATH ${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig
 else
-    setenv PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/usr/lib/pkgconfig
+    setenv PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/usr/local/share/pkgconfig
 endif
 
Old 06-04-2016, 01:10 PM   #1183
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,512

Rep: Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479Reputation: 8479
Quote:
Originally Posted by bassmadrigal View Post
After a bit of thought, I decided it'd probably be best to just add the extra location to PKG_CONFIG_PATH rather than symlink /usr/local/lib64/pkgconfig and /usr/local/share/pkgconfig like is done in /usr, just in case files already exist in /usr/local/share/pkgconfig.
Seems safe enough. One point though -- /usr/lib{,64}/pkgconfig and /usr/share/pkgconfig have not been symlinked in quite some time, and the install script is supposed to break the link and properly sort the files if it finds the link. Can you check if the link is gone on your machine? If it isn't (and you have the latest pkg-config package) it's a bug.
 
Old 06-04-2016, 03:15 PM   #1184
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by volkerdi View Post
Seems safe enough.
Thanks Pat!

Quote:
Originally Posted by volkerdi View Post
One point though -- /usr/lib{,64}/pkgconfig and /usr/share/pkgconfig have not been symlinked in quite some time, and the install script is supposed to break the link and properly sort the files if it finds the link. Can you check if the link is gone on your machine? If it isn't (and you have the latest pkg-config package) it's a bug.
That's what I get for not paying good enough attention and doing stuff on both 14.1 and -current machines. My 14.1 machine is symlinked, but all -current installs are separate. Sorry for the confusion on that...
 
1 members found this post helpful.
Old 06-04-2016, 03:51 PM   #1185
Hasek39
Member
 
Registered: Jul 2015
Location: Pittsburgh, PA, US
Distribution: Slackware
Posts: 120

Rep: Reputation: Disabled
Will there be Python 3.x by default in upcoming stable release of 14.2 or will it remains on 2.7.x branch?
 
  


Closed Thread



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] how to show the current time at the top in the current shell Always ? rohitchauhan Linux - General 5 04-09-2014 03:05 PM
Slackware ARM (current) epic mistake: the current Android kernels are kicked out! Darth Vader Slackware 16 08-25-2013 04:36 PM
[SOLVED] setup fails on most current Slackware-current March 26, 2012 AlleyTrotter Slackware 15 04-09-2012 06:05 AM
Observation of Feb -current vs March -current Hangaber Slackware 14 03-12-2010 08:26 AM
cvs diff the most current and second last current version powah Linux - Software 1 03-30-2006 01:02 PM

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

All times are GMT -5. The time now is 02:21 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