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


Closed Thread
  Search this Thread
Old 12-09-2015, 05:38 PM   #616
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled

Hi,

Quote:
Originally Posted by Nille_kungen View Post
Mesa 11.0.7 but this time around also mesa-demos been updated to 8.3.0
I was 2 minutes faster, but you're one package ahead


--
Best regards,
Andrzej Telszewski
 
Old 12-09-2015, 10:12 PM   #617
Nille_kungen
Member
 
Registered: Jul 2005
Distribution: Slackware64-current
Posts: 587

Rep: Reputation: 201Reputation: 201Reputation: 201
Quote:
Originally Posted by atelszewski View Post
Hi,


I was 2 minutes faster, but you're one package ahead


--
Best regards,
Andrzej Telszewski
Yes you did but i had it written for a while before i posted since i think some scripts should be updated but said to myself "i do it later" instead, but since an release is getting closer i did it now.
Thanks for your post that motivated me to do it now

mesa.slackbuild i think it should be possible to pass VERSION= to this script since mesa i something that many tests newer versions of, and the capital M:s i an relic from old mesa packaging and doesn't make sense anymore and only brings an inconsistency between package naming and doc path.
Instead of only changeing from M to m i think it's better to use PKGNAM for consistency.
Code:
--- b/mesa.SlackBuild   2015-11-23 22:19:21.000000000 +0100
+++ a/mesa.SlackBuild   2015-12-10 03:49:47.722195055 +0100
@@ -21,8 +21,8 @@
 #  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 PKGNAM=mesa
-VERSION=11.0.6
-DEMOVERS=8.2.0
+VERSION=${VERSION:-11.0.7}
+DEMOVERS=${DEMOVERS:-8.3.0}
 BUILD=${BUILD:-1}
 
 NUMJOBS=${NUMJOBS:--j7}
@@ -173,12 +173,12 @@
   gzip -9 $PKG/usr/info/*
 fi
 
-mkdir -p $PKG/usr/doc/Mesa-$VERSION/html
+mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION/html
 cp -a \
   docs/COPYING* docs/relnotes/relnotes-${VERSION}*.html docs/README* docs/GL* \
-  $PKG/usr/doc/Mesa-$VERSION
-cp -a docs/*.html $PKG/usr/doc/Mesa-$VERSION/html
-rm -f $PKG/usr/doc/Mesa-$VERSION/html/relnotes*.html
+  $PKG/usr/doc/$PKGNAM-$VERSION
+cp -a docs/*.html $PKG/usr/doc/$PKGNAM-$VERSION/html
+rm -f $PKG/usr/doc/$PKGNAM-$VERSION/html/relnotes*.html
 
 mkdir -p $PKG/install
 cat $CWD/slack-desc > $PKG/install/slack-desc
The get-mesa.sh needs an update as well since it package the git sources as the old tarballs and is there for inconsistent with the mesa.slackbuild
Code:
--- b/get-mesa.sh       2015-12-10 02:52:06.934162071 +0100
+++ a/get-mesa.sh       2015-12-10 03:03:31.512168596 +0100
@@ -1,5 +1,5 @@
 # Pull a stable branch + patches
-BRANCH=7.10
+BRANCH=${BRANCH:-7.10}
 
 rm -rf mesa
 git clone git://anongit.freedesktop.org/git/mesa/mesa
@@ -11,10 +11,10 @@
 # Cleanup.  We're not packing up the whole git repo.
 ( cd mesa && find . -type d -name ".git*" -exec rm -rf {} \; 2> /dev/null )
 DATE=$(date +%Y%m%d)
-mv mesa Mesa-${BRANCH}_${HEADISAT}
-tar cf MesaLib-${BRANCH}_${HEADISAT}.tar Mesa-${BRANCH}_${HEADISAT}
-xz -9 MesaLib-${BRANCH}_${HEADISAT}.tar
-rm -rf MesaLib-${BRANCH}_${HEADISAT}
+mv mesa mesa-${BRANCH}_${HEADISAT}
+tar cf mesa-${BRANCH}_${HEADISAT}.tar mesa-${BRANCH}_${HEADISAT}
+xz -9 mesa-${BRANCH}_${HEADISAT}.tar
+rm -rf mesa-${BRANCH}_${HEADISAT}
 echo
-echo "Mesa branch $BRANCH with HEAD at $HEADISAT packaged as MesaLib-${BRANCH}_${HEADISAT}.tar.xz"
+echo "Mesa branch $BRANCH with HEAD at $HEADISAT packaged as mesa-${BRANCH}_${HEADISAT}.tar.xz"
 echo
Maybe Pat wants us to edit the script but i for one likes to be able to pass a variable to the script instead of editing when testing different versions.
 
Old 12-10-2015, 03:55 AM   #618
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,233

Rep: Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027
Today A new cairo release 1.14.6:

http://cairographics.org/releases/cairo-1.14.6.tar.xz

cups-filters-1.3.0:

http://openprinting.org/download/cup...s-1.3.0.tar.xz
 
Old 12-10-2015, 06:45 AM   #619
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
I guess since -current is tracking the longterm 4.1.x kernel there might be interest in the 2015-12-09 release of 4.1.14...
 
Old 12-10-2015, 12:16 PM   #620
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

In /etc/rc.d/rc.S there is 3 second delay before mounting non-root file systems.
Since I migrated to SSD, my boot time is 14 seconds, 3 of which are the 3 second pre delay
Could we make it configurable? Something like:
Code:
if [ -f /etc/NON_ROOT_MOUNT_DELAY ]; then
  sleep $(cat /etc/NON_ROOT_MOUNT_DELAY)
else
  sleep 3
fi
Not a big deal though.

--
Best regards,
Andrzej Telszewski
 
Old 12-10-2015, 01:03 PM   #621
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,065

Rep: Reputation: Disabled
I would favor continue letting the admins in concern (you, in this case) edit the script as they see fit over adding a new config task for all users.

In the (unlikely) case a new sysvinit-scripts package would be released for a stable release, you would get a rc.S.new to consider, so you will be able to decide what to do if that happens.

Last edited by Didier Spaier; 12-10-2015 at 01:04 PM.
 
Old 12-10-2015, 01:20 PM   #622
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

@Didier Spaier I know all of that, for that reason, what I proposed brings no change or need to tweak for those who don't want it. And as I said, for me it's no big deal at all. I rarely reboot my machine The boot just look more consistent without pausing

--
Best regards,
Andrzej Telszewski
 
Old 12-10-2015, 01:55 PM   #623
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,065

Rep: Reputation: Disabled
Then, instead of:
Code:
sleep $(cat /etc/NON_ROOT_MOUNT_DELAY)
I suggest:
Code:
sleep $(</etc/NON_ROOT_MOUNT_DELAY)
 
Old 12-10-2015, 02:03 PM   #624
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Wow I wouldn't understand what the second one does if I didn't have the first one to compare

--
Best regards,
Andrzej Telszewski
 
1 members found this post helpful.
Old 12-10-2015, 02:58 PM   #625
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,559

Original Poster
Rep: Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351Reputation: 1351
I wonder if replacing that "sleep 3" with something like "udevadm settle || sleep 3" (to account for the two people who still refuse to install udev) would be sufficient.
 
1 members found this post helpful.
Old 12-10-2015, 03:12 PM   #626
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

USB is tricky beast, you can never be sure when the device becomes available. I understand that 3 seconds seem to work most of the time, but when I was doing an embedded device with Tegra T20, I had to make it 6 seconds, otherwise it was unreliable. Well, one thing is that I used Buildroot, which boots faster, another thing is that, I didn't use udev. I don't know how well udev settle would work in that situation. Something to be aware of.

--
Best regards,
Andrzej Telszewski
 
Old 12-10-2015, 08:59 PM   #627
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,533

Rep: Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515Reputation: 8515
Quote:
Originally Posted by USUARIONUEVO View Post
@rworkman , thanks , now is clear as a water

Here is a wpa_supplicant 2.5 with very large bug fixes ,some bug fixes are related with SECURITy.

http://w1.fi/wpa_supplicant/

2015-09-27 - v2.5
* fixed P2P validation of SSID element length before copying it
[http://w1.fi/security/2015-1/] (CVE-2015-1863)
* fixed WPS UPnP vulnerability with HTTP chunked transfer encoding
[http://w1.fi/security/2015-2/] (CVE-2015-4141)
* fixed WMM Action frame parser (AP mode)
[http://w1.fi/security/2015-3/] (CVE-2015-4142)
* fixed EAP-pwd peer missing payload length validation
[http://w1.fi/security/2015-4/]
(CVE-2015-4143, CVE-2015-4144, CVE-2015-4145, CVE-2015-4146)

* fixed validation of WPS and P2P NFC NDEF record payload length
[http://w1.fi/security/2015-5/]
All of these CVEs were already patched in Slackware 14.0+ (before they had CVEs, actually), but we'll probably take this as an upgrade for current anyway.
 
5 members found this post helpful.
Old 12-10-2015, 10:33 PM   #628
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,344

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
@volkerdi , thanks man.

Im only posting some i486 remaining packages with updates availables.


Im not sure if , for final version goes with full i586 packages or some mixed with remanent i486 , because no upgrade available , no build in i586 , or another reasons.


Thanks, one more time to all slackware developers.
 
Old 12-11-2015, 04:54 AM   #629
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,233

Rep: Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027Reputation: 1027
gtk+2 bug fix version (2.24.29)

http://ftp.gnome.org/pub/gnome/sourc...+-2.24.29.news

http://ftp.gnome.org/pub/gnome/sourc...2.24.29.tar.xz

gtk+3 bug fix version (3.18.6)

http://ftp.gnome.org/pub/gnome/sourc...k+-3.18.6.news

http://ftp.gnome.org/pub/gnome/sourc...-3.18.6.tar.xz
 
1 members found this post helpful.
Old 12-11-2015, 05:43 AM   #630
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,915

Rep: Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033Reputation: 5033
If we're talking about managing parameters for rc.* files, then I'd rather see a rc.conf/rc.conf.local mechanism than the addition of arbitrarily named files littering /etc.
 
2 members found this post helpful.
  


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] vdso_time error after current updates chrissi29 Slackware 4 03-20-2013 04:09 AM
xfce 4.10 and latest updates to current BCarey Slackware 7 07-16-2012 10:56 AM
wget error with new current updates fogpipe Slackware 2 07-14-2012 03:16 PM
Massive updates in -current mlangdn Slackware 53 07-01-2012 08:15 AM
Slackware current updates today! neo Slackware 2 04-22-2005 05:32 PM

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

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