diff options
author | Ben Woods <woodsb02@FreeBSD.org> | 2019-02-27 15:05:33 +0000 |
---|---|---|
committer | Ben Woods <woodsb02@FreeBSD.org> | 2019-02-27 15:05:33 +0000 |
commit | 84be5ab890ac8bfc2ba94b44817c0b0f879a67e9 (patch) | |
tree | b50d087595bac13c8a4cc092818d88531353e4da /sysutils/py-salt | |
parent | 710df75c4dd52634f9edba59fbe23a51a4fcd29b (diff) |
Notes
Diffstat (limited to 'sysutils/py-salt')
-rw-r--r-- | sysutils/py-salt/Makefile | 3 | ||||
-rw-r--r-- | sysutils/py-salt/distinfo | 6 | ||||
-rw-r--r-- | sysutils/py-salt/files/patch-salt_modules_freebsd__sysctl.py | 21 |
3 files changed, 4 insertions, 26 deletions
diff --git a/sysutils/py-salt/Makefile b/sysutils/py-salt/Makefile index 51f8cb54503e..82657c815c91 100644 --- a/sysutils/py-salt/Makefile +++ b/sysutils/py-salt/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= salt -PORTVERSION= 2018.3.3 -PORTREVISION= 1 +PORTVERSION= 2019.2.0 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/sysutils/py-salt/distinfo b/sysutils/py-salt/distinfo index 5502fbaeac96..9d070fb3a13b 100644 --- a/sysutils/py-salt/distinfo +++ b/sysutils/py-salt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1540613424 -SHA256 (salt-2018.3.3.tar.gz) = dcf30d2e8eae105a72977c51cfc253fbc4dc28b2f71277fdce9d35de1eb63e15 -SIZE (salt-2018.3.3.tar.gz) = 13953724 +TIMESTAMP = 1551187154 +SHA256 (salt-2019.2.0.tar.gz) = 5695bb2b3fa288bcfc0e3b93d9449afd75220bd8f0deefb5e7fc03af381df6cd +SIZE (salt-2019.2.0.tar.gz) = 14952746 diff --git a/sysutils/py-salt/files/patch-salt_modules_freebsd__sysctl.py b/sysutils/py-salt/files/patch-salt_modules_freebsd__sysctl.py deleted file mode 100644 index ecf227971d1a..000000000000 --- a/sysutils/py-salt/files/patch-salt_modules_freebsd__sysctl.py +++ /dev/null @@ -1,21 +0,0 @@ -commit 101f170fe525d7f9f8d0c9b80a78af2ed1f6f069 -Author: Mathieu Arnold <mat@mat.cc> -Date: 2018-06-13 13:02:37 +0200 - - Fix patching sysctl.conf on FreeBSD. - - In b3c1be27fb the lines were stripped of their ending \n, but the \n was - never added back to the lines, so calling writelines generates a broken - one line file. - ---- salt/modules/freebsd_sysctl.py.orig 2018-04-02 16:35:12 UTC -+++ salt/modules/freebsd_sysctl.py -@@ -165,7 +165,7 @@ def persist(name, value, config='/etc/sy - if not edited: - nlines.append("{0}\n".format(_formatfor(name, value, config))) - with salt.utils.files.fopen(config, 'w+') as ofile: -- nlines = [salt.utils.stringutils.to_str(_l) for _l in nlines] -+ nlines = [salt.utils.stringutils.to_str(_l) + '\n' for _l in nlines] - ofile.writelines(nlines) - if config != '/boot/loader.conf': - assign(name, value) |