aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* MFH: r456086Jan Beich2017-12-121-3/+1
| | | | | | | | | | | | | | | | textproc/ansifilter: require C++11 toolchain (on powerpc*, mips*, sparc*) cc1plus: error: unrecognized command line option "-std=c++11" main.cpp:118:5: error: use of undeclared identifier 'unique_ptr' unique_ptr<ansifilter::CodeGenerator> generator(ansifilter::CodeGenerator::getInstance(op... ^ Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=456087
* MFH: r456078Jan Beich2017-12-121-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | net/ns3: require C++11 toolchain (on powerpc*, mips*, sparc*) cc1plus: error: unrecognized command line option "-std=c++11" ../examples/wireless/wifi-multi-tos.cc:124:24: error: no matching constructor for initialization of 'std::vector<uint8_t>' (aka 'vector<unsigned char>') std::vector<uint8_t> tosValues = {0x70, 0x28, 0xb8, 0xc0}; //AC_BE, AC_BK, AC_VI, AC_VO ^ ~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/4.2/bits/stl_vector.h:266:9: note: candidate constructor template not viable: requires at most 3 arguments, but 4 were provided vector(_InputIterator __first, _InputIterator __last, ^ /usr/include/c++/4.2/bits/stl_vector.h:224:7: note: candidate constructor not viable: requires at most 3 arguments, but 4 were provided vector(size_type __n, const value_type& __value = value_type(), ^ /usr/include/c++/4.2/bits/stl_vector.h:212:7: note: candidate constructor not viable: requires single argument '__a', but 4 arguments were provided vector(const allocator_type& __a) ^ /usr/include/c++/4.2/bits/stl_vector.h:242:7: note: candidate constructor not viable: requires single argument '__x', but 4 arguments were provided vector(const vector& __x) ^ /usr/include/c++/4.2/bits/stl_vector.h:208:7: note: candidate constructor not viable: requires 0 arguments, but 4 were provided vector() ^ 1 error generated. Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=456085
* MFH: r456077Jan Beich2017-12-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | dns/packetq: require C++11 toolchain (on powerpc*, mips*, sparc*) cc1plus: error: unrecognized command line option "-std=c++0x" In file included from dns.cpp:22: In file included from ./dns.h:31: In file included from ./packet_handler.h:33: In file included from ./sql.h:43: ./variant.h:297:34: error: expected '(' for function-style cast or type construction return std::hash<bool>()(m_val.m_bool); ~~~~^ ./variant.h:297:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash<bool>()(m_val.m_bool); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:297:36: error: expected expression return std::hash<bool>()(m_val.m_bool); ^ ./variant.h:299:33: error: expected '(' for function-style cast or type construction return std::hash<int>()(m_val.m_int); ~~~^ ./variant.h:299:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash<int>()(m_val.m_int); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:299:35: error: expected expression return std::hash<int>()(m_val.m_int); ^ ./variant.h:301:35: error: expected '(' for function-style cast or type construction return std::hash<float>()(m_val.m_float); ~~~~~^ ./variant.h:301:20: error: no member named 'hash' in namespace 'std'; did you mean simply 'hash'? return std::hash<float>()(m_val.m_float); ^~~~~~~~~ hash ./variant.h:293:17: note: 'hash' declared here std::size_t hash() const ^ ./variant.h:301:37: error: expected expression return std::hash<float>()(m_val.m_float); ^ In file included from dns.cpp:22: In file included from ./dns.h:31: In file included from ./packet_handler.h:33: ./sql.h:1766:8: error: explicit specialization of non-template struct 'hash' struct hash<std::vector<packetq::Variant> > { ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 10 errors generated. Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=456083
* MFH: r456076Jan Beich2017-12-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | devel/breakpad: require C++11 toolchain (on powerpc*, mips*, sparc*) checking whether /nxb-bin/usr/bin/c++ supports C++11 features by default... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with -std=c++11... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with -std=c++0x... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with +std=c++11... no checking whether /nxb-bin/usr/bin/c++ supports C++11 features with -h std=c++11... no configure: error: *** A compiler with support for C++11 language features is required. In file included from src/processor/basic_code_modules.cc:46: ./src/processor/range_map-inl.h:132:14: error: no matching member function for call to 'erase' map_.erase(iterator_high); ~~~~~^~~~~ ./src/processor/range_map-inl.h:64:10: note: in instantiation of member function 'google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::StoreRangeInternal' requested here return StoreRangeInternal(base, 0 /* delta */, size, entry); ^ src/processor/basic_code_modules.cc:71:15: note: in instantiation of member function 'google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::StoreRange' requested here if (!map_.StoreRange(module->base_address(), module->size(), module)) { ^ /usr/include/c++/4.2/bits/stl_map.h:453:7: note: candidate function not viable: no known conversion from 'google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::MapConstIterator' (aka '_Rb_tree_const_iterator<std::pair<const unsigned long, google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Range> >') to 'std::map<unsigned long, google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Range, std::less<unsigned long>, std::allocator<std::pair<const unsigned long, google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Range> > >::iterator' (aka '_Rb_tree_iterator<std::pair<const unsigned long, google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Range> >') for 1st argument erase(iterator __position) ^ /usr/include/c++/4.2/bits/stl_map.h:468:7: note: candidate function not viable: no known conversion from 'google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::MapConstIterator' (aka '_Rb_tree_const_iterator<std::pair<const unsigned long, google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Range> >') to 'const std::map<unsigned long, google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Range, std::less<unsigned long>, std::allocator<std::pair<const unsigned long, google_breakpad::RangeMap<unsigned long, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >::Range> > >::key_type' (aka 'const unsigned long') for 1st argument erase(const key_type& __x) ^ /usr/include/c++/4.2/bits/stl_map.h:483:7: note: candidate function not viable: requires 2 arguments, but 1 was provided erase(iterator __first, iterator __last) ^ 1 error generated. Reported by: pkg-fallout (mips64) Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=456081
* MFH: r455917Jan Beich2017-12-111-1/+7
| | | | | | | | | | | | | | | graphics/vigra: unbreak consumers on 10.* for NUMPY=on Passing -std=gnu++11 also matches Boost since r450557. /usr/local/lib/libvigraimpex.so: undefined reference to `operator delete(void*, unsigned int)' Reported by: antoine (via bug 223922 -exp run) Submitted by: rakuco (adapted from bug 219484 fix) Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455918
* MFH: r455905Jan Beich2017-12-111-0/+2
| | | | | | | | | | | | | | | | | | devel/boost-libs: pass RPATH when building with GCC "g++6" -o "bin.v2/libs/stacktrace/build/gcc-6.4.0/debug/addr2line_exe" -Wl,--start-group "bin.v2/libs/stacktrace/build/gcc-6.4.0/debug/has_addr2line.o" -Wl,-Bstatic -Wl,-Bdynamic -Wl,--end-group -g -m64 /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.21 required by /wrkdirs/usr/ports/devel/boost-libs/work/boost_1_65_1/bin.v2/libs/stacktrace/build/gcc-6.4.0/debug/addr2line_exe not found [...] Error: Missing: lib/libboost_stacktrace_addr2line.a Error: Missing: lib/libboost_stacktrace_addr2line.so Error: Missing: lib/libboost_stacktrace_addr2line.so.%%BOOST_SHARED_LIB_VER%% PR: 223279 Submitted by: jhibbits (based on) Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455916
* MFH: r455904Jan Beich2017-12-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | textproc/hunspell: always link against C++11 library C++11 isn't ABI-compatible with C++98 on GCC platforms, so build the port using lang/gcc which since r449590 defaults to C++14. This should fix C++11 consumers like www/firefox. ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::SetDictionary(char16_t const*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell13SetDictionaryEPKDs+0x4a4): undefined reference to `Hunspell::get_dict_encoding[abi:cxx11]() const' ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::Check(char16_t const*, bool*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell5CheckEPKDsPb+0x148): undefined reference to `Hunspell::spell(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*)' ../../extensions/spellcheck/hunspell/glue/Unified_cpp_hunspell_glue0.o: In function `mozHunspell::Suggest(char16_t const*, char16_t***, unsigned int*)': Unified_cpp_hunspell_glue0.cpp:(.text._ZN11mozHunspell7SuggestEPKDsPPPDsPj+0x16c): undefined reference to `Hunspell::suggest(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' Submitted by: jhibbits (based on) Approved by: ports-secteam blanket Differential Revision: https://reviews.freebsd.org/D12515 Notes: svn path=/branches/2017Q4/; revision=455915
* MFH: r452027Niclas Zeising2017-12-0912-10/+1056
| | | | | | | | | | | | | Fix security issues: CVE-2017-12176 through CVE-2017-12187 in xorg-server. Bump all the slaves due to not being sure where the shared code is used. Security: 7274e0cc-575f-41bc-8619-14a41b3c2ad0 Approved by: ports-secteam (eadler) PR: 223286 Notes: svn path=/branches/2017Q4/; revision=455866
* MFH: r455687 r455805Jan Beich2017-12-082-6/+6
| | | | | | | | | | emulators/rpcs3: update to 0.0.4.139 Changes: https://github.com/RPCS3/rpcs3/compare/970d2a06...d7881c67 Approved by: ports-secteam (junovitch, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455809
* MFH: r455688 r455806Jan Beich2017-12-082-8/+8
| | | | | | | | | | emulators/citra: update to s20171208 Changes: https://github.com/citra-emu/citra/compare/56db8e08...af45f2b2 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455808
* MFH: r455759Jan Beich2017-12-084-190/+190
| | | | | | | | | | | www/firefox-esr: update to 52.5.2 (nop) Changes: https://www.mozilla.org/firefox/52.5.2/releasenotes/ Changes: https://hg.mozilla.org/releases/mozilla-esr52/pushloghtml?startdate=2017-11-30&enddate=2017-12-07 Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455801
* MFH: r451347Rene Ladan2017-12-071-1/+2
| | | | | | | | | | | | textproc/pootle: add missing dependency on devel/py-argparse PR: 222798 Submitted by: ygy Approved by: ports-secteam (missing-dependency blanket) Notes: svn path=/branches/2017Q4/; revision=455756
* MFH: r454035Rene Ladan2017-12-072-12/+123
| | | | | | | | | | | | | | | x11-fonts/alfont: fix build and undeprecate, also clean up fetching. Somehow I failed to see this patch earlier when the port originally expired. PR: 213600 Submitted by: timon at timon.net.nz Approved by: maintainer timeout (nemysis@, 1 year) Approved by: ports-secteam (build-fix blanket) Notes: svn path=/branches/2017Q4/; revision=455755
* MFH: r455615Rene Ladan2017-12-073-1/+94
| | | | | | | | | | | | | | | games/opensurge: unbreak and unexpire [1] Add LIB_DEPENDS on x11-fonts/alfont PR: 223746 Submitted by: timon at timon.net.nz Approved by: maintainer timeout (nemysis, 15 days) Approved by: ports-secteam (build-fix blanket) Notes: svn path=/branches/2017Q4/; revision=455754
* MFH: r453409 r455706Bernard Spil2017-12-073-4/+52
| | | | | | | | | | | | | | | | | | | | | | security/openssl: Unbreak build with No-SSLv3 - Importing patch from upstream PR: 223388 Submitted by: tijl Reported by: Laurence Parry <greenreaper@hotmail.com> security/openssl: Update to 1.0.2n - Remove patch now included upstream - Include post-release patch for clang build error Security: 3bb451fc-db64-11e7-ac58-b499baebfeaf Approved by: ports-secteam (feld) Notes: svn path=/branches/2017Q4/; revision=455752
* MFH: r453261Johannes M Dieterich2017-12-072-4/+4
| | | | | | | | | | | | | biology/molden: chase another intransparent upstream distfile upgrade. Reviewed by: swills (mentor), mat Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D12829 Approved by: ports-secteam Notes: svn path=/branches/2017Q4/; revision=455691
* MFH: r455124Jan Beich2017-12-074-8/+8
| | | | | | | | | | | | security/nss: update to 3.34.1 Changes: https://developer.mozilla.org/docs/Mozilla/Projects/NSS/NSS_3.34.1_release_notes Changes: https://hg.mozilla.org/projects/nss/shortlog/NSS_3_34_1_RTM ABI: https://abi-laboratory.pro/tracker/timeline/nss/ Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455686
* MFH r453277Brad Davis2017-12-064-7/+4
| | | | | | | | | | | Update to 5.6.32 release. PR: 223319 Approved by: portmgr (swills) Security: de7a2b32-bd7d-11e7-b627-d43d7e971a1b Notes: svn path=/branches/2017Q4/; revision=455682
* Merge r452424.Brad Davis2017-12-062-4/+4
| | | | | | | | | | Update to 5.5.58 release. Approved by: portmgr (swills) Security: c41bedfd-b3f9-11e7-ac58-b499baebfeaf Notes: svn path=/branches/2017Q4/; revision=455674
* MFH: r455269Jan Beich2017-12-064-192/+192
| | | | | | | | | | | | www/firefox-esr: update to 52.5.1 Changes: https://www.mozilla.org/firefox/52.5.1/releasenotes/ Security: https://hg.mozilla.org/releases/mozilla-esr52/rev/f6216ea8b8fc PR: 223886 Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455667
* MFH: r453712 r453733 r453741 r455660Mark Felder2017-12-064-33/+10
| | | | | | | | | | | | | | | | | | | | | | | | - Update to 1.4.6 PR: 221565 Reported by: Christopher Beppler - Switch to USES=pkgconfig - Bump PORTREVISION Special thanks: danfe (debugging hitch m4 issue+recommending pkgconfig via USES) - Varnish has two different releases for hitch, switch to the other one as it is properly bootstrapped - Bump PORTREVISION Thanks to: danfe security/hitch: Add reload command to rc script Hitch properly handles SIGHUP Notes: svn path=/branches/2017Q4/; revision=455661
* MFH: r455322Sunpoet Po-Chuan Hsieh2017-12-063-12/+12
| | | | | | | | | | | | | Update to 7.57.0 Changes: https://curl.haxx.se/changes.html https://curl.haxx.se/docs/security.html Security: 301a01b7-d50e-11e7-ac58-b499baebfeaf Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=455647
* MFH: r455622Jan Beich2017-12-052-7/+7
| | | | | | | | | | | emulators/ppsspp-devel: update to 1.5.4 Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.5.3...v1.5.4 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455623
* MFH: r453931 r455318Guido Falsi2017-12-052-6/+5
| | | | | | | | | | | | | Update Asterisk to 13.18.2 Update net/asterisk13 to 13.18.3 Security: e91cf90c-d6dd-11e7-9d10-001999f8d30b Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=455606
* MFH: r455354Jochen Neumeister2017-12-0512-35/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | Securityupdate to 4.9.1: www/wordpress russian/wordpress [1] chinese/wordpress-zh_CN japanese/wordpress german/wordpress french/wordpress Changelog: https://codex.wordpress.org/Version_4.9.1 https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/ PR: 223982 [1] Submitted by: Mikhail Timofeev <9267096@gmail.com> (maintainer) [1] Approved by: tcberner (mentor) Security: a2589511-d6ba-11e7-88dd-00e04c1ea73d Differential Revision: https://reviews.freebsd.org/D13337 Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=455604
* MFH: r452423Mahdi Mokhtari2017-12-052-5/+5
| | | | | | | | | Update to 5.6.38 release. Approved by: ports-secteam (feld) Notes: svn path=/branches/2017Q4/; revision=455575
* MFH: r455556Jan Beich2017-12-052-12/+12
| | | | | | | | | | emulators/citra: update to s20171204 Changes: https://github.com/citra-emu/citra/compare/b2a99043...56db8e08 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455558
* MFH: r455555Jan Beich2017-12-052-5/+5
| | | | | | | | | | emulators/rpcs3: update to 0.0.4.132 Changes: https://github.com/RPCS3/rpcs3/compare/8f314c51...970d2a06 Approved by: ports-secteam (junovitch, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455557
* MFH: r455551Jan Beich2017-12-042-7/+7
| | | | | | | | | | | emulators/ppsspp-devel: update to 1.5.3 Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.5.2...v1.5.3 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455554
* Mark BROKEN: does not packageAntoine Brodin2017-12-021-0/+2
| | | | | | | Reported by: pkg-fallout Notes: svn path=/branches/2017Q4/; revision=455339
* MFH: r455325Jan Beich2017-12-022-5/+5
| | | | | | | | | | emulators/rpcs3: update to 0.0.4.125 Changes: https://github.com/RPCS3/rpcs3/compare/91fd1465...8f314c51 Approved by: ports-secteam (junovitch, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455326
* www/firefox: add missing FF57 secfix (direct commit)Jan Beich2017-12-011-0/+27
| | | | | | | | | Reported by: Waterfox Security: f78eac48-c3d1-4666-8de5-63ceea25a578 Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455286
* www/firefox: backport more FF57+ fixes (direct commit)Jan Beich2017-12-014-1/+238
| | | | | | | | | PR: 222859 Security: Mozilla bug 1410106/1420001 Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455272
* Direct commit to 2017Q4: mark devel/py-qt4-core BROKEN with python3Antoine Brodin2017-12-011-0/+4
| | | | Notes: svn path=/branches/2017Q4/; revision=455256
* MFH: r451473Antoine Brodin2017-11-301-3/+3
| | | | | | | Fix dependencies Notes: svn path=/branches/2017Q4/; revision=455230
* MFH: r455208Jan Beich2017-11-302-4/+4
| | | | | | | | | | | emulators/ppsspp-devel: update to 1.5.2 Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.5.1...v1.5.2 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455209
* MFH: r455126Jan Beich2017-11-292-5/+5
| | | | | | | | | | emulators/rpcs3: update to 0.0.4.73 Changes: https://github.com/RPCS3/rpcs3/compare/662fe8cc...91fd1465 Approved by: ports-secteam (junovitch, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455133
* MFH: r455128Jan Beich2017-11-292-8/+8
| | | | | | | | | | emulators/citra: update to s20171129 Changes: https://github.com/citra-emu/citra/compare/e9a95b2e7...b2a99043 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455132
* MFH: r455127Jan Beich2017-11-292-8/+7
| | | | | | | | | | emulators/ppsspp-devel: update to 1.5.1 Changes: https://github.com/hrydgard/ppsspp/compare/f8b6a965e...v1.5.1 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455131
* MFH: r454922Bernard Spil2017-11-282-2/+13
| | | | | | | | | | | | | security/acme-client: Chase upstream URL update - Unbreaks users fresh installing port Reported by: David Gessel <gessel blackrosetech com> Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=455074
* MFH: r453087 r453882Bryan Drewery2017-11-283-8/+12
| | | | | | | | | | | | | | | | | | - Update to 3.1.22 Changes: https://github.com/freebsd/poudriere/wiki/release_notes_3122 PR: 216083 PR: 215541 Avoid running git and finding PORTSDIR/.git. Reported by: xmj Approved by: portmgr (implicit) Notes: svn path=/branches/2017Q4/; revision=455072
* MFH: r455047Jan Beich2017-11-282-0/+84
| | | | | | | | | | | | multimedia/ffmpeg: fix DoS in VC-2 encoder Reported by: Vladimir Krstulja Obtained from: upstream (release/3.3 branch) Security: CVE-2017-16840 Approved by: ports-secteam blanket Notes: svn path=/branches/2017Q4/; revision=455049
* MFH: r454936Vsevolod Stakhov2017-11-282-1/+36
| | | | | | | | | | | | | | | | | - Fix RCE vulnerability: The receive_msg function in receive.c in the SMTP daemon in Exim 4.88 and 4.89 allows remote attackers to execute arbitrary code or cause a denial of service (use-after-free) via vectors involving BDAT commands. PR: 223870 Submitted by: Gary Security: 68b29058-d348-11e7-b9fe-c13eb7bcbf4f Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=455024
* MFH: r454599Lars Engels2017-11-283-22/+21
| | | | | | | | | | | net-mgmt/icinga2: - Update to 2.7.2 (Bugfix Release) Approved by: portmgr (swills) Notes: svn path=/branches/2017Q4/; revision=455022
* MFH: r454585 r454736 r455004Jan Beich2017-11-282-8/+8
| | | | | | | | | | emulators/ppsspp-devel: update to 1.4.2.895 Changes: https://github.com/hrydgard/ppsspp/compare/a0f1276a5...f8b6a965e Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455010
* MFH: r454735 r454824 r455005Jan Beich2017-11-282-8/+8
| | | | | | | | | | emulators/citra: update to s20171125 Changes: https://github.com/citra-emu/citra/compare/c810a3f3b...e9a95b2e7 Approved by: ports-secteam (swills, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455009
* MFH: r454289 r454575 r454586 r454734 r454823 r455003Jan Beich2017-11-285-65/+9
| | | | | | | | | | emulators/rpcs3: update to 0.0.4.63 Changes: https://github.com/RPCS3/rpcs3/compare/0064976c...662fe8cc Approved by: ports-secteam (junovitch, implicit for snapshots) Notes: svn path=/branches/2017Q4/; revision=455008
* MFH: r454606Luca Pizzamiglio2017-11-271-1/+5
| | | | | | | | | | | | | | | devel/rubygem-rspec-its: Fix shebang PR: 223696 Submitted by: prj@rootwyrm.com Reviewed by: naito.yuichiro@gmail.com (maintainer) Approved by: olivier (mentor) Differential Revision: https://reviews.freebsd.org/D13167 Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=454994
* MFH: r454601Luca Pizzamiglio2017-11-273-5/+5
| | | | | | | | | | | | | | | | | | net-mgmt/cacti: Update to 1.1.28 PR: 223756 Submitted by: freebsd-ports@dan.me.uk (maintainer) Approved by: olivier (mentor) Security: CVE-2017-16641 Security: CVE-2017-16660 Security: CVE-2017-16661 Security: CVE-2017-16785 Differential Revision: https://reviews.freebsd.org/D13175 Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=454992
* MFH: r454649Niclas Zeising2017-11-272-2/+16
| | | | | | | | | | | | | | Fix suricata failing to start if there is a stale pid file laying around. This can happen if suricata is ungracefully shut down. PR: 223052, 223322 Submitted by: Reshad Patuck, Franco Fichtner Approved by: Franco Fichtner (maintainer) Approved by: ports-secteam (swills) Notes: svn path=/branches/2017Q4/; revision=454991