From owner-svn-ports-branches@freebsd.org Sun Nov 6 05:19:44 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA0DBC30540; Sun, 6 Nov 2016 05:19:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96426B05; Sun, 6 Nov 2016 05:19:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA65JhI2075367; Sun, 6 Nov 2016 05:19:43 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA65JhvF075366; Sun, 6 Nov 2016 05:19:43 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611060519.uA65JhvF075366@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 6 Nov 2016 05:19:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425463 - in branches/2016Q4/devel/openmp: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 05:19:44 -0000 Author: jbeich Date: Sun Nov 6 05:19:43 2016 New Revision: 425463 URL: https://svnweb.freebsd.org/changeset/ports/425463 Log: MFH: r424391 r425461 devel/openmp: minor cleanup - Unbreak on 9.x: needs lang/gcc for - Define LICENSE_FILE - Simplify SOVERSION fix - Move ONLY_FOR_ARCHS to be more visible - Sort USES Approved by: portmgr blanket Approved by: ports-secteam blanket Added: branches/2016Q4/devel/openmp/files/ - copied from r425461, head/devel/openmp/files/ Modified: branches/2016Q4/devel/openmp/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/openmp/Makefile ============================================================================== --- branches/2016Q4/devel/openmp/Makefile Sun Nov 6 04:32:55 2016 (r425462) +++ branches/2016Q4/devel/openmp/Makefile Sun Nov 6 05:19:43 2016 (r425463) @@ -10,20 +10,17 @@ MAINTAINER= bapt@FreeBSD.org COMMENT= Support for the OpenMP language LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= tar:xz cmake perl5 compiler:c11 +ONLY_FOR_ARCHS= amd64 # i386 + +USES= cmake compiler:c++11-lib perl5 tar:xz USE_PERL5= build USE_LDCONFIG= yes -CMAKE_ARGS= -DLIBOMP_LIBFLAGS:STRING="-Wl,-soname,libomp.so.0" -ONLY_FOR_ARCHS= amd64 # i386 PLIST_FILES= include/omp.h \ lib/libgomp.so \ lib/libiomp5.so \ lib/libomp.so.0 \ lib/libomp.so -post-install: - ${MV} ${STAGEDIR}${PREFIX}/lib/libomp.so ${STAGEDIR}${PREFIX}/lib/libomp.so.0 - ${LN} -sf libomp.so.0 ${STAGEDIR}${PREFIX}/lib/libomp.so - .include From owner-svn-ports-branches@freebsd.org Sun Nov 6 15:31:41 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC95CC32CCF; Sun, 6 Nov 2016 15:31:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7A5E73DC; Sun, 6 Nov 2016 15:31:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA6FVeSC018101; Sun, 6 Nov 2016 15:31:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA6FVerl018099; Sun, 6 Nov 2016 15:31:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201611061531.uA6FVerl018099@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 6 Nov 2016 15:31:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425496 - branches/2016Q4/ftp/curl X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 15:31:41 -0000 Author: sunpoet Date: Sun Nov 6 15:31:40 2016 New Revision: 425496 URL: https://svnweb.freebsd.org/changeset/ports/425496 Log: MFH: r425404 - Fix IDN option - Sort PLIST - Bump PORTREVISION for dependency change Approved by: ports-secteam (feld) Modified: branches/2016Q4/ftp/curl/Makefile branches/2016Q4/ftp/curl/pkg-plist Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/ftp/curl/Makefile ============================================================================== --- branches/2016Q4/ftp/curl/Makefile Sun Nov 6 15:01:43 2016 (r425495) +++ branches/2016Q4/ftp/curl/Makefile Sun Nov 6 15:31:40 2016 (r425496) @@ -3,6 +3,7 @@ PORTNAME= curl PORTVERSION= 7.51.0 +PORTREVISION= 1 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet @@ -104,8 +105,8 @@ HTTP2_CONFIGURE_WITH= nghttp2 HTTP2_LIB_DEPENDS= libnghttp2.so:www/nghttp2 HTTP2_RUN_DEPENDS= nghttp2>=1.0.0:www/nghttp2 HTTP2_USES= pkgconfig -IDN_CONFIGURE_WITH= libidn -IDN_LIB_DEPENDS= libidn.so:dns/libidn +IDN_CONFIGURE_WITH= libidn2 +IDN_LIB_DEPENDS= libidn2.so:dns/libidn2 IPV6_CATEGORIES= ipv6 IPV6_CONFIGURE_ENABLE= ipv6 LDAP_CONFIGURE_ENABLE= ldap Modified: branches/2016Q4/ftp/curl/pkg-plist ============================================================================== --- branches/2016Q4/ftp/curl/pkg-plist Sun Nov 6 15:01:43 2016 (r425495) +++ branches/2016Q4/ftp/curl/pkg-plist Sun Nov 6 15:31:40 2016 (r425496) @@ -17,6 +17,55 @@ lib/libcurl.so.7 libdata/pkgconfig/libcurl.pc man/man1/curl-config.1.gz man/man1/curl.1.gz +man/man3/curl_easy_cleanup.3.gz +man/man3/curl_easy_duphandle.3.gz +man/man3/curl_easy_escape.3.gz +man/man3/curl_easy_getinfo.3.gz +man/man3/curl_easy_init.3.gz +man/man3/curl_easy_pause.3.gz +man/man3/curl_easy_perform.3.gz +man/man3/curl_easy_recv.3.gz +man/man3/curl_easy_reset.3.gz +man/man3/curl_easy_send.3.gz +man/man3/curl_easy_setopt.3.gz +man/man3/curl_easy_strerror.3.gz +man/man3/curl_easy_unescape.3.gz +man/man3/curl_escape.3.gz +man/man3/curl_formadd.3.gz +man/man3/curl_formfree.3.gz +man/man3/curl_formget.3.gz +man/man3/curl_free.3.gz +man/man3/curl_getdate.3.gz +man/man3/curl_getenv.3.gz +man/man3/curl_global_cleanup.3.gz +man/man3/curl_global_init_mem.3.gz +man/man3/curl_global_init.3.gz +man/man3/curl_mprintf.3.gz +man/man3/curl_multi_add_handle.3.gz +man/man3/curl_multi_assign.3.gz +man/man3/curl_multi_cleanup.3.gz +man/man3/curl_multi_fdset.3.gz +man/man3/curl_multi_info_read.3.gz +man/man3/curl_multi_init.3.gz +man/man3/curl_multi_perform.3.gz +man/man3/curl_multi_remove_handle.3.gz +man/man3/curl_multi_setopt.3.gz +man/man3/curl_multi_socket_action.3.gz +man/man3/curl_multi_socket_all.3.gz +man/man3/curl_multi_socket.3.gz +man/man3/curl_multi_strerror.3.gz +man/man3/curl_multi_timeout.3.gz +man/man3/curl_multi_wait.3.gz +man/man3/curl_share_cleanup.3.gz +man/man3/curl_share_init.3.gz +man/man3/curl_share_setopt.3.gz +man/man3/curl_share_strerror.3.gz +man/man3/curl_slist_append.3.gz +man/man3/curl_slist_free_all.3.gz +man/man3/curl_strequal.3.gz +man/man3/curl_unescape.3.gz +man/man3/curl_version_info.3.gz +man/man3/curl_version.3.gz man/man3/CURLINFO_ACTIVESOCKET.3.gz man/man3/CURLINFO_APPCONNECT_TIME.3.gz man/man3/CURLINFO_CERTINFO.3.gz @@ -30,9 +79,9 @@ man/man3/CURLINFO_EFFECTIVE_URL.3.gz man/man3/CURLINFO_FILETIME.3.gz man/man3/CURLINFO_FTP_ENTRY_PATH.3.gz man/man3/CURLINFO_HEADER_SIZE.3.gz -man/man3/CURLINFO_HTTPAUTH_AVAIL.3.gz man/man3/CURLINFO_HTTP_CONNECTCODE.3.gz man/man3/CURLINFO_HTTP_VERSION.3.gz +man/man3/CURLINFO_HTTPAUTH_AVAIL.3.gz man/man3/CURLINFO_LASTSOCKET.3.gz man/man3/CURLINFO_LOCAL_IP.3.gz man/man3/CURLINFO_LOCAL_PORT.3.gz @@ -65,21 +114,21 @@ man/man3/CURLINFO_TLS_SSL_PTR.3.gz man/man3/CURLINFO_TOTAL_TIME.3.gz man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3.gz man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3.gz -man/man3/CURLMOPT_MAXCONNECTS.3.gz man/man3/CURLMOPT_MAX_HOST_CONNECTIONS.3.gz man/man3/CURLMOPT_MAX_PIPELINE_LENGTH.3.gz man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS.3.gz -man/man3/CURLMOPT_PIPELINING.3.gz +man/man3/CURLMOPT_MAXCONNECTS.3.gz man/man3/CURLMOPT_PIPELINING_SERVER_BL.3.gz man/man3/CURLMOPT_PIPELINING_SITE_BL.3.gz +man/man3/CURLMOPT_PIPELINING.3.gz man/man3/CURLMOPT_PUSHDATA.3.gz man/man3/CURLMOPT_PUSHFUNCTION.3.gz man/man3/CURLMOPT_SOCKETDATA.3.gz man/man3/CURLMOPT_SOCKETFUNCTION.3.gz man/man3/CURLMOPT_TIMERDATA.3.gz man/man3/CURLMOPT_TIMERFUNCTION.3.gz -man/man3/CURLOPT_ACCEPTTIMEOUT_MS.3.gz man/man3/CURLOPT_ACCEPT_ENCODING.3.gz +man/man3/CURLOPT_ACCEPTTIMEOUT_MS.3.gz man/man3/CURLOPT_ADDRESS_SCOPE.3.gz man/man3/CURLOPT_APPEND.3.gz man/man3/CURLOPT_AUTOREFERER.3.gz @@ -92,10 +141,10 @@ man/man3/CURLOPT_CHUNK_DATA.3.gz man/man3/CURLOPT_CHUNK_END_FUNCTION.3.gz man/man3/CURLOPT_CLOSESOCKETDATA.3.gz man/man3/CURLOPT_CLOSESOCKETFUNCTION.3.gz -man/man3/CURLOPT_CONNECTTIMEOUT.3.gz -man/man3/CURLOPT_CONNECTTIMEOUT_MS.3.gz man/man3/CURLOPT_CONNECT_ONLY.3.gz man/man3/CURLOPT_CONNECT_TO.3.gz +man/man3/CURLOPT_CONNECTTIMEOUT_MS.3.gz +man/man3/CURLOPT_CONNECTTIMEOUT.3.gz man/man3/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3.gz man/man3/CURLOPT_CONV_FROM_UTF8_FUNCTION.3.gz man/man3/CURLOPT_CONV_TO_NETWORK_FUNCTION.3.gz @@ -128,8 +177,6 @@ man/man3/CURLOPT_FNMATCH_FUNCTION.3.gz man/man3/CURLOPT_FOLLOWLOCATION.3.gz man/man3/CURLOPT_FORBID_REUSE.3.gz man/man3/CURLOPT_FRESH_CONNECT.3.gz -man/man3/CURLOPT_FTPPORT.3.gz -man/man3/CURLOPT_FTPSSLAUTH.3.gz man/man3/CURLOPT_FTP_ACCOUNT.3.gz man/man3/CURLOPT_FTP_ALTERNATIVE_TO_USER.3.gz man/man3/CURLOPT_FTP_CREATE_MISSING_DIRS.3.gz @@ -140,23 +187,25 @@ man/man3/CURLOPT_FTP_SSL_CCC.3.gz man/man3/CURLOPT_FTP_USE_EPRT.3.gz man/man3/CURLOPT_FTP_USE_EPSV.3.gz man/man3/CURLOPT_FTP_USE_PRET.3.gz +man/man3/CURLOPT_FTPPORT.3.gz +man/man3/CURLOPT_FTPSSLAUTH.3.gz man/man3/CURLOPT_GSSAPI_DELEGATION.3.gz man/man3/CURLOPT_HEADER.3.gz man/man3/CURLOPT_HEADERDATA.3.gz man/man3/CURLOPT_HEADERFUNCTION.3.gz man/man3/CURLOPT_HEADEROPT.3.gz +man/man3/CURLOPT_HTTP_CONTENT_DECODING.3.gz +man/man3/CURLOPT_HTTP_TRANSFER_DECODING.3.gz +man/man3/CURLOPT_HTTP_VERSION.3.gz man/man3/CURLOPT_HTTP200ALIASES.3.gz man/man3/CURLOPT_HTTPAUTH.3.gz man/man3/CURLOPT_HTTPGET.3.gz man/man3/CURLOPT_HTTPHEADER.3.gz man/man3/CURLOPT_HTTPPOST.3.gz man/man3/CURLOPT_HTTPPROXYTUNNEL.3.gz -man/man3/CURLOPT_HTTP_CONTENT_DECODING.3.gz -man/man3/CURLOPT_HTTP_TRANSFER_DECODING.3.gz -man/man3/CURLOPT_HTTP_VERSION.3.gz man/man3/CURLOPT_IGNORE_CONTENT_LENGTH.3.gz -man/man3/CURLOPT_INFILESIZE.3.gz man/man3/CURLOPT_INFILESIZE_LARGE.3.gz +man/man3/CURLOPT_INFILESIZE.3.gz man/man3/CURLOPT_INTERFACE.3.gz man/man3/CURLOPT_INTERLEAVEDATA.3.gz man/man3/CURLOPT_INTERLEAVEFUNCTION.3.gz @@ -164,8 +213,8 @@ man/man3/CURLOPT_IOCTLDATA.3.gz man/man3/CURLOPT_IOCTLFUNCTION.3.gz man/man3/CURLOPT_IPRESOLVE.3.gz man/man3/CURLOPT_ISSUERCERT.3.gz -man/man3/CURLOPT_KEYPASSWD.3.gz man/man3/CURLOPT_KEEP_SENDING_ON_ERROR.3.gz +man/man3/CURLOPT_KEYPASSWD.3.gz man/man3/CURLOPT_KRBLEVEL.3.gz man/man3/CURLOPT_LOCALPORT.3.gz man/man3/CURLOPT_LOCALPORTRANGE.3.gz @@ -175,14 +224,14 @@ man/man3/CURLOPT_LOW_SPEED_TIME.3.gz man/man3/CURLOPT_MAIL_AUTH.3.gz man/man3/CURLOPT_MAIL_FROM.3.gz man/man3/CURLOPT_MAIL_RCPT.3.gz +man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3.gz +man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3.gz man/man3/CURLOPT_MAXCONNECTS.3.gz -man/man3/CURLOPT_MAXFILESIZE.3.gz man/man3/CURLOPT_MAXFILESIZE_LARGE.3.gz +man/man3/CURLOPT_MAXFILESIZE.3.gz man/man3/CURLOPT_MAXREDIRS.3.gz -man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3.gz -man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3.gz -man/man3/CURLOPT_NETRC.3.gz man/man3/CURLOPT_NETRC_FILE.3.gz +man/man3/CURLOPT_NETRC.3.gz man/man3/CURLOPT_NEW_DIRECTORY_PERMS.3.gz man/man3/CURLOPT_NEW_FILE_PERMS.3.gz man/man3/CURLOPT_NOBODY.3.gz @@ -198,8 +247,8 @@ man/man3/CURLOPT_PIPEWAIT.3.gz man/man3/CURLOPT_PORT.3.gz man/man3/CURLOPT_POST.3.gz man/man3/CURLOPT_POSTFIELDS.3.gz -man/man3/CURLOPT_POSTFIELDSIZE.3.gz man/man3/CURLOPT_POSTFIELDSIZE_LARGE.3.gz +man/man3/CURLOPT_POSTFIELDSIZE.3.gz man/man3/CURLOPT_POSTQUOTE.3.gz man/man3/CURLOPT_POSTREDIR.3.gz man/man3/CURLOPT_PREQUOTE.3.gz @@ -207,6 +256,8 @@ man/man3/CURLOPT_PRIVATE.3.gz man/man3/CURLOPT_PROGRESSDATA.3.gz man/man3/CURLOPT_PROGRESSFUNCTION.3.gz man/man3/CURLOPT_PROTOCOLS.3.gz +man/man3/CURLOPT_PROXY_SERVICE_NAME.3.gz +man/man3/CURLOPT_PROXY_TRANSFER_MODE.3.gz man/man3/CURLOPT_PROXY.3.gz man/man3/CURLOPT_PROXYAUTH.3.gz man/man3/CURLOPT_PROXYHEADER.3.gz @@ -215,8 +266,6 @@ man/man3/CURLOPT_PROXYPORT.3.gz man/man3/CURLOPT_PROXYTYPE.3.gz man/man3/CURLOPT_PROXYUSERNAME.3.gz man/man3/CURLOPT_PROXYUSERPWD.3.gz -man/man3/CURLOPT_PROXY_SERVICE_NAME.3.gz -man/man3/CURLOPT_PROXY_TRANSFER_MODE.3.gz man/man3/CURLOPT_PUT.3.gz man/man3/CURLOPT_QUOTE.3.gz man/man3/CURLOPT_RANDOM_FILE.3.gz @@ -226,8 +275,8 @@ man/man3/CURLOPT_READFUNCTION.3.gz man/man3/CURLOPT_REDIR_PROTOCOLS.3.gz man/man3/CURLOPT_REFERER.3.gz man/man3/CURLOPT_RESOLVE.3.gz -man/man3/CURLOPT_RESUME_FROM.3.gz man/man3/CURLOPT_RESUME_FROM_LARGE.3.gz +man/man3/CURLOPT_RESUME_FROM.3.gz man/man3/CURLOPT_RTSP_CLIENT_CSEQ.3.gz man/man3/CURLOPT_RTSP_REQUEST.3.gz man/man3/CURLOPT_RTSP_SERVER_CSEQ.3.gz @@ -250,13 +299,6 @@ man/man3/CURLOPT_SSH_KEYFUNCTION.3.gz man/man3/CURLOPT_SSH_KNOWNHOSTS.3.gz man/man3/CURLOPT_SSH_PRIVATE_KEYFILE.3.gz man/man3/CURLOPT_SSH_PUBLIC_KEYFILE.3.gz -man/man3/CURLOPT_SSLCERT.3.gz -man/man3/CURLOPT_SSLCERTTYPE.3.gz -man/man3/CURLOPT_SSLENGINE.3.gz -man/man3/CURLOPT_SSLENGINE_DEFAULT.3.gz -man/man3/CURLOPT_SSLKEY.3.gz -man/man3/CURLOPT_SSLKEYTYPE.3.gz -man/man3/CURLOPT_SSLVERSION.3.gz man/man3/CURLOPT_SSL_CIPHER_LIST.3.gz man/man3/CURLOPT_SSL_CTX_DATA.3.gz man/man3/CURLOPT_SSL_CTX_FUNCTION.3.gz @@ -268,9 +310,16 @@ man/man3/CURLOPT_SSL_SESSIONID_CACHE.3.g man/man3/CURLOPT_SSL_VERIFYHOST.3.gz man/man3/CURLOPT_SSL_VERIFYPEER.3.gz man/man3/CURLOPT_SSL_VERIFYSTATUS.3.gz +man/man3/CURLOPT_SSLCERT.3.gz +man/man3/CURLOPT_SSLCERTTYPE.3.gz +man/man3/CURLOPT_SSLENGINE_DEFAULT.3.gz +man/man3/CURLOPT_SSLENGINE.3.gz +man/man3/CURLOPT_SSLKEY.3.gz +man/man3/CURLOPT_SSLKEYTYPE.3.gz +man/man3/CURLOPT_SSLVERSION.3.gz man/man3/CURLOPT_STDERR.3.gz -man/man3/CURLOPT_STREAM_DEPENDS.3.gz man/man3/CURLOPT_STREAM_DEPENDS_E.3.gz +man/man3/CURLOPT_STREAM_DEPENDS.3.gz man/man3/CURLOPT_STREAM_WEIGHT.3.gz man/man3/CURLOPT_TCP_FASTOPEN.3.gz man/man3/CURLOPT_TCP_KEEPALIVE.3.gz @@ -281,22 +330,22 @@ man/man3/CURLOPT_TELNETOPTIONS.3.gz man/man3/CURLOPT_TFTP_BLKSIZE.3.gz man/man3/CURLOPT_TFTP_NO_OPTIONS.3.gz man/man3/CURLOPT_TIMECONDITION.3.gz -man/man3/CURLOPT_TIMEOUT.3.gz man/man3/CURLOPT_TIMEOUT_MS.3.gz +man/man3/CURLOPT_TIMEOUT.3.gz man/man3/CURLOPT_TIMEVALUE.3.gz man/man3/CURLOPT_TLSAUTH_PASSWORD.3.gz man/man3/CURLOPT_TLSAUTH_TYPE.3.gz man/man3/CURLOPT_TLSAUTH_USERNAME.3.gz -man/man3/CURLOPT_TRANSFERTEXT.3.gz man/man3/CURLOPT_TRANSFER_ENCODING.3.gz +man/man3/CURLOPT_TRANSFERTEXT.3.gz man/man3/CURLOPT_UNIX_SOCKET_PATH.3.gz man/man3/CURLOPT_UNRESTRICTED_AUTH.3.gz man/man3/CURLOPT_UPLOAD.3.gz man/man3/CURLOPT_URL.3.gz +man/man3/CURLOPT_USE_SSL.3.gz man/man3/CURLOPT_USERAGENT.3.gz man/man3/CURLOPT_USERNAME.3.gz man/man3/CURLOPT_USERPWD.3.gz -man/man3/CURLOPT_USE_SSL.3.gz man/man3/CURLOPT_VERBOSE.3.gz man/man3/CURLOPT_WILDCARDMATCH.3.gz man/man3/CURLOPT_WRITEDATA.3.gz @@ -304,55 +353,6 @@ man/man3/CURLOPT_WRITEFUNCTION.3.gz man/man3/CURLOPT_XFERINFODATA.3.gz man/man3/CURLOPT_XFERINFOFUNCTION.3.gz man/man3/CURLOPT_XOAUTH2_BEARER.3.gz -man/man3/curl_easy_cleanup.3.gz -man/man3/curl_easy_duphandle.3.gz -man/man3/curl_easy_escape.3.gz -man/man3/curl_easy_getinfo.3.gz -man/man3/curl_easy_init.3.gz -man/man3/curl_easy_pause.3.gz -man/man3/curl_easy_perform.3.gz -man/man3/curl_easy_recv.3.gz -man/man3/curl_easy_reset.3.gz -man/man3/curl_easy_send.3.gz -man/man3/curl_easy_setopt.3.gz -man/man3/curl_easy_strerror.3.gz -man/man3/curl_easy_unescape.3.gz -man/man3/curl_escape.3.gz -man/man3/curl_formadd.3.gz -man/man3/curl_formfree.3.gz -man/man3/curl_formget.3.gz -man/man3/curl_free.3.gz -man/man3/curl_getdate.3.gz -man/man3/curl_getenv.3.gz -man/man3/curl_global_cleanup.3.gz -man/man3/curl_global_init.3.gz -man/man3/curl_global_init_mem.3.gz -man/man3/curl_mprintf.3.gz -man/man3/curl_multi_add_handle.3.gz -man/man3/curl_multi_assign.3.gz -man/man3/curl_multi_cleanup.3.gz -man/man3/curl_multi_fdset.3.gz -man/man3/curl_multi_info_read.3.gz -man/man3/curl_multi_init.3.gz -man/man3/curl_multi_perform.3.gz -man/man3/curl_multi_remove_handle.3.gz -man/man3/curl_multi_setopt.3.gz -man/man3/curl_multi_socket.3.gz -man/man3/curl_multi_socket_action.3.gz -man/man3/curl_multi_socket_all.3.gz -man/man3/curl_multi_strerror.3.gz -man/man3/curl_multi_timeout.3.gz -man/man3/curl_multi_wait.3.gz -man/man3/curl_share_cleanup.3.gz -man/man3/curl_share_init.3.gz -man/man3/curl_share_setopt.3.gz -man/man3/curl_share_strerror.3.gz -man/man3/curl_slist_append.3.gz -man/man3/curl_slist_free_all.3.gz -man/man3/curl_strequal.3.gz -man/man3/curl_unescape.3.gz -man/man3/curl_version.3.gz -man/man3/curl_version_info.3.gz man/man3/libcurl-easy.3.gz man/man3/libcurl-errors.3.gz man/man3/libcurl-multi.3.gz From owner-svn-ports-branches@freebsd.org Sun Nov 6 15:39:55 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE784C33093; Sun, 6 Nov 2016 15:39:55 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7DA31B34; Sun, 6 Nov 2016 15:39:55 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA6FdsHs018800; Sun, 6 Nov 2016 15:39:54 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA6FdsBq018798; Sun, 6 Nov 2016 15:39:54 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201611061539.uA6FdsBq018798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 6 Nov 2016 15:39:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425499 - in branches/2016Q4/news/sabnzbdplus: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 15:39:55 -0000 Author: riggs Date: Sun Nov 6 15:39:54 2016 New Revision: 425499 URL: https://svnweb.freebsd.org/changeset/ports/425499 Log: MFH: r425481 Fix character encoding issues Details: - port now defaults to en_US.UTF-8 for LC_CTYPE - Bump PORTREVISION PR: 212993 Submitted by: joshruehlig@gmail.com (maintainer) Approved by: ports-secteam (feld) Modified: branches/2016Q4/news/sabnzbdplus/Makefile branches/2016Q4/news/sabnzbdplus/files/sabnzbd.in Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/news/sabnzbdplus/Makefile ============================================================================== --- branches/2016Q4/news/sabnzbdplus/Makefile Sun Nov 6 15:39:19 2016 (r425498) +++ branches/2016Q4/news/sabnzbdplus/Makefile Sun Nov 6 15:39:54 2016 (r425499) @@ -2,6 +2,7 @@ PORTNAME= sabnzbdplus PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= news MASTER_SITES= SF DISTNAME= SABnzbd-${PORTVERSION}-src Modified: branches/2016Q4/news/sabnzbdplus/files/sabnzbd.in ============================================================================== --- branches/2016Q4/news/sabnzbdplus/files/sabnzbd.in Sun Nov 6 15:39:19 2016 (r425498) +++ branches/2016Q4/news/sabnzbdplus/files/sabnzbd.in Sun Nov 6 15:39:54 2016 (r425499) @@ -46,7 +46,7 @@ command_args="--daemon -f ${sabnzbd_conf sabnzbd_prestart() { PATH=${PATH}:%%PREFIX%%/bin:%%PREFIX%%/sbin - export LC_CTYPE="UTF-8" + export LC_CTYPE="en_US.UTF-8" for sabdir in ${sabnzbd_conf_dir} ${pidfile%/*}; do if [ ! -d "${sabdir}" ]; then install -d -o ${sabnzbd_user} -g ${sabnzbd_group} ${sabdir} From owner-svn-ports-branches@freebsd.org Sun Nov 6 16:32:19 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10D4EC3215E; Sun, 6 Nov 2016 16:32:19 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E222915C; Sun, 6 Nov 2016 16:32:18 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA6GWIMm042352; Sun, 6 Nov 2016 16:32:18 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA6GWH5Y042348; Sun, 6 Nov 2016 16:32:17 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201611061632.uA6GWH5Y042348@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sun, 6 Nov 2016 16:32:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425503 - in branches/2016Q4/sysutils: ansible ansible/files ansible1 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2016 16:32:19 -0000 Author: matthew Date: Sun Nov 6 16:32:17 2016 New Revision: 425503 URL: https://svnweb.freebsd.org/changeset/ports/425503 Log: MFH: r425063 r425072 Declare this slave port only uses python:2 now that the master port can use python-3. No change to generated package, so no portrevision bump. Upgrade to 2.2.0.0 Changelog: https://raw.githubusercontent.com/ansible/ansible/v2.2.0.0-1/CHANGELOG.md PR: 213974 PR: 214176 Submitted by: lifanov@mail.lifanov.com (maintainer) Submitted by: joe@thrallingpenguin.com Approved by: ports-secteam (feld, eadler) Modified: branches/2016Q4/sysutils/ansible/Makefile branches/2016Q4/sysutils/ansible/distinfo branches/2016Q4/sysutils/ansible/files/pkg-message.in branches/2016Q4/sysutils/ansible1/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/sysutils/ansible/Makefile ============================================================================== --- branches/2016Q4/sysutils/ansible/Makefile Sun Nov 6 16:11:42 2016 (r425502) +++ branches/2016Q4/sysutils/ansible/Makefile Sun Nov 6 16:32:17 2016 (r425503) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ansible -PORTVERSION?= 2.1.2.0 +PORTVERSION?= 2.2.0.0 CATEGORIES= sysutils python MASTER_SITES= http://releases.ansible.com/ansible/ @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2 NO_ARCH= yes -USES= cpe python:2 shebangfix +USES?= cpe python shebangfix USE_PYTHON= autoplist distutils python_CMD= ${LOCALBASE}/bin/python SHEBANG_FILES+= lib/ansible/modules/core/*/*.py \ Modified: branches/2016Q4/sysutils/ansible/distinfo ============================================================================== --- branches/2016Q4/sysutils/ansible/distinfo Sun Nov 6 16:11:42 2016 (r425502) +++ branches/2016Q4/sysutils/ansible/distinfo Sun Nov 6 16:32:17 2016 (r425503) @@ -1,3 +1,3 @@ -TIMESTAMP = 1475167399 -SHA256 (ansible-2.1.2.0.tar.gz) = 9c37a7bd397c05ab8ca3fcc49417649ea49b9133d4cd9500408235617d1621eb -SIZE (ansible-2.1.2.0.tar.gz) = 1881113 +TIMESTAMP = 1478009653 +SHA256 (ansible-2.2.0.0.tar.gz) = d9f198d293394ce0f8ba802561b21368888e3301036a706b5584641b49408586 +SIZE (ansible-2.2.0.0.tar.gz) = 2441851 Modified: branches/2016Q4/sysutils/ansible/files/pkg-message.in ============================================================================== --- branches/2016Q4/sysutils/ansible/files/pkg-message.in Sun Nov 6 16:11:42 2016 (r425502) +++ branches/2016Q4/sysutils/ansible/files/pkg-message.in Sun Nov 6 16:32:17 2016 (r425503) @@ -27,10 +27,12 @@ that system. Example: Python notes: -If you have Python 3.x as the default, please set +Python 3.x support is BETA. Most modules should work +and important ones have been audited and tested. +If you have issues with Python 3, please set ansible_python_interpreter=%%LOCALBASE%%/bin/python2 -Ansible 2 requires that lang/python27 port is built +Ansible 2 requires that lang/python port is built with SEM option enabled, which is the default =============================================================================== Modified: branches/2016Q4/sysutils/ansible1/Makefile ============================================================================== --- branches/2016Q4/sysutils/ansible1/Makefile Sun Nov 6 16:11:42 2016 (r425502) +++ branches/2016Q4/sysutils/ansible1/Makefile Sun Nov 6 16:32:17 2016 (r425503) @@ -10,6 +10,8 @@ CONFLICTS= ansible-* MASTERDIR= ${.CURDIR}/../ansible DISTINFO_FILE= ${.CURDIR}/distinfo +USES= cpe python:2 shebangfix + SHEBANG_FILES= lib/ansible/runner/action_plugins/synchronize.py EXTRA_PATCHES= From owner-svn-ports-branches@freebsd.org Mon Nov 7 18:07:52 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 770B4C35A43; Mon, 7 Nov 2016 18:07:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48419FDA; Mon, 7 Nov 2016 18:07:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA7I7p7f057556; Mon, 7 Nov 2016 18:07:51 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA7I7peo057555; Mon, 7 Nov 2016 18:07:51 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611071807.uA7I7peo057555@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 7 Nov 2016 18:07:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425641 - branches/2016Q4/multimedia/ffmpeg X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Nov 2016 18:07:52 -0000 Author: jbeich Date: Mon Nov 7 18:07:51 2016 New Revision: 425641 URL: https://svnweb.freebsd.org/changeset/ports/425641 Log: MFH: r425640 multimedia/ffmpeg: switch to clang on 9.x It turns out the following is true for ffvp9 on amd64: WARNING: gcc 4.2 is outdated and may miscompile FFmpeg. Please use a newer compiler. PR: 213706 Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2016Q4/multimedia/ffmpeg/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/multimedia/ffmpeg/Makefile ============================================================================== --- branches/2016Q4/multimedia/ffmpeg/Makefile Mon Nov 7 17:46:38 2016 (r425640) +++ branches/2016Q4/multimedia/ffmpeg/Makefile Mon Nov 7 18:07:51 2016 (r425641) @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 2.8.8 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ @@ -18,7 +18,7 @@ BUILD_DEPENDS= yasm:devel/yasm \ ${LOCALBASE}/bin/as:devel/binutils HAS_CONFIGURE= yes -USES= compiler cpe gmake perl5 pkgconfig tar:bzip2 shebangfix +USES= compiler:c11 cpe gmake perl5 pkgconfig tar:bzip2 shebangfix USE_LDCONFIG= yes USE_PERL5= build SHEBANG_FILES= doc/texi2pod.pl From owner-svn-ports-branches@freebsd.org Tue Nov 8 09:43:43 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA82DC36242; Tue, 8 Nov 2016 09:43:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C4957E6; Tue, 8 Nov 2016 09:43:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA89hgpZ030344; Tue, 8 Nov 2016 09:43:42 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA89hggU030341; Tue, 8 Nov 2016 09:43:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611080943.uA89hggU030341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 8 Nov 2016 09:43:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425726 - branches/2016Q4/print/harfbuzz X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2016 09:43:43 -0000 Author: jbeich Date: Tue Nov 8 09:43:42 2016 New Revision: 425726 URL: https://svnweb.freebsd.org/changeset/ports/425726 Log: MFH: r425469 print/harfbuzz: update to 1.3.3 Changes: https://cgit.freedesktop.org/harfbuzz/tree/NEWS?id=1.3.3 ABI: https://abi-laboratory.pro/tracker/timeline/harfbuzz/ Approved by: ports-secteam (feld) Modified: branches/2016Q4/print/harfbuzz/Makefile branches/2016Q4/print/harfbuzz/distinfo branches/2016Q4/print/harfbuzz/pkg-plist Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/print/harfbuzz/Makefile ============================================================================== --- branches/2016Q4/print/harfbuzz/Makefile Tue Nov 8 09:39:17 2016 (r425725) +++ branches/2016Q4/print/harfbuzz/Makefile Tue Nov 8 09:43:42 2016 (r425726) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.3 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -21,7 +21,7 @@ CONFIGURE_ARGS= --with-graphite2 --with- INSTALL_TARGET= install-strip TEST_TARGET= check -PLIST_SUB+= LIBVER=0.10302.0 +PLIST_SUB+= LIBVER=0.10303.0 EXTRA_PATCHES+= ${EXTRA_PATCHES_${OPSYS}_${OSREL:R}} EXTRA_PATCHES_FreeBSD_9= ${PATCHDIR}/extra-src_hb-open-type-private.hh Modified: branches/2016Q4/print/harfbuzz/distinfo ============================================================================== --- branches/2016Q4/print/harfbuzz/distinfo Tue Nov 8 09:39:17 2016 (r425725) +++ branches/2016Q4/print/harfbuzz/distinfo Tue Nov 8 09:43:42 2016 (r425726) @@ -1,3 +1,3 @@ -TIMESTAMP = 1473409330 -SHA256 (harfbuzz-1.3.2.tar.bz2) = 8543a6372f08c5987c632dfaa86210c7edb3f43fbacd96095c609bc3539ce027 -SIZE (harfbuzz-1.3.2.tar.bz2) = 1357986 +TIMESTAMP = 1478356493 +SHA256 (harfbuzz-1.3.3.tar.bz2) = 2620987115a4122b47321610dccbcc18f7f121115fd7b88dc8a695c8b66cb3c9 +SIZE (harfbuzz-1.3.3.tar.bz2) = 1402836 Modified: branches/2016Q4/print/harfbuzz/pkg-plist ============================================================================== --- branches/2016Q4/print/harfbuzz/pkg-plist Tue Nov 8 09:39:17 2016 (r425725) +++ branches/2016Q4/print/harfbuzz/pkg-plist Tue Nov 8 09:43:42 2016 (r425726) @@ -16,6 +16,7 @@ include/harfbuzz/hb-graphite2.h include/harfbuzz/hb-icu.h include/harfbuzz/hb-ot-font.h include/harfbuzz/hb-ot-layout.h +include/harfbuzz/hb-ot-math.h include/harfbuzz/hb-ot-shape.h include/harfbuzz/hb-ot-tag.h include/harfbuzz/hb-ot.h @@ -40,6 +41,7 @@ libdata/pkgconfig/harfbuzz-icu.pc libdata/pkgconfig/harfbuzz.pc share/gir-1.0/HarfBuzz-0.0.gir share/gtk-doc/html/harfbuzz/HarfBuzz.png +share/gtk-doc/html/harfbuzz/a-clustering-example-for-levels-0-and-1.html share/gtk-doc/html/harfbuzz/adding-text-to-the-buffer.html share/gtk-doc/html/harfbuzz/annotation-glossary.html share/gtk-doc/html/harfbuzz/api-index-0-9-10.html @@ -60,10 +62,13 @@ share/gtk-doc/html/harfbuzz/api-index-0- share/gtk-doc/html/harfbuzz/api-index-1-0-5.html share/gtk-doc/html/harfbuzz/api-index-1-1-2.html share/gtk-doc/html/harfbuzz/api-index-1-1-3.html +share/gtk-doc/html/harfbuzz/api-index-1-2-3.html +share/gtk-doc/html/harfbuzz/api-index-1-4-0.html share/gtk-doc/html/harfbuzz/api-index-full.html share/gtk-doc/html/harfbuzz/buffers-language-script-and-direction.html share/gtk-doc/html/harfbuzz/building.html -share/gtk-doc/html/harfbuzz/ch07.html +share/gtk-doc/html/harfbuzz/ch08.html +share/gtk-doc/html/harfbuzz/clusters.html share/gtk-doc/html/harfbuzz/customizing-unicode-functions.html share/gtk-doc/html/harfbuzz/deprecated-api-index.html share/gtk-doc/html/harfbuzz/fonts-and-faces.html @@ -82,6 +87,7 @@ share/gtk-doc/html/harfbuzz/harfbuzz-hb- share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-font.html share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html +share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-math.html share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-shape.html share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html @@ -98,15 +104,18 @@ share/gtk-doc/html/harfbuzz/index.html share/gtk-doc/html/harfbuzz/install-harfbuzz.html share/gtk-doc/html/harfbuzz/left-insensitive.png share/gtk-doc/html/harfbuzz/left.png +share/gtk-doc/html/harfbuzz/level-2.html share/gtk-doc/html/harfbuzz/object-tree.html share/gtk-doc/html/harfbuzz/plans-and-caching.html share/gtk-doc/html/harfbuzz/pt01.html share/gtk-doc/html/harfbuzz/pt02.html +share/gtk-doc/html/harfbuzz/reordering-in-levels-0-and-1.html share/gtk-doc/html/harfbuzz/right-insensitive.png share/gtk-doc/html/harfbuzz/right.png share/gtk-doc/html/harfbuzz/setting-buffer-properties.html share/gtk-doc/html/harfbuzz/shaping-and-shape-plans.html share/gtk-doc/html/harfbuzz/style.css +share/gtk-doc/html/harfbuzz/the-distinction-between-levels-0-and-1.html share/gtk-doc/html/harfbuzz/up-insensitive.png share/gtk-doc/html/harfbuzz/up.png share/gtk-doc/html/harfbuzz/using-harfbuzzs-native-opentype-implementation.html From owner-svn-ports-branches@freebsd.org Tue Nov 8 13:11:33 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE5E5C36B7A; Tue, 8 Nov 2016 13:11:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7641C26A; Tue, 8 Nov 2016 13:11:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA8DBWpm011117; Tue, 8 Nov 2016 13:11:32 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA8DBV6u011107; Tue, 8 Nov 2016 13:11:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611081311.uA8DBV6u011107@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 8 Nov 2016 13:11:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425738 - in branches/2016Q4: mail/thunderbird mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files www/libxul www/libxul/files www/seamonkey www/s... X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2016 13:11:33 -0000 Author: jbeich Date: Tue Nov 8 13:11:31 2016 New Revision: 425738 URL: https://svnweb.freebsd.org/changeset/ports/425738 Log: MFH: r425733 gecko: backport fix for crash on 9.x (lang/gcc5 + -O3) https://lists.freebsd.org/pipermail/freebsd-gecko/2016-November/006752.html https://bugzilla.mozilla.org/show_bug.cgi?id=757366 Approved by: ports-secteam blanket Added: branches/2016Q4/mail/thunderbird/files/patch-bug757366 - copied unchanged from r425733, head/mail/thunderbird/files/patch-bug757366 branches/2016Q4/www/firefox-esr/files/patch-bug757366 - copied unchanged from r425733, head/www/firefox-esr/files/patch-bug757366 branches/2016Q4/www/firefox/files/patch-bug757366 - copied unchanged from r425733, head/www/firefox/files/patch-bug757366 branches/2016Q4/www/libxul/files/patch-bug757366 - copied unchanged from r425733, head/www/libxul/files/patch-bug757366 branches/2016Q4/www/seamonkey/files/patch-bug757366 - copied unchanged from r425733, head/www/seamonkey/files/patch-bug757366 Modified: branches/2016Q4/mail/thunderbird/Makefile branches/2016Q4/www/firefox-esr/Makefile branches/2016Q4/www/firefox/Makefile branches/2016Q4/www/libxul/Makefile branches/2016Q4/www/seamonkey/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/mail/thunderbird/Makefile ============================================================================== --- branches/2016Q4/mail/thunderbird/Makefile Tue Nov 8 13:01:42 2016 (r425737) +++ branches/2016Q4/mail/thunderbird/Makefile Tue Nov 8 13:11:31 2016 (r425738) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 45.4.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Copied: branches/2016Q4/mail/thunderbird/files/patch-bug757366 (from r425733, head/mail/thunderbird/files/patch-bug757366) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/mail/thunderbird/files/patch-bug757366 Tue Nov 8 13:11:31 2016 (r425738, copy of r425733, head/mail/thunderbird/files/patch-bug757366) @@ -0,0 +1,58 @@ +commit 2a3be4b384b9 +Author: Jonathan Kew +Date: Mon Sep 26 18:05:14 2016 +0100 + + Bug 757366 - Don't cast pointers to 'name'-table data to uint16_t*, as they may not be 16-bit-aligned. r=jrmuizel +--- + gfx/thebes/gfxFontUtils.cpp | 26 ++++++++++++++------------ + 1 file changed, 14 insertions(+), 12 deletions(-) + +diff --git gfx/thebes/gfxFontUtils.cpp gfx/thebes/gfxFontUtils.cpp +index 526e17d..cb505e8 100644 +--- mozilla/gfx/thebes/gfxFontUtils.cpp ++++ mozilla/gfx/thebes/gfxFontUtils.cpp +@@ -918,16 +918,18 @@ IsValidSFNTVersion(uint32_t version) + version == TRUETYPE_TAG('t','r','u','e'); + } + +-// copy and swap UTF-16 values, assume no surrogate pairs, can be in place ++// Copy and swap UTF-16 values, assume no surrogate pairs, can be in place. ++// aInBuf and aOutBuf are NOT necessarily 16-bit-aligned, so we should avoid ++// accessing them directly as uint16_t* values. ++// aLen is count of UTF-16 values, so the byte buffers are twice that. + static void +-CopySwapUTF16(const uint16_t *aInBuf, uint16_t *aOutBuf, uint32_t aLen) ++CopySwapUTF16(const char* aInBuf, char* aOutBuf, uint32_t aLen) + { +- const uint16_t *end = aInBuf + aLen; ++ const char* end = aInBuf + aLen * 2; + while (aInBuf < end) { +- uint16_t value = *aInBuf; +- *aOutBuf = (value >> 8) | (value & 0xff) << 8; +- aOutBuf++; +- aInBuf++; ++ uint8_t b0 = *aInBuf++; ++ *aOutBuf++ = *aInBuf++; ++ *aOutBuf++ = b0; + } + } + +@@ -1446,13 +1448,13 @@ gfxFontUtils::DecodeFontName(const char *aNameData, int32_t aByteLen, + if (csName[0] == 0) { + // empty charset name: data is utf16be, no need to instantiate a converter + uint32_t strLen = aByteLen / 2; +-#ifdef IS_LITTLE_ENDIAN + aName.SetLength(strLen); +- CopySwapUTF16(reinterpret_cast(aNameData), +- reinterpret_cast(aName.BeginWriting()), strLen); ++#ifdef IS_LITTLE_ENDIAN ++ CopySwapUTF16(aNameData, reinterpret_cast(aName.BeginWriting()), ++ strLen); + #else +- aName.Assign(reinterpret_cast(aNameData), strLen); +-#endif ++ memcpy(aName.BeginWriting(), aNameData, strLen * 2); ++#endif + return true; + } + Modified: branches/2016Q4/www/firefox-esr/Makefile ============================================================================== --- branches/2016Q4/www/firefox-esr/Makefile Tue Nov 8 13:01:42 2016 (r425737) +++ branches/2016Q4/www/firefox-esr/Makefile Tue Nov 8 13:11:31 2016 (r425738) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 45.4.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Copied: branches/2016Q4/www/firefox-esr/files/patch-bug757366 (from r425733, head/www/firefox-esr/files/patch-bug757366) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/www/firefox-esr/files/patch-bug757366 Tue Nov 8 13:11:31 2016 (r425738, copy of r425733, head/www/firefox-esr/files/patch-bug757366) @@ -0,0 +1,58 @@ +commit 2a3be4b384b9 +Author: Jonathan Kew +Date: Mon Sep 26 18:05:14 2016 +0100 + + Bug 757366 - Don't cast pointers to 'name'-table data to uint16_t*, as they may not be 16-bit-aligned. r=jrmuizel +--- + gfx/thebes/gfxFontUtils.cpp | 26 ++++++++++++++------------ + 1 file changed, 14 insertions(+), 12 deletions(-) + +diff --git gfx/thebes/gfxFontUtils.cpp gfx/thebes/gfxFontUtils.cpp +index 526e17d..cb505e8 100644 +--- gfx/thebes/gfxFontUtils.cpp ++++ gfx/thebes/gfxFontUtils.cpp +@@ -918,16 +918,18 @@ IsValidSFNTVersion(uint32_t version) + version == TRUETYPE_TAG('t','r','u','e'); + } + +-// copy and swap UTF-16 values, assume no surrogate pairs, can be in place ++// Copy and swap UTF-16 values, assume no surrogate pairs, can be in place. ++// aInBuf and aOutBuf are NOT necessarily 16-bit-aligned, so we should avoid ++// accessing them directly as uint16_t* values. ++// aLen is count of UTF-16 values, so the byte buffers are twice that. + static void +-CopySwapUTF16(const uint16_t *aInBuf, uint16_t *aOutBuf, uint32_t aLen) ++CopySwapUTF16(const char* aInBuf, char* aOutBuf, uint32_t aLen) + { +- const uint16_t *end = aInBuf + aLen; ++ const char* end = aInBuf + aLen * 2; + while (aInBuf < end) { +- uint16_t value = *aInBuf; +- *aOutBuf = (value >> 8) | (value & 0xff) << 8; +- aOutBuf++; +- aInBuf++; ++ uint8_t b0 = *aInBuf++; ++ *aOutBuf++ = *aInBuf++; ++ *aOutBuf++ = b0; + } + } + +@@ -1446,13 +1448,13 @@ gfxFontUtils::DecodeFontName(const char *aNameData, int32_t aByteLen, + if (csName[0] == 0) { + // empty charset name: data is utf16be, no need to instantiate a converter + uint32_t strLen = aByteLen / 2; +-#ifdef IS_LITTLE_ENDIAN + aName.SetLength(strLen); +- CopySwapUTF16(reinterpret_cast(aNameData), +- reinterpret_cast(aName.BeginWriting()), strLen); ++#ifdef IS_LITTLE_ENDIAN ++ CopySwapUTF16(aNameData, reinterpret_cast(aName.BeginWriting()), ++ strLen); + #else +- aName.Assign(reinterpret_cast(aNameData), strLen); +-#endif ++ memcpy(aName.BeginWriting(), aNameData, strLen * 2); ++#endif + return true; + } + Modified: branches/2016Q4/www/firefox/Makefile ============================================================================== --- branches/2016Q4/www/firefox/Makefile Tue Nov 8 13:01:42 2016 (r425737) +++ branches/2016Q4/www/firefox/Makefile Tue Nov 8 13:11:31 2016 (r425738) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 49.0.2 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Copied: branches/2016Q4/www/firefox/files/patch-bug757366 (from r425733, head/www/firefox/files/patch-bug757366) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/www/firefox/files/patch-bug757366 Tue Nov 8 13:11:31 2016 (r425738, copy of r425733, head/www/firefox/files/patch-bug757366) @@ -0,0 +1,58 @@ +commit 2a3be4b384b9 +Author: Jonathan Kew +Date: Mon Sep 26 18:05:14 2016 +0100 + + Bug 757366 - Don't cast pointers to 'name'-table data to uint16_t*, as they may not be 16-bit-aligned. r=jrmuizel +--- + gfx/thebes/gfxFontUtils.cpp | 26 ++++++++++++++------------ + 1 file changed, 14 insertions(+), 12 deletions(-) + +diff --git gfx/thebes/gfxFontUtils.cpp gfx/thebes/gfxFontUtils.cpp +index 526e17d..cb505e8 100644 +--- gfx/thebes/gfxFontUtils.cpp ++++ gfx/thebes/gfxFontUtils.cpp +@@ -918,16 +918,18 @@ IsValidSFNTVersion(uint32_t version) + version == TRUETYPE_TAG('t','r','u','e'); + } + +-// copy and swap UTF-16 values, assume no surrogate pairs, can be in place ++// Copy and swap UTF-16 values, assume no surrogate pairs, can be in place. ++// aInBuf and aOutBuf are NOT necessarily 16-bit-aligned, so we should avoid ++// accessing them directly as uint16_t* values. ++// aLen is count of UTF-16 values, so the byte buffers are twice that. + static void +-CopySwapUTF16(const uint16_t *aInBuf, uint16_t *aOutBuf, uint32_t aLen) ++CopySwapUTF16(const char* aInBuf, char* aOutBuf, uint32_t aLen) + { +- const uint16_t *end = aInBuf + aLen; ++ const char* end = aInBuf + aLen * 2; + while (aInBuf < end) { +- uint16_t value = *aInBuf; +- *aOutBuf = (value >> 8) | (value & 0xff) << 8; +- aOutBuf++; +- aInBuf++; ++ uint8_t b0 = *aInBuf++; ++ *aOutBuf++ = *aInBuf++; ++ *aOutBuf++ = b0; + } + } + +@@ -1446,13 +1448,13 @@ gfxFontUtils::DecodeFontName(const char *aNameData, int32_t aByteLen, + if (csName[0] == 0) { + // empty charset name: data is utf16be, no need to instantiate a converter + uint32_t strLen = aByteLen / 2; +-#ifdef IS_LITTLE_ENDIAN + aName.SetLength(strLen); +- CopySwapUTF16(reinterpret_cast(aNameData), +- reinterpret_cast(aName.BeginWriting()), strLen); ++#ifdef IS_LITTLE_ENDIAN ++ CopySwapUTF16(aNameData, reinterpret_cast(aName.BeginWriting()), ++ strLen); + #else +- aName.Assign(reinterpret_cast(aNameData), strLen); +-#endif ++ memcpy(aName.BeginWriting(), aNameData, strLen * 2); ++#endif + return true; + } + Modified: branches/2016Q4/www/libxul/Makefile ============================================================================== --- branches/2016Q4/www/libxul/Makefile Tue Nov 8 13:01:42 2016 (r425737) +++ branches/2016Q4/www/libxul/Makefile Tue Nov 8 13:11:31 2016 (r425738) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 45.4.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source Copied: branches/2016Q4/www/libxul/files/patch-bug757366 (from r425733, head/www/libxul/files/patch-bug757366) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/www/libxul/files/patch-bug757366 Tue Nov 8 13:11:31 2016 (r425738, copy of r425733, head/www/libxul/files/patch-bug757366) @@ -0,0 +1,58 @@ +commit 2a3be4b384b9 +Author: Jonathan Kew +Date: Mon Sep 26 18:05:14 2016 +0100 + + Bug 757366 - Don't cast pointers to 'name'-table data to uint16_t*, as they may not be 16-bit-aligned. r=jrmuizel +--- + gfx/thebes/gfxFontUtils.cpp | 26 ++++++++++++++------------ + 1 file changed, 14 insertions(+), 12 deletions(-) + +diff --git gfx/thebes/gfxFontUtils.cpp gfx/thebes/gfxFontUtils.cpp +index 526e17d..cb505e8 100644 +--- gfx/thebes/gfxFontUtils.cpp ++++ gfx/thebes/gfxFontUtils.cpp +@@ -918,16 +918,18 @@ IsValidSFNTVersion(uint32_t version) + version == TRUETYPE_TAG('t','r','u','e'); + } + +-// copy and swap UTF-16 values, assume no surrogate pairs, can be in place ++// Copy and swap UTF-16 values, assume no surrogate pairs, can be in place. ++// aInBuf and aOutBuf are NOT necessarily 16-bit-aligned, so we should avoid ++// accessing them directly as uint16_t* values. ++// aLen is count of UTF-16 values, so the byte buffers are twice that. + static void +-CopySwapUTF16(const uint16_t *aInBuf, uint16_t *aOutBuf, uint32_t aLen) ++CopySwapUTF16(const char* aInBuf, char* aOutBuf, uint32_t aLen) + { +- const uint16_t *end = aInBuf + aLen; ++ const char* end = aInBuf + aLen * 2; + while (aInBuf < end) { +- uint16_t value = *aInBuf; +- *aOutBuf = (value >> 8) | (value & 0xff) << 8; +- aOutBuf++; +- aInBuf++; ++ uint8_t b0 = *aInBuf++; ++ *aOutBuf++ = *aInBuf++; ++ *aOutBuf++ = b0; + } + } + +@@ -1446,13 +1448,13 @@ gfxFontUtils::DecodeFontName(const char *aNameData, int32_t aByteLen, + if (csName[0] == 0) { + // empty charset name: data is utf16be, no need to instantiate a converter + uint32_t strLen = aByteLen / 2; +-#ifdef IS_LITTLE_ENDIAN + aName.SetLength(strLen); +- CopySwapUTF16(reinterpret_cast(aNameData), +- reinterpret_cast(aName.BeginWriting()), strLen); ++#ifdef IS_LITTLE_ENDIAN ++ CopySwapUTF16(aNameData, reinterpret_cast(aName.BeginWriting()), ++ strLen); + #else +- aName.Assign(reinterpret_cast(aNameData), strLen); +-#endif ++ memcpy(aName.BeginWriting(), aNameData, strLen * 2); ++#endif + return true; + } + Modified: branches/2016Q4/www/seamonkey/Makefile ============================================================================== --- branches/2016Q4/www/seamonkey/Makefile Tue Nov 8 13:01:42 2016 (r425737) +++ branches/2016Q4/www/seamonkey/Makefile Tue Nov 8 13:11:31 2016 (r425738) @@ -4,6 +4,7 @@ PORTNAME= seamonkey DISTVERSION= 2.40 MOZILLA_VER= 43 # above + 3 +PORTREVISION= 1 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Copied: branches/2016Q4/www/seamonkey/files/patch-bug757366 (from r425733, head/www/seamonkey/files/patch-bug757366) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/www/seamonkey/files/patch-bug757366 Tue Nov 8 13:11:31 2016 (r425738, copy of r425733, head/www/seamonkey/files/patch-bug757366) @@ -0,0 +1,58 @@ +commit 2a3be4b384b9 +Author: Jonathan Kew +Date: Mon Sep 26 18:05:14 2016 +0100 + + Bug 757366 - Don't cast pointers to 'name'-table data to uint16_t*, as they may not be 16-bit-aligned. r=jrmuizel +--- + gfx/thebes/gfxFontUtils.cpp | 26 ++++++++++++++------------ + 1 file changed, 14 insertions(+), 12 deletions(-) + +diff --git gfx/thebes/gfxFontUtils.cpp gfx/thebes/gfxFontUtils.cpp +index 526e17d..cb505e8 100644 +--- mozilla/gfx/thebes/gfxFontUtils.cpp ++++ mozilla/gfx/thebes/gfxFontUtils.cpp +@@ -918,16 +918,18 @@ IsValidSFNTVersion(uint32_t version) + version == TRUETYPE_TAG('t','r','u','e'); + } + +-// copy and swap UTF-16 values, assume no surrogate pairs, can be in place ++// Copy and swap UTF-16 values, assume no surrogate pairs, can be in place. ++// aInBuf and aOutBuf are NOT necessarily 16-bit-aligned, so we should avoid ++// accessing them directly as uint16_t* values. ++// aLen is count of UTF-16 values, so the byte buffers are twice that. + static void +-CopySwapUTF16(const uint16_t *aInBuf, uint16_t *aOutBuf, uint32_t aLen) ++CopySwapUTF16(const char* aInBuf, char* aOutBuf, uint32_t aLen) + { +- const uint16_t *end = aInBuf + aLen; ++ const char* end = aInBuf + aLen * 2; + while (aInBuf < end) { +- uint16_t value = *aInBuf; +- *aOutBuf = (value >> 8) | (value & 0xff) << 8; +- aOutBuf++; +- aInBuf++; ++ uint8_t b0 = *aInBuf++; ++ *aOutBuf++ = *aInBuf++; ++ *aOutBuf++ = b0; + } + } + +@@ -1446,13 +1448,13 @@ gfxFontUtils::DecodeFontName(const char *aNameData, int32_t aByteLen, + if (csName[0] == 0) { + // empty charset name: data is utf16be, no need to instantiate a converter + uint32_t strLen = aByteLen / 2; +-#ifdef IS_LITTLE_ENDIAN + aName.SetLength(strLen); +- CopySwapUTF16(reinterpret_cast(aNameData), +- reinterpret_cast(aName.BeginWriting()), strLen); ++#ifdef IS_LITTLE_ENDIAN ++ CopySwapUTF16(aNameData, reinterpret_cast(aName.BeginWriting()), ++ strLen); + #else +- aName.Assign(reinterpret_cast(aNameData), strLen); +-#endif ++ memcpy(aName.BeginWriting(), aNameData, strLen * 2); ++#endif + return true; + } + From owner-svn-ports-branches@freebsd.org Tue Nov 8 16:23:16 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97B92C375C5; Tue, 8 Nov 2016 16:23:16 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 645E976D; Tue, 8 Nov 2016 16:23:16 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA8GNFGY089135; Tue, 8 Nov 2016 16:23:15 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA8GNFdC089134; Tue, 8 Nov 2016 16:23:15 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201611081623.uA8GNFdC089134@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Tue, 8 Nov 2016 16:23:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425751 - branches/2016Q4/dns/py-namebench X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2016 16:23:16 -0000 Author: jgh Date: Tue Nov 8 16:23:15 2016 New Revision: 425751 URL: https://svnweb.freebsd.org/changeset/ports/425751 Log: MFH: r425652 Remove trailing newline escape from MASTER_SITES. This had the effect of eating the PKGNAMEPREFIX line, which gave portsmon a case of heartburn. Approved by: "just fix it" Approved by: ports-secteam (with hat) Modified: branches/2016Q4/dns/py-namebench/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/dns/py-namebench/Makefile ============================================================================== --- branches/2016Q4/dns/py-namebench/Makefile Tue Nov 8 15:51:11 2016 (r425750) +++ branches/2016Q4/dns/py-namebench/Makefile Tue Nov 8 16:23:15 2016 (r425751) @@ -6,7 +6,7 @@ PORTVERSION= 1.3.1 PORTREVISION= 1 CATEGORIES= dns python benchmarks MASTER_SITES= SF/bsdsrc/${PORTDIRNAME}/ \ - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PORTNAME}/ \ + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PORTNAME}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${PORTNAME}-${PORTVERSION}-source From owner-svn-ports-branches@freebsd.org Wed Nov 9 08:51:14 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE5CAC357C5; Wed, 9 Nov 2016 08:51:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6649BFA7; Wed, 9 Nov 2016 08:51:14 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA98pDN7077696; Wed, 9 Nov 2016 08:51:13 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA98pDl0077694; Wed, 9 Nov 2016 08:51:13 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611090851.uA98pDl0077694@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 9 Nov 2016 08:51:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425783 - in branches/2016Q4/multimedia/libav: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 08:51:14 -0000 Author: jbeich Date: Wed Nov 9 08:51:13 2016 New Revision: 425783 URL: https://svnweb.freebsd.org/changeset/ports/425783 Log: MFH: r425781 multimedia/libav: fix h264 decoder crash on 11.0+ i386 -mstackrealign isn't required (yet?) unlike multimedia/ffmpeg. PR: 205958 Obtained from: https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=d2af93ac1608 Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2016Q4/multimedia/libav/Makefile branches/2016Q4/multimedia/libav/files/patch-configure Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/multimedia/libav/Makefile ============================================================================== --- branches/2016Q4/multimedia/libav/Makefile Wed Nov 9 08:48:22 2016 (r425782) +++ branches/2016Q4/multimedia/libav/Makefile Wed Nov 9 08:51:13 2016 (r425783) @@ -2,7 +2,7 @@ PORTNAME= libav PORTVERSION= 11.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://libav.org/releases/ Modified: branches/2016Q4/multimedia/libav/files/patch-configure ============================================================================== --- branches/2016Q4/multimedia/libav/files/patch-configure Wed Nov 9 08:48:22 2016 (r425782) +++ branches/2016Q4/multimedia/libav/files/patch-configure Wed Nov 9 08:51:13 2016 (r425783) @@ -11,6 +11,14 @@ check_cc $($cflags_filter $flags) || return flags=$($ldflags_filter $flags) libs=$($ldflags_filter $libs) +@@ -4436,6 +4436,7 @@ elif enabled llvm_gcc; then + check_cflags -mllvm -stack-alignment=16 + elif enabled clang; then + check_cflags -mllvm -stack-alignment=16 ++ check_cflags -mstack-alignment=16 + check_cflags -Qunused-arguments + check_cflags -Werror=implicit-function-declaration + check_cflags -Werror=missing-prototypes @@ -4644,7 +4644,7 @@ DOCDIR=\$(DESTDIR)$docdir MANDIR=\$(DESTDIR)$mandir SRC_PATH=$source_path From owner-svn-ports-branches@freebsd.org Wed Nov 9 08:54:16 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89679C35A29; Wed, 9 Nov 2016 08:54:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 429042B5; Wed, 9 Nov 2016 08:54:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA98sFOB078574; Wed, 9 Nov 2016 08:54:15 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA98sF6H078572; Wed, 9 Nov 2016 08:54:15 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611090854.uA98sF6H078572@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 9 Nov 2016 08:54:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425784 - in branches/2016Q4/multimedia/ffmpeg0: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 08:54:16 -0000 Author: jbeich Date: Wed Nov 9 08:54:15 2016 New Revision: 425784 URL: https://svnweb.freebsd.org/changeset/ports/425784 Log: MFH: r425782 multimedia/ffmpeg0: fix h264 decoder crash on 11.0+ i386 -mstackrealign isn't required yet unlike multimedia/ffmpeg. PR: 205958 Obtained from: https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=d2af93ac1608 Approved by: portmgr blanket Approved by: ports-secteam blanket Modified: branches/2016Q4/multimedia/ffmpeg0/Makefile branches/2016Q4/multimedia/ffmpeg0/files/patch-configure Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/multimedia/ffmpeg0/Makefile ============================================================================== --- branches/2016Q4/multimedia/ffmpeg0/Makefile Wed Nov 9 08:51:13 2016 (r425783) +++ branches/2016Q4/multimedia/ffmpeg0/Makefile Wed Nov 9 08:54:15 2016 (r425784) @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 0.7.17 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= http://ffmpeg.org/releases/ Modified: branches/2016Q4/multimedia/ffmpeg0/files/patch-configure ============================================================================== --- branches/2016Q4/multimedia/ffmpeg0/files/patch-configure Wed Nov 9 08:51:13 2016 (r425783) +++ branches/2016Q4/multimedia/ffmpeg0/files/patch-configure Wed Nov 9 08:54:15 2016 (r425784) @@ -20,6 +20,14 @@ check_header sys/videoio.h check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs" +@@ -3128,6 +3128,7 @@ elif enabled llvm_gcc; then + check_cflags -mllvm -stack-alignment=16 + elif enabled clang; then + check_cflags -mllvm -stack-alignment=16 ++ check_cflags -mstack-alignment=16 + check_cflags -Qunused-arguments + elif enabled armcc; then + # 2523: use of inline assembler is deprecated @@ -3322,7 +3322,7 @@ SRC_PATH="$source_path" SRC_PATH_BARE=$source_path From owner-svn-ports-branches@freebsd.org Wed Nov 9 09:55:20 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7BD5FC36A33; Wed, 9 Nov 2016 09:55:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31E3CE6; Wed, 9 Nov 2016 09:55:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA99tJJX002507; Wed, 9 Nov 2016 09:55:19 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA99tJgZ002505; Wed, 9 Nov 2016 09:55:19 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611090955.uA99tJgZ002505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 9 Nov 2016 09:55:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425787 - in branches/2016Q4/multimedia/kodi: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2016 09:55:20 -0000 Author: jbeich Date: Wed Nov 9 09:55:19 2016 New Revision: 425787 URL: https://svnweb.freebsd.org/changeset/ports/425787 Log: MFH: r425786 multimedia/kodi: fix h264 decoder crash on 11.0+ i386 -mstackrealign isn't required (yet?) unlike multimedia/ffmpeg. PR: 205958 Obtained from: https://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=d2af93ac1608 Approved by: portmgr blanket Approved by: ports-secteam blanket Added: branches/2016Q4/multimedia/kodi/files/patch-tools_depends_target_ffmpeg_FFmpeg-2.8.6-Jarvis-16.0_configure - copied unchanged from r425786, head/multimedia/kodi/files/patch-tools_depends_target_ffmpeg_FFmpeg-2.8.6-Jarvis-16.0_configure Modified: branches/2016Q4/multimedia/kodi/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/multimedia/kodi/Makefile ============================================================================== --- branches/2016Q4/multimedia/kodi/Makefile Wed Nov 9 09:53:11 2016 (r425786) +++ branches/2016Q4/multimedia/kodi/Makefile Wed Nov 9 09:55:19 2016 (r425787) @@ -2,6 +2,7 @@ PORTNAME= kodi DISTVERSION= 16.1 +PORTREVISION= 1 CATEGORIES= multimedia java MAINTAINER= mickael.maillot@gmail.com Copied: branches/2016Q4/multimedia/kodi/files/patch-tools_depends_target_ffmpeg_FFmpeg-2.8.6-Jarvis-16.0_configure (from r425786, head/multimedia/kodi/files/patch-tools_depends_target_ffmpeg_FFmpeg-2.8.6-Jarvis-16.0_configure) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/multimedia/kodi/files/patch-tools_depends_target_ffmpeg_FFmpeg-2.8.6-Jarvis-16.0_configure Wed Nov 9 09:55:19 2016 (r425787, copy of r425786, head/multimedia/kodi/files/patch-tools_depends_target_ffmpeg_FFmpeg-2.8.6-Jarvis-16.0_configure) @@ -0,0 +1,10 @@ +--- tools/depends/target/ffmpeg/FFmpeg-2.8.6-Jarvis-16.0/configure.orig 2016-02-03 20:33:07 UTC ++++ tools/depends/target/ffmpeg/FFmpeg-2.8.6-Jarvis-16.0/configure +@@ -5683,6 +5683,7 @@ elif enabled llvm_gcc; then + check_cflags -mllvm -stack-alignment=16 + elif enabled clang; then + check_cflags -mllvm -stack-alignment=16 ++ check_cflags -mstack-alignment=16 + check_cflags -Qunused-arguments + check_cflags -Werror=implicit-function-declaration + check_cflags -Werror=missing-prototypes From owner-svn-ports-branches@freebsd.org Thu Nov 10 08:30:47 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EEA9BC3988B; Thu, 10 Nov 2016 08:30:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9EB208AA; Thu, 10 Nov 2016 08:30:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAA8UkTD043306; Thu, 10 Nov 2016 08:30:46 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAA8UkTZ043305; Thu, 10 Nov 2016 08:30:46 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201611100830.uAA8UkTZ043305@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 10 Nov 2016 08:30:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425834 - in branches/2016Q4/lang/tcl85: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Nov 2016 08:30:48 -0000 Author: koobs Date: Thu Nov 10 08:30:46 2016 New Revision: 425834 URL: https://svnweb.freebsd.org/changeset/ports/425834 Log: MFH: r425331 - lang/tcl85: fix integer overflow and avoid segfault PR: 214205 Submitted by: gahr Approved by: ports-secteam (blanket) Added: branches/2016Q4/lang/tcl85/files/patch-bug214205 - copied unchanged from r425331, head/lang/tcl85/files/patch-bug214205 Modified: branches/2016Q4/lang/tcl85/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/lang/tcl85/Makefile ============================================================================== --- branches/2016Q4/lang/tcl85/Makefile Thu Nov 10 08:06:03 2016 (r425833) +++ branches/2016Q4/lang/tcl85/Makefile Thu Nov 10 08:30:46 2016 (r425834) @@ -3,6 +3,7 @@ PORTNAME= tcl PORTVERSION= 8.5.19 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= TCLTK/tcl8_5 \ SF/tcl/Tcl/${PORTVERSION} Copied: branches/2016Q4/lang/tcl85/files/patch-bug214205 (from r425331, head/lang/tcl85/files/patch-bug214205) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/lang/tcl85/files/patch-bug214205 Thu Nov 10 08:30:46 2016 (r425834, copy of r425331, head/lang/tcl85/files/patch-bug214205) @@ -0,0 +1,46 @@ +Index: ../generic/tclListObj.c +================================================================== +--- ../generic/tclListObj.c ++++ ../generic/tclListObj.c +@@ -853,12 +853,15 @@ + */ + count = numElems - first; + } + + if (objc > LIST_MAX - (numElems - count)) { +- Tcl_SetObjResult(interp, Tcl_ObjPrintf( +- "max length of a Tcl list (%d elements) exceeded", LIST_MAX)); ++ if (interp != NULL) { ++ Tcl_SetObjResult(interp, Tcl_ObjPrintf( ++ "max length of a Tcl list (%d elements) exceeded", ++ LIST_MAX)); ++ } + return TCL_ERROR; + } + isShared = (listRepPtr->refCount > 1); + numRequired = numElems - count + objc; /* Known <= LIST_MAX */ + + +Index: ../generic/tclListObj.c +================================================================== +--- ../generic/tclListObj.c ++++ ../generic/tclListObj.c +@@ -844,15 +844,12 @@ + if (first >= numElems) { + first = numElems; /* So we'll insert after last element. */ + } + if (count < 0) { + count = 0; +- } else if (numElems < first+count || first+count < 0) { +- /* +- * The 'first+count < 0' condition here guards agains integer +- * overflow in determining 'first+count' +- */ ++ } else if (first > INT_MAX - count /* Handle integer overflow */ ++ || numElems < first+count) { + count = numElems - first; + } + + if (objc > LIST_MAX - (numElems - count)) { + if (interp != NULL) { + From owner-svn-ports-branches@freebsd.org Fri Nov 11 05:19:21 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C342C3A37A; Fri, 11 Nov 2016 05:19:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EE77C79; Fri, 11 Nov 2016 05:19:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAB5JK7o034621; Fri, 11 Nov 2016 05:19:20 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAB5JKJW034618; Fri, 11 Nov 2016 05:19:20 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611110519.uAB5JKJW034618@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 11 Nov 2016 05:19:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425860 - in branches/2016Q4/audio/pulseaudio: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 05:19:21 -0000 Author: jbeich Date: Fri Nov 11 05:19:19 2016 New Revision: 425860 URL: https://svnweb.freebsd.org/changeset/ports/425860 Log: MFH: r425809 r425812 audio/pulseaudio: respect hw.snd.default_unit PR: 211684 Submitted by: lightside Reviewed by: Tobias Kortkamp Approved by: maintainer timeout (3 months) Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/audio/pulseaudio/Makefile branches/2016Q4/audio/pulseaudio/files/patch-src_modules_module-detect.c branches/2016Q4/audio/pulseaudio/files/pkg-message.in Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/audio/pulseaudio/Makefile ============================================================================== --- branches/2016Q4/audio/pulseaudio/Makefile Fri Nov 11 03:42:50 2016 (r425859) +++ branches/2016Q4/audio/pulseaudio/Makefile Fri Nov 11 05:19:19 2016 (r425860) @@ -6,6 +6,7 @@ PORTNAME= pulseaudio PORTVERSION= 8.0 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://freedesktop.org/software/pulseaudio/releases/ Modified: branches/2016Q4/audio/pulseaudio/files/patch-src_modules_module-detect.c ============================================================================== --- branches/2016Q4/audio/pulseaudio/files/patch-src_modules_module-detect.c Fri Nov 11 03:42:50 2016 (r425859) +++ branches/2016Q4/audio/pulseaudio/files/patch-src_modules_module-detect.c Fri Nov 11 05:19:19 2016 (r425860) @@ -10,13 +10,52 @@ static const char* const valid_modargs[] = { "just-one", -@@ -157,8 +159,7 @@ static int detect_oss(pa_core *c, int ju +@@ -157,11 +159,45 @@ static int detect_oss(pa_core *c, int ju continue; } else if (sscanf(line, "pcm%u: ", &device) == 1) { - /* FreeBSD support, the devices are named /dev/dsp0.0, dsp0.1 and so on */ - pa_snprintf(args, sizeof(args), "device=/dev/dsp%u.0", device); + pa_snprintf(args, sizeof(args), "device=/dev/dsp%u", device); ++ pa_module *m = pa_module_load(c, "module-oss", args); - if (!pa_module_load(c, "module-oss", args)) +- if (!pa_module_load(c, "module-oss", args)) ++ if (!m) ++ continue; ++ ++ if (!pa_endswith(line, "default")) continue; ++ ++ const char *p = strrchr(line, '('); ++ ++ if (!p) ++ continue; ++ ++ if (!c->default_sink && (strstr(p, "play") || (strstr(p, "p:") && !strstr(p, "(0p:")))) { ++ uint32_t idx = PA_IDXSET_INVALID; ++ pa_sink *s; ++ PA_IDXSET_FOREACH(s, c->sinks, idx) { ++ if (s->module == m) { ++ if (!pa_namereg_set_default_sink(c, s)) ++ pa_log_error("failed to set default sink for device: /dev/dsp%u", device); ++ ++ break; ++ } ++ } ++ } ++ ++ if (!c->default_source && (strstr(p, "rec") || (strstr(p, "r:") && !strstr(p, "/0r:")))) { ++ uint32_t idx = PA_IDXSET_INVALID; ++ pa_source *s; ++ PA_IDXSET_FOREACH(s, c->sources, idx) { ++ if (s->module == m) { ++ if (!pa_namereg_set_default_source(c, s)) ++ pa_log_error("failed to set default source for device: /dev/dsp%u", device); ++ ++ break; ++ } ++ } ++ } + } + + n++; Modified: branches/2016Q4/audio/pulseaudio/files/pkg-message.in ============================================================================== --- branches/2016Q4/audio/pulseaudio/files/pkg-message.in Fri Nov 11 03:42:50 2016 (r425859) +++ branches/2016Q4/audio/pulseaudio/files/pkg-message.in Fri Nov 11 05:19:19 2016 (r425860) @@ -1,8 +1,10 @@ +Pulseaudio tries to determine default values for FreeBSD OSS driver at first +start, based on /dev/sndstat output. The hw.snd.default_unit sysctl may affect +these values, but restart of the Pulseaudio might be needed to rescan it again, +e.g. `pacmd exit`. -Pulseaudio doesn't know about the hw.snd.default_unit=3 sysctl for the -FreeBSD OSS driver that is used to select the active input/output. So -for Pulseaudio we also need to tell it which input/output to use. The -difference is that Pulseaudio has separate input and output configure lines. +Pulseaudio has separate input and output configure lines. You can change them +with using following commands: To change the default sink (output): # pacmd set-default-sink 3 @@ -11,7 +13,7 @@ To change the default source (input): This can also be set in %%PREFIX%%/etc/pulse/default.pa -Replace the number '3' with the new default your want to set. +Replace the number '3' with the new default you want to set. The audio/freedesktop-sound-theme is needed if the default sound files From owner-svn-ports-branches@freebsd.org Fri Nov 11 06:09:14 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B660C3B2D7; Fri, 11 Nov 2016 06:09:14 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E74FB14C1; Fri, 11 Nov 2016 06:09:13 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAB69DvG054610; Fri, 11 Nov 2016 06:09:13 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAB69DlL054608; Fri, 11 Nov 2016 06:09:13 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201611110609.uAB69DlL054608@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 11 Nov 2016 06:09:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425862 - branches/2016Q4/biology/molden X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 06:09:14 -0000 Author: pi Date: Fri Nov 11 06:09:12 2016 New Revision: 425862 URL: https://svnweb.freebsd.org/changeset/ports/425862 Log: biology/molden: fix distinfo, set LICENSE MFH: r425806 r425830 Submitted by: marino Reported by: pkg-fallout, Eduardo Lemos de Sa Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/biology/molden/Makefile branches/2016Q4/biology/molden/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/biology/molden/Makefile ============================================================================== --- branches/2016Q4/biology/molden/Makefile Fri Nov 11 05:53:44 2016 (r425861) +++ branches/2016Q4/biology/molden/Makefile Fri Nov 11 06:09:12 2016 (r425862) @@ -3,6 +3,7 @@ PORTNAME= molden PORTVERSION= 5.7 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= biology MASTER_SITES= ftp://ftp.cmbi.ru.nl/pub/molgraph/molden/ @@ -11,7 +12,11 @@ DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= pi@FreeBSD.org COMMENT= Display molecular orbitals and electron densities in 2D and 3D -BROKEN= unfetchable, size mismatch +LICENSE= Molden +LICENSE_NAME= Molden +LICENSE_FILE= ${WRKSRC}/CopyRight +LICENSE_PERMS= auto-accept + RESTRICTED= free for academic, non profit usage; do not re-distribute source and executable. WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION} @@ -56,11 +61,11 @@ do-install: .for i in ambfor surf (cd ${WRKSRC}/${i} && ${INSTALL_PROGRAM} ${i} ${STAGEDIR}/${PREFIX}/bin) .endfor - @${MKDIR} ${STAGEDIR}${DATADIR}/test + ${MKDIR} ${STAGEDIR}${DATADIR}/test (cd ${WRKSRC}/test && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/test) - @${MKDIR} ${STAGEDIR}${DATADIR}/utils + ${MKDIR} ${STAGEDIR}${DATADIR}/utils (cd ${WRKSRC}/utils && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/utils) - @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}) .include Modified: branches/2016Q4/biology/molden/distinfo ============================================================================== --- branches/2016Q4/biology/molden/distinfo Fri Nov 11 05:53:44 2016 (r425861) +++ branches/2016Q4/biology/molden/distinfo Fri Nov 11 06:09:12 2016 (r425862) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472043944 -SHA256 (molden5.7.tar.gz) = 72c3568013a9804d8b50b6a88da4571f9d5c685ab25a740702aa119562bcf21c -SIZE (molden5.7.tar.gz) = 4958169 +TIMESTAMP = 1478691816 +SHA256 (molden5.7.tar.gz) = 4c7a6b550fefb3d71a7072c4a3a3e4793a927b62c2713180589b9481df546694 +SIZE (molden5.7.tar.gz) = 5338585 From owner-svn-ports-branches@freebsd.org Fri Nov 11 07:06:49 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B6FFC3A56B; Fri, 11 Nov 2016 07:06:49 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBF1F165A; Fri, 11 Nov 2016 07:06:48 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAB76m19078688; Fri, 11 Nov 2016 07:06:48 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAB76lif078686; Fri, 11 Nov 2016 07:06:47 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201611110706.uAB76lif078686@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 11 Nov 2016 07:06:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425866 - branches/2016Q4/devel/git-lfs X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 07:06:49 -0000 Author: rene Date: Fri Nov 11 07:06:47 2016 New Revision: 425866 URL: https://svnweb.freebsd.org/changeset/ports/425866 Log: MFH: r425729 devel/git-lfs: update to 1.4.4 - unbreak - unexpire - pass maintainership to submitter PR: 214154 Submitted by: Kenji Rikitake Approved by: three consecutive maintainer timeouts (kuriyama) Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/devel/git-lfs/Makefile branches/2016Q4/devel/git-lfs/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/devel/git-lfs/Makefile ============================================================================== --- branches/2016Q4/devel/git-lfs/Makefile Fri Nov 11 07:03:27 2016 (r425865) +++ branches/2016Q4/devel/git-lfs/Makefile Fri Nov 11 07:06:47 2016 (r425866) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= git-lfs -PORTVERSION= 1.1.0 +PORTVERSION= 1.4.4 DISTVERSIONPREFIX= v CATEGORIES= devel MASTER_SITES= GH GHC PKGNAMEPREFIX= go- -MAINTAINER= kuriyama@FreeBSD.org +MAINTAINER= kenji@k2r.org COMMENT= Git extension for versioning large files LICENSE= MIT -BROKEN= fails to build -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-11-01 +BUILD_DEPENDS= bash:shells/bash +RUN_DEPENDS= bash:shells/bash USES= go USE_GITHUB= yes @@ -23,4 +22,12 @@ PLIST_FILES= bin/git-lfs GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +# see https://github.com/github/git-lfs/wiki/Installation + +do-build: + cd ${WRKSRC} && ${MKDIR} ${WRKSRC}/.tmp && TMPDIR=${WRKSRC}/.tmp script/bootstrap + +pre-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/git-lfs ${STAGEDIR}${PREFIX}/bin/git-lfs + .include Modified: branches/2016Q4/devel/git-lfs/distinfo ============================================================================== --- branches/2016Q4/devel/git-lfs/distinfo Fri Nov 11 07:03:27 2016 (r425865) +++ branches/2016Q4/devel/git-lfs/distinfo Fri Nov 11 07:06:47 2016 (r425866) @@ -1,2 +1,3 @@ -SHA256 (git-lfs-v1.1.0_GH0.tar.gz) = 1f246ec5f1141677b05847b3e9bcb9929c9d9b1afc78585d5776a9c18186ea9b -SIZE (git-lfs-v1.1.0_GH0.tar.gz) = 345118 +TIMESTAMP = 1478133689 +SHA256 (git-lfs-v1.4.4_GH0.tar.gz) = ee4c3b459dd08cc9443fc5774baf342abc9b7975ffffbefb52b248b3eb91dd33 +SIZE (git-lfs-v1.4.4_GH0.tar.gz) = 581870 From owner-svn-ports-branches@freebsd.org Fri Nov 11 07:08:04 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F088C3A5D0; Fri, 11 Nov 2016 07:08:04 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8AC41755; Fri, 11 Nov 2016 07:08:03 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAB7824l078874; Fri, 11 Nov 2016 07:08:02 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAB782qW078872; Fri, 11 Nov 2016 07:08:02 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201611110708.uAB782qW078872@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Fri, 11 Nov 2016 07:08:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425867 - branches/2016Q4/lang/maude X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 07:08:04 -0000 Author: rene Date: Fri Nov 11 07:08:02 2016 New Revision: 425867 URL: https://svnweb.freebsd.org/changeset/ports/425867 Log: MFH: r425771 lang/maude: fix fetching and unexpire The MASTER_SITES was changed and so was the name of one distfile, the contents remained the same. PR: 210018 Submitted by: Keith Gaughan Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/lang/maude/Makefile branches/2016Q4/lang/maude/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/lang/maude/Makefile ============================================================================== --- branches/2016Q4/lang/maude/Makefile Fri Nov 11 07:06:47 2016 (r425866) +++ branches/2016Q4/lang/maude/Makefile Fri Nov 11 07:08:02 2016 (r425867) @@ -5,16 +5,12 @@ PORTNAME= maude PORTVERSION= 2.6 PORTREVISION= 1 CATEGORIES= lang -MASTER_SITES= http://maude.cs.uiuc.edu/versions/${PORTVERSION}/ +MASTER_SITES= http://maude.cs.illinois.edu/versions/${PORTVERSION}/ DISTNAME= Maude-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= High-performance reflective language -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2016-07-04 - LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING @@ -48,7 +44,7 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- .if ${PORT_OPTIONS:MFULL_MAUDE} MASTER_SITES+= http://maude.lcc.uma.es/FullMaude/FM${FULL_MAUDE_VER}/:fm FULL_MAUDE= full-maude${FULL_MAUDE_VER}.maude -FULL_MAUDE_DIST= ${FULL_MAUDE}.zip +FULL_MAUDE_DIST= full-maude.maude.zip DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${FULL_MAUDE_DIST}:fm EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} EXTRACT_DEPENDS+= ${LOCALBASE}/bin/unzip:archivers/unzip Modified: branches/2016Q4/lang/maude/distinfo ============================================================================== --- branches/2016Q4/lang/maude/distinfo Fri Nov 11 07:06:47 2016 (r425866) +++ branches/2016Q4/lang/maude/distinfo Fri Nov 11 07:08:02 2016 (r425867) @@ -1,4 +1,5 @@ +TIMESTAMP = 1478641858 SHA256 (Maude-2.6.tar.gz) = a5ba79bf3d30565c874e80b3531b51a7e835b600e86cac82508a6eb9e15f4aa0 SIZE (Maude-2.6.tar.gz) = 1600026 -SHA256 (full-maude26b.maude.zip) = 57ebfc41056b7afc2be48983f6a1311e817d23eeaaed71023471bc4edaf6b128 -SIZE (full-maude26b.maude.zip) = 154881 +SHA256 (full-maude.maude.zip) = 57ebfc41056b7afc2be48983f6a1311e817d23eeaaed71023471bc4edaf6b128 +SIZE (full-maude.maude.zip) = 154881 From owner-svn-ports-branches@freebsd.org Fri Nov 11 08:31:35 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EB49C3BF56; Fri, 11 Nov 2016 08:31:35 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28CF1154E; Fri, 11 Nov 2016 08:31:35 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAB8VYdP014777; Fri, 11 Nov 2016 08:31:34 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAB8VYNX014773; Fri, 11 Nov 2016 08:31:34 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201611110831.uAB8VYNX014773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 11 Nov 2016 08:31:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425872 - branches/2016Q4/security/openssl-devel X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 08:31:35 -0000 Author: delphij Date: Fri Nov 11 08:31:33 2016 New Revision: 425872 URL: https://svnweb.freebsd.org/changeset/ports/425872 Log: MFH: r425849 security/openssl-devel: Update to 1.1.0c - Update to 1.1.0c - Fix EC option - Fix added/removed man-pages Security: CVE-2016-7054 Security: CVE-2016-7053 Security: CVE-2016-7055 Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/security/openssl-devel/Makefile branches/2016Q4/security/openssl-devel/distinfo branches/2016Q4/security/openssl-devel/pkg-plist Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/security/openssl-devel/Makefile ============================================================================== --- branches/2016Q4/security/openssl-devel/Makefile Fri Nov 11 08:22:41 2016 (r425871) +++ branches/2016Q4/security/openssl-devel/Makefile Fri Nov 11 08:31:33 2016 (r425872) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= openssl -PORTVERSION= 1.1.0b -PORTREVISION= 1 +PORTVERSION= 1.1.0c CATEGORIES= security devel MASTER_SITES= https://www.openssl.org/source/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/ @@ -27,19 +26,21 @@ CONFIGURE_ARGS= --openssldir=${OPENSSLDI OPTIONS_GROUP= CIPHERS HASHES OPTIMIZE PROTOCOLS OPTIONS_GROUP_CIPHERS= IDEA JPAKE RC2 RC4 RC5 OPTIONS_GROUP_HASHES= MD2 MD4 MDC2 RMD160 -OPTIONS_GROUP_OPTIMIZE= ASM EC SSE2 THREADS +OPTIONS_GROUP_OPTIMIZE= ASM SSE2 THREADS OPTIONS_DEFINE_i386= I386 OPTIONS_GROUP_PROTOCOLS= NEXTPROTONEG SCTP SSL3 OPTIONS_DEFINE= MAN3 RFC3779 SHARED THREADS ZLIB -OPTIONS_DEFINE_amd64= EC -OPTIONS_DEFAULT_amd64= EC -OPTIONS_DEFINE_ia64= EC -OPTIONS_DEFAULT_ia64= EC -.if ${MACHINE_ARCH} == "mips64el" -OPTIONS_DEFINE+= EC -OPTIONS_DEFAULT+= EC +.if ${MACHINE_ARCH} == "amd64" +OPTIONS_GROUP_OPTIMIZE+= EC +OPTIONS_DEFAULT+= EC +.elif ${MACHINE_ARCH} == "ia64" +OPTIONS_GROUP_OPTIMIZE+= EC +OPTIONS_DEFAULT+= EC +.elif ${MACHINE_ARCH} == "mips64el" +OPTIONS_GROUP_OPTIMIZE+= EC +OPTIONS_DEFAULT+= EC .endif OPTIONS_DEFAULT= ASM MAN3 MD4 RC2 RC4 RMD160 SCTP SHARED SSE2 THREADS Modified: branches/2016Q4/security/openssl-devel/distinfo ============================================================================== --- branches/2016Q4/security/openssl-devel/distinfo Fri Nov 11 08:22:41 2016 (r425871) +++ branches/2016Q4/security/openssl-devel/distinfo Fri Nov 11 08:31:33 2016 (r425872) @@ -1,3 +1,3 @@ -TIMESTAMP = 1474897657 -SHA256 (openssl-1.1.0b.tar.gz) = a45de072bf9be4dea437230aaf036000f0e68c6a665931c57e76b5b036cef6f7 -SIZE (openssl-1.1.0b.tar.gz) = 5162355 +TIMESTAMP = 1478791341 +SHA256 (openssl-1.1.0c.tar.gz) = fc436441a2e05752d31b4e46115eb89709a28aef96d4fe786abe92409b2fd6f5 +SIZE (openssl-1.1.0c.tar.gz) = 5179668 Modified: branches/2016Q4/security/openssl-devel/pkg-plist ============================================================================== --- branches/2016Q4/security/openssl-devel/pkg-plist Fri Nov 11 08:22:41 2016 (r425871) +++ branches/2016Q4/security/openssl-devel/pkg-plist Fri Nov 11 08:31:33 2016 (r425872) @@ -1247,6 +1247,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/EVP_OpenInit.3.gz %%MAN3%%man/man3/EVP_OpenUpdate.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_add1_hkdf_info.3.gz +%%MAN3%%man/man3/EVP_PKEY_CTX_add1_tls1_prf_seed.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_ctrl.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_ctrl_str.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_dup.3.gz @@ -1258,6 +1259,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/EVP_PKEY_CTX_new_id.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set1_hkdf_key.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set1_hkdf_salt.3.gz +%%MAN3%%man/man3/EVP_PKEY_CTX_set1_tls1_prf_secret.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set_app_data.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set_cb.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set_dh_paramgen_generator.3.gz @@ -1271,6 +1273,7 @@ man/man1/x509.1.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set_rsa_pss_saltlen.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set_rsa_rsa_keygen_bits.3.gz %%MAN3%%man/man3/EVP_PKEY_CTX_set_signature_md.3.gz +%%MAN3%%man/man3/EVP_PKEY_CTX_set_tls1_prf_md.3.gz %%MAN3%%man/man3/EVP_PKEY_assign_DH.3.gz %%MAN3%%man/man3/EVP_PKEY_assign_DSA.3.gz %%MAN3%%man/man3/EVP_PKEY_assign_EC_KEY.3.gz @@ -2437,8 +2440,6 @@ man/man1/x509.1.gz %%MAN3%%man/man3/X509_CINF_new.3.gz %%MAN3%%man/man3/X509_CRL_INFO_free.3.gz %%MAN3%%man/man3/X509_CRL_INFO_new.3.gz -%%MAN3%%man/man3/X509_CRL_METHOD_free.3.gz -%%MAN3%%man/man3/X509_CRL_METHOD_new.3.gz %%MAN3%%man/man3/X509_CRL_add0_revoked.3.gz %%MAN3%%man/man3/X509_CRL_add1_ext_i2d.3.gz %%MAN3%%man/man3/X509_CRL_add_ext.3.gz From owner-svn-ports-branches@freebsd.org Fri Nov 11 11:24:09 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 874CEC37815; Fri, 11 Nov 2016 11:24:09 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D4BB100C; Fri, 11 Nov 2016 11:24:09 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uABBO8QF083917; Fri, 11 Nov 2016 11:24:08 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uABBO8d5083915; Fri, 11 Nov 2016 11:24:08 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201611111124.uABBO8d5083915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 11 Nov 2016 11:24:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425884 - branches/2016Q4/www/linux-c6-flashplugin11 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 11:24:09 -0000 Author: tijl Date: Fri Nov 11 11:24:08 2016 New Revision: 425884 URL: https://svnweb.freebsd.org/changeset/ports/425884 Log: MFH: r425840 Update flash plugin to 11.2r202.644. Security: https://helpx.adobe.com/security/products/flash-player/apsb16-37.html Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/www/linux-c6-flashplugin11/Makefile branches/2016Q4/www/linux-c6-flashplugin11/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/www/linux-c6-flashplugin11/Makefile ============================================================================== --- branches/2016Q4/www/linux-c6-flashplugin11/Makefile Fri Nov 11 11:20:52 2016 (r425883) +++ branches/2016Q4/www/linux-c6-flashplugin11/Makefile Fri Nov 11 11:24:08 2016 (r425884) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplugin -PORTVERSION= 11.2r202.643 +PORTVERSION= 11.2r202.644 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:S/r/./}/:plugin \ LOCAL/nox:suplib Modified: branches/2016Q4/www/linux-c6-flashplugin11/distinfo ============================================================================== --- branches/2016Q4/www/linux-c6-flashplugin11/distinfo Fri Nov 11 11:20:52 2016 (r425883) +++ branches/2016Q4/www/linux-c6-flashplugin11/distinfo Fri Nov 11 11:24:08 2016 (r425884) @@ -1,5 +1,5 @@ -TIMESTAMP = 1477572180 -SHA256 (flashplugin/11.2r202.643/install_flash_player_11_linux.i386.tar.gz) = b3cb465620b18df1a4cb88427f2e3c7bd080ee23883b05f94245187a783fa25c -SIZE (flashplugin/11.2r202.643/install_flash_player_11_linux.i386.tar.gz) = 6991072 -SHA256 (flashplugin/11.2r202.643/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.643/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +TIMESTAMP = 1478773365 +SHA256 (flashplugin/11.2r202.644/install_flash_player_11_linux.i386.tar.gz) = 63ca6e1ad1e1b39ae6e35265b628a818dfc4544b1aa857b8a8365d056779f297 +SIZE (flashplugin/11.2r202.644/install_flash_player_11_linux.i386.tar.gz) = 6992226 +SHA256 (flashplugin/11.2r202.644/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.644/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 From owner-svn-ports-branches@freebsd.org Sat Nov 12 00:49:06 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 90CF9C3AE9B; Sat, 12 Nov 2016 00:49:06 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52EE51C13; Sat, 12 Nov 2016 00:49:06 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAC0n5a1026764; Sat, 12 Nov 2016 00:49:05 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAC0n58V026761; Sat, 12 Nov 2016 00:49:05 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201611120049.uAC0n58V026761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sat, 12 Nov 2016 00:49:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425917 - in branches/2016Q4/databases/mariadb101-server: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Nov 2016 00:49:06 -0000 Author: brnrd Date: Sat Nov 12 00:49:05 2016 New Revision: 425917 URL: https://svnweb.freebsd.org/changeset/ports/425917 Log: MFH: r424132 r425398 r425916 databases/mariadb101-server: Update to 10.1.18 - Regular update to 10.1.18 Fix data encryption at rest when building with LibreSSL Replace RAND_SSLeay->bytes with arc4random_buf when using LibreSSL, as it supports RAND_SSLeay only for ABI compatibility [0]. Note that the code in question in mariadb mentions that RAND_bytes isn't guaranteed to not block and therefore uses these functions directly. As LibreSSL implements RAND_bytes in terms of arc4random_buf, which shouldn't block, the patch could also use RAND_bytes instead of using arc4random_buf directly, but the current version of the patch has been tested in production and might be less confusing overall. Bumped revision, as this fixes a runtime problem. [0] https://github.com/libressl/libressl/blob/master/src/crypto/rand/rand_lib.c#L36 PR: 213577 Approved by: ssl blanket databases/mariadb101-server: Update to 10.1.19 - Update to 10.1.19 - Use target-OPT-on not .if exists - Remove OQGraph patches now included upstream PR: 213902 Security: 9bc14850-a070-11e6-a881-b499baebfeaf Approved by: ports-secteam (junovitch) Added: branches/2016Q4/databases/mariadb101-server/files/patch-mysys_ssl-my_crypt.cc - copied unchanged from r425398, head/databases/mariadb101-server/files/patch-mysys_ssl-my_crypt.cc Deleted: branches/2016Q4/databases/mariadb101-server/files/patch-storage_oqgraph_graphcore.cc branches/2016Q4/databases/mariadb101-server/files/patch-storage_oqgraph_oqgraph__shim.h Modified: branches/2016Q4/databases/mariadb101-server/Makefile branches/2016Q4/databases/mariadb101-server/distinfo Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/databases/mariadb101-server/Makefile ============================================================================== --- branches/2016Q4/databases/mariadb101-server/Makefile Sat Nov 12 00:11:26 2016 (r425916) +++ branches/2016Q4/databases/mariadb101-server/Makefile Sat Nov 12 00:49:05 2016 (r425917) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.1.17 +PORTVERSION= 10.1.19 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ http://mirrors.supportex.net/${SITESDIR}/ \ @@ -173,10 +173,8 @@ post-patch: ${WRKSRC}/cmake/os/DragonFly.cmake .endif -.if exists(${WRKSRC}/storage/mroonga/CMakeFiles/mroonga.dir/link.txt) -post-configure: +post-configure-MROONGA-on: @${REINPLACE_CMD} "s|/usr/bin/c++ |/usr/bin/c++ -L${LOCALBASE}/lib |" \ ${WRKSRC}/storage/mroonga/CMakeFiles/mroonga.dir/link.txt -.endif .include Modified: branches/2016Q4/databases/mariadb101-server/distinfo ============================================================================== --- branches/2016Q4/databases/mariadb101-server/distinfo Sat Nov 12 00:11:26 2016 (r425916) +++ branches/2016Q4/databases/mariadb101-server/distinfo Sat Nov 12 00:49:05 2016 (r425917) @@ -1,3 +1,3 @@ -TIMESTAMP = 1472628631 -SHA256 (mariadb-10.1.17.tar.gz) = 4ca45ac5e34418761868115ebc8c068d511fed08e283b2cac52559d63ba4aab5 -SIZE (mariadb-10.1.17.tar.gz) = 61158134 +TIMESTAMP = 1478591187 +SHA256 (mariadb-10.1.19.tar.gz) = 5b9373f314e2d1727422fb3795bcf50c1c59005129b35b6cadafae5663251a81 +SIZE (mariadb-10.1.19.tar.gz) = 61222929 Copied: branches/2016Q4/databases/mariadb101-server/files/patch-mysys_ssl-my_crypt.cc (from r425398, head/databases/mariadb101-server/files/patch-mysys_ssl-my_crypt.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/databases/mariadb101-server/files/patch-mysys_ssl-my_crypt.cc Sat Nov 12 00:49:05 2016 (r425917, copy of r425398, head/databases/mariadb101-server/files/patch-mysys_ssl-my_crypt.cc) @@ -0,0 +1,25 @@ +--- mysys_ssl/my_crypt.cc.orig 2016-08-29 16:38:54.000000000 +0200 ++++ mysys_ssl/my_crypt.cc 2016-10-17 19:14:45.146531847 +0200 +@@ -275,10 +275,14 @@ + return MY_AES_OK; + } + #else ++#include + #include + + int my_random_bytes(uchar *buf, int num) + { ++#if defined(LIBRESSL_VERSION_NUMBER) ++ arc4random_buf(buf, num); ++#else + /* + Unfortunately RAND_bytes manual page does not provide any guarantees + in relation to blocking behavior. Here we explicitly use SSLeay random +@@ -288,6 +292,7 @@ + RAND_METHOD *rand = RAND_SSLeay(); + if (rand == NULL || rand->bytes(buf, num) != 1) + return MY_AES_OPENSSL_ERROR; ++#endif + return MY_AES_OK; + } + #endif From owner-svn-ports-branches@freebsd.org Sat Nov 12 08:52:00 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88517C3DC8F; Sat, 12 Nov 2016 08:52:00 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 567E51BD5; Sat, 12 Nov 2016 08:52:00 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAC8px3i019993; Sat, 12 Nov 2016 08:51:59 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAC8pxjv019992; Sat, 12 Nov 2016 08:51:59 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201611120851.uAC8pxjv019992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sat, 12 Nov 2016 08:51:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425925 - branches/2016Q4/games/tome4 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Nov 2016 08:52:00 -0000 Author: matthew Date: Sat Nov 12 08:51:59 2016 New Revision: 425925 URL: https://svnweb.freebsd.org/changeset/ports/425925 Log: MFH: r425910 r425913 Use the portable vesion of luajit when building on aarch64 PR: 214411 Submitted by: lifanov@mail.lifanov.com (maintainer) Fix build from command-line: use-before-defined of ${ARCH} Curiously, test bulding with poudriere worked fine. PR: 214411 Reported by: FreshPorts sanity checking Approved by: ports-secteam (junovitch) Modified: branches/2016Q4/games/tome4/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/games/tome4/Makefile ============================================================================== --- branches/2016Q4/games/tome4/Makefile Sat Nov 12 08:51:34 2016 (r425924) +++ branches/2016Q4/games/tome4/Makefile Sat Nov 12 08:51:59 2016 (r425925) @@ -33,9 +33,17 @@ USE_CSTD= gnu89 SUB_FILES= tome4 MAKE_JOBS_UNSAFE=yes +LUA_TYPE= + +.include + pre-build: @${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/premake4.lua +.if ${ARCH} == aarch64 + (cd ${WRKSRC} && premake4 --lua=default gmake) +.else (cd ${WRKSRC} && premake4 gmake) +.endif @${REINPLACE_CMD} 's|-lpthread|-pthread|' ${WRKSRC}/build/TEngine.make do-install: @@ -46,4 +54,4 @@ do-install: ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps -.include +.include From owner-svn-ports-branches@freebsd.org Sat Nov 12 16:58:54 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 662F3C3DC1B; Sat, 12 Nov 2016 16:58:54 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28BBA1CDE; Sat, 12 Nov 2016 16:58:54 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uACGwrK2016332; Sat, 12 Nov 2016 16:58:53 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uACGwria016331; Sat, 12 Nov 2016 16:58:53 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201611121658.uACGwria016331@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sat, 12 Nov 2016 16:58:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r425967 - in branches/2016Q4/multimedia/kodi: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Nov 2016 16:58:54 -0000 Author: cpm Date: Sat Nov 12 16:58:53 2016 New Revision: 425967 URL: https://svnweb.freebsd.org/changeset/ports/425967 Log: MFH: r425964 multimedia/kodi: Fix linking error on FreeBSD gmake[3]: Leaving directory '/usr/ports/multimedia/kodi/work/xbmc-f4dda26/xbmc/cores/dvdplayer/DVDInputStreams' CPP xbmc/guilib/TextureManager.o CPP xbmc/guilib/VisibleEffect.o CPP xbmc/guilib/XBTF.o CPP xbmc/guilib/XBTFReader.o CPP xbmc/guilib/TextureGL.o CPP xbmc/guilib/GUIFontTTFGL.o CPP xbmc/guilib/GUITextureGL.o CPP xbmc/guilib/MatrixGLES.o AR xbmc/guilib/guilib.a gmake[3]: Leaving directory '/usr/ports/multimedia/kodi/work/xbmc-f4dda26/xbmc/guilib' LD kodi.bin xbmc/guilib/guilib.a(DDSImage.o): In function `CDDSImage::Compress(unsigned int, unsigned int, unsigned int, unsigned char const*, double)': DDSImage.cpp:(.text+0x5b0): undefined reference to `squish::CompressImage(unsigned char const*, int, int, int, void*, int, float*)' DDSImage.cpp:(.text+0x5e2): undefined reference to `squish::ComputeMSE(unsigned char const*, int, int, int, unsigned char const*, int, double&, double&)' DDSImage.cpp:(.text+0x6ea): undefined reference to `squish::CompressImage(unsigned char const*, int, int, int, void*, int, float*)' DDSImage.cpp:(.text+0x718): undefined reference to `squish::ComputeMSE(unsigned char const*, int, int, int, unsigned char const*, int, double&, double&)' DDSImage.cpp:(.text+0x75f): undefined reference to `squish::CompressImage(unsigned char const*, int, int, int, void*, int, float*)' DDSImage.cpp:(.text+0x78d): undefined reference to `squish::ComputeMSE(unsigned char const*, int, int, int, unsigned char const*, int, double&, double&)' xbmc/guilib/guilib.a(DDSImage.o): In function `CDDSImage::Decompress(unsigned char*, unsigned int, unsigned int, unsigned int, unsigned char const*, unsigned int)': DDSImage.cpp:(.text+0x9a5): undefined reference to `squish::DecompressImage(unsigned char*, int, int, int, void const*, int)' c++: error: linker command failed with exit code 1 (use -v to see invocation) Makefile:486: recipe for target 'kodi.bin' failed gmake[2]: *** [kodi.bin] Error 1 gmake[2]: Leaving directory '/usr/ports/multimedia/kodi/work/xbmc-f4dda26' ===> Compilation failed unexpectedly. Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. *** Error code 1 Stop. make[1]: stopped in /usr/ports/multimedia/kodi *** Error code 1 Stop. make: stopped in /usr/ports/multimedia/kodi PR: 204380 Submitted by: Tomasz Sowa Reported by: Andrew Reviewed by: feld, junovitch, koobs (mentors) Approved by: Mickael Maillot (maintainer timeout, 9 months), feld, junovitch, koobs (mentors) Approved by: ports-secteam (feld) Added: branches/2016Q4/multimedia/kodi/files/patch-Makefile.in - copied unchanged from r425964, head/multimedia/kodi/files/patch-Makefile.in Modified: branches/2016Q4/multimedia/kodi/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/multimedia/kodi/Makefile ============================================================================== --- branches/2016Q4/multimedia/kodi/Makefile Sat Nov 12 16:28:08 2016 (r425966) +++ branches/2016Q4/multimedia/kodi/Makefile Sat Nov 12 16:58:53 2016 (r425967) @@ -2,7 +2,7 @@ PORTNAME= kodi DISTVERSION= 16.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia java MAINTAINER= mickael.maillot@gmail.com Copied: branches/2016Q4/multimedia/kodi/files/patch-Makefile.in (from r425964, head/multimedia/kodi/files/patch-Makefile.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/multimedia/kodi/files/patch-Makefile.in Sat Nov 12 16:58:53 2016 (r425967, copy of r425964, head/multimedia/kodi/files/patch-Makefile.in) @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2016-10-20 18:15:13 UTC ++++ Makefile.in +@@ -434,7 +434,7 @@ endif + ifeq ($(findstring osx,@ARCH@), osx) + $(SILENT_LD) $(CXX) $(LDFLAGS) -o @APP_NAME_LC@.bin $(MAINOBJS) -Wl,-all_load,-ObjC $(MAINOBJS) $(DYNOBJSXBMC) $(NWAOBJSXBMC) $(OBJSXBMC) $(LIBS) -rdynamic + else +- $(SILENT_LD) $(CXX) $(CXXFLAGS) $(LDFLAGS) -o @APP_NAME_LC@.bin $(MAINOBJS) -Wl,--start-group $(MAINOBJS) $(DYNOBJSXBMC) $(OBJSXBMC) -Wl,--end-group $(NWAOBJSXBMC) $(LIBS) -rdynamic ++ $(SILENT_LD) $(CXX) $(CXXFLAGS) $(LDFLAGS) -o @APP_NAME_LC@.bin $(MAINOBJS) -Wl,--start-group $(MAINOBJS) $(DYNOBJSXBMC) $(OBJSXBMC) -Wl,--end-group $(NWAOBJSXBMC) $(LIBS) -rdynamic ./tools/depends/native/libsquish-native/squish-install/lib/libsquish.a + endif + + @APP_NAME_LC@-xrandr: xbmc-xrandr.c