LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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-20-2017, 04:29 AM   #2446
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled

@Johannnes,

actually I had already included kmod, as I missed it for something, although unfortunately I don't remember exactly what right now. I will check how big is a container with these packages added.
 
Old 06-20-2017, 04:54 AM   #2447
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
News - GStreamer 1.12.1 stable release:

https://gstreamer.freedesktop.org/releases/1.12/#1.12.1
https://gstreamer.freedesktop.org/src/?C=M;O=D


automake-1.15.1:

https://fossies.org/linux/automake/NEWS
ftp://ftp.gnu.org/gnu/automake/automake-1.15.1.tar.xz

Last edited by gmgf; 06-20-2017 at 05:02 AM.
 
1 members found this post helpful.
Old 06-20-2017, 12:22 PM   #2448
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Quote:
Originally Posted by Didier Spaier View Post
@Johannnes,

actually I had already included kmod, as I missed it for something, although unfortunately I don't remember exactly what right now. I will check how big is a container with these packages added.

One of them?:
Code:
sbbdep --whoneeds /var/log/packages/kmod-22-x86_64-1 
[...]
eudev-3.1.5-x86_64-8
kmod-22-x86_64-1
pciutils-3.4.1-x86_64-2
--
Best regards,
Andrzej Telszewski
 
1 members found this post helpful.
Old 06-20-2017, 07:17 PM   #2449
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
gtk+-3.22.16
http://ftp.gnome.org/pub/gnome/sourc...3.22.16.tar.xz
 
1 members found this post helpful.
Old 06-21-2017, 04:37 AM   #2450
franzen
Member
 
Registered: Nov 2012
Distribution: slackware
Posts: 535

Rep: Reputation: 379Reputation: 379Reputation: 379Reputation: 379
Hi,

Quote:
Tue Jun 20 05:08:21 UTC 2017
...
ap/lxc-2.0.8-x86_64-1.txz: Upgraded.
Since lxc 2.x.x, starting containers was simplified, the screen -dmS construction isn't needed anymore.

man lxc-start
Quote:
-d, --daemon
Run the container as a daemon. As the container has no more tty, if an error occurs nothing will be displayed, the log file can
be used to check the error. (This is the default mode)
Suggested patch to simplify the startup-script:


Code:
diff -ru ../lxc.orig/rc.lxc ./rc.lxc
--- ../lxc.orig/rc.lxc	2016-04-26 00:00:00.000000000 +0200
+++ ./rc.lxc	2017-02-21 16:43:44.000000000 +0100
@@ -17,11 +17,7 @@
     if [ "$(lxc-info -n $CONTAIN -c lxc.start.auto)" = "lxc.start.auto = 1"  ]; then
       if [ "$(/usr/bin/lxc-info -s -n $CONTAIN | grep STOPPED$)" ]; then
         echo "Starting LXC container ${CONTAIN}."
-        if [ -x /usr/bin/screen ]; then
-          /usr/bin/screen -dmS init-${CONTAIN} /usr/bin/lxc-start -n $CONTAIN
-        else
-          /usr/bin/lxc-start -n $CONTAIN -d
-        fi
+        /usr/bin/lxc-start -n $CONTAIN
         /usr/bin/lxc-wait -n $CONTAIN -s RUNNING
         if [ $? -gt 0 ]; then
           return 2
 
1 members found this post helpful.
Old 06-21-2017, 09:15 AM   #2451
Fellype
Member
 
Registered: Jul 2013
Location: Guaratingueta / Brazil
Distribution: Slackware
Posts: 60

Rep: Reputation: 31
gnuplot 5.0.6 (stable version) is available:
https://sourceforge.net/projects/gnu...gnuplot/5.0.6/

Release notes:
http://gnuplot.info/ReleaseNotes_5_0_6.html

Best regards.
 
3 members found this post helpful.
Old 06-21-2017, 04:49 PM   #2452
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
The x264 developers are playing hardball and the latest x264 from git will not compile with the version of nasm shipped with Slackware -current. Minimum version required by x264 is now nasm-2.13:

Code:
Found no assembler
Minimum version is nasm-2.13
If you really want to compile without asm, configure with --disable-asm.
Latest stable version is here:

http://www.nasm.us/pub/nasm/releaseb...2.13.01.tar.xz

but there are some issues with the standard Slackbuild, perl font errors when generating docs...

Edit: It is a bit of a tussle to add to Slackware because of this insanity with building docs. Under -current these perl modules are required:
  • IO::String
  • Font::TTF::Font
  • Sort::Versions

as well as installation of Clear-Sans font pack. An option to disable docs would be better I suspect but it all works now and x264 is happy again...

Last edited by andrew.46; 06-21-2017 at 05:39 PM.
 
2 members found this post helpful.
Old 06-21-2017, 05:51 PM   #2453
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,504

Rep: Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461Reputation: 8461
Quote:
Originally Posted by andrew.46 View Post
Edit: It is a bit of a tussle to add to Slackware because of this insanity with building docs. Under -current these perl modules are required:
  • IO::String
  • Font::TTF::Font
  • Sort::Versions

as well as installation of Clear-Sans font pack. An option to disable docs would be better I suspect but it all works now and x264 is happy again...
And the docs that it fails building (bloated PDFs) are ones that we never even packaged! The only docs we've packaged are the info files, and they've apparently dropped support for creating those as well. Anyway, it's easy enough to quit having the SlackBuild try to make all the docs and have it only make the .txt file instead, so we'll do that. I imagine this one should be a bugfix for 14.2 also so that people don't run into problems trying to build the latest with the SBo script.
 
7 members found this post helpful.
Old 06-23-2017, 01:34 AM   #2454
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
poppler-0.56.0:

https://poppler.freedesktop.org/
https://poppler.freedesktop.org/poppler-0.56.0.tar.xz
 
1 members found this post helpful.
Old 06-23-2017, 04:01 AM   #2455
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
GLib 2.52.3:

http://ftp.gnome.org/pub/gnome/sourc...ib-2.52.3.news
http://ftp.gnome.org/pub/gnome/sourc...-2.52.3.tar.xz
 
1 members found this post helpful.
Old 06-23-2017, 04:01 AM   #2456
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,212

Rep: Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998Reputation: 998
dosfstools-4.1:

https://github.com/dosfstools/dosfstools/releases
https://github.com/dosfstools/dosfst...ols-4.1.tar.xz

Last edited by gmgf; 06-23-2017 at 04:09 AM.
 
1 members found this post helpful.
Old 06-23-2017, 04:02 PM   #2457
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,335

Rep: Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930Reputation: 930
xterm-330
ftp://invisible-island.net/xterm/xterm-330.tgz

glibmm-2.52.0
http://ftp.gnome.org/pub/GNOME/sourc...-2.52.0.tar.xz

gtkmm-3.22.1
http://ftp.gnome.org/pub/GNOME/sourc...-3.22.1.tar.xz

Last edited by USUARIONUEVO; 06-23-2017 at 04:04 PM.
 
1 members found this post helpful.
Old 06-24-2017, 02:08 AM   #2458
nobodino
Senior Member
 
Registered: Jul 2010
Location: Near Bordeaux in France
Distribution: slackware, slackware from scratch, LFS, slackware [arm], linux Mint...
Posts: 1,564

Rep: Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892Reputation: 892
Some not very popular packages:
-reiserfsprogs: 3.6.26
-isapnptools: 1.27
-dialog: 1.3_20170509
-efibootmgr(+efivar: 31): 15
-kbd: 1.15.5 or (2.0.4 + check)
-logrotate: 3.11.0
-lrzip: 0.631
-lvm2: 2.02.171
-mt-st: 1.1
-time: 1.7.2
-ghostscript: 9.21
-hplip: 3.17.6
-doxygen (+icoutils): 1.8.13
-p2c: 1.22

Last edited by nobodino; 06-25-2017 at 02:55 AM. Reason: !
 
2 members found this post helpful.
Old 06-24-2017, 01:05 PM   #2459
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
httpd 2.4.26

https://www.apache.org/dist/httpd/CHANGES_2.4.26
http://apache.mirrors.spacedump.net/...2.4.26.tar.bz2
https://www.apache.org/dist/httpd/ht...26.tar.bz2.asc
Fixes https://cve.mitre.org/cgi-bin/cvenam...=CVE-2017-3167

Last edited by mats_b_tegner; 06-24-2017 at 01:19 PM.
 
1 members found this post helpful.
Old 06-25-2017, 12:32 AM   #2460
Darth Vader
Senior Member
 
Registered: May 2008
Location: Romania
Distribution: DARKSTAR Linux 2008.1
Posts: 2,727

Rep: Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247
IF we arrive to rebuilding/upgrading the LAMP stack, I would like to suggest (again) the addition of XMLRPC support to PHP.

This is used by PHP to make RPC API calls to other sites, and heavily used by complex monsters like Moodle, a widely used e-Learning Platform, but also very useful for (and used by) CMS engines like Drupal or Joomla!

We have the following associated build options for this XMLRPC support:
Code:
--with-xmlrpc
This will build the XMLRPC as built-in support, introducing a very small increase in PHP binaries size.

OR
Code:
--with-xmlrpc=shared
This will build the XMLRPC support as a shared library, optionally loaded at run-time.

Last edited by Darth Vader; 06-25-2017 at 01:59 AM.
 
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
[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 09:48 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