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-12-2016, 05:05 PM   #1276
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
cups-filters-1.9.0.tar.xz


Slackware Team --

cups-filters version 1.9.0 was released on June 09

http://openprinting.org/download/cup...s-1.9.0.tar.xz

The new version builds and 'seems to run fine' without any changes to the existing cups-filters.SlackBuild script.

'seems to run fine' because I am still learning how to properly deploy cups-browsed ( part of cups-filters ) so I can talk to a cups server running version 1.4.2 from Current on cups 2.1.3

Thanks !

-- kjh
 
Old 06-12-2016, 05:21 PM   #1277
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,508

Rep: Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473Reputation: 8473
Quote:
Originally Posted by DarkVision View Post
I created a patch to simply delete the files after the build. Same for hplip.
I don't care if those files are there. Thanks though.
 
Old 06-12-2016, 05:35 PM   #1278
slalik
Member
 
Registered: Nov 2014
Location: Moscow
Distribution: Slackware
Posts: 233

Rep: Reputation: 203Reputation: 203Reputation: 203
xterm-325

http://invisible-island.net/xterm/xterm.log.html
 
Old 06-13-2016, 04:41 AM   #1279
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,059

Rep: Reputation: Disabled
gettext 0.19.8.1

Both packages gettext and gettext-tools build OK, nothing to worry about in the build logs.

I made a few tests of gettext and tools, no issue found.

ftp://ftp.gnu.org/gnu/gettext/gettext-0.19.8.1.tar.xz
ftp://ftp.gnu.org/gnu/gettext/gettex...8.1.tar.xz.sig

PS Thanks for having upgraded before the release of Slackware 14.2

Last edited by Didier Spaier; 06-13-2016 at 06:13 PM. Reason: PS added.
 
Old 06-13-2016, 01:46 PM   #1280
Richard Twat
LQ Newbie
 
Registered: Jul 2009
Location: The Netherlands
Distribution: Slackware
Posts: 19

Rep: Reputation: 19
Quote:
a/sysvinit-scripts-2.0-noarch-33.txz: Rebuilt.
rc.S: In cryptsetup script, support supplying a password of "none"
(interactive entry) for non-swap partitions to allow specifying additional
options. Support a new option "discard" to pass the --allow-discards option
to cryptsetup when unlocking a volume, which can potentially improve
performance and longevity on some SSDs. Thanks to Nathan Wallace.
Perhaps it would be nice to also add the discard option in the initrd ?
Once unlocked from initrd it cannot be re-unlocked from rc.S with the discard option (at least last time I tried this).
 
Old 06-13-2016, 04:16 PM   #1281
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
Quote:
n/vsftpd-3.0.3-x86_64-3.txz: Rebuilt.
Patched to handle NULL returns from recent glibc crypt(). Thanks to nixi.
Looks like at least imapd from alpine and rexecd from netkit-rsh have the same problem:

alpine:
Code:
...
# sl4	Linux using -lshadow to get the crypt() function
# sl5	Linux with shadow passwords, no extra libraries
# slx	Linux using -lcrypt to get the crypt() function
...
Code:
slx:	# Secure Linux
	@echo You are building for libc6/glibc versions of Secure Linux
	@echo If you want libc5 versions you must use sl5 instead!
	@echo If you want libc4 versions you must use sl4 instead!
	$(BUILD) `$(CAT) SPECIALS` OS=$@ \
	 SIGTYPE=psx CHECKPW=psx CRXTYPE=nfs \
	 SPOOLDIR=/var/spool \
	 ACTIVEFILE=/var/lib/news/active \
	 RSHPATH=/usr/bin/rsh \
	 BASECFLAGS="$(GCCCFLAGS)" \
	 BASELDFLAGS="-lcrypt"
ckp_psx.c:
Code:
...
    if ((sp = getspnam (pw->pw_name)) && sp->sp_lstchg &&
	((sp->sp_lstchg < 0) || (sp->sp_max <= 0) ||
	 ((sp->sp_lstchg + sp->sp_max) >= now)) &&
	((sp->sp_expire <= 0) || (sp->sp_expire >= now)) &&
	sp->sp_pwdp && sp->sp_pwdp[0] && sp->sp_pwdp[1] &&
	!strcmp (sp->sp_pwdp,(char *) crypt (pass,sp->sp_pwdp))) {
...

rexecd.c:
Code:
#else /* !USE_PAM */
       /* All of the following issues are dealt with in the PAM configuration
	  file, so put all authentication/priviledge checks before the
	  corresponding #endif below. */

	setpwent();
	pwd = getpwnam(user);
	if (pwd == NULL) {
		/* Log failed attempts. */
		syslog(LOG_ERR, "LOGIN FAILURE from %.128s, %s", remote, user);
		fatal("Login incorrect.\n");
	}
	endpwent();
#ifdef USE_SHADOW
	{
		struct spwd *sp = getspnam(pwd->pw_name);
		endspent();
		if (sp) {
			pwd->pw_passwd = sp->sp_pwdp;
		}
	}
#endif
	if (*pwd->pw_passwd != '\0') {
		namep = crypt(pass, pwd->pw_passwd);
		if (strcmp(namep, pwd->pw_passwd)) {
			/* Log failed attempts. */
			syslog(LOG_ERR, "LOGIN FAILURE from %.128s, %s",
			       remote, user);
			fatal("Login incorrect.\n");
		}
	}

	/* Erase the cleartext password from memory. */
	memset(pass, 0, sizeof(pass));
	/* Clear out crypt()'s internal state, too. */
	crypt("flurgle", pwd->pw_passwd);

	/* Disallow access to root account. */
	if (pwd->pw_uid == 0) {
		syslog(LOG_ERR, "%s LOGIN REFUSED from %.128s", user, remote);
		fatal("Login incorrect.\n");
	}
#ifdef RESTRICT_FTP
	/* Disallow access to accounts in /etc/ftpusers. */
	fp = fopen(_PATH_FTPUSERS, "r");
	if (fp != NULL) {
	    while (fgets(buf, sizeof(buf), fp) != NULL) {
		if ((cp = strchr(buf, '\n')) != NULL)
			*cp = '\0';
		if (strcmp(buf, pwd->pw_name) == 0) {
			syslog(LOG_ERR, "%s LOGIN REFUSED from %.128s",
			       user, remote);
			fatal("Login incorrect.\n");
		}
	    }
	    fclose(fp);
	}
	else syslog(LOG_ERR, "cannot open /etc/ftpusers");
#endif
#endif /* !USE_PAM */

Cheers
 
3 members found this post helpful.
Old 06-13-2016, 07:56 PM   #1282
Cesare
Member
 
Registered: Jun 2010
Posts: 65

Rep: Reputation: 113Reputation: 113
Please consider rebuilding pidgin with configure option --with-system-ssl-certs=/etc/ssl/certs

By default pidgin uses its own certificate store in /usr/share/purple/ca-certs which contains a limited number of root certificates. As a result, pidgin can't verify certificates such as those issued by Let's Encrypt and will bail with an error message when connecting to a service using such a certificate.

Rebuilding pidgin using the system store solves this problem. Still, additional root certificates will be installed to pidgin's own store (propably needed/used for proprietary services like AIM and MSN).

This issue is not limited to the upcoming 14.2 - at least 14.1 is affected, too.
 
Old 06-13-2016, 11:28 PM   #1283
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002
gparted-0.26.1:

http://gparted.sourceforge.net/news.php

https://sourceforge.net/projects/gpa...README.md/view

https://sourceforge.net/projects/gparted/files/gparted/
 
Old 06-14-2016, 12:04 AM   #1284
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002
file-5.28:

ftp://ftp.astron.com/pub/file/file-5.28.tar.gz

changes since 5.25

2016-04-18 9:35 Christos Zoulas <christos@zoulas.com>

* Errors comparing DER entries or computing offsets
are just indications of malformed non-DER files.
Don't print them.
* Offset comparison was off-by-one.
* Fix compression code (Werner Fink)
* Put new bytes constant in the right file (not the generated one)

2016-04-16 18:34 Christos Zoulas <christos@zoulas.com>

* release 5.26

2016-03-31 13:50 Christos Zoulas <christos@zoulas.com>

* make the number of bytes read from files configurable.

2016-03-21 13:40 Christos Zoulas <christos@zoulas.com>

* Add bounds checks for DER code (discovered by Thomas Jarosch)
* Change indirect recursion limit to indirect use count and
bump from 15 to 50 to prevent abuse.

2016-03-13 20:39 Christos Zoulas <christos@zoulas.com>

* Add -00 which prints filename\0description\0

2016-03-01 13:28 Christos Zoulas <christos@zoulas.com>

* Fix ID3 indirect parsing

2016-01-19 10:18 Christos Zoulas <christos@zoulas.com>

* add DER parsing capability

2015-11-13 10:35 Christos Zoulas <christos@zoulas.com>

* provide dprintf(3) for the OS's that don't have it.

2015-11-11 16:25 Christos Zoulas <christos@zoulas.com>

* redo the compression code report decompression errors

2015-11-10 23:25 Christos Zoulas <christos@zoulas.com>

* REG_STARTEND code is not working as expected, delete it.

2015-11-09 16:05 Christos Zoulas <christos@zoulas.com>

* Add zlib support if we have it.

2015-11-05 11:22 Christos Zoulas <christos@zoulas.com>

* PR/492: compression forking was broken with magic_buffer.
 
Old 06-14-2016, 01:58 AM   #1285
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002
For Pat, i think gparted-0.25.0 include in current have this bug 'Fix core dump crash in OperationDelete::get_partition_new()'

(because, I had this problem with 0.25.0)

according the changelog it seem be solved in the new.

Last edited by gmgf; 06-14-2016 at 02:15 AM.
 
Old 06-14-2016, 03:39 AM   #1286
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

Git 2.9.0 released.

Code:
Version 2.9.0 of the Git source-code management system is out.
There are various improvements and small changes that maintainers
of scripts using Git will want to look at, but no major changes.
--
Best regards,
Andrzej Telszewski

Last edited by atelszewski; 06-14-2016 at 08:35 AM.
 
Old 06-14-2016, 11:03 AM   #1287
ivandi
Member
 
Registered: Jul 2009
Location: Québec, Canada
Distribution: CRUX, Debian
Posts: 528

Rep: Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866Reputation: 866
Samba

The samba package can be made a bit friendlier to the average home user.

Add a usershare folder by default:
Code:
mkdir -p $PKG/var/lib/samba/usershares
chmod 1770 $PKG/var/lib/samba/usershares
chown root:users $PKG/var/lib/samba/usershares
And install a default smb.conf if there is no one in place:
Code:
[global]
   workgroup = WORKGROUP

   server string = %h Samba Server
   server role = standalone server

   security = user
   map to guest = bad user

   log file = /var/log/samba/samba.%m
   max log size = 1000

   dns proxy = no 

   usershare path = /var/lib/samba/usershares
   usershare max shares = 10
   usershare allow guests = yes

[homes]
   comment = Home Directories
   browseable = no
   writable = yes

[printers]
   comment = All Printers
   path = /var/spool/samba
   browseable = no
   guest ok = no
   writable = no
   printable = yes
This will allow users to share folders in KDE Dolphin. Like Simple File Sharing in Windows.


Cheers
 
2 members found this post helpful.
Old 06-14-2016, 11:06 PM   #1288
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,215

Rep: Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002Reputation: 1002
maybe too late:

CUPS 2.1.4

http://www.cups.org/

https://github.com/apple/cups/releases

CHANGES IN CUPS V2.1.4

- Fixed reporting of 1284 Device IDs (Issue #3835, PR #3836)
- Fixed printing of multiple files to raw queues (Issue #4782)
- The scheduler did not implement the Hold-New-Jobs opertion correctly
(Issue #4767)
- The ipptool program truncated values at 8k (Issue #4786)
- The ipptool program did not correctly report uriScheme values in plist
output (Issue #4785)
- The cups-lpd mini-daemon incorrectly included the document-name
attribute when creating a job. It should only be included when
sending a job (Issue #4790)
- USB quirk updates (Issue #4778, Issue #4789)
- Documentation update (Issue #4772)

Last edited by gmgf; 06-14-2016 at 11:12 PM.
 
Old 06-15-2016, 11:02 AM   #1289
Thom1b
Member
 
Registered: Mar 2010
Location: France
Distribution: Slackware
Posts: 485

Rep: Reputation: 339Reputation: 339Reputation: 339Reputation: 339
libgcrypt-1.7.1 is released if not too late.

Quote:
The GnuPG Project is pleased to announce the availability of Libgcrypt
version 1.7.1. This is a maintenace release.
https://gnupg.org/ftp/gcrypt/libgcry...-1.7.1.tar.bz2
https://gnupg.org/ftp/gcrypt/libgcry....1.tar.bz2.sig
 
Old 06-15-2016, 03:45 PM   #1290
DarkVision
Member
 
Registered: Jul 2007
Posts: 199

Rep: Reputation: Disabled
kdelibs-4.14.21 (src) / Shortlog (some fixes and backports).

Tested on -current as of Mon Jun 13 07:07:39 UTC 2016; builds and installs fine. For changed files in the package see attached diff. KDE seem to work well.
Attached Files
File Type: txt 4.14.20-vs-4.14.21.diff.txt (3.8 KB, 15 views)
 
  


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 04:32 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