aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update TiLP2+libraries and drop maintainership.Tijl Coosemans2018-06-0817-77/+105
| | | | | | | | TiLP2 1.18, libticables2 1.3.5, libticalcs2 1.1.9, libticonv 1.1.5, and libtifiles2 1.1.7 Notes: svn path=/head/; revision=472009
* Add din 30, DIN Is Noise is an open source, cross-platform soundPhilip Paeps2018-06-086-0/+530
| | | | | | | | | synthesizer. Submitted by: Santhosh Raju <santhosh.raju@gmail.com> Notes: svn path=/head/; revision=472008
* Add perftest 4.2.0.7, collection of tests for RDMA micro-benchmark.Philip Paeps2018-06-085-0/+58
| | | | | | | | | | | | Note that these tests will only work on systems with OFED support (make buildworld WITH_OFED=). PR: 228591 Submitted by: Slava Shwartsman <slavash@FreeBSD.org> Reviewed by: bapt Notes: svn path=/head/; revision=472007
* Fix vuxml build.Glen Barber2018-06-081-0/+1
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=472005
* Add entry for gnupg CVEAdam Weinberger2018-06-081-0/+31
| | | | Notes: svn path=/head/; revision=472004
* Update gnupg to 2.2.8 (security release)Adam Weinberger2018-06-082-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CVE-2018-12020: The OpenPGP protocol allows to include the file name of the original input file into a signed or encrypted message. During decryption and verification the GPG tool can display a notice with that file name. The displayed file name is not sanitized and as such may include line feeds or other control characters. This can be used inject terminal control sequences into the out and, worse, to fake the so-called status messages. These status messages are parsed by programs to get information from gpg about the validity of a signature and an other parameters. Status messages are created with the option "--status-fd N" where N is a file descriptor. Now if N is 2 the status messages and the regular diagnostic messages share the stderr output channel. By using a made up file name in the message it is possible to fake status messages. Using this technique it is for example possible to fake the verification status of a signed mail. Also: * gpg: Decryption of messages not using the MDC mode will now lead to a hard failure even if a legacy cipher algorithm was used. The option --ignore-mdc-error can be used to turn this failure into a warning. Take care: Never use that option unconditionally or without a prior warning. * gpg: The MDC encryption mode is now always used regardless of the cipher algorithm or any preferences. For testing --rfc2440 can be used to create a message without an MDC. * gpg: Sanitize the diagnostic output of the original file name in verbose mode. [#4012,CVE-2018-12020] * gpg: Detect suspicious multiple plaintext packets in a more reliable way. [#4000] * gpg: Fix the duplicate key signature detection code. [#3994] * gpg: The options --no-mdc-warn, --force-mdc, --no-force-mdc, --disable-mdc and --no-disable-mdc have no more effect. * agent: Add DBUS_SESSION_BUS_ADDRESS and a few other envvars to the list of startup environment variables. [#3947] MFH: 2018Q2 Security: CVE-2018-12020 Notes: svn path=/head/; revision=472003
* www/waterfox: restore FF61 fix after r471887Jan Beich2018-06-082-1/+37
| | | | Notes: svn path=/head/; revision=472001
* Transfer more Erlang ports to erlang@.Jimmy Olgeni2018-06-08131-131/+131
| | | | Notes: svn path=/head/; revision=472000
* Fix build with LibreSSL 2.7.Mathieu Arnold2018-06-081-0/+386
| | | | | | | | | | PR: 226903 Submitted by: Charlie Li Reported by: Piotr Kubaj Sponsored by: Absolight Notes: svn path=/head/; revision=471999
* emulators/citra: don't run tests on some non-x86Jan Beich2018-06-081-0/+2
| | | | | | | | | | | | | | | | | | | | qemu-user-static hangs on armv6 and crashes on aarch64. $ make test [0/1] cd /wrkdirs/usr/ports/emulators/citra/work/.build && /usr/local/bin/ctest --force-new-ctest-process Test project /wrkdirs/usr/ports/emulators/citra/work/.build Start 1: tests FAILED: CMakeFiles/test.util cd /wrkdirs/usr/ports/emulators/citra/work/.build && /usr/local/bin/ctest --force-new-ctest-process ninja: build stopped: subcommand failed. *** Error code 1 $ /wrkdirs/usr/ports/emulators/citra/work/.build/src/tests/tests =============================================================================== All tests passed (244 assertions in 14 test cases) Notes: svn path=/head/; revision=471998
* devel/aphpunit: Update from 1.4 to 1.5Torsten Zuehlsdorff2018-06-082-5/+4
| | | | | | | | | | Changelog: - Feature: Add optional description for failed assertions - Bugfix: Check if all needed PHP extensions are loaded - Bugfix: Add missing required PHP extensions to composer.json Notes: svn path=/head/; revision=471997
* Update to 0.061.Vanilla I. Shu2018-06-082-4/+4
| | | | Notes: svn path=/head/; revision=471996
* - Whitespace fixDmitry Marakasov2018-06-082-2/+2
| | | | | | | | | - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=471995
* SC1004: This backslash+linefeed is literal. Break outside single quotes if ↵Mathieu Arnold2018-06-082-39/+39
| | | | | | | | | | | | | | | | | | | you just want to break the line. You have a single quoted string containing a backslash followed by a linefeed (newline). Unlike double quotes or unquoted strings, this has no special meaning. The string will contain a literal backslash and a linefeed. If you wanted to break the line but not add a linefeed to the string, stop the single quote, break the line, and reopen it. PR: 227109 Submitted by: mat Sponsored by: Absolight Notes: svn path=/head/; revision=471994
* SC2035: Use ./*glob* or -- *glob* so names with dashes won't become options.Mathieu Arnold2018-06-081-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | Since files and arguments are strings passed the same way, programs can't properly determine which is which, and rely on dashes to determine what's what. A file named -f (touch -- -f) will not be deleted by the problematic code. It will instead be interpreted as a command line option, and rm will even report success. Using ./* will instead cause the glob to be expanded into ./-f, which no program will treat as an option. It is not possible to use `-f *` because -f only forces the next argument to be a directory, a later directory named -delete would mess things up. PR: 227109 Submitted by: mat Sponsored by: Absolight Notes: svn path=/head/; revision=471993
* SC2162: read without -r will mangle backslashes.Mathieu Arnold2018-06-084-21/+21
| | | | | | | | | | | | | | | By default, read will interpret backslashes before spaces and line feeds, and otherwise strip them. This is rarely expected or desired. Normally you just want to read data, which is what read -r does. You should always use -r unless you have a good reason not to. PR: 227109 Submitted by: mat Sponsored by: Absolight Notes: svn path=/head/; revision=471992
* SC2015: Note that A && B || C is not if-then-else. C may run when A is true.Mathieu Arnold2018-06-081-3/+4
| | | | | | | | | | | | | | | | | | | It's common to use A && B to run B when A is true, and A || C to run C when A is false. However, combining them into A && B || C is not the same as if A then B else C. In this case, if A is true but B is false, C will run. If an if clause is used instead, this problem is avoided. PR: 227109 Submitted by: mat Sponsored by: Absolight Notes: svn path=/head/; revision=471991
* Don't exec with a pipe afterwards, it is weird.Mathieu Arnold2018-06-081-1/+1
| | | | | | | | | PR: 227109 Submitted by: mat Sponsored by: Absolight Notes: svn path=/head/; revision=471990
* SC2185: Some finds don't have a default path. Specify '.' explicitly.Mathieu Arnold2018-06-081-5/+5
| | | | | | | | | | | (false positive, split flags to avoid triggering it.) PR: 227109 Submitted by: mat Sponsored by: Absolight Notes: svn path=/head/; revision=471989
* SC2046: Quote this to prevent word splitting.Mathieu Arnold2018-06-085-5/+9
| | | | | | | | | | | | | | | | | | | | | | When command expansions are unquoted, word splitting and globbing will occur. This often manifests itself by breaking when filenames contain spaces. Trying to fix it by adding quotes or escapes to the data will not work. Instead, quote the command substitution itself. If the command substitution outputs multiple pieces of data, use a loop instead. Add an exception when using set -- where splitting is intended. PR: 227109 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=471988
* - Add LICENSEDmitry Marakasov2018-06-082-1/+4
| | | | | | | | | - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=471987
* - Switch to new test frameworkDmitry Marakasov2018-06-081-1/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=471986
* games/multimc: Update to 0.6.2Tobias Kortkamp2018-06-085-66/+10
| | | | | | | | | Changes: https://multimc.org/posts/0-6-2-update.html PR: 228819 Submitted by: tsundoku <me@tsundoku.ne.jp> (maintainer) Notes: svn path=/head/; revision=471985
* security/vuxml: mark firefox < 60.0.2 as vulnerableJan Beich2018-06-081-0/+41
| | | | Notes: svn path=/head/; revision=471984
* lang/elixir: transfer maintainership to erlang@.Jimmy Olgeni2018-06-081-1/+1
| | | | Notes: svn path=/head/; revision=471983
* Update devel/elixir-smppex to version 2.2.7.Jimmy Olgeni2018-06-083-4/+6
| | | | Notes: svn path=/head/; revision=471982
* Mark as broken on powerpc64.Mark Linimon2018-06-082-0/+4
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471981
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+1
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471980
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+1
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471979
* Mark as broken on various tier-2 archs.Mark Linimon2018-06-081-0/+4
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471978
* Also mark broken on other tier-2 archs.Mark Linimon2018-06-081-0/+3
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471977
* Mark as broken on powerpc64.Mark Linimon2018-06-081-3/+6
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471976
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471975
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471974
* Mark as broken on various tier-2 archs.Mark Linimon2018-06-081-1/+5
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471973
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471972
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471971
* Mark broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471970
* Mark broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471969
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | Notes: svn path=/head/; revision=471968
* Mark as broken on various tier-2 archs.Mark Linimon2018-06-081-0/+5
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471967
* Mark broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471966
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+1
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471965
* Mark as broken on powerpc64.Mark Linimon2018-06-081-0/+2
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471964
* Update port to 4.8.2 version. That fixes major bug with the AD/DC upgrade ↵Timur I. Bakeyev2018-06-0818-84/+1061
| | | | | | | | | | | | | | | from the previous versions: * After update to 4.8.0 DC failed with "Failed to find our own NTDS Settings objectGUID" (bug #13335). * Fix to the vfs_streams_xattr module which was corrupting AFP_AfpInfo attributes. * Fix provisioning on the UFS2. * Allow access to the .zfs/ hidden directory. * Fix logging to the UTMP Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471963
* Attempt to fix build. The kmm_ofximport_dialogs target depends onJason E. Hale2018-06-081-0/+13
| | | | | | | | | | | kmymoneysettings.h which is generated by the kmm_settings target. kmymoney/plugins/ofximport/dialogs/kofxdirectconnectdlg.cpp:19:10: fatal error: 'kmymoneysettings.h' file not found Reported by: pkg-fallout Notes: svn path=/head/; revision=471962
* Document the latest Flash Player vulnerabilities.Jung-uk Kim2018-06-081-0/+38
| | | | | | | https://helpx.adobe.com/security/products/flash-player/apsb18-19.html Notes: svn path=/head/; revision=471961
* Catch up with Flash Player 30.0.0.113.Jung-uk Kim2018-06-081-1/+1
| | | | Notes: svn path=/head/; revision=471958
* Update to 30.0.0.113.Jung-uk Kim2018-06-082-4/+4
| | | | | | | https://helpx.adobe.com/security/products/flash-player/apsb18-19.html Notes: svn path=/head/; revision=471957
* sysutils/immortal: Update 0.20.0Danilo G. Baio2018-06-072-4/+4
| | | | | | | | | | Changes: https://raw.githubusercontent.com/immortal/immortal/0.20.0/CHANGELOG.md PR: 228815 Submitted by: nbari@tequila.io (maintainer) Notes: svn path=/head/; revision=471956