View | Details | Raw Unified | Return to bug 211532
Collapse All | Expand All

(-)py-salt/Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	salt
4
PORTNAME=	salt
5
PORTVERSION=	2016.3.1
5
PORTVERSION=	2016.3.2
6
PORTREVISION=	1
7
CATEGORIES=	sysutils python
6
CATEGORIES=	sysutils python
8
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)py-salt/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1466111476
1
TIMESTAMP = 1470165080
2
SHA256 (salt-2016.3.1.tar.gz) = e6bdba4693116430c2af57497eb63399e3a139ac0a7016fa0870b49fbe987f75
2
SHA256 (salt-2016.3.2.tar.gz) = 6a84b724d02b0dba438dea57650724064675d82620e66749bd2fe8f21da71be0
3
SIZE (salt-2016.3.1.tar.gz) = 7932479
3
SIZE (salt-2016.3.2.tar.gz) = 8014793
(-)py-salt/files/patch-salt_grains_core.py (-12 lines)
Lines 1-12 Link Here
1
# Issue #33608
2
# https://github.com/saltstack/salt/issues/33608
3
--- salt/grains/core.py.orig	2016-05-25 22:30:31 UTC
4
+++ salt/grains/core.py
5
@@ -1422,6 +1422,7 @@ def os_data():
6
     else:
7
         grains['os'] = grains['kernel']
8
     if grains['kernel'] == 'FreeBSD':
9
+        grains.update(_bsd_cpudata(grains))
10
         try:
11
             grains['osrelease'] = __salt__['cmd.run']('freebsd-version -u').split('-')[0]
12
         except salt.exceptions.CommandExecutionError:
(-)py-salt/files/patch-salt_states_cron.py (-28 lines)
Lines 1-28 Link Here
1
# Fixes cron.file from upstream issue #34094/#34095 [1].  This will be in
2
# 2016.3.2.
3
# https://github.com/saltstack/salt/issues/34094
4
# https://github.com/saltstack/salt/pull/34095
5
--- salt/states/cron.py.orig    2016-06-13 22:17:50 UTC
6
+++ salt/states/cron.py
7
@@ -540,6 +540,7 @@ def file(name,
8
             __env__,
9
             context,
10
             defaults,
11
+            False,        # skip_verify
12
             **kwargs
13
         )
14
     except Exception as exc:
15
@@ -573,12 +574,12 @@ def file(name,
16
         ret['comment'] = 'Unable to manage file: {0}'.format(exc)
17
         return ret
18
 
19
+    cron_ret = None
20
     if ret['changes']:
21
         cron_ret = __salt__['cron.write_cron_file_verbose'](user, cron_path)
22
         ret['changes'] = {'diff': ret['changes']['diff']}
23
         ret['comment'] = 'Crontab for user {0} was updated'.format(user)
24
     elif ret['result']:
25
-        cron_ret = None
26
         ret['comment'] = 'Crontab for user {0} is in the correct ' \
27
                          'state'.format(user)
28
 
(-)py-salt/pkg-plist (+2 lines)
Lines 655-660 Link Here
655
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/dbhandle.pyc
655
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/dbhandle.pyc
656
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/exceptions.py
656
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/exceptions.py
657
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/exceptions.pyc
657
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/exceptions.pyc
658
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/kiwiproc.py
659
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/kiwiproc.pyc
658
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/query.py
660
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/query.py
659
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/query.pyc
661
%%PYTHON_SITELIBDIR%%/salt/modules/inspectlib/query.pyc
660
%%PYTHON_SITELIBDIR%%/salt/modules/introspect.py
662
%%PYTHON_SITELIBDIR%%/salt/modules/introspect.py

Return to bug 211532