LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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-11-2014, 07:47 AM   #91
ryanpcmcquen
Member
 
Registered: Apr 2013
Distribution: DistroWanderer
Posts: 381

Rep: Reputation: Disabled
Thumbs up


Quote:
Originally Posted by rworkman View Post
gptfdisk just hit the tree. git and the alsa stuff are in my pending queue already. I'll try to look at python soon.
That is a thing of beauty! Thanks Robby!
 
Old 12-11-2014, 10:57 AM   #92
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,077

Rep: Reputation: Disabled
Quote:
Originally Posted by rworkman View Post
I've got udev from system-215 queued up, but it's unclear as to whether there's any real benefit to using 215 versus 208 or even some other version. It might be worth getting 218 when it releases, as that will be the first version to support the mouse database for libinput.
Yes, according to this commit:
Code:
* The udev hwdb now containes DPI information for mice. For
  details see:

  http://who-t.blogspot.de/2014/12/building-a-dpi-database-for-mice.html
PS The typo is on the original file. But English being no more LP's native language that mine, we can excuse him I presume

Last edited by Didier Spaier; 12-11-2014 at 11:02 AM.
 
Old 12-11-2014, 12:07 PM   #93
55020
Senior Member
 
Registered: Sep 2009
Location: Yorks. W.R. 167397
Distribution: Slackware
Posts: 1,307
Blog Entries: 4

Rep: Reputation: Disabled
FWIW, there was a stable release of xfdesktop (xfdesktop-4.10.3) a couple of weeks ago, with just some boring bug fixes.
 
Old 12-11-2014, 12:19 PM   #94
drmozes
Slackware Contributor
 
Registered: Apr 2008
Distribution: Slackware
Posts: 1,552

Rep: Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314
Quote:
Originally Posted by ReaperX7 View Post
I didn't know about version 3.x being more compatible with BusyBox.
When I was debugging it, I don't recall feeling that it had anything to do with busybox -- more to do with some peculiarities of the installer and the more complex bunch of scripts that dhcpcd v6 had -- which I think are entirely unnecessary for the installer. Version 3 compiles still and it obtains an IP address, so it's fine.

busybox gets updated on ARM more often since for some reason it refuses to compile more readily than x86.
 
Old 12-11-2014, 12:22 PM   #95
drmozes
Slackware Contributor
 
Registered: Apr 2008
Distribution: Slackware
Posts: 1,552

Rep: Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314Reputation: 1314
Quote:
Originally Posted by ReaperX7 View Post
Very true. Speaking of which, isn't the installation disk software created in a similar style to how you create something similar to a base LFS system like CLFS-embedded with a specialized user or chroot jail, or created in the standard system? I don't think this has ever been really discussed much.
It's a mega updated version of this which is from 2006:
ftp://ftp.arm.slackware.com/slackwar...ks/initrd.brew

alienBOB updated it significantly for Slackware64 and the same script is used for all archs, with some wrap up scripts for the couple of ARM installer images.
 
Old 12-11-2014, 03:34 PM   #96
qunying
Member
 
Registered: Jun 2002
Distribution: Slackware
Posts: 258

Rep: Reputation: 147Reputation: 147
I would like to see the gcc got update to 4.9.2, for its better support of Ada 2012.
 
Old 12-11-2014, 04:13 PM   #97
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,560

Rep: Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354
Quote:
Originally Posted by 55020 View Post
FWIW, there was a stable release of xfdesktop (xfdesktop-4.10.3) a couple of weeks ago, with just some boring bug fixes.
Yep, I've got that one, along with a few other xfce thingies. :-)
 
Old 12-11-2014, 06:08 PM   #98
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,077

Rep: Reputation: Disabled
Build material for brltty-5.2

I propose a build material for brltty-5.2.

Here is a tarball, including the source:
http://slint.fr/misc/brltty.txz
http://slint.fr/misc/brltty.txz.md5

Here are the changes in packaging against that of brltty-4.5 shipped in Slackware in /extra, beyond the version:
  • autogen is not run (not needed)
  • The script bp2cf that comes handy to customize the config file is installed in /usr/sbin. It comes from git because the one in the tarball doesn't work with the new config file format.
  • A file to manage the daemon is provided: /etc/rc.d/rc.brltty
  • A file doinst.sh is shipped that configure /etc/rc.d/rc.brltty in addition to /etc/brltty.conf and also inserts this in /etc/rc.S after udev has been initialized:
    Code:
    # Start brltty ASAP so that the user gather all further messages on the
    # braille terminal
    if [ -x /etc/rc.d/rc.brltty ];then
      sleep 3
      /etc/rc.d/rc.brltty start
    fi
    Rationale: this allows the blind user to get all further messages during startup, useful in case of failing file system check for instance.
  • udev rules are shipped in /lib/udev/rules.d/40-usb-brltty.rules. They allow to automatically start brltty with a proper driver as soon as a terminal connected via USB is plugged-in.
Here is the tree:
Code:
.
|-- bp2cf
|-- brltty-5.2.tar.xz
|-- brltty.SlackBuild
|-- brltty.brlapi.pyx.diff.gz
|-- doinst.sh.gz
|-- rc.brltty
`-- slack-desc

Last edited by Didier Spaier; 12-12-2014 at 11:20 AM.
 
Old 12-14-2014, 01:15 AM   #99
speck
Member
 
Registered: Nov 2001
Location: US
Distribution: Slackware 14.2
Posts: 375

Rep: Reputation: 115Reputation: 115
Window Maker has a minor version bump to 0.95.6, but it does contain some nice additions.

Window Maker 0.95.6 was released on August 30th 2014.
  • Window Maker can now load WebP images and support ImageMagick library to support even more formats like SVG, BMP, TGA, ... (David Maciejak)
  • Add mini-window apercu , a small preview of window contents (David Maciejak)
  • Support for up to 9-buttons mouse added (David Maciejak)
  • Many configuration options added to WPrefs.app (Doug Torrance)
  • Add wmiv, an image viewer application (David Maciejak)
  • Bug fixes and code cleanups by various people.

The two current diff patches work on 0.95.6 and I did make a couple changes when building it:
  1. --enable-xrandr is now --enable-randr
  2. Disabled MAGICK support - libMagickWand (--disable-magick), it appears to be a memory hog
 
1 members found this post helpful.
Old 12-14-2014, 01:57 AM   #100
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,560

Rep: Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354
Quote:
Originally Posted by speck View Post
Window Maker has a minor version bump to 0.95.6, but it does contain some nice additions.

Window Maker 0.95.6 was released on August 30th 2014.

...

The two current diff patches work on 0.95.6 and I did make a couple changes when building it:
  1. --enable-xrandr is now --enable-randr
  2. Disabled MAGICK support - libMagickWand (--disable-magick), it appears to be a memory hog
Done with those changes; the --disable-magick part will have to be vetted by Pat though.
 
1 members found this post helpful.
Old 12-14-2014, 02:45 AM   #101
speck
Member
 
Registered: Nov 2001
Location: US
Distribution: Slackware 14.2
Posts: 375

Rep: Reputation: 115Reputation: 115
Many thanks Robby.
 
Old 12-20-2014, 08:18 AM   #102
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,164

Rep: Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336Reputation: 7336
NetworkManager 1.0.0, and, as mentioned in a previous post,

KDE 4.14.x (which will require evix2-0.24).

Last edited by cwizardone; 12-20-2014 at 08:20 AM.
 
Old 12-20-2014, 10:17 AM   #103
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,560

Rep: Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354
Quote:
Originally Posted by cwizardone View Post
NetworkManager 1.0.0, and, as mentioned in a previous post,

KDE 4.14.x (which will require evix2-0.24).
NM-1.0 is already in place here :-) and I'm sure alienBOB has his usual serving of KDE awesomeness :-)
 
2 members found this post helpful.
Old 12-20-2014, 10:51 AM   #104
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
Quote:
Originally Posted by rworkman View Post
NM-1.0 is already in place here :-) and I'm sure alienBOB has his usual serving of KDE awesomeness :-)
Pat needs to upgrade exiv2 first, before he grabs my KDE 4.14.3 sources.

Eric
 
3 members found this post helpful.
Old 12-20-2014, 07:14 PM   #105
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,686

Rep: Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801Reputation: 1801
Quote:
Originally Posted by Alien Bob View Post
Pat needs to upgrade exiv2 first, before he grabs my KDE 4.14.3 sources.

Eric
That would be very helpful, as digiKam can't be built on -current (it does built, but segfault), since it will require exiv2-0.2.4 and KDE libkexiv2 rebuilt against it
 
1 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
slackpkg updated from current rotke Slackware 2 11-05-2012 01:30 PM
[SOLVED] when will -current be updated? danielldaniell Slackware 5 09-05-2009 10:15 AM
Updated Xorg now in -current chess Slackware 55 07-02-2009 07:39 PM
thread title not updated when edited nadroj LQ Suggestions & Feedback 12 12-15-2005 04:34 PM
UPDATED B3D Thread maximalred Linux - Software 0 12-20-2003 11:18 AM

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

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