Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Sep 2018 13:45:55 +0000 (UTC)
From:      Wen Heping <wen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480606 - in head/sysutils/py-salt: . files
Message-ID:  <201809241345.w8ODjtOp006014@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wen
Date: Mon Sep 24 13:45:55 2018
New Revision: 480606
URL: https://svnweb.freebsd.org/changeset/ports/480606

Log:
  - Update to 2018.3.2
  - Fix the py3 loader issue
  
  PR:		231609
  Submitted by:	christer.edwards@gmail.com(maintainer)

Added:
  head/sysutils/py-salt/files/patch-salt_loader.py   (contents, props changed)
Modified:
  head/sysutils/py-salt/Makefile
  head/sysutils/py-salt/distinfo

Modified: head/sysutils/py-salt/Makefile
==============================================================================
--- head/sysutils/py-salt/Makefile	Mon Sep 24 12:46:12 2018	(r480605)
+++ head/sysutils/py-salt/Makefile	Mon Sep 24 13:45:55 2018	(r480606)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	salt
-PORTVERSION=	2018.3.1
-PORTREVISION=	0
+PORTVERSION=	2018.3.2
 CATEGORIES=	sysutils python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

Modified: head/sysutils/py-salt/distinfo
==============================================================================
--- head/sysutils/py-salt/distinfo	Mon Sep 24 12:46:12 2018	(r480605)
+++ head/sysutils/py-salt/distinfo	Mon Sep 24 13:45:55 2018	(r480606)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1528982610
-SHA256 (salt-2018.3.1.tar.gz) = 7b1d59067b8eb61a23884078e0b8afc02ed8800c5c00f09405ae9e03491ed3db
-SIZE (salt-2018.3.1.tar.gz) = 12939682
+TIMESTAMP = 1534903119
+SHA256 (salt-2018.3.2.tar.gz) = d86eeea2e5387f4a64bbf0a11d103bfc8aac1122e19d39cc0945d33efdc797bd
+SIZE (salt-2018.3.2.tar.gz) = 12996445

Added: head/sysutils/py-salt/files/patch-salt_loader.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/py-salt/files/patch-salt_loader.py	Mon Sep 24 13:45:55 2018	(r480606)
@@ -0,0 +1,11 @@
+--- salt/loader.py
++++ salt/loader.py
+@@ -1240,7 +1240,7 @@
+                 try:
+                     pycache_files = [
+                         os.path.join('__pycache__', x) for x in
+-                        sorted(os.listdir(os.path.join(mod_dir, '__pycache__')))
++                        sorted(os.listdir(os.path.join(mod_dir, '__pycache__'))) if not x.endswith('opt-1.pyc') and not x.endswith('opt-2.pyc')
+                     ]
+                 except OSError:
+                     pass



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809241345.w8ODjtOp006014>