aboutsummaryrefslogtreecommitdiff
path: root/devel/boost-jam
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2018-04-18 13:57:42 +0000
committerJan Beich <jbeich@FreeBSD.org>2018-04-18 13:57:42 +0000
commitcc95712fbe92854d4a2177b6d45cbdcc9d5f1b44 (patch)
treed32a20416ca4506d36f2b454f7246d7a03954197 /devel/boost-jam
parent077df7502b0a47ecb16bd89a724591a51c6c1248 (diff)
downloadports-cc95712fbe92854d4a2177b6d45cbdcc9d5f1b44.tar.gz
ports-cc95712fbe92854d4a2177b6d45cbdcc9d5f1b44.zip
devel/boost-*: update to 1.67.0
Notes
Notes: svn path=/head/; revision=467711
Diffstat (limited to 'devel/boost-jam')
-rw-r--r--devel/boost-jam/Makefile1
-rw-r--r--devel/boost-jam/distinfo6
-rw-r--r--devel/boost-jam/files/patch-debugger.c20
3 files changed, 3 insertions, 24 deletions
diff --git a/devel/boost-jam/Makefile b/devel/boost-jam/Makefile
index 6eece79a6480..6668f5553fdd 100644
--- a/devel/boost-jam/Makefile
+++ b/devel/boost-jam/Makefile
@@ -2,7 +2,6 @@
# $FreeBSD$
PORTNAME= boost-jam
-PORTREVISION= 1
COMMENT= Build tool from the boost.org
PLIST_FILES= bin/bjam
diff --git a/devel/boost-jam/distinfo b/devel/boost-jam/distinfo
index 8bf36733ec16..136eb633d89b 100644
--- a/devel/boost-jam/distinfo
+++ b/devel/boost-jam/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1513209395
-SHA256 (boost_1_66_0.tar.bz2) = 5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9
-SIZE (boost_1_66_0.tar.bz2) = 85995778
+TIMESTAMP = 1523454535
+SHA256 (boost_1_67_0.tar.bz2) = 2684c972994ee57fc5632e03bf044746f6eb45d4920c343937a465fd67a5adba
+SIZE (boost_1_67_0.tar.bz2) = 87336566
diff --git a/devel/boost-jam/files/patch-debugger.c b/devel/boost-jam/files/patch-debugger.c
deleted file mode 100644
index 42091af8aba8..000000000000
--- a/devel/boost-jam/files/patch-debugger.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- debugger.c.orig 2017-12-13 23:56:50 UTC
-+++ debugger.c
-@@ -1102,7 +1102,7 @@ static void debug_start_child( int argc, const char *
- PROCESS_INFORMATION pi = { NULL, NULL, 0, 0 };
- STARTUPINFO si = { sizeof( STARTUPINFO ), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0 };
-- assert( DEBUG_STATE == DEBUG_NO_CHILD );
-+ assert( debug_state == DEBUG_NO_CHILD );
- if ( ! CreatePipe( &pipe1[ 0 ], &pipe1[ 1 ], &sa, 0 ) )
- {
- printf("internal error\n");
-@@ -1189,7 +1189,7 @@ static void debug_start_child( int argc, const char *
- int read_fd;
- int pid;
- int i;
-- assert( DEBUG_STATE == DEBUG_NO_CHILD );
-+ assert( debug_state == DEBUG_NO_CHILD );
- pipe(pipe1);
- pipe(pipe2);
- pid = fork();