Update to 1.6.0

With hat:	puppet
This commit is contained in:
Romain Tartière 2019-04-03 18:43:15 +00:00
parent 785c90a06b
commit bec5018ba3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=497744
3 changed files with 4 additions and 18 deletions

View file

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= leatherman
PORTVERSION= 1.5.4
PORTREVISION= 2
PORTVERSION= 1.6.0
CATEGORIES= devel
MAINTAINER= puppet@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1545174153
SHA256 (puppetlabs-leatherman-1.5.4_GH0.tar.gz) = f4b777de15f89ee0f5db99d065ca96290559e91ceadee39671e0f68318c84f97
SIZE (puppetlabs-leatherman-1.5.4_GH0.tar.gz) = 814395
TIMESTAMP = 1553537986
SHA256 (puppetlabs-leatherman-1.6.0_GH0.tar.gz) = bc5a157a9bab1dfa466ff1d70e040c4be0430ebd635e974ef09a49008cfab835
SIZE (puppetlabs-leatherman-1.6.0_GH0.tar.gz) = 814463

View file

@ -1,13 +0,0 @@
--- execution/src/posix/execution.cc.orig 2018-09-29 16:21:31 UTC
+++ execution/src/posix/execution.cc
@@ -314,9 +314,7 @@ namespace leatherman { namespace executi
}
// Close all open file descriptors above stderr
- for (uint64_t i = (STDERR_FILENO + 1); i < max_fd; ++i) {
- close(i);
- }
+ closefrom(STDERR_FILENO + 1);
// Execute the given program; this should not return if successful
execve(program, const_cast<char* const*>(argv), const_cast<char* const*>(envp));