aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove traces of armv6hf which no longer exists as an arch. [1]gerald2017-02-031-2/+2
| | | | | | Sort ONLY_FOR_ARCHS. Reported by: andreast [1]
* Update math/pari to 2.9.1krion2017-02-032-4/+4
| | | | | | | PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216713 Submitted by: yuri@rawbw.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9416
* Remove traces of armv6hf which no longer exists as an arch. [1]gerald2017-02-031-6/+5
| | | | | | Remove redundant definition of DISTVERSION and simplify GCC_VERSION. Reported by: andreast [1]
* Update lang/gambit-c to version 4.8.8.olgeni2017-02-033-5/+5
|
* Update to 20170128antoine2017-02-033-5/+5
|
* Update to 4.4.0antoine2017-02-033-5/+6
|
* security/acme-client: Update to 0.1.16brnrd2017-02-032-5/+4
| | | | - Update to 0.1.16
* Update devel/elixir-timex to version 3.1.9.olgeni2017-02-033-4/+12
|
* - Add LICENSE_FILEamdmi32017-02-033-11/+11
| | | | | | | - Switch to options helpers - Simplify installation - Regenerate patches - Fix WWW:
* - Update to experimental-20170124antoine2017-02-032-8/+13
| | | | - Make NLS optional
* - Update to alpha-20170130antoine2017-02-034-12/+18
| | | | | - Add LICENSE_FILE - Make NLS optional
* - Update to alpha-20170129antoine2017-02-032-9/+13
| | | | - Make NLS optional
* UPDATING: Add entry for libressl-devel shlib bumpbrnrd2017-02-031-0/+9
|
* Delete duplicate linematthew2017-02-031-1/+0
| | | | Submitted by: sunpoet
* Fix r433199sunpoet2017-02-031-4/+4
|
* Update to the 20170202 snapshot of GCC 6.gerald2017-02-032-4/+4
|
* Add LICENSEsunpoet2017-02-031-0/+4
| | | | | | PR: 204396 Submitted by: tz Approved by: maintainer (timeout, 15 months)
* Update games/emptyepsilon to 2017.01.19krion2017-02-034-24/+6
| | | | | | | PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216720 Submitted by: yuri@rawbw.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9414
* Update net-p2p/go-ethereum to 1.5.8krion2017-02-032-4/+4
| | | | | | | PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216728 Submitted by: enriquefynn@gmail.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9418
* Update multimedia/syncplay to 1.4.0krion2017-02-034-37/+29
| | | | | | | PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216705 Submitted by: heckendorfc@gmail.com Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9413
* databases/datamodeler: update to 4.1.5.907rm2017-02-033-11/+13
| | | | | | PR: 215667 Submitted by: Beeblebrox <zaphod@berentweb.com> Approved by: jjuanino@gmail.com (maintainer, updated patch)
* Add gnatcross-aarch64, a slave port of gnatdroid (C/Ada cross-compiler)marino2017-02-039-0/+174
| | | | | | | | | | | | | | | | | | | | This is a FreeBSD/DF cross-compiler targeting FreeBSD/ARM64 (aarch64). It differs from devel/aarch64-none-elf-gcc in the following ways: 1) uses FreeBSD/ARM64 headers and libs (true sysroot) 2) Supports Ada front end 3) Supports Fortran front end (optionally, default off) 4) Supports ObjC front end (optionally, default off) It passes all but 5 ACATS tests: 1) c34005o (GNAT ICE, expand_shift_1 at expmed.c:2490) 2) c34007i (GNAT ICE, expand_shift_1 at expmed.c:2490) 3) cb1010a (stack check related) 4) cb1010c (stack check related) 5) cb1010d (stack check related) Ideally this cross-compiler will lead to a fully native Ada compiler for FreeBSD/ARM64 which leads to lang/gcc6-aux support, enabling the Ada framework for that platform.
* gnatdroid: Prepare for new cross-compilermarino2017-02-035-33/+367
| | | | | | | | | | | | The gnatdroid binutils and compiler master ports have been expanded to support an upcoming FreeBSD/DF -to- FreeBSD-ARM64 cross-compiler. This backports the gcc7 aarch64-*-freebsd* support to gcc6-aux along with a customization of mine for the gnat compiler. This also adds the missing LINK_SPEC replacement and removes a now-obsolete post-extract directory creation. Apparently the fortran option has been broken since the rebasing on gcc6-aux, now fixed, but nobody reported it.
* Update 2.4.3.1 --> 2.4.3.2cy2017-02-035-27/+27
|
* Pet stage-qa.cy2017-02-031-1/+2
|
* audio/zinf: unbreak with libc++ 3.9jbeich2017-02-0315-1/+285
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/Http.cpp:771:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Content-Length:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:401:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:561:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Content-Length:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:575:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* cp = strstr(buffer, "Last-Modified:"); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/downloadmanager.cpp:799:24: error: assigning to 'char *' from incompatible type 'const char *' file = strchr(item->SourceURL().c_str() + 7, '/'); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/player.cpp:552:21: error: assigning to 'char *' from incompatible type 'const char *' extension = strrchr(url.c_str(), '.'); ^~~~~~~~~~~~~~~~~~~~~~~~~ src/player.cpp:1109:17: error: assigning to 'char *' from incompatible type 'const char *' temp_proto = strstr(title, "://"); ^~~~~~~~~~~~~~~~~~~~ src/player.cpp:1129:15: error: assigning to 'char *' from incompatible type 'const char *' temp_ext = strrchr(title, '.'); ^~~~~~~~~~~~~~~~~~~ src/player.cpp:1964:14: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *port = strchr(buffer.c_str(),':'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~ src/playlist.cpp:1964:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/playlist.cpp:2045:15: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* extension = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ src/ThemeZip.cpp:150:15: error: assigning to 'char *' from incompatible type 'const char *' pPtr = strrchr(oFile.c_str(), DIR_MARKER); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/wavoutpmo.cpp:127:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *pPtr = strrchr(GetUrl().c_str(), DIR_MARKER); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/ZinfTheme.cpp:1768:26: error: assigning to 'char *' from incompatible type 'const char *' pExtension = strrchr((*i).c_str(), '.'); ^~~~~~~~~~~~~~~~~~~~~~~~~~ pPtr = strrchr(m_oPath.c_str(), '/'); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ unix/src/cdpmo.cpp:116:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *tracknumber = strrchr(url, '/'); ^ ~~~~~~~~~~~~~~~~~ unix/src/GTKPreferenceWindow.cpp:1755:20: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *name = strrchr((*i).second.c_str(), '/'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ unix/src/gtkmusicbrowser.cpp:1206:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ext = strrchr(m_currentListName.c_str(), '.'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ misc.cpp:109:14: error: assigning to 'char *' from incompatible type 'const char *' cp = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ id3lib.cpp:366:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ptr = strrchr(url, '.'); ^ ~~~~~~~~~~~~~~~~~ id3lib.cpp:426:11: error: assigning to 'char *' from incompatible type 'const char *' ptr = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ id3lib.cpp:488:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ptr = strrchr(url.c_str(), '.'); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ vorbis.cpp:151:11: error: assigning to 'char *' from incompatible type 'const char *' ptr = strrchr(url, '.'); ^~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* Update to upstream bugfix revision #1.mandree2017-02-038-39/+58
| | | | Changelog: <http://rawtherapee.com/blog/rawtherapee-5.0-revision-1-released>
* Update to 0.3.10.jkim2017-02-033-6/+5
|
* audio/logitechmediaserver: Remove support for FreeBSD 9woodsb022017-02-032-13/+7
| | | | | Reported by: mat Approved by: portmgr blanket
* Add gonzo's psci monitor code to support RPI3 SMPdb2017-02-034-3/+108
|
* Add additional vulnerability for wordpress 4.7.1 that was initially keptwoodsb022017-02-031-0/+3
| | | | | | | | quiet by the wordpress team [1]. [1] https://make.wordpress.org/core/2017/02/01/disclosure-of-additional-security-fix-in-wordpress-4-7-2/ Security: https://vuxml.FreeBSD.org/freebsd/54e50cd9-c1a8-11e6-ae1b-002590263bf5.html
* Update to 1.7.5matthew2017-02-032-10/+10
| | | | | | | | | | | | Notable changes: - Upstream switched versioning from e.g. r131 to v1.7.5, forcing me to make use of PORTEPOCH. - (Submitter) pushed a change upstream to add FreeBSD to the OSs recognized in Makefile, requiring one less search & replace action in post-patch section. PR: 216599 Submitted by: martin@waschbuesch.de (maintainer)
* Fix build with GCC. It was broken by r430424.jkim2017-02-031-1/+1
| | | | PR: 216738
* Update to 3.9.0crees2017-02-033-15/+4
| | | | Submitted by: Andre Rikkert de Koe <andre@ark-ict.nl>
* Upgrade to v1.11.0.thierry2017-02-032-4/+4
| | | | Changelog at https://github.com/libuv/libuv/releases/tag/v1.11.0
* Update to iperf-3.1.6, with a couple of small bugfixes.bmah2017-02-032-4/+4
| | | | Sponsored by: ESnet
* graphics/qgis: correct dependencies listrm2017-02-031-7/+9
| | | | | | | | | | | | | | - Update dependency devel/py-Jinja to py-Jinja2 - Add dependency for textproc/py-pygments - Add sql-pgsql and sql-sqlite3 in USE_QT4 - Bump PORTREVISION While here, also remove duplicate direct dependency upon python. PR: 215601 Submitted by: Martin Birgmeier <la5lbtyi@aon.at> Approved by: Rainer Hurling <rhurlin@gwdg.de> (maintainer, updated patch) MFH: 2017Q1
* Add new UPDATING entry with details on newest changes to uwsgifeld2017-02-031-0/+13
|
* www/uwsgi: Further rc script security improvementsfeld2017-02-034-10/+17
| | | | | | | | | | | This update introduces a dedicated user for uwsgi and introduces the uwsgi_socket_owner setting which by default is set to www:www. The previous change to socket mode of 600 has been modified to 660 as well. This change further increases security while restoring compatibility. MFH: 2017Q1 Differential Revision: https://reviews.freebsd.org/D9398
* Deprecate net/tcpdump398 due to multiple vulnerabilities. Set expirationgarga2017-02-031-0/+4
| | | | date to 2017-03-05
* Update tcpdump to 4.9.0garga2017-02-032-4/+4
| | | | | | | | | | | | | | | | MFH: 2017Q1 Security: CVE-2017-5202 CVE-2016-7922 CVE-2016-7923 CVE-2016-7924 CVE-2016-7925 CVE-2016-7926 CVE-2016-7927 CVE-2016-7928 CVE-2016-7929 CVE-2016-7930 CVE-2016-7931 CVE-2016-7932 CVE-2016-7933 CVE-2016-7934 CVE-2016-7935 CVE-2016-7936 CVE-2016-7937 CVE-2016-7938 CVE-2016-7939 CVE-2016-7940 CVE-2016-7973 CVE-2016-7974 CVE-2016-7975 CVE-2016-7983 CVE-2016-7984 CVE-2016-7985 CVE-2016-7986 CVE-2016-7992 CVE-2016-7993 CVE-2016-8574 CVE-2016-8575 CVE-2017-5203 CVE-2017-5204 CVE-2017-5205 CVE-2017-5341 CVE-2017-5342 CVE-2017-5482 CVE-2017-5483 CVE-2017-5484 CVE-2017-5485 CVE-2017-5486 Sponsored by: Rubicon Communications (Netgate)
* Add options for fastcgi and memcached and make odbc and apache optional.girgen2017-02-032-17/+51
| | | | | Fastcgi allows simple use with NGINX. Memcached is similar to ODBC, in that it offers another option for more persistent session storage than in-memory.
* Update to version 5.2.0girgen2017-02-036-12/+12
|
* (1) Add patch from devel/gdb to fix build on 11-RELEASE (but 11-STABLE doesn'tlev2017-02-033-5/+16
| | | | | | have this problem). (2) Regenerate and rename patches.
* - Fix libidn support always disabledamdmi32017-02-031-1/+2
| | | | Reported by: tijl
* multimedia/plexmediaserver{-plexpass}: Update to 1.3.4feld2017-02-026-22/+34
| | | | Changelog: https://forums.plex.tv/discussion/comment/1361024#Comment_1361024
* lang/tcl87: update to fossil checkin c63d2eba50gahr2017-02-023-94/+98
| | | | http://core.tcl.tk/tcl/timeline?from=24d90770030948ca&to=c63d2eba50
* transfer maintainership of sysutils/liburculifanov2017-02-021-1/+1
| | | | | Reported by: mokhi64@gmail.com Approved by: freebsd@dns-lab.com (maintainer), matthew (mentor)
* Update to 5.4krion2017-02-024-102/+144
| | | | | | | PR: 216701 Submitted by: matthias@petermann-it.de Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9410
* Update to 5.0.9sunpoet2017-02-024-12/+10
| | | | | | | | - While I'm here, fix GH_TAGNAME Changes: https://github.com/happyfish100/fastdfs/commits/master PR: 216698 Submitted by: Daniel Ylitalo <daniel@blodan.se> (maintainer)
* Update to 4.43.0sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/jeremyevans/sequel/blob/master/CHANGELOG
* Update to 0.4.1sunpoet2017-02-022-3/+4
| | | | Changes: https://github.com/cyu/rack-cors/blob/master/CHANGELOG
* Update to 4.8.0sunpoet2017-02-022-3/+4
| | | | Changes: https://github.com/seattlerb/sexp_processor/blob/master/History.txt
* Update to 2.7.3sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md
* Update to 2.7.3sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md
* Update to 2.7.3sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/aws/aws-sdk-ruby/blob/master/CHANGELOG.md
* Update to 2.99006sunpoet2017-02-022-4/+4
| | | | Changes: http://search.cpan.org/dist/Net-Whois-Raw/Changes
* Update to 1.29sunpoet2017-02-023-9/+16
| | | | | | | | - Add LICENSE - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Math-String/CHANGES
* Update to 2.14sunpoet2017-02-022-4/+4
| | | | Changes: http://search.cpan.org/dist/Math-GMP/Changes
* Update to 1.02sunpoet2017-02-022-4/+7
| | | | | | | - Add more TEST_DEPENDS - Add NO_ARCH Changes: http://search.cpan.org/dist/Image-Compare/Changes
* Update to 6.7.2sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/ai/autoprefixer-rails/blob/master/CHANGELOG.md
* Update to 3.5.1sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/intridea/hashie/blob/master/CHANGELOG.md
* Update to 5.1.0sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/giampaolo/psutil/blob/master/HISTORY.rst
* Update to 0.4.12sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/python-greenlet/greenlet/blob/master/NEWS
* Update to 4.5.3sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/tinymce/tinymce/blob/master/changelog.txt
* Update to 20170201sunpoet2017-02-022-4/+6
| | | | | | - Add LICENSE Changes: http://invisible-island.net/byacc/CHANGES.html
* devel/jfrog-cli: create portswills2017-02-024-0/+47
| | | | | | | | | | | JFrog CLI is a compact and smart client that provides a simple interface that automates access to JFrog Artifactory, JFrog Mission Control, JFrog Bintray and JFrog Xray (through their respective REST APIs). By using the JFrog CLI, you can greatly simplify your automation scripts making them more readable and easier to maintain. Several features of the JFrog CLI makes your scripts more efficient and reliable. WWW: https://www.jfrog.com/getcli/
* editors/emacs-devel: Update to latest commit on master branchjrm2017-02-022-5/+5
| | | | Approved by: ashish (maintainer, implicit), swills (mentor, implicit)
* mail/roundcube-automatic_addressbook:lme2017-02-023-8/+66
| | | | | | | | | Update to 0.4.2 PR: 213336 Submitted by: Andrej Ebert <andrej@ebert.su> Approved by: maintainer MFH: 2017Q1
* Fix build with devel/protobufsunpoet2017-02-021-0/+15
| | | | | Obtained from: https://github.com/google/certificate-transparency/commit/6776cc2c4cca665c088019d40f9587189a5d687d Notified by: jbeich
* - Update to 0.86danilo2017-02-022-4/+4
| | | | PR: 216623
* www/pmwiki: Update from 2.2.93 to 2.2.94tz2017-02-022-4/+4
| | | | | | | | | | - webmasters are allowed to configure and use both .html and .htm extensions - The cached information about whether a page exists or not will now be cleared when that page is created or deleted. - The documentation was updated. PR: 216694 Submitted by: Jochen Neumeister <joneum@bsdproject.de>
* Update to the most recent commit on GitHub which fixes many bugs:ehaupt2017-02-022-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bugfixes: - gbsplay: - cpu emulation fixes: - RLCA/RLA/RRCA/RRA did not set ZF - fix botched SBC zero flag handling - fix slight bug in ADC/SBC - fix INC/DEC SP, CP A and half-carry flag in DEC - fix PUSH/POP AF - fix trigger handling on noise channel - fix error on midi plugout where a write to the file could occur before the file was opened - fix garbled screen on exit in verbose mode (gbsplay -v) - fix status display: respect channel in left/right total volume - fix impulse generator: generate a header file at compile-time Enhancements: - gbsplay: - more accurate sound: - calculate LFSR correctly - play first nibble on DAC-channel from fresh buffer - correct noise channel speed - use more DMG-like DC-offsets - more accurate cpu cycle accounting - remove DC offset from DAC-channel - show register contents in verbose mode (gbsplay -v) - add basic GBR file support - support ugetab int vector extension (gbs spec 1.04u) - add 'iodumper' plugout for testing - add support for blargg-gb-tests debug output MFH: 2017Q1
* multimedia/shotcut: update to 17.02avilla2017-02-023-4/+5
| | | | | | | | | | | | | | - Fixed drag-n-drop from other than C: drive on Windows. - Fixed ‘/’ getting added to front of file paths on Windows. - Fixed the MLT XML repair tool not correctly handling decimal point in some configurations. - Fixed opening a network stream. - Improved support for image sequences. - Improved device capture. - Added Slovenian translation. All device capture now occurs in the background. This makes it possible to record voice overs while playing the project.
* - Update to 0.42.1ehaupt2017-02-023-8/+12
| | | | | - Move to GitHub - Define LICENSE_FILE
* emulators/mame: unbreak with clang 4.0jbeich2017-02-022-1/+12
| | | | | | | | | ../../../../../src/emu/webengine.c:333:21: error: ordered comparison between pointer and zero ('int *' and 'int') if ((&data_length > 0) && (sizeof(file_name) > 0)) ~~~~~~~~~~~~ ^ ~ Reported by: antoine (via exp-run)
* - Add LICENSEamdmi32017-02-021-22/+25
| | | | - Switch to options helpers
* java/intellij: Update to version 2016.3.4.bsam2017-02-023-6/+6
|
* Update to 0.30.03ehaupt2017-02-022-4/+4
|
* net-im/gajim: update to 0.16.7rm2017-02-023-11/+8
| | | | | | | | | | | Gajim 0.16.7 (30 January 2017) * Better compatibility with XEP-0191: Blocking Command * Windows Credential Vault is used for password storage on Windows * Gajim now depends on python-gnupg for PGP encryption * Add portable installer for Windows * Remove usage of demandimport * Many minor bugfixes
* net-im/py-nbxmpp: update to 0.5.5rm2017-02-022-4/+4
|
* Update to 1.18.22.vanilla2017-02-022-4/+4
|
* - Update to 0.6.2jhale2017-02-023-5/+10
| | | | | | | - Fix LICENSE and add LICENSE_FILE - Add regession test support Changes: https://raw.github.com/metabrainz/libdiscid/master/ChangeLog
* fix buildtrociny2017-02-021-1/+1
|
* devel/bazel: update 0.4.2r -> 0.4.4pi2017-02-027-46/+32
| | | | | | PR: 215490 Changes: https://github.com/bazelbuild/bazel/releases Submitted by: Klaus Aehlig <aehlig@linta.de> (maintainer)
* Update graphics/pecl-imagick to 3.4.3mm2017-02-022-4/+4
| | | | PR: 216570
* sysutils/slurm-wlm: Update to version 16.06.09.jrm2017-02-022-4/+4
| | | | | | Upstream Changes: https://github.com/SchedMD/slurm/blob/slurm-16.05/NEWS Approved by: swills (mentor, implicit)
* update games/wtf to 20170131 snapshot from NetBSDlifanov2017-02-022-4/+4
| | | | | | Reviewed by: matthew Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D9404
* Upgrade third-party njs module from f8c642a (0.1.6+) to f106743 (aka 0.1.9).osa2017-02-022-4/+4
|
* Upgrade third-party ct module from f3cad5e (aka 1.2.0) to 1.3.2.osa2017-02-024-10/+10
|
* Upgrade from 3.2.6 to 3.2.7.osa2017-02-022-4/+4
| | | | | | ChangeLog - https://raw.githubusercontent.com/antirez/redis/3.2/00-RELEASENOTES PR: 216702
* graphics/darktable: Update to 2.2.3dumbbell2017-02-023-22/+4
| | | | | | | | Version 2.2.3 was released shortly after 2.2.2 with the patch to src/develop/imageop_math.c applied. Approved by: bapt (mentor) Differential Revision: https://reviews.freebsd.org/D9400
* Sort ONLY_FOR_ARCHS.gerald2017-02-021-1/+1
|
* Update lang/erlang-wx to 19.2.2 and fix build with clang 4.0[1].olgeni2017-02-023-3/+25
| | | | | PR: 216615 [1] Submitted by: Jan Beich
* Update lang/erlang-java to version 19.2.2.olgeni2017-02-022-3/+5
|
* Update lang/erlang to version 19.2.2.olgeni2017-02-022-3/+9
|
* Update lang/erlang-runtime19 to 19.2.2 and fix build with clang 4.0[1].olgeni2017-02-023-3/+29
| | | | | PR: 216615 [1] Submitted by: Jan Beich
* update to 1.3.2trociny2017-02-0214-124/+112
|
* converters/iconv-extra: unbreak on 12.0 after base r306297jbeich2017-02-021-0/+15
| | | | | ===> ces (all) make[2]: don't know how to make unicode-1-1-utf-7.so. Stop
* converters/iconv: unbreak on 12.0 after base r306297jbeich2017-02-021-0/+23
| | | | | | | ===> ces (all) make[2]: don't know how to make euc-jp.so. Stop Reported by: pkg-fallout
* Update to 3.2.5krion2017-02-022-5/+4
| | | | | | | PR: 216689 Submitted by: joneum@bsdproject.de Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9403
* Copy over files/patch-libc++ from lang/gcc5 to lang/gcc5-devel as well.gerald2017-02-021-0/+43
| | | | | PR: 216266 Submitted by: dim
* update sysutils/liburcu to 0.9.3lifanov2017-02-025-22/+133
| | | | | | | | PR: 216141 Submitted by: Mahdi Mokhtari <mokhi64@gmail.com> Reviewed by: matthew Approved by: matthew (mentor), maintainer timeout (freebsd@dns-lab.com, 2 weeks) Differential Revision: https://reviews.freebsd.org/D9199
* devel/gcvs: unbreak with libc++ 3.9jbeich2017-02-025-0/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | AppGlue.cpp:263:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *login = strchr(ccvsroot, '@'); ^ ~~~~~~~~~~~~~~~~~~~~~ CvsArgs.cpp:201:16: error: call to 'strchr' is ambiguous bool hasLF = strchr(newarg, '\n') != 0L; ^~~~~~ CvsArgs.cpp:210:19: error: call to 'strchr' is ambiguous bool hasSpace = strchr(newarg, ' ') != 0L; ^~~~~~ TextBinary.cpp:466:8: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *tmp = strrchr(file, '.'); ^ ~~~~~~~~~~~~~~~~~~ UCvsFiles.cpp:2020:12: error: call to 'strchr' is ambiguous if((tmp = strchr(r1, '.')) != 0L) ^~~~~~ UCvsFiles.cpp:2028:12: error: call to 'strchr' is ambiguous if((tmp = strchr(r2, '.')) != 0L) ^~~~~~ umenu.cpp:257:12: error: call to 'strchr' is ambiguous if((tmp = strchr(copy, '\t')) != 0L) ^~~~~~ umenu.cpp:280:12: error: call to 'strchr' is ambiguous if((tmp = strchr(title, '&')) != 0L) ^~~~~~ Reported by: pkg-fallout
* www/mohawk: unbreak on 12.0 after r312758jbeich2017-02-021-0/+18
| | | | | | | | | | In file included from parse.c:17: In file included from parse.y:34: /usr/include/sys/capability.h:41:2: error: this file includes <sys/capability.h> which is deprecated [-Werror,-W#warnings] #warning this file includes <sys/capability.h> which is deprecated ^ Reported by: pkg-fallout
* multimedia/linux_dvbwrapper-kmod: unbreak on 12.0 after r312758jbeich2017-02-021-0/+14
| | | | | | | | | In file included from linux_dvbwrapper.c:43: /usr/src/sys/sys/capability.h:41:2: error: this file includes <sys/capability.h> which is deprecated [-Werror,-W#warnings] #warning this file includes <sys/capability.h> which is deprecated ^ Reported by: pkg-fallout
* net-p2p/bnbt: unbreak with libc++ 3.9jbeich2017-02-022-1/+27
| | | | | | | | base64.cpp:129:13: error: assigning to 'char *' from incompatible type 'const char *' if ((b = strchr(s, pPad[0])) != NULL) // Only one, two or three equal... ^ ~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* graphics/yafray: unbreak with libc++ 3.9jbeich2017-02-021-0/+11
| | | | | | | | src/shaders/basictex.cc:262:8: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *ext = strrchr(filename, '.'); ^ ~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* vietnamese/x-unikey: unbreak with libc++ 3.9jbeich2017-02-021-0/+11
| | | | | | | | mactab.cpp:290:10: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * pos = strchr(item, ':'); ^ ~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* emulators/vba: unbreak with libc++ 3.9jbeich2017-02-024-2/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ../GBA.cpp:1133:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ ../GBA.cpp:1148:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ ../GBA.cpp:1172:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ ../GBA.cpp:1192:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ ../Util.cpp:481:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ ../Util.cpp:505:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ ../Util.cpp:525:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ ../Util.cpp:555:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char * p = strrchr(file,'.'); ^ ~~~~~~~~~~~~~~~~~ In file included from expr.y:12: In file included from ../../src/System.h:24: In file included from ../../src/unzip.h:68: In file included from /usr/include/zlib.h:34: In file included from /usr/include/zconf.h:247: /usr/include/c++/v1/stddef.h:52:7: error: reference to 'std' is ambiguous using std::nullptr_t; ^ /usr/include/c++/v1/__nullptr:22:1: note: candidate found by name lookup is 'std' _LIBCPP_BEGIN_NAMESPACE_STD ^ /usr/include/c++/v1/__config:388:47: note: expanded from macro '_LIBCPP_BEGIN_NAMESPACE_STD' #define _LIBCPP_BEGIN_NAMESPACE_STD namespace std {inline namespace _LIBCPP_NAMESPACE { ^ /usr/include/c++/v1/__config:392:11: note: candidate found by name lookup is 'std::std' namespace std { ^ Reported by: pkg-fallout
* www/squidpurge: unbreak with libc++ 3.9jbeich2017-02-021-0/+11
| | | | | | | | | copyout.cc:135:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char* ptr = strstr( url, "://" ); ^ ~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* comms/qico: unbreak on 12.0 after base r308264jbeich2017-02-021-0/+10
| | | | | | | | | | | | | | | | In file included from gmtoff.c:7: In file included from ./headers.h:51: ./replace.h:14:14: error: expected identifier or '(' extern char *basename (const char *filename); ^ /usr/include/libgen.h:60:21: note: expanded from macro 'basename' #define basename(x) __generic(x, const char *, __old_basename, basename)(x) ^ /usr/include/sys/cdefs.h:337:2: note: expanded from macro '__generic' _Generic(expr, t: yes, default: no) ^ Reported by: pkg-fallout
* cad/alliance: unbreak on 12.0 after base r308264jbeich2017-02-022-1/+12
| | | | | | | | | | In file included from /usr/include/math.h:20:0, from rutacces.c:18: ruterror.h:49:14: error: expected identifier or '(' before '__builtin_choose_expr' extern char *basename(); ^ Reported by: pkg-fallout
* mail/pop3vscan: unbreak on 12.0 after base r303524jbeich2017-02-021-0/+10
| | | | | | | | | | | | | | | | | | | | | gcc49 -Wall -O2 -I/usr/local/include -DPREFIX=\"/usr/local\" -c getline.c In file included from getline.c:38:0: getline.h:74:5: error: conflicting types for 'getline' int getline(int fd, struct linebuf * l); ^ In file included from getline.c:30:0: /usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd12.0/4.9.4/include-fixed/stdio.h:375:10: note: previous declaration of 'getline' was here ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict); ^ getline.c:67:5: error: conflicting types for 'getline' int getline(int fd, struct linebuf * l){ ^ In file included from getline.c:30:0: /usr/local/lib/gcc49/gcc/x86_64-portbld-freebsd12.0/4.9.4/include-fixed/stdio.h:375:10: note: previous declaration of 'getline' was here ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict); ^ Reported by: pkg-fallout
* palm/palm-db-tools: unbreak with libc++ 3.9jbeich2017-02-023-0/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | DB.cpp:224:31: error: reinterpret_cast from 'const void *' to 'pi_char_t *' (aka 'unsigned char *') casts away qualifiers pi_char_t* null_ptr = reinterpret_cast<pi_char_t*> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ JFile3.cpp:470:20: error: reinterpret_cast from 'const void *' to 'pi_char_t *' (aka 'unsigned char *') casts away qualifiers null_ptr = reinterpret_cast<pi_char_t*> (memchr(p, 0, 21)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ JFile3.cpp:521:16: error: reinterpret_cast from 'const void *' to 'pi_char_t *' (aka 'unsigned char *') casts away qualifiers null_ptr = reinterpret_cast<pi_char_t*> (memchr(p, 0, 16)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ JFile3.cpp:529:16: error: reinterpret_cast from 'const void *' to 'pi_char_t *' (aka 'unsigned char *') casts away qualifiers null_ptr = reinterpret_cast<pi_char_t*> (memchr(p, 0, 16)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ JFile3.cpp:545:16: error: reinterpret_cast from 'const void *' to 'pi_char_t *' (aka 'unsigned char *') casts away qualifiers null_ptr = reinterpret_cast<pi_char_t*> (memchr(p, 0, 12)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ MobileDB.cpp:224:24: error: reinterpret_cast from 'const void *' to 'pi_char_t *' (aka 'unsigned char *') casts away qualifiers pi_char_t* q = reinterpret_cast<pi_char_t*> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* graphics/inventor: unbreak with libc++ 3.9jbeich2017-02-022-0/+24
| | | | | | | | | | | | | | | | ./SoInput.c++:2813:8: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *firstPlus = strchr(n, '+'); ^ ~~~~~~~~~~~~~~ SoInteractionKit.c++:857:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *dotPtr = strchr( partName.getString(), '.' ); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SoInteractionKit.c++:858:12: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *brackPtr = strchr( partName.getString(), '[' ); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* converters/fix-mime-charset: unbreak with libc++ 3.9jbeich2017-02-021-0/+9
| | | | | | | | ./argp-local.h:69:7: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *' char *p=strrchr(arg,'/'); ^ ~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* x11-wm/afterstep-stable: unbreak with clang 4.0jbeich2017-02-0211-151/+2
| | | | | | | | | | | | ../../libAfterStep/libAfterStep.a(colorscheme.o): In function `make_ascolor_scheme': colorscheme.c:(.text+0x1e1b): undefined reference to `make_grad_argb' colorscheme.c:(.text+0x1e40): undefined reference to `make_grad_argb' colorscheme.c:(.text+0x1e65): undefined reference to `make_grad_argb' colorscheme.c:(.text+0x1e89): undefined reference to `make_grad_argb' colorscheme.c:(.text+0x1eb1): undefined reference to `make_grad_argb' ../../libAfterStep/libAfterStep.a(colorscheme.o):colorscheme.c:(.text+0x1ed1): more undefined references to `make_grad_argb' follow Reported by: antoine (via exp-run)
* - Update to version 5.7.4.0pawel2017-02-022-5/+6
| | | | | | - Drop maintainership, I'm not using it anymore - Remove antique minimal java version requirement - Port is architecture neutral
* Generate fontconfig cache on installation. This prevents cache creationtijl2017-02-026-12/+28
| | | | in every user's home directory when they first run an X11 Linux program.
* www/davical: update 1.1.2 -> 1.1.5pi2017-02-024-23/+26
| | | | | | | | | | | | - moved MASTER_SITE to gitlab - Please note that there are long-standing sync issues with KDE Korganizer (and Kontact) clients when there are multiple clients syncing to the same calendar. For example, see https://bugs.kde.org/show_bug.cgi?id=325224 PR: 215847 Changes: https://gitlab.com/davical-project/davical/blob/master/ChangeLog Submitted by: packet@nerdheim.de
* devel/php-libawl: update 0.54 -> 0.57pi2017-02-024-7/+16
| | | | | | | PR: 215846 Changes: https://gitlab.com/davical-project/awl/blob/master/ChangeLog Submitted by: packet@nerdheim.de Approved by: cristianorolim@outlook.com (maintainer timeout)
* Use USE_GCC=6+ as example for the "+" flavor of USE_GCC instead ofgerald2017-02-021-1/+1
| | | | | USE_GCC=4.9+. Among others, this adds an example for the new, single digit GCC versions.
* Update to 1.2.4sunpoet2017-02-022-3/+4
| | | | Changes: https://github.com/imanel/websocket-ruby/blob/master/CHANGELOG.md
* Update to 1.4.1sunpoet2017-02-022-4/+4
| | | | | Changes: https://github.com/github/markup/blob/master/HISTORY.md https://github.com/github/markup/commits/master
* Fix gemspec for rubygem-i18n 0.8.0 updatesunpoet2017-02-022-0/+12
| | | | - Bump PORTREVISION for package change
* Update to 0.8.0sunpoet2017-02-022-3/+4
| | | | Changes: https://github.com/svenfuchs/i18n/commits/master
* Update to 1.73sunpoet2017-02-022-4/+4
| | | | Changes: http://search.cpan.org/dist/DateTime-Format-Strptime/Changes
* Update to 1.3.4sunpoet2017-02-023-4/+6
| | | | | | | - Add NO_ARCH - Update WWW Changes: https://github.com/harningt/luajson/blob/master/docs/ReleaseNotes-1.3.4.txt
* Update to 3.5.0sunpoet2017-02-022-4/+4
| | | | Changes: https://github.com/intridea/hashie/blob/master/CHANGELOG.md
* Update to 6.17sunpoet2017-02-022-4/+5
| | | | Changes: http://search.cpan.org/dist/libwww/Changes
* Update to 0.203sunpoet2017-02-022-4/+6
| | | | | | | - Add LICENSE_FILE - Add NO_ARCH Changes: http://search.cpan.org/dist/Scalar-Does/Changes
* Update to 0.010sunpoet2017-02-022-4/+5
| | | | | | - Add LICENSE_FILE Changes: http://search.cpan.org/dist/match-simple/Changes
* Update to 0.004sunpoet2017-02-022-4/+6
| | | | | | | - Add LICENSE_FILE - Add NO_ARCH Changes: http://search.cpan.org/dist/lexical-underscore/Changes
* Update to 0.7.92sunpoet2017-02-022-4/+4
| | | | | | | - Add GitHub repository to WWW Changes: https://mediaarea.net/MediaInfo/ChangeLog https://github.com/MediaArea/MediaInfo/blob/master/History_CLI.txt
* Update to 0.7.92sunpoet2017-02-023-4/+5
| | | | | | | - Add GitHub repository to WWW Changes: https://github.com/MediaArea/MediaInfoLib/blob/master/History_DLL.txt https://github.com/MediaArea/MediaInfoLib/blob/master/Changes.txt
* Update to 0.7.92 (0.4.34)sunpoet2017-02-023-4/+5
| | | | - Add GitHub repository to WWW
* Add OPENMPI2 optionsunpoet2017-02-021-1/+5
|
* Update IGNORE_WITH_PHPsunpoet2017-02-021-1/+1
|
* Update IGNORE_WITH_PHPsunpoet2017-02-021-1/+1
|
* Update IGNORE_WITH_PHPsunpoet2017-02-021-1/+1
|
* net-mgmt/icinga2:lme2017-02-023-22/+21
| | | | | | | | Update to 2.6.1 Changelog: https://github.com/Icinga/icinga2/milestone/60?closed=1 MFH: 2017Q1
* Update to 0.3.03ehaupt2017-02-022-6/+8
|
* Update to 1.7.0olivierd2017-02-022-5/+5
|
* Update to 4.1olivierd2017-02-023-15/+35
| | | | Changelog: https://www.mercurial-scm.org/wiki/WhatsNew#Mercurial_4.1_.282017-2-1.29
* security/libressl-devel: Fix libcrypto.so versionbrnrd2017-02-021-1/+1
| | | | | Submitted by: 216703 Reported by: OlivierW
* Fix build on aarch64lev2017-02-021-0/+3
| | | | | | PR: 213866 Submitted by: Andrew Turner <Andrew@FreeBSD.org> Reported by: Glen Barber <gjb@FreeBSD.org>
* Fix shebang fix for new sed(1) behaviorlev2017-02-022-4/+6
| | | | | PR: 215230 Submitted by: Xin Li <delphij@FreeBSD.org>
* Update GIO module cache on installation.tijl2017-02-026-3/+18
|
* - Update to 0.8.2olivierd2017-02-023-15/+4
| | | | - Remove unneeded patch
* Fix installation of README.mdlev2017-02-021-1/+2
| | | | | PR: 216683 Submitted by: Kenji Rikitake <kenji@k2r.org>
* update shotwell to 0.24.5cmt2017-02-022-4/+4
| | | | | MFH: 2017Q1 Security: 5a9b3d70-48e2-4267-b196-83064cb14fe0
* document shotwell vulnerabilitycmt2017-02-021-0/+32
|
* The latest version of ftp/proftpd doesn't build with libressl either.marino2017-02-021-0/+3
| | | | | | Increase the IGNORE from openssl-devel to include all versions of libressl. Approved by: SSL blanket
* audio/sndio: Various fixescpm2017-02-024-27/+140
| | | | | | | | | | | | | | | | - Success in opening /dev/dsp* O_RDWR does not mean the device supports play/recording. Add an extra check to see if the requested mode is really supported. - sndiod cannot currently be started in jails as root, because it tries to setpriority(-20). Allow setpriority to fail and start the daemon anyway. - Fallback to /dev/dsp instead of /dev/dsp0 when using libsndio directly without a running sndiod. - Implement sio_setvol in the OSS backend for application level volume control with just libsndio. PR: 216571 Submitted by: Tobias Kortkamp <t@tobik.me> (maintainer)
* - Update to 2.32.2lwhsu2017-02-022-4/+4
| | | | | | Approved by: maintainer (implicit) MFH: 2017Q1 Security: 5cfa9d0c-73d7-4642-af4f-28fbed9e9404
* - Update to 2.44lwhsu2017-02-022-4/+4
| | | | | MFH: 2017Q1 Security: 5cfa9d0c-73d7-4642-af4f-28fbed9e9404
* Document Jenkins Security Advisory 2017-02-01lwhsu2017-02-021-0/+83
|
* Update misc/tellico-kde4 to 2.3.12tcberner2017-02-022-10/+14
| | | | | | | | * while here, add the dependencies asked for by stage-qa Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D9408
* misc/py-socli: Update to 3.0cpm2017-02-022-5/+6
| | | | | | | - Update PORTVERSION and distinfo checksum (3.0) - Add devel/py-colorama dependency Changes: https://github.com/gautamkrishnar/socli/releases/tag/3.0
* lang/php71: pet portlint by moving LIB_DEPENDS uptz2017-02-021-2/+2
| | | | | | | Convert the patch from lang/php70 to lang/php71 PR: 216653 Submitted by: linimon
* Update to the 20170131 snapshot of GCC 5.4.1.gerald2017-02-022-4/+4
|
* lang/php70: pet portlint by moving LIB_DEPENDS uptz2017-02-021-2/+2
| | | | | PR: 216653 Submitted by: linimon
* Update MASTER_SITE_OPENBSD: OpenBSD mirrors prefer HTTP now andnaddy2017-02-021-37/+6
| | | | | HTTPS is strongly encouraged. Replace a woefully outdated list of all OpenBSD mirrors (there are 60+ now) with a reasonable selection.
* databases/mariadb55-client: Fix stage QAmarino2017-02-011-0/+4
| | | | | | | Remove files from stage directory that aren't supposed to be packaged to satisfy QA checks. No revump necessary. PR: 214669
* databases/maria55*: reset maintainermarino2017-02-012-3/+1
| | | | | | The maintainer was not involved in any of the last 13 releases and still is not responding to PRs (many, many timeouts). Maintainership of this port probably should have been reset a couple of years ago.
* - Update to 2.7.1amdmi32017-02-012-12/+14
| | | | | | | | | - Add NO_ARCH - Cosmetic fixes - Pass maintainership to submitter PR: 212213 Submitted by: t@tobik.me (maintainer)
* - Update to 0.3.0.2-alphaamdmi32017-02-013-11/+19
| | | | | | | | - Manpages now require asciidoc and are optional PR: 216418 Submitted by: neel@neelc.org Approved by: yuri@rawbw.com (maintainer)
* - Fix build with clang 4.0 by not defining __linux__amdmi32017-02-012-5/+10
| | | | | | | | | - Add LICENSE - Switch to options helpers - Regenerate patches PR: 216651 Submitted by: jbeich@FreeBSD.org
* - Enable concurrent installsamdmi32017-02-011-1/+2
| | | | | PR: 216581 Submitted by: john@saltant.com
* - Add LICENSEamdmi32017-02-012-0/+24
| | | | - Fix build with clang 4.0 by fixing ordered pointer comparisons
* security/libressl-devel: Update to 2.5.1brnrd2017-02-017-1497/+2450
| | | | | | | | | | - Update to 2.5.1 (tarball `signify` checked) - Fix ocspcheck build (sockaddr_in, EAI_NODATA) - Fix Undefined symbol "SSL_CIPHER_get_value" [216680] - Remove patch (fixed upstream) - Align with MAN3 option from security/libressl PR: 216680
* - Re-add NLS optioncpm2017-02-012-35/+39
| | | | | | - Bump PORTREVISION Reported by: tijl
* - Update to 2.0.2danilo2017-02-013-11/+16
|
* security/py-{acme,certbot}: Update to 0.10.2cpm2017-02-014-8/+8
| | | | | | | - Update PORTVERSION and distinfo checksum (0.10.2) Approved by: koobs (maintainer timeout 2 weeks, py-certbot) Differential Revision: D9167
* - Update to 1.4.2cpm2017-02-013-42/+41
| | | | | | | - Record missing dependencies - Remove the NLS option because --disable/enable-nls had no effect (binary still linked to libintl.so.8) Changes: https://github.com/baedert/corebird/releases/tag/1.4.2
* audio/sidplay2: oops, fix typo in r433015jbeich2017-02-012-2/+3
|
* security/libressl: chase r432997 in static lib consumersjbeich2017-02-012-1/+2
| | | | Pointy hat to: brnrd
* net-im/jabber: unbreak with clang 4.0jbeich2017-02-011-0/+11
| | | | | | | mod_privacy.cc:1168:19: error: ordered comparison between pointer and zero ('xmlnode_list_item' (aka 'xmlnode_list_item_t *') and 'int') if (new_items <= 0) { ~~~~~~~~~ ^ ~
* net-im/jabber: unbreak with libc++ 3.9jbeich2017-02-013-1/+70
| | | | | | | | | | | | | | | | | log.cc:89:8: error: assigning to 'char *' from incompatible type 'const char *' pos = strchr(zone,'.'); ^~~~~~~~~~~~~~~~ xmlnode.cc:913:21: error: assigning to 'char *' from incompatible type 'const char *' start_predicate = strchr(path, '['); ^ ~~~~~~~~~~~~~~~~~ xmlnode.cc:914:15: error: assigning to 'char *' from incompatible type 'const char *' next_step = strchr(path, '/'); ^ ~~~~~~~~~~~~~~~~~ xmlnode.cc:1836:27: error: read-only variable is not assignable strchr(lang, '-')[0] = 0; ~~~~~~~~~~~~~~~~~~~~ ^ Reported by: pkg-fallout
* irc/quirc: unbreak with libc++ 3.9jbeich2017-02-011-0/+18
| | | | | | | | | | | servertcl.cc:890:12: error: assigning to 'char *' from incompatible type 'const char *' while((pos=strstr(afterslash,"/"))) afterslash=pos+1;; ^~~~~~~~~~~~~~~~~~~~~~~ servertcl.cc:1010:12: error: assigning to 'char *' from incompatible type 'const char *' while((pos=strstr(afterslash,"/"))) afterslash=pos+1;; ^~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* mail/bincimap: unbreak with libc++ 3.9jbeich2017-02-011-0/+9
| | | | | | | | | | | | In file included from address.cc:39: ./convert.h:117:14: error: assigning to 'char *' from incompatible type 'const char *' if ((t = strchr(hexchars, c)) == 0) ^ ~~~~~~~~~~~~~~~~~~~ ./convert.h:122:14: error: assigning to 'char *' from incompatible type 'const char *' if ((t = strchr(hexchars, d)) == 0) ^ ~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* devel/mpatrol: unbreak with libc++ 3.9jbeich2017-02-011-0/+11
| | | | | | | | ../../tools/dmalloc.c:412:20: error: assigning to 'char *' from incompatible type 'const char *' else if (t = strchr(ESCAPE_CHARS, p[i])) ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* devel/guikachu: unbreak with libc++ 3.9jbeich2017-02-011-0/+11
| | | | | | | | bitmapfamily-res-ops.cc:33:20: error: assigning to 'char *' from incompatible type 'const char *' msgval = strrchr (msgid, '|') + 1; ^ ~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* www/cssed: unbreak with libc++ 3.9jbeich2017-02-011-0/+11
| | | | | | | | ../src/LexCaml.cxx:278:12: error: assigning to 'char *' from incompatible type 'const char *' || ((o = strchr(")]};,\'\"`#", ch)) != 0)/* "termination" chars */ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* net/coda6_client: unbreak with libc++ 3.9jbeich2017-02-011-0/+12
| | | | | | | | vol_cml.cc:3621:10: error: assigning to 'char *' from incompatible type 'const char *' comp = strrchr(hook->name, '/') + 1; ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* audio/sidplay2: unbreak with libc++ 3.9jbeich2017-02-012-1/+23
| | | | | | | | args.cpp:105:9: error: assigning to 'char *' from incompatible type 'const char *' sep = strstr (str, ":"); ^ ~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* mail/mmr: unbreak with libc++ 3.9jbeich2017-02-012-0/+24
| | | | | | | | | mime.cpp:895:12: error: assigning to 'char *' from incompatible type 'const char *' if ( (ptr=strrchr(file, '/')) != NULL ) ^~~~~~~~~~~~~~~~~~~ mimetype.cpp:176:18: error: assigning to 'char *' from incompatible type 'const char *' if ( (extension=strrchr(filename, '.')) == NULL ) ^~~~~~~~~~~~~~~~~~~~~~
* audio/muse: unbreak with libc++ 3.9jbeich2017-02-012-1/+23
| | | | | | | | httpstream.cpp:366:4: error: assigning to 'char *' from incompatible type 'const char *' p = strstr(url, HTTP_PREFIX); if (!p) goto out; ^ ~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* games/eboard: unbreak with libc++ 3.9jbeich2017-02-012-1/+25
| | | | | | | | ntext.cc:247:5: error: assigning to 'char *' from incompatible type 'const char *' p = strchr(text, '\n'); ^ ~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* games/openbubbles: unbreak with libc++ 3.9jbeich2017-02-011-0/+20
| | | | | | | | | | | BFont.cpp:322:14: error: assigning to 'char *' from incompatible type 'const char *' while ((p=strchr(&text[pos+1],SPACE)) != NULL) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~ BFont.cpp:362:19: error: assigning to 'char *' from incompatible type 'const char *' p = strstr(&text[pos+1]," "); ^ ~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* games/xjig: unbreak with libc++ 3.9jbeich2017-02-012-1/+14
| | | | | | | | gif_image.C:61:7: error: assigning to 'char *' from incompatible type 'const char *' name = strrchr(filename,'/'); ^ ~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* games/xmemory: unbreak with libc++ 3.9jbeich2017-02-012-1/+14
| | | | | | | | gif_image.C:61:7: error: assigning to 'char *' from incompatible type 'const char *' name = strrchr(filename,'/'); ^ ~~~~~~~~~~~~~~~~~~~~~ Reported by: pkg-fallout
* Update to 1.6.5.vanilla2017-02-012-4/+5
|
* Move to GitHub as the original author of the project, George Gesslein II, isehaupt2017-02-013-7/+11
| | | | | | | now deceased. A diff between the GitHub tagname and the last distfile shows no changes. Correct the license from GPLv2 to LGPL21 and define LICENSE_FILE.
* 1: Update to 3.10.vanilla2017-02-012-5/+8
| | | | 2: set NO_ARCH.
* Update to 1.18.21.vanilla2017-02-013-10/+4
|
* lang/erlang-runtime18: fix build with clang 4.0.olgeni2017-02-012-1/+21
| | | | | PR: 216615 Submitted by: Jan Beich
* lang/erlang-runtime17: fix build with clang 4.0.olgeni2017-02-012-1/+21
| | | | | PR: 216615 Submitted by: Jan Beich
* lang/erlang-runtime16: fix build with clang 4.0.olgeni2017-02-012-1/+21
| | | | | PR: 216615 Submitted by: Jan Beich
* - Update to 1.1.21amdmi32017-02-012-5/+6
| | | | | | | | - Allow concurrent installs (fix docdir) PR: 212213 Submitted by: xmj@FreeBSD.org Approved by: maintainer timeout (johannes@perceivon.net, 6 weeks)
* - Update to 1.0.5amdmi32017-02-012-11/+18
| | | | - Tweak depends
* - Update to 0.2.9.9amdmi32017-02-012-4/+4
| | | | | | PR: 216417 Submitted by: neel@neelc.org Approved by: yuri@rawbw.com (maintainer)
* Update to 2.7.2krion2017-02-012-9/+4
| | | | | | | PR: 216679 Submitted by: freebsd@zleslie.info (maintainer) Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9402
* security/libressl: Update to 2.4.5brnrd2017-02-013-41/+11
| | | | | - Update version to 2.4.5 - Remove patch now included
* Restore usr/share/alsa as a directory. Other linux ports install filestijl2017-02-016-11/+384
| | | | | | there as well. PR: 216690
* Add DOCS and NLS option.tijl2017-02-011-0/+3
|
* Fix dependency on nas.tijl2017-02-011-1/+1
| | | | Reported by: olgeni
* - Add LICENSEamdmi32017-02-011-33/+26
| | | | | | - Remove bogus HAVE_CONFIGURE - Don't install license with docs - Switch to options helpers
* Update to 1.0.7ehaupt2017-02-013-7/+10
|
* - fix owner on suid binariesdinoex2017-02-017-28/+30
| | | | | | - fix option FIDOGATE_RUNAS - add LICENSE - make portlint happier
* games/qtads: update to 2.1.7jbeich2017-02-012-4/+4
| | | | | | | Changes: https://github.com/realnc/qtads/compare/2.1.6...2.1.7 PR: 216357 Submitted by: kaiwang27@gmail.com (maintainer) MFH: 2017Q1
* devel/py-jcc: unbreak with clang 4.0jbeich2017-02-012-0/+21
| | | | | | | | | | | jcc/sources/JArray.cpp:315:66: error: ordered comparison between pointer and zero ('PyObject *' (aka '_object *') and 'int') PyList_Type.tp_as_sequence->sq_inplace_concat(list, arg) < 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ jcc/sources/JArray.cpp:330:64: error: ordered comparison between pointer and zero ('PyObject *' (aka '_object *') and 'int') PyList_Type.tp_as_sequence->sq_inplace_repeat(list, n) < 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ Reported by: antoine (via exp-run)
* devel/alabastra: unbreak with clang 4.0jbeich2017-02-011-0/+29
| | | | | | | | | | | | | | | | | | | | src/AlWinMain.cpp:164:35: error: ordered comparison between pointer and zero ('QListWidgetItem *' and 'int') if (ui.list_files->currentItem() > 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ src/AlWinMain.cpp:722:16: error: ordered comparison between pointer and zero ('AlTextEdit *' and 'int') if (actualTxt > 0 && ui.list_files->currentItem() > 0) ~~~~~~~~~ ^ ~ src/AlWinMain.cpp:722:52: error: ordered comparison between pointer and zero ('QListWidgetItem *' and 'int') if (actualTxt > 0 && ui.list_files->currentItem() > 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ src/AlWinMain.cpp:731:16: error: ordered comparison between pointer and zero ('AlTextEdit *' and 'int') if (actualTxt > 0 && ui.list_files->currentItem() > 0) ~~~~~~~~~ ^ ~ src/AlWinMain.cpp:731:52: error: ordered comparison between pointer and zero ('QListWidgetItem *' and 'int') if (actualTxt > 0 && ui.list_files->currentItem() > 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ Reported by: antoine (via exp-run)
* graphics/copperspice: unbreak with clang 4.0jbeich2017-02-011-0/+21
| | | | | | | | | | ../3rdparty/webkit/Source/WebCore/html/HTMLImageElement.cpp:77:24: error: ordered comparison between pointer and zero ('const int *' and 'int') if (optionalHeight > 0) ~~~~~~~~~~~~~~ ^ ~ PR: 216015 Reported by: antoine (via exp-run) Obtained from: upstream (excerpt)
* editors/yui: partially unbreak with clang 4.0jbeich2017-02-012-0/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | main.cc:1153:36: error: ordered comparison between pointer and zero ('char *' and 'int') while( fgets( buf1024, 1023, f ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ main.cc:1768:39: error: ordered comparison between pointer and zero ('char *' and 'int') while( fgets( buf1024, 1023, f ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ main.cc:1865:35: error: ordered comparison between pointer and zero ('char *' and 'int') while( fgets( buf1024, 1023, f ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ main.cc:1948:35: error: ordered comparison between pointer and zero ('char *' and 'int') while( fgets( buf1024, 1023, f ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ main.cc:2030:39: error: ordered comparison between pointer and zero ('char *' and 'int') while( fgets( buf1024, 1023, f ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ main.cc:2147:39: error: ordered comparison between pointer and zero ('char *' and 'int') while( fgets( buf1024, 1023, f ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ main.cc:2483:37: error: ordered comparison between pointer and zero ('char *' and 'int') if ( fgets( buf1024, 1023, f ) <= 0 ) ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ main.cc:2618:32: error: ordered comparison between pointer and zero ('char *' and 'int') while( fgets( buf, 1023, f ) > 0 ) ~~~~~~~~~~~~~~~~~~~~~ ^ ~ yui1.cc:2668:19: error: ordered comparison between pointer and zero ('FILE *' (aka '__sFILE *') and 'int') if ( forig <= 0 ) { ~~~~~ ^ ~ yui1.cc:2678:15: error: ordered comparison between pointer and zero ('FILE *' (aka '__sFILE *') and 'int') if ( fbak <= 0 ) { ~~~~ ^ ~ yui1.cc:2787:15: error: ordered comparison between pointer and zero ('FILE *' (aka '__sFILE *') and 'int') if ( forig <= 0 ) { ~~~~~ ^ ~ Reported by: antoine (via exp-run)
* irc/kvirc: unbreak with clang 4.0jbeich2017-02-012-1/+21
| | | | | | | | | | | src/modules/rijndael/libkvirijndael.cpp:331:11: error: ordered comparison between pointer and zero ('int *' and 'int') if(len > 0) ~~~ ^ ~ src/modules/rijndael/libkvirijndael.cpp:357:11: error: ordered comparison between pointer and zero ('int *' and 'int') if(len > 0) ~~~ ^ ~ Reported by: antoine (via exp-run)
* archivers/bicom: unbreak with clang 4.0jbeich2017-02-011-0/+11
| | | | | | | | | In file included from bialib/sufftree.cpp:57: ./bialib/sufftree.h:98:16: error: ordered comparison between pointer and zero ('SuffixTreeModel::LNode *' and 'int') {return(r>0);} ~^~ Reported by: antoine (via exp-run)
* math/newmat: unbreak with clang 4.0jbeich2017-02-011-0/+11
| | | | | | | | newmat6.cpp:431:13: error: ordered comparison between pointer and zero ('int *' and 'int') if (indx > 0) { delete [] indx; indx = 0; } ~~~~ ^ ~ Reported by: antoine (via exp-run)
* sysutils/qpxtool: unbreak with clang 4.0jbeich2017-02-012-1/+12
| | | | | | | | src/mainwindow.cpp:429:9: error: ordered comparison between pointer and zero ('QAction *' and 'int') if (act<0) return; ~~~^~ Reported by: antoine (via exp-run)
* graphics/swfmill: unbreak with clang 4.0jbeich2017-02-013-1/+23
| | | | | | | | | | | | | gSWFParseXML.cpp:19:10: error: ordered comparison between pointer and zero ('iconv_t' (aka '__tag_iconv_t *') and 'int') if (cd < 0) { ~~ ^ ~ gSWFWriteXML.cpp:15:10: error: ordered comparison between pointer and zero ('iconv_t' (aka '__tag_iconv_t *') and 'int') if (cd < 0) { ~~ ^ ~ Reported by: antoine (via exp-run)
* x11/antimicro: unbreak with clang 4.0jbeich2017-02-012-0/+12
| | | | | | | | | src/mainwindow.cpp:367:19: error: ordered comparison between pointer and zero ('QMap<SDL_JoystickID, InputDevice *> *' (aka 'QMap<int, InputDevice *> *') and 'int') if (joysticks > 0) ~~~~~~~~~ ^ ~ PR: 216358 Reported by: antoine (via exp-run)
* emulators/snes9express: unbreak with clang 4.0jbeich2017-02-011-0/+11
| | | | | | | | frend.cc:2530:21: error: ordered comparison between pointer and zero ('frend::Image *' and 'int') if(items[i].icon > 0) ~~~~~~~~~~~~~ ^ ~ Reported by: antoine (via exp-run)
* emulators/fceux: unbreak with clang 4.0jbeich2017-02-012-0/+22
| | | | | | | | | | | | fceux-server/server.cpp:117:29: error: ordered comparison between pointer and zero ('char *' and 'int') while(fgets(buf, 256, fp) > 0) ~~~~~~~~~~~~~~~~~~~ ^ ~ src/cheat.cpp:219:30: error: ordered comparison between pointer and zero ('char *' and 'int') while(fgets(linebuf,2048,fp)>0) ~~~~~~~~~~~~~~~~~~~~~~^~ Reported by: antoine (via exp-run)
* games/kajaani-kombat: unbreak with clang 4.0jbeich2017-02-013-1/+46
| | | | | | | | | | | | | | | | | | | | client_net.cpp:34:12: error: ordered comparison between pointer and zero ('SDL_cond *' and 'int') if (cond <0) ~~~~ ^~ client_net.cpp:40:13: error: ordered comparison between pointer and zero ('SDL_mutex *' and 'int') if (mutex < 0) ~~~~~ ^ ~ client_net.cpp:48:16: error: ordered comparison between pointer and zero ('SDL_Thread *' and 'int') if (trans_th < 0) ~~~~~~~~ ^ ~ client_net.cpp:54:16: error: ordered comparison between pointer and zero ('SDL_Thread *' and 'int') if (input_th < 0) ~~~~~~~~ ^ ~ game_server.cpp:67:14: error: ordered comparison between pointer and zero ('SDL_Thread *' and 'int') if (con_th < 0) ~~~~~~ ^ ~ Reported by: antoine (via exp-run)
* games/edge: unbreak with clang 4.0jbeich2017-02-013-1/+23
| | | | | | | | | | | | | src/p_enemy.cc:531:26: error: ordered comparison between pointer and zero ('struct mobj_s **' and 'int') if (brain_spots.targets > 0) ~~~~~~~~~~~~~~~~~~~ ^ ~ src/w_sprite.cc:578:42: error: ordered comparison between pointer and zero ('spriteframe_c *' and 'int') if (sprites[states[i].sprite]->frames > 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ Reported by: antoine (via exp-run)
* games/holotz-castle: unbreak with clang 4.0jbeich2017-02-012-1/+30
| | | | | | | | | | | | | | | | | JLib/Util/JTextFile.cpp:148:11: error: ordered comparison between pointer and zero ('s8 *' (aka 'char *') and 'int') if (tmp > 0) ~~~ ^ ~ JLib/Util/JTextFile.cpp:156:15: error: ordered comparison between pointer and zero ('s8 *' (aka 'char *') and 'int') if (tmp > 0) ~~~ ^ ~ JLib/Util/JTextFile.cpp:236:8: error: ordered comparison between pointer and zero ('int' and 's8 *' (aka 'char *')) if (0 >= (end = strstr(ptr, "\""))) ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~ Reported by: antoine (via exp-run)
* games/qtads: unbreak with clang 4.0jbeich2017-02-012-1/+12
| | | | | | | | | | tads3/vmtz.cpp:1985:30: error: ordered comparison between pointer and zero ('vmtz_trans *' and 'int') result->set(tcur > 0 ? tcur - 1 : tcur); ~~~~ ^ ~ PR: 216357 Reported by: antoine (via exp-run) Submitted by: kaiwang27@gmail.com (maintainer)
* games/frobtads: unbreak with clang 4.0jbeich2017-02-012-0/+12
| | | | | | | | | | tads3/vmtz.cpp:1987:30: error: ordered comparison between pointer and zero ('vmtz_trans *' and 'int') result->set(tcur > 0 ? tcur - 1 : tcur); ~~~~ ^ ~ PR: 216357 Reported by: antoine (via exp-run) Submitted by: kaiwang27@gmail.com (maintainer)
* games/vegastrike: unbreak with clang 4.0jbeich2017-02-011-0/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | setup/src/include/central.cpp:37:37: error: ordered comparison between pointer and zero ('struct group *' and 'int') } while ((CURRENT = CURRENT->next) > 0); ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/central.cpp:45:37: error: ordered comparison between pointer and zero ('struct catagory *' and 'int') } while ((CURRENT = CURRENT->next) > 0); ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/central.cpp:57:37: error: ordered comparison between pointer and zero ('struct catagory *' and 'int') } while ((CURRENT = CURRENT->next) > 0); ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/central.cpp:67:29: error: ordered comparison between pointer and zero ('struct group *' and 'int') } while ((CUR = CUR->next) > 0); ~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/central.cpp:77:29: error: ordered comparison between pointer and zero ('struct catagory *' and 'int') } while ((CUR = CUR->next) > 0); ~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/central.cpp:87:36: error: ordered comparison between pointer and zero ('struct group *' and 'int') } while ((CUR = CUR->next) > 0); ~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/display_gtk.cpp:112:36: error: ordered comparison between pointer and zero ('catagory *' and 'int') } while ((NEWCUR = NEWCUR->next) > 0); ~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/display_gtk.cpp:127:37: error: ordered comparison between pointer and zero ('struct group *' and 'int') } while ((CURRENT = CURRENT->next) > 0); ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/display_gtk.cpp:183:29: error: ordered comparison between pointer and zero ('struct catagory *' and 'int') } while ((CUR = CUR->next) > 0); ~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/file.cpp:170:52: error: ordered comparison between pointer and zero ('char *' and 'int') while ( ( n_parm = next_parm( parm ) ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/file.cpp:191:52: error: ordered comparison between pointer and zero ('char *' and 'int') while ( ( n_parm = next_parm( parm ) ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/file.cpp:321:52: error: ordered comparison between pointer and zero ('char *' and 'int') while ( ( n_parm = next_parm( parm ) ) > 0 ) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ setup/src/include/general.cpp:124:46: error: ordered comparison between pointer and zero ('char *' and 'int') while ((location = strstr(current, search)) > 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ PR: 216072 Reported by: antoine (via exp-run)
* editors/madedit: unbreak with clang 4.0jbeich2017-02-011-0/+20
| | | | | | | | | | | | | | src/MadOptionsDialog.cpp:1179:56: error: ordered comparison between pointer and zero ('const wxChar *' (aka 'const wchar_t *') and 'int') if(g_SelectedCommandItem->cmddata->menuid_name > 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ src/MadOptionsDialog.cpp:1277:42: error: ordered comparison between pointer and zero ('const wxChar *' (aka 'const wchar_t *') and 'int') if(tid->cmddata->menuid_name > 0) ~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ PR: 216076 Reported by: antoine (via exp-run)
* audio/mixxx: unbreak with clang 4.0jbeich2017-02-011-0/+13
| | | | | | | | | | src/widget/wdisplay.cpp:89:19: error: ordered comparison between pointer and zero ('QPixmap **' and 'int') if (m_pPixmaps>0) ~~~~~~~~~~^~ PR: 216354 Reported by: antoine (via exp-run) Submitted by: tcberner
* multimedia/vdr-plugin-vdrmanager: unbreak with clang 4.0jbeich2017-02-012-1/+18
| | | | | | | | | | sock.cpp:23:13: error: ordered comparison between pointer and zero ('int (*)(int, int, int)' and 'int') if (socket >= 0) { ~~~~~~ ^ ~ PR: 216217 Reported by: antoine (via exp-run) Obtained from: upstream
* multimedia/vdr-plugin-epgsearch: unbreak with clang 4.0jbeich2017-02-011-0/+22
| | | | | | | | | | | | | createcats.c:67:42: error: ordered comparison between pointer and zero ('char *' and 'int') if (fgets(buffer, sizeof(buffer), f) > 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ epgsearchext.c:1506:50: error: ordered comparison between pointer and zero ('char *' and 'int') while (fgets(buffer, sizeof(buffer), f) > 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ c++: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated [-Wdeprecated] PR: 216217 Reported by: antoine (via exp-run)
* multimedia/vdr: unbreak with clang 4.0jbeich2017-02-012-1/+12
| | | | | | | | | recording.c:2090:17: error: ordered comparison between pointer and zero ('cUnbufferedFile *' and 'int') if (Open() >= 0) { ~~~~~~ ^ ~ PR: 216058 Reported by: antoine (via exp-run)
* graphics/svgalib: unbreak with clang 4.0jbeich2017-02-011-0/+36
| | | | | | | | | | | | | | | | | | | | | In file included from gl/grlib.c:7: gl/inlstring.h:71:9: error: asm-specifier for input or output variable conflicts with asm clobber list : "cx", "di"); ^ gl/inlstring.h:281:17: error: asm-specifier for input or output variable conflicts with asm clobber list :"ax", "0", "1", "2"); ^ gl/inlstring.h:297:17: error: asm-specifier for input or output variable conflicts with asm clobber list :"ax", "0", "1", "2"); ^ gl/inlstring.h:314:17: error: asm-specifier for input or output variable conflicts with asm clobber list :"ax", "0", "1", "2"); ^ PR: 216154 Reported by: antoine (via exp-run) Submitted by: dim Approved by: portmgr blanket
* textproc/htmldoc: unbreak with clang 4.0jbeich2017-02-012-1/+12
| | | | | | | | | | htmlsep.cxx:527:19: error: ordered comparison between pointer and zero ('int *' and 'int') if (heading >= 0) ~~~~~~~ ^ ~ PR: 216159 Reported by: antoine (via exp-run) Approved by: portmgr blanket
* Upgrade to the latest stable release - 1.10.3.osa2017-02-012-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <ChangeLog> *) Bugfix: in the "add_after_body" directive when used with the "sub_filter" directive. *) Bugfix: unix domain listen sockets might not be inherited during binary upgrade on Linux. *) Bugfix: graceful shutdown of old worker processes might require infinite time when using HTTP/2. *) Bugfix: when using HTTP/2 and the "limit_req" or "auth_request" directives client request body might be corrupted; the bug had appeared in 1.10.2. *) Bugfix: a segmentation fault might occur in a worker process when using HTTP/2; the bug had appeared in 1.10.2. *) Bugfix: an incorrect response might be returned when using the "sendfile" directive on FreeBSD and macOS; the bug had appeared in 1.7.8. *) Bugfix: a truncated response might be stored in cache when using the "aio_write" directive. *) Bugfix: a socket leak might occur when using the "aio_write" directive. </ChangeLog>
* Upgrade from 1.11.8 to 1.11.9.osa2017-02-012-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <ChangeLog> *) Bugfix: nginx might hog CPU when using the stream module; the bug had appeared in 1.11.5. *) Bugfix: EXTERNAL authentication mechanism in mail proxy was accepted even if it was not enabled in the configuration. *) Bugfix: a segmentation fault might occur in a worker process if the "ssl_verify_client" directive of the stream module was used. *) Bugfix: the "ssl_verify_client" directive of the stream module might not work. *) Bugfix: closing keepalive connections due to no free worker connections might be too aggressive. Thanks to Joel Cunningham. *) Bugfix: an incorrect response might be returned when using the "sendfile" directive on FreeBSD and macOS; the bug had appeared in 1.7.8. *) Bugfix: a truncated response might be stored in cache when using the "aio_write" directive. *) Bugfix: a socket leak might occur when using the "aio_write" directive. </ChangeLog>
* - Update to 1.4.3wen2017-02-012-3/+4
| | | | | | PR: 215487 Submitted by: joneum@bsdproject.de Approved by: maintainer(timeout, >30 days)
* Upgrade third-party lua module from 0.10.6 to 0.10.7.osa2017-02-014-6/+6
|
* Update to 5.2.5.jkim2017-02-01116-488/+478
|
* add science/libgeodecomp - auto-parallelizing library for computer simulationslifanov2017-02-017-0/+279
| | | | | | | | | | | | | | | | | LibGeoDecomp (Library for Geometric Decomposition codes) is an auto-parallelizing library for computer simulations. It is specifically targeted computational science applications in the context of supercomputers and heterogeneous systems. The library eases development of such tightly coupled codes by essentially taking over the parallel programming: it handles both, the parallelization itself and parameter tuning. This enables scientists to focus on their simulation code, rather than the technical details of the parallel computer. PR: 213688 Submitted by: Kurt Kanzenbach <kurt@kmk-computers.de> Reviewed by: matthew Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D9390
* Similar to bug 212465, lang/gcc5 doesn't compile with recent versions ofdim2017-02-011-0/+43
| | | | | | | | | | | | | | | | | | | | libc++, because it attempts to redefine abort(): In file included from /wrkdirs/usr/ports/lang/gcc5/work/gcc-5.4.0/gcc/auto-profile.c:25: In file included from /usr/include/c++/v1/map:446: /usr/include/c++/v1/functional:1398:2: error: no member named 'fancy_abort' in namespace 'std::__1'; did you mean simply 'fancy_abort'? _VSTD::abort(); ^~~~~~~ /usr/include/c++/v1/__config:383:15: note: expanded from macro '_VSTD' #define _VSTD std::_LIBCPP_NAMESPACE ^ Patch this in the same way as the other gcc ports, by including <new> in gcc/system.h, and moving a few includes to before "system.h". Approved by: gerald (maintainer) PR: 216266 MFH: 2017Q1
* www/drupal7-wysiwig: upgrade optional www/tinymce3 dependency to www/tinymce,rene2017-02-011-5/+6
| | | | the fomer has expired
* Add 64 bit support.tijl2017-02-012-2/+6
| | | | PR: 216573
* Remove expired ports:rene2017-02-0121-527/+5
| | | | | | | | 2017-01-31 databases/rubygem-arel3: Use devel/rubygem-arel or devel/rubygem-arel6 instead 2017-01-31 databases/rubygem-arel5: Use devel/rubygem-arel or devel/rubygem-arel6 instead 2017-01-31 www/tinymce3: Use www/tinymce instead 2017-01-31 devel/p5-IO-Detect: Use devel/p5-Scalar-Does instead 2017-01-31 devel/pear-PHPUnit3: Deprecated by upstream, use devel/phpunit instead
* devel/pear-PHP_CompatInfo: use devel/phpunit instead of devel/pear-PHPUnit3rene2017-02-011-5/+5
| | | | which is expired. Bump PORTREVISION
* Enable i386 support to Linux CentOS 7 ports.tijl2017-02-0176-13/+7887
| | | | PR: 216646
* devel/pear-PEAR_Info: update to devel/phpunit, bump PORTREVISIONrene2017-02-011-4/+5
| | | | The old devel/pear-PHPUnit3 dependency has expired.