pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: pkg/50567



The following reply was made to PR pkg/50567; it has been noted by GNATS.

From: Travis Paul <Tr%visPaul.me@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: 
Subject: Re: pkg/50567
Date: Mon, 8 Feb 2016 22:59:17 -0500

 Updated patch for latest changes to package
 
 Index: Makefile
 ===================================================================
 RCS file: /cvsroot/pkgsrc/sysutils/salt/Makefile,v
 retrieving revision 1.35
 diff -u -r1.35 Makefile
 --- Makefile    7 Feb 2016 23:55:01 -0000       1.35
 +++ Makefile    9 Feb 2016 03:58:04 -0000
 @@ -3,6 +3,7 @@
   DISTNAME=      salt-2015.8.5
   CATEGORIES=    sysutils
   MASTER_SITES=  ${MASTER_SITE_PYPI:=s/salt/}
 +PKGREVISION=   1
 
   MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
   HOMEPAGE=      http://saltstack.org/
 Index: distinfo
 ===================================================================
 RCS file: /cvsroot/pkgsrc/sysutils/salt/distinfo,v
 retrieving revision 1.18
 diff -u -r1.18 distinfo
 --- distinfo    7 Feb 2016 23:55:01 -0000       1.18
 +++ distinfo    9 Feb 2016 03:58:04 -0000
 @@ -5,3 +5,4 @@
   SHA512 (salt-2015.8.5.tar.gz) = 
 715709798fd1f4410ef204545a84e34d3ecc0f080905b7ae29ce19d273c1ed6865f56e025e59d2506301970ad05081ff119caec0ced03dcbe5803f9f00eb64f8
   Size (salt-2015.8.5.tar.gz) = 6877624 bytes
   SHA1 (patch-salt_modules_status.py) = 
 5253782b046c2f7b809682f52ce4d04dab1c81ac
 +SHA1 (patch-salt_modules_cron.py) = 
 e271bfc252c5c9263d9029f2334ba742cc1be199
 cvs diff: Diffing files
 cvs diff: Diffing files/smf
 cvs diff: Diffing patches
 Index: patches/patch-salt_modules_cron.py
 ===================================================================
 RCS file: patches/patch-salt_modules_cron.py
 diff -N patches/patch-salt_modules_cron.py
 --- /dev/null   1 Jan 1970 00:00:00 -0000
 +++ patches/patch-salt_modules_cron.py  9 Feb 2016 03:58:04 -0000
 @@ -0,0 +1,13 @@
 +$NetBSD$
 +
 +--- salt/modules/cron.py.orig  2015-12-15 22:38:23.793040947 +0000
 ++++ salt/modules/cron.py
 +@@ -150,7 +150,7 @@ def _get_cron_cmdstr(path, user=None):
 +     '''
 +     cmd = 'crontab'
 +
 +-    if user:
 ++    if user and __grains__.get('os_family') not in ('Solaris', 'AIX'):
 +         cmd += ' -u {0}'.format(user)
 +
 +     return '{0} {1}'.format(cmd, path)
 


Home | Main Index | Thread Index | Old Index