aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* multimedia/ffms2: update to 2.23jbeich2016-10-192-4/+4
| | | | Changes: https://github.com/FFMS/ffms2/releases/tag/2.23
* Update to 1.1.0.mat2016-10-195-10/+10
| | | | Sponsored by: Absolight
* multimedia/emby-server: Update to 3.0.8200woodsb022016-10-193-5/+7
| | | | | | | Changes this release: https://github.com/MediaBrowser/Emby/releases/tag/3.0.8200 Approved by: adamw (mentor, implicit)
* Since base r283461 /compat/linux/dev/shm must point to a tmpfs. Maketijl2016-10-196-84/+114
| | | | | | | | | | /compat/linux/dev/shm a plain directory instead of a link to /tmp so we don't force users to mount tmpfs on /tmp. This also makes /dev/shm a separate namespace from /tmp. Add libffi, needed by glib2. PR: 207769
* Since base r283461 /compat/linux/dev/shm must point to a tmpfs. Maketijl2016-10-194-7/+14
| | | | | | | | /compat/linux/dev/shm a plain directory instead of a link to /tmp so we don't force users to mount tmpfs on /tmp. This also makes /dev/shm a separate namespace from /tmp. PR: 207769
* Update to 1.97.2martymac2016-10-196-79/+20
|
* Provide a NEWVERDANA option (off by default) to install the y2006olgeni2016-10-193-5/+19
| | | | | | | | | | version of Verdana. Some glyphs of Verdana Bold y2006 are not rendered correctly by freetype in anti-aliased mode. PR: 213512 Submitted by: Vladimir Kondratyev
* - Add LICENSEamdmi32016-10-191-3/+10
| | | | - Switch to options helpers
* - Update to 0.8.1wen2016-10-192-3/+4
|
* mail/rspamd: hyperscan is dynamically linked, must be a LIB_DEPENDSgahr2016-10-191-1/+1
|
* update vagrant to 1.8.6cmt2016-10-195-25/+20
| | | | | | | | Changelog: https://github.com/mitchellh/vagrant/blob/v1.8.6/CHANGELOG.md PR: 213566 Approved by: joe at thrallingpenguin.com (maintainer) Approved by: rene (mentor)
* Insert blank line before MAINTAINERtcberner2016-10-192-0/+2
| | | | | | Submitted by: Adriaan de Groot <groot@kde.org> Approved by: mat (mentor) Obtained from: http://src.mouf.net/area51/revision/?rev=13183
* net-p2p/libtorrent-rasterbar: update 1.1.0 -> 1.1.1pi2016-10-198-419/+32
| | | | | | | - compile in C++11 mode as is required by qBittorrent versions after 3.3.4 PR: 212235 Submitted by: matthew@reztek.cz (maintainer)
* sysutils/fusefs-lkl: unbreakjbeich2016-10-191-10/+4
| | | | | | - Drop bsd.port.pre.mk line Approved by: portmgr blanket
* - Update to 43.1.0danilo2016-10-192-6/+10
| | | | | - Fix hunspell/aspell enable/disable - Using LANG variable to handle paths with non ASCII bytes during build process
* Use ImageMagick-nox11 instead of original one as it's moreosa2016-10-192-6/+6
| | | | | | | convenient for the server-based product. Do not bump PORTREVISION because this change affects disabled by default third-party modules only.
* Upgrade to the latest stable release - 1.10.2.osa2016-10-192-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <ChangeLog> *) Change: the "421 Misdirected Request" response now used when rejecting requests to a virtual server different from one negotiated during an SSL handshake; this improves interoperability with some HTTP/2 clients when using client certificates. *) Change: HTTP/2 clients can now start sending request body immediately; the "http2_body_preread_size" directive controls size of the buffer used before nginx will start reading client request body. *) Bugfix: a segmentation fault might occur in a worker process when using HTTP/2 and the "proxy_request_buffering" directive. *) Bugfix: the "Content-Length" request header line was always added to requests passed to backends, including requests without body, when using HTTP/2. *) Bugfix: "http request count is zero" alerts might appear in logs when using HTTP/2. *) Bugfix: unnecessary buffering might occur when using the "sub_filter" directive; the issue had appeared in 1.9.4. *) Bugfix: socket leak when using HTTP/2. *) Bugfix: an incorrect response might be returned when using the "aio threads" and "sendfile" directives; the bug had appeared in 1.9.13. *) Workaround: OpenSSL 1.1.0 compatibility. </ChangeLog>
* Import UID and GID for incoming www/py-octoprint portfeld2016-10-192-2/+2
| | | | PR: 213327
* This module is a polyfill, implementing ChainMap for reasonably-recent versionsfeld2016-10-194-0/+36
| | | | | | | | | | | | | | | | | of Python that do not have collections.ChainMap--namely, Python 2.6, Python 3.2, and PyPy3 releases based on Python 3.2. (It will also work as expected on Python 2.7, PyPy, and Python 3.3 and higher, but it is not needed there since those verions' collections modules contains a ChainMap implementation.) The code for this package is closely derived from the Python 3.5 source code at hg.python.org, (especially the collections and reprlib modules). Several changes have been made to ensure Python 2.6 compatibility, and tests and packaging have been added. WWW: https://bitbucket.org/jeunice/chainmap PR: 213322 Submitted by: Kyle Evans <bsdports@kyle-evans.net>
* www/py-flask-principal: Add NO_ARCHfeld2016-10-191-0/+2
|
* www/py-flask-assets: Add NO_ARCHfeld2016-10-191-0/+2
|
* devel/py-sarge: add NO_ARCHfeld2016-10-191-0/+2
|
* Pylru implements a true LRU cache along with several support classes. The cachefeld2016-10-194-0/+33
| | | | | | | | | | | | | | is efficient and written in pure Python. It works with Python 2.6+ including the 3.x series. Basic operations (lookup, insert, delete) all run in a constant amount of time. Pylru provides a cache class with a simple dict interface. It also provides classes to wrap any object that has a dict interface with a cache. Both write-through and write-back semantics are supported. Pylru also provides classes to wrap functions in a similar way, including a function decorator. WWW: https://github.com/jlhutch/pylru PR: 213323 Submitted by: Kyle Evans <bsdports@kyle-evans.net>
* The sarge package provides a wrapper for subprocess which provides commandfeld2016-10-194-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | pipeline functionality. This package leverages subprocess to provide easy-to-use cross-platform command pipelines with a Posix flavour: you can have chains of commands using ;, &, pipes using | and |&, and redirection. The latest version of sarge can be found on BitBucket: https://bitbucket.org/vinay.sajip/sarge/ The latest documentation (kept updated between releases) is on Read The Docs: http://sarge.readthedocs.org/ Please report any problems or suggestions for improvement either via the mailing list or the issue tracker. WWW: http://sarge.readthedocs.org/ PR: 213324 Submitted by: Kyle Evans <bsdports@kyle-evans.net>
* Integrates the webassets library with Flask, adding support for merging,feld2016-10-194-0/+29
| | | | | | | | | minifying and compiling CSS and Javascript files. WWW: http://github.com/miracle2k/flask-assets PR: 213325 Submitted by: Kyle Evans <bsdports@kyle-evans.net>
* Identity management for Flask.feld2016-10-194-0/+28
| | | | | | | WWW: http://packages.python.org/Flask-Principal/ PR: 213326 Submitted by: Kyle Evans <bsdports@kyle-evans.net>
* devel/bossa: Update to actual 1.7.0 releasefeld2016-10-192-5/+4
| | | | | | No changes, this is purely cosmetic. PR: 213168
* Update to 5.6.33-79.0flo2016-10-193-4/+5
|
* - Update security/gpgme to 1.7.0jhale2016-10-1911-13/+323
| | | | | | | | | | | | | | - Convert to master port and add several slave ports for the newly added c++, Qt5, and python bindings (security/gpgme-cpp, security/gpgme-qt5, and security/py-gpgme, respectively) - The Qt bindings currently provided by deskutils/kdepimlibs4 cannot currently coexist with these new bindings, but will be phased out in the future - The python bindings are an updated version of the ones provided by security/py-pyme and are now being maintained as part of the gpgme project. They work with both python 2.x and 3.x. PR: 212886
* - Update devel/tbb to version 2017.1martymac2016-10-197-9/+12
| | | | - Bump dependent ports
* Upgrade to 1.7.8.thierry2016-10-193-6/+4
|
* Update to 1.0.2girgen2016-10-193-4/+5
| | | | Fix problem with large WHERE clauses or large IN dittos.
* update qmapshack to 1.7.1cmt2016-10-193-4/+15
| | | | | | PR: 212844 Approved by: rene (mentor) Approved by: maintainer timeout
* update gnupg to 2.1.15cmt2016-10-193-10/+11
| | | | | | PR: 212355 Approved by: rene (mentor) Approved by: maintainer timeout
* net/py-openstackclient: update to 3.2.0novel2016-10-192-4/+4
| | | | | PR: 213542 Submitted by: Alexander Nusov (maintainer)
* net/py-keystoneclient: update to 3.6.0novel2016-10-192-4/+4
| | | | | PR: 213542 Submitted by: Alexander Nusov (maintainer)
* devel/py-oslo.config: respect hier(7)novel2016-10-191-0/+7
| | | | | | | | - Use ${PREFIX}/etc instead of /etc for configuration files - Bump PORTREVISION PR: 213542 Submitted by: Alexander Nusov (maintainer)
* * Properly expand %%ZEROCONF%% in the rc.d scriptmarcus2016-10-191-2/+8
| | | | | | | * While here, ensure zeroconf support is disabled at configure time if neither Avahi or mDNSResponder has been chosen PR: 213597
* deskutils/py-khal: Update to 0.7.1feld2016-10-193-6/+7
| | | | | | | | Changelog: https://github.com/pimutils/khal/releases/tag/v0.7.1 PR: 213537 Approved by: maintainer MFH: 2016Q4
* sysutils/prometheus: Fix some issues discussed in PRspi2016-10-193-6/+10
| | | | | | | | | | - the config file is now a @sample - pkg-plist added - /var/db/prometheus is the new place to be PR: 210059 Submitted by: Andy Carrel <wac@google.com> Approved by: jev@ecadlabs.com (maintainer)
* - Update to version 5.1pawel2016-10-193-14/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LICENSE_FILE Changelog: * change: xhb data file format (v1.2) * change: internal storage of txn into accounts * change: transaction dialog, changed the layout * change: template/scheduled dialog, changed the layout * change: register, refactored toolbar grouping single and multiple actions * change: listview, removed deprecated rule hint (alternate row color) * change: listview, added line grid (new GTK+ option) * change: preferences, reworked layout * wish : #1610672 multiple edit should allow clearing fields * wish : #1608025 revert prefill with shift/ctrl clicked txn when multiple edit * wish : #1500235 automatic assignments based on regular expressions * wish : #1500220 allow auto assignments to overwrite payee * wish : #1484449 warn when amount sign and category don't match * wish : #1448613 display full category name in autocompletion * wish : #1424365 separe scheduled transaction from template transaction * wish : #1242312 category split for template/scheduled transaction * wish : #1102981 add comment bloc for accounts * wish : #1094528 auto-assign Payment * wish : #844576 payee default category and payment type * wish : #552565 multiple currency accounting * bugfix: #1631888 amount input limited to -/+ 2,147,483,647 * bugfix: #1628664 internal xfer assign to existing txn no longer work * bugfix: #1625913 category with 0 budget should display 'over' * bugfix: #1615245 dst_account remains into file for non intxfer
* ports-mgmt/synth: Upgrade version 1.60 => 1.61marino2016-10-192-4/+4
| | | | | | | | | | | | | | | | | | | | | | Address "[N] Fetch prebuilt packages" bug: Once the /usr/local/etc/pkg/repos/00_synth.conf file was created, there was a good change that fetching prebuilt packages would stop with a fetch error that the checksum didn't match. This seems to be caused by pkg(8) using both the FreeBSD and the Synth repositories and often deferring to the latter. This is incorrect behavior as only the FreeBSD repository should be used for prefetching. This issue is hopefully resolved now. Web report behavior change: Any existing ??_history.json files are now deleted at the start of each run. They were only litter as the javascript did not pull in old files, so this change just removes them. While here, rename the "Elapsed" column on the builders table to "Duration" to match the history table lable and also adjust the widths of the origin and information columns on the history table.
* Fix some malformed <freebsdpr> entries in vuxmlfeld2016-10-191-10/+18
|
* Document vulnerability in Apache Axis2feld2016-10-191-0/+33
| | | | | PR: 213546 Security: CVE-2010-3981
* net/netatalk3: Fix PAM optionfeld2016-10-194-12/+26
| | | | | | | | | | | | Previous rollback of PAM changes didn't update pkg-plist, so the PAM option was broken. By using @sample if PAM option is enabled we can install a default PAM config that inherits the system PAM configuration while allowing custom configs to remain untouched. PR: 213349 MFH: 2016Q4
* Remove expired ports:rene2016-10-1912-388/+2
| | | | | 2016-10-18 devel/gaphor: runtime failure uncorrected for 1 year after first report 2016-10-18 editors/winefish: upstream disappeared (project dead?), segfaults on multiple arches
* Update security/tor to 0.2.8.9rene2016-10-196-15/+26
| | | | | | | | | | | | | | Update security/tor-devel to 0.2.9.4-alpha For security/tor: - fix directory permissions - mark the TOR2WEB option as "expert" PR: 212952 Submitted by: Neel Chauhan <neel@neelc.org> Approved by: maintainer <yuri@rawbw.com> MFH: 2016Q4 Security: c1dc55dc-9556-11e6-b154-3065ec8fd3ec
* Update to version 1.0.6pawel2016-10-192-4/+4
| | | | | PR: 213441 Submitted by: maintainer
* Document remote denial of service vulnerability in security/tor*rene2016-10-191-0/+36
| | | | | | PR: 212952 Submitted by: Neel Chauhan <neel@neelc.org> Obtained from: https://blog.torproject.org/blog/tor-0289-released-important-fixes
* Remove stray uneeded patch files.db2016-10-198-323/+0
|
* Introduce new extensible virtual categories for KDEtcberner2016-10-19168-502/+207
| | | | | | | | | | | | | | | | | | | | | A lot of KDE Ports share MASTERSITES, LICENSE and so one, as they are released as a bundle upstream, however, there was not really a clean way to share this information. Using these new categories, we can simplify the Makefiles for the diverse KDE ports. At the moment we support the virtual category * kde-kde4 In the future, this will be extended to * kde-frameworks * kde-plasma * kde-applications PR: 213406 Differential Revision: https://reviews.freebsd.org/D7645 Exp-run by : antoine Reviewed by: mat, rakuco Approved by: portmgr (mat), rakuco (mentor)
* googler is a power tool to Google (Web & News) and Google Site Searchnivit2016-10-194-0/+42
| | | | | | | | | from the command-line. It shows the title, URL and abstract for each result, which can be directly opened in a browser from the terminal. Results are fetched in pages (with page navigation). Supports sequential searches in a single googler instance. WWW: https://github.com/jarun/googler
* - Update to 0.8.0olivierd2016-10-195-73/+83
| | | | | | | - Sort USES - Remove NLS option Tested by: Vladimir Omelchuk (PR 209662)
* devel/py-os-client-config: update to 1.22.0novel2016-10-192-4/+4
| | | | | PR: 213542 Submitted by: Alexander Nusov (maintainer)
* devel/py-osc-lib: update dependenciesnovel2016-10-191-3/+6
| | | | | | | | - update some dependencies' versions and add missing dependencies - bump PORTREVISION due to package change PR: 213542 Submitted by: Alexander Nusov (maintainer)
* Fix build with CUPS 2.2.x.tijl2016-10-191-0/+10
|
* java/intellij: Update to version 2016.2.5.bsam2016-10-193-6/+5
|
* Update to 2.5.10.ume2016-10-192-4/+4
|
* lang/fsharp: fix build on FreeBSD < 11.dbn2016-10-191-2/+2
| | | | | | | | | | - change substitution since make(1) on FreeBSD 9 does not like variables within a substitution. - repeat tar substitution command since tar(1) on FreeBSD 9/10 does not obay the 'g' substitution command. Reported by: pkg-fallout PR: 213584
* Fix build with oRTP 0.27.0.tijl2016-10-191-0/+41
|
* Add USES=pkgconfig to fix build.tijl2016-10-181-1/+1
| | | | | PR: 213592 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
* Make make clean be recursive again.mat2016-10-181-5/+4
| | | | | | | PR: 213188 Submitted by: tijl Exp-run by: antoine Sponsored by: Absolight
* Add py-oslo.context 2.9.0, oslo Context library.novel2016-10-184-0/+30
| | | | | PR: 213542 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* Add py-cachetools 2.0.0, extensible memoizing collections andnovel2016-10-184-0/+25
| | | | | | | decorators. PR: 213542 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* - Update to 0.64amdmi32016-10-183-8/+29
|
* - Update to 2.1.0amdmi32016-10-184-19/+20
|
* Add py-pika-pool 0.1.3, pika connection pooling.novel2016-10-184-0/+27
| | | | | PR: 213542 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* Remove this post-patch target, the -O3 line is commented out by the patch.mat2016-10-181-4/+0
| | | | Sponsored by: Absolight
* Fix wrong range of vulnerable Rails 4 versionstz2016-10-181-4/+2
| | | | Approved by: pi (mentor)
* Initial u-boot port for the Raspberry Pi 3db2016-10-1817-0/+643
|
* net/quagga: Update 1.0.20160315 -> 1.0.20161017pi2016-10-182-4/+5
| | | | | | | | | | | - This release also includes 4 other fixes for undefined behaviour that may have security implications, for BGP, IS-IS and OSPFv3. PR: 213576 Changes: https://lists.quagga.net/pipermail/quagga-users/2016-October/014477.html Security: CVE-2016-4049 MFH: 2016Q4 Approved by: mat (maintainer)
* net-im/pidgin-skypeweb: update 1.2.1 -> 1.2.2robak2016-10-182-4/+4
| | | | | PR: 213531 Submitted by: Andrey Akhmichin <sepulkarium45@yahoo.com> (maintainer)
* Fix build with CUPS 2.2.x.tijl2016-10-183-0/+37
| | | | Reported by: hselasky
* Update Erlang 19 ports to version 19.1.5.olgeni2016-10-188-14/+22
|
* - Update to 1.2.7-r2ashish2016-10-183-6/+11
| | | | | | | - Add LICENSE information PR: 213582 Submitted by: takefu@airport.fm
* Adjust TEST_WRKSRC for USES=[cq]make:outsourcejbeich2016-10-186-5/+2
| | | | | Approved by: rakuco Differential Revision: https://reviews.freebsd.org/D8274
* - Fix build with CUPS 2.2.x.tijl2016-10-182-1/+16
| | | | - Fix printing test page.
* Fix build with CUPS 2.2.x.tijl2016-10-181-0/+10
|
* - update to 3.38ohauer2016-10-183-16/+4
| | | | | | | | | - remove obsolete patch Changelog 3.38: - fix pcap_file_header.snaplen - drop "-z pad" option - add "tcpinfo" struct
* Update to 0.69ehaupt2016-10-182-4/+4
|
* - Add LICENSEamdmi32016-10-182-22/+26
| | | | | - Switch to options helpers - Regenerate patches
* - Update to 2.26lwhsu2016-10-182-4/+4
|
* www/mod_http2-devel: Update to 1.7.5brnrd2016-10-182-4/+4
| | | | - Regular update
* - Update to 0.8.8lwhsu2016-10-182-5/+5
| | | | | | | - Change RUN_DEPENDS to py-sqlalchemy10 [1] PR: 213562 [1] Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* Simplify Makefile via USES=metaport.cperciva2016-10-181-6/+1
| | | | Submitted by: mat
* Upstream development stopped long time ago.xride2016-10-181-0/+3
| | | | Time to depreciate.
* devel/arm-none-eabi-newlib: * Fix excessive indentation [1]bsam2016-10-181-16/+16
| | | | | | | | | | * Be more friendly w.r.t aggressively assigning variables: Conditionally assign NEWLIB_TARGET, and CONFIGURE_ARGS+= in case we create a slave port from this needing a different NEWLIB_TARGET. PR: 213565 Submitted by: Kyle Evans <bsdports@kyle-evans.net> (maintainer) Reported by: danfe [1]
* - Update to 7.500.0danilo2016-10-183-5/+5
|
* Fix configure with CUPS 2.2.x.tijl2016-10-181-3/+12
| | | | Reported by: antoine
* devel/py-dogpile.cache: update to 0.6.2wg2016-10-182-3/+4
| | | | | PR: 213563 Submitted by: Alexander Nusov
* Update to 3.4.16.tijl2016-10-183-8/+7
|
* Add py-futurist 0.18.0, useful additions to futures, from the future.novel2016-10-184-0/+36
| | | | | PR: 213542 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* Add py-retrying 1.3.3, general-purpose retrying library, written innovel2016-10-184-0/+29
| | | | | | | Python. PR: 213542 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* Add py-python-editor 1.0.1, programmatically open an editor, capture thenovel2016-10-184-0/+25
| | | | | | | result. PR: 213542 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* Add py-fasteners 0.14.1, python package that provides useful locks.novel2016-10-184-0/+28
| | | | | PR: 213542 Submitted by: Alexander Nusov <alexander.nusov@nfvexpress.com>
* Drop r339003/r339004 cargo cult in my portsjbeich2016-10-182-2/+2
| | | | | Ninja is only fast for incremental builds, not after clobber. To keep using it define CMAKE_NINJA in make.conf.
* Update to 2.2.1.tijl2016-10-183-18/+11
|
* emulators/ppsspp: convert to GH_TUPLE/GH_SUBDIRjbeich2016-10-181-10/+3
| | | | Keep names (except PORTNAME) expanded for better readability.
* devel/git-cinnabar: unbreak build-as-user on 11.0jbeich2016-10-181-2/+2
| | | | | | | | ===> Configuring for git-cinnabar-0.4.0.b3.6 tar: Can't open `version': Permission denied tar: Error exit delayed from previous errors. Reported by: mat
* databases/mariadb101-server: Update to 10.1.18brnrd2016-10-182-4/+4
| | | | - Regular update to 10.1.18
* Update to upstream version 9.5.0riggs2016-10-182-4/+4
|
* news/golded+: honor LDFLAGSmarino2016-10-181-5/+5
| | | | Approved by: infrastructure blanket
* audio/gbsplay: Add explicit -L option for NLS LDFLAGSmarino2016-10-181-1/+1
| | | | | | | Some compilers don't have /usr/local/lib in the default library search path. Approved by: explicit LDFLAGs blanket
* net/(t|wire)shark-lite: Really fix themmarino2016-10-171-0/+1
| | | | | | | | | | | | | | error: pkg-static: Unable to access file /construction/net/tshark-lite/stage/ usr/local/%%ANDROIDDUMP_LIB%%lib/wireshark/extcap/androiddump: No such file or directory pkg-static: Unable to access file /construction/net/tshark-lite/stage/ usr/local/%%RANDPKTDUMP_LIB%%lib/wireshark/extcap/randpktdump: No such file or directory The PLIST_SUBs weren't defined. Approved by: just-fix-it
* - Update to 1.76.1amdmi32016-10-173-5/+5
|
* multimedia/handbrake: fix after change in USES=localbase behaviormarino2016-10-171-1/+1
| | | | | The build started failing on compilers that don't have /usr/local/lib in the default search path.
* security/gnome-ssh-askpass: Update version 5.8p2=>6.6p1bofh2016-10-173-11/+14
|
* Rework last build fix to work on DragonFlyBSD alsopawel2016-10-172-3/+11
| | | | | PR: 211626 Tested by: marino
* deskutils/(py-)spice-gtk: Fix build including with gold linkermarino2016-10-175-13/+47
| | | | | | | | | | | | | | | | | | | These ports starting failing on gold linker with messages like: ./.libs/libspice-client-gtk-3.0.so: error: undefined reference to 'XGetPointerControl' ./.libs/libspice-client-gtk-3.0.so: error: undefined reference to 'XChangePointerControl' The problem and fix was already described here: https://bugs.freedesktop.org/show_bug.cgi?id=97383 Apparently USES=pathfix and USES=autoreconf can't be used together, so the pkgconfig directory is now passed via MAKE_ARGS While here, fix py-spice-gtk install error by removing non-installed file from the pkg-list. Approved by: just-fix-it
* Note that this port is broken on FreeBSD 9.gnn2016-10-171-0/+2
|
* Sync webfonts collection with mscorefonts2.olgeni2016-10-174-18/+57
| | | | | | | | | | - Update Arial, Times, Trebuchet and Verdana fonts to y2006 version. - Include ClearType fonts: Calibri, Cambria, Consolas, Constantia, Corbel. Add LICENSE information while I'm here. PR: 213512 Submitted by: Vladimir Kondratyev
* Remove now-unused greeting patch.adamw2016-10-171-161/+0
| | | | Submitted by: George L. Yermulnik
* Update the Linphone stack:tijl2016-10-1740-114/+270
| | | | | | | | | | Linphone 3.10.2 bctoolbox 0.2.0 oRTP 0.27.0 + bump PORTREVISION on dependent ports (devel/libosmo-abis) bzrtp 1.0.4 Belle-SIP 1.5.0 Mediastreamer 2.14.0 MS plugins (msbcg729 1.0.2, msopenh264 1.1.2)
* biology/diamond: update to version 0.8.24jrm2016-10-172-4/+4
| | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8268
* Add DTLS-SRTP (RFC 5764) support for use within Linphone.tijl2016-10-172-1/+660
| | | | Obtained from: git://git.linphone.org/linphone-desktop.git
* Don't use install-strip, it tries to strip .a files, and fails.mat2016-10-171-2/+1
| | | | Sponsored by: Absolight
* libwscodecs requires X11. This fixes the build for tshark[-lite].marcus2016-10-171-3/+3
| | | | | PR: 213550 Submitted by: sergey@akhmatov.ru
* Update to 1.6.1olivierd2016-10-173-4/+5
|
* - Update to 1.1.9.4wen2016-10-172-4/+4
|
* Add changing the owner/group/mode for the socket.mat2016-10-172-1/+33
| | | | | | | PR: 213385 Submitted by: mat Approved by: maintainer Sponsored by: Absolight
* Update to latest commit.mat2016-10-174-13/+13
| | | | Sponsored by: Absolight
* Update to v5.25.5-115-g4eadd82.mat2016-10-172-4/+4
| | | | | Changes: https://github.com/Perl/perl5/compare/v5.25.5-76-g91dca83...v5.25.5-115-g4eadd82 Sponsored by: Absolight
* lang/erlang-riak: fix to build with clang 3.9.0wg2016-10-171-0/+116
| | | | | PR: 213515 Submitted by: dim
* multimedia/emby-server: Update to 3.0.8100woodsb022016-10-173-321/+79
| | | | | | | | Changes this release: https://github.com/MediaBrowser/Emby/releases/tag/3.0.8000 https://github.com/MediaBrowser/Emby/releases/tag/3.0.8100 Approved by: adamw (mentor, implicit)
* lang/tcl87: update to fossil checkin 699a33324b663e80gahr2016-10-172-5/+5
| | | | http://core.tcl.tk/tcl/timeline?from=faa78e6080f9033f&to=699a33324b663e80
* Disable BROKEN for armv6.linimon2016-10-171-1/+4
| | | | | | | Apparently the failure is only when running under emulation, and it works fine on physical hardware. Submitted by: Kyle Evans <kevans91 at ksu dot edu> (private email)
* security/p5-File-KeePass: Add p5-XML-Parser as dependency.woodsb022016-10-171-1/+2
| | | | | | | This is required to be able to open files in KeePass v2 format. PR: 212996 Approved by: alexander.4mail@gmail.com (maintainer timeout), adamw (mentor, implicit)
* - Update `graphics/embree' to version 2.11.0danfe2016-10-178-217/+13
| | | | | | | | | | - GC patches (all of them got integrated upstream) - Rename IMAGE_MAGICK option to a standard IMAGEMAGICK, but keep custom description which is more specific and follows internal one Because GitHub releases (tarballs) are not fetched with correct modification time, set TIMESTAMP to 1472729819 which corresponds to commit aa318b0 tagged as this release.
* Assign ports to fluffy@, who is actively tracking OpenSMTPDashish2016-10-174-4/+4
| | | | | | | | | | | | development, and has kindly agreed to take the maintainership of following ports: - dns/libasr - dns/libasr-devel - mail/opensmtpd - mail/opensmtpd-devel Thank you!
* Add missing run-time dependency on the Qt SQLite3 plugin.rakuco2016-10-171-1/+2
| | | | | Submitted by: Timon <timon@timon.net.nz> MFH: 2016Q4
* security/py-{acme,certbot}: Update to 0.9.3cpm2016-10-174-8/+8
| | | | | | | - Update PORTVERSION and distinfo checksum (0.9.3) Approved by: koobs (mentor) Differential Revision: D8261
* - Fix LICENSEamdmi32016-10-171-2/+3
| | | | | | - Add LICENSE_FILE Approved by: portmgr blanket
* - Add PORTSCOUTwen2016-10-172-1/+4
| | | | | | | - Pass maintainership to submitter PR: 213318 Submitted by: dbaio@bsd.com.br
* www/subsonic: Fix extract bettermarino2016-10-171-3/+3
| | | | | | | | | | There was two issues: 1) Things like USES have to be defined prior to including bsd.options.mk and the like. 2) the UNZIP_CMD is points to the ports unzip which isn't loaded unless USES=zip:infozip (it would have been UNZIP_NATIVE_CMD). After fixing USES, change UNZIP_CMD to EXTRACT_CMD to fix everywhere.
* Prevent PKGBASE collison between mail/mutt and mail/mutt-liteantoine2016-10-171-0/+1
|
* editors/mg: Use OPSYS with OSVERSION (restores DF build)marino2016-10-171-2/+2
| | | | | DragonFly doesn't provided reallocarray. OPSYS should be used with OSVERSION (covered by a blanket)
* security/certificate-transparency: add missing patchpi2016-10-172-0/+12
| | | | PR: 213502
* editors/neovim: Return pty process patch to restore build on DFmarino2016-10-171-0/+11
| | | | | | | | The pty process file was relocated and renamed, so the previous patch no longer applied and was removed with the last update. Regenerate the patch to restore build on DragonFly. Approved by: DragonFly blanket
* www/aria2: update to 1.28.0jbeich2016-10-172-8/+10
| | | | | | | | | | | | - Expose SSH2 option (appeared in 1.19.0) - Chase HTTP redirect in MASTER_SITES - Convert USE_OPENSSL=yes into USES+=ssl Changes: https://github.com/aria2/aria2/compare/release-1.23.0...release-1.28.0 Changes: https://github.com/aria2/aria2/releases PR: 212960 Submitted by: lightside@gmx.com Approved by: maintainer timeout (3 weeks)
* - Double-quote $@ to properly propagate parameters down the execution pathdanfe2016-10-1717-20/+29
| | | | - Consistently pad (separate) shebang in wrapper scripts with an empty line
* - Update to 1.20160612wen2016-10-172-3/+4
| | | | | | | Changes: http://search.cpan.org/src/MSIMERSON/Mail-DMARC-1.20160612/Changes PR: 213475 Submitted by: dgeo@centrale-marseille.fr(maintainer)
* - Update to 1.7.1adamw2016-10-1721-385/+223
| | | | | | | | | | | | | | | | | - Move some vars around to make portlint happy - Use MUTT_LITE instead of LITE - Fetch deepif and date-contitional from remote locations - Reword COMMENT - Bring back remote patch versions incase mutt version and patch versions arn't in sync - Remove date_conditional patch pulled in remotely - Add two new sidebar samples - convert patch-* patches to makepatch patches - Greeting patch 1.7.1 now PATCHFILE - make makesum will pull all optional dist/patchfiles PR: 213431 Submitted by: maintainer (dereks lifeofadishwasher com)
* - Update to 1.9.160630wen2016-10-172-5/+6
| | | | | PR: 213545 Submitted by: cyberbotx@cyberbotx.com(maintainer)
* - Update to 0.18wen2016-10-172-4/+4
| | | | Changes: http://cpansearch.perl.org/src/MIKAGE/Crypt-SMIME-0.18/Changes
* - Update to 1.14wen2016-10-172-4/+4
| | | | Changes: http://cpansearch.perl.org/src/PLICEASE/Test-Script-1.14/Changes
* - Apply a upstream patch to fix the build with phpwen2016-10-172-0/+19
| | | | Reported by: ivtopol@gmail.com(via email)
* cad/feappv: fix after change in USES=localbase behaviormarino2016-10-171-1/+1
| | | | | The build started failing on compilers that don't have /usr/local/lib in the default search path.
* Update to 2.2.1. Incorporate patches from PR 213356 to fix the buildmarcus2016-10-179-10/+486
| | | | | | | | | with base Kerberos and add more explicit dependencies. For changes in 2.2.1, see https://www.wireshark.org/docs/relnotes/wireshark-2.2.1.html . PR: 213356 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
* Newlib is a C library intended for use on embedded systems. It isbsam2016-10-175-0/+176
| | | | | | | | | | a conglomeration of several library parts, all under free software licenses, that make them easily usable on embedded products. WWW: https://www.sourceware.org/newlib/ PR: 213466 Submitted by: bsdports@kyle-evans.net
* Remove math/libRjrm2016-10-174-22/+1
| | | | | | | | | | | | - The libR option in math/R has been turned on by default since 2016-06-26. - A request for comments regarding the removal, posted to ports@ on 2016-07-16, did not result in any requests for it to remain in the tree. - After a restructuring of math/R, math/libR has been marked BROKEN since 2016-07-09 without any complaints. - No ports depend on it. Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D8260
* sysutils/hatop: switch from Google code to GitHub, unmark BROKENjrm2016-10-172-6/+9
| | | | | | | | | Also - Update license to GPLv3+ - Specify required python version 2, since 3.x is not supported PR: 213477 Approved by: swills (mentor)
* Fix make and gmake completionbapt2016-10-172-1/+32
| | | | | Submitted by: Daniel Shahaf (on zsh mailing list) Reported by: Guilherme Salazar (on zsh mailing list)
* - update to 1.4.10ohauer2016-10-172-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Broker Fix TLS operation with websockets listeners and libwebsockets 2.x. Closes #186. Don.t disconnect client on HUP before reading the pending data. Closes #7. Fix some $SYS messages being incorrectly persisted. Closes #191. Support OpenSSL 1.1.0. Call fsync after persisting data to ensure it is correctly written. Closes #189. Fix persistence saving of subscription QoS on big-endian machines. Fix will retained flag handling on Windows. Closes #222. Broker now displays an error if it is unable to open the log file. Closes #234. Client library Support OpenSSL 1.1.0. Fixed the C++ library not allowing SOCKS support to be used. Closes #198. Fix memory leak when verifying a server certificate with a subjectAltName section. Closes #237. Build Don.t attempt to install docs when WITH_DOCS=no. Closes #184. PR: 213532 Submitted by: ohauer Approved by: maintainer <joe@thrallingpenguin.com> MFH: 2016Q4
* - fix option WEBPdinoex2016-10-172-3/+29
| | | | | | | | | | | - make option WEBP default PR: 211368 - Security patch, port was not vulnerable Security: https://github.com/libgd/libgd/issues/308 Security: http://seclists.org/oss-sec/2016/q3/626 Security: CVE-2016-7568 PR: 213020
* Update to 1.1.1.6antoine2016-10-172-7/+11
|
* Grab back maintainership on zshbapt2016-10-171-1/+1
| | | | Approved by: adamw
* Update to 1.2.1matthew2016-10-173-6/+6
| | | | Changes: https://github.com/2ndQuadrant/pglogical/compare/REL1_2_1...master
* emulators/fuse-roms: add NONE licenserene2016-10-171-0/+2
|
* devel/google-gdata: Unbreak [1]bofh2016-10-173-12/+15
| | | | | | | | | - Update MASTER_SITES to use GITHUB instead of GOOGLE CODE [1] - Mark NO_ARCH - Make patches makepatch compatible PR: 213465 [1] Submitted by: lacey.leanne@gmail.com [1]
* math/ceres-solver: disable EIGENSPARSE by default like upstreamjbeich2016-10-171-2/+5
| | | | | | | | | | | | | | | | | | | | During configure stage the following =============================================================== Enabling the use of Eigen as a sparse linear algebra library for solving the nonlinear least squares problems. Enabling this option results in an LGPL licensed version of Ceres Solver as the Simplicial Cholesky factorization in Eigen is licensed under the LGPL. =============================================================== turns into =============================================================== Disabling the use of Eigen as a sparse linear algebra library. This does not affect the covariance estimation algorithm which can still use the EIGEN_SPARSE_QR algorithm. ===============================================================
* Update to 3.7.10antoine2016-10-173-6/+7
|
* Update to version 1.10.1, which fixed spurious error message when extractingdanfe2016-10-162-4/+4
| | | | | | | | multi-part RAR files. Found out via: repology.org TIMESTAMP (unar1.10.1_src.zip) = 1463769977
* Update sysutils/zrep to version 1.6.2.olgeni2016-10-162-4/+4
| | | | | | PR: 213307 Submitted by: olgeni Approved by: maintainer
* Release 1.9.1bapt2016-10-162-4/+4
| | | | | | | - fix a fd leak on freebsd <11 Reported by: mat Tested by: mat
* Commit forgotten patch from the 2.2.0 upgrade.marcus2016-10-161-0/+10
| | | | PR: 213516
* databases/mysql-connector-c++: Fix unconditional CMAKE_ARGSbofh2016-10-161-3/+3
| | | | | | - Take Maintainership Submitted by: danfe
* Update to GNU Chess 6.2.3johans2016-10-163-3/+5
|
* multimedia/l-smash: correct license typejbeich2016-10-161-1/+1
| | | | | | | No MIT variant uses "and/or" spelling. Reported by: Gentoo See also: https://fedoraproject.org/wiki/Licensing:MIT
* multimedia/vapoursynth: update to r34jbeich2016-10-162-5/+5
| | | | Changes: http://www.vapoursynth.com/2016/10/r34-being-nice-to-avisynth/
* Update to ocurl 0.7.9 (bugfix release)johans2016-10-162-4/+4
|
* databases/mysql-conector-c++: Fix build in 11.0 and later [1]bofh2016-10-164-39/+45
| | | | | | | - Make patches makepatch compatible PR: 213346 [1] Submitted by: supportme@ukr.net [1]
* www/py-django-allauth: update 0.27.0 -> 0.28.0robak2016-10-162-4/+4
| | | | | PR: 213473 Submitted by: Vladimir Chukharev <vladimir.chukharev@gmail.com> (maintainer)
* games/openra: update to 20161015jbeich2016-10-163-25/+23
| | | | Changes: https://github.com/OpenRA/OpenRA/wiki/Changelog#release-20161015
* www/nghttp2: Update to 1.15.0brnrd2016-10-163-6/+6
| | | | | | | | - Update to 1.15.0 - Bump shlib-version PR: 213044 Approved by: Maintainer timeout
* Add missing pkgconfig dependencyjhale2016-10-161-1/+1
|
* - Fix detection of PCSC libraryjhale2016-10-161-6/+2
| | | | - Convert to USES=localbase
* databases/cassandra-cpp-driver: fix build on power8 (and possibly armv6)gahr2016-10-162-2/+11
| | | | Obtained from: https://github.com/datastax/cpp-driver/commit/f6c8e8e
* Update to 2.2.2.rakuco2016-10-163-12/+9
| | | | | | | Release notes: http://www.lyx.org/announce/2_2_2.txt Switch the build to Qt5 now that we have Qt 5.6 in the tree. While here, stop mentioning the long-defunct print/teTeX port in pkg-message.
* New port: net/p5-Net-Frame-Devicepi2016-10-165-0/+38
| | | | | | | | Get network device and gateway information It is especially useful when you want to do low-level network programming. WWW: http://search.cpan.org/dist/Net-Frame-Device/
* Fix build on FreeBSD<11romain2016-10-161-0/+5
| | | | | | | | | In spite of the 'g', the pattern is only substituted once on FreeBSD 9.x and 10.x, leading to wrong filenames for extracted files, and staging failure. Repeat the pattern enough times so that all '\\' or replaced with '/'. Reported by: pkg-fallout
* - Fix licenseamdmi32016-10-162-7/+18
| | | | | - Add LICENSE_FILE - Fix build on arm
* - Update to 0.9.4amdmi32016-10-163-4/+5
|
* - Update to 0.9.4amdmi32016-10-162-4/+4
|
* - Update to 1.1.0amdmi32016-10-163-5/+16
| | | | - Add LICENSE
* - Update to 1.2.2amdmi32016-10-162-4/+6
|
* Update to upstream version 1.0.4; pet portlintriggs2016-10-164-9/+10
| | | | | PR: 213275 Submitted by: mp39590@gmail.com (maintainer)
* security/certificate-transparency: update 20160102 -> 20161015pi2016-10-1630-63/+46
| | | | | PR: 213502 Changes: https://github.com/google/certificate-transparency/commits/master
* Update to 4.12.34antoine2016-10-162-6/+6
|
* Update to 0.0.8antoine2016-10-162-4/+4
|
* Update to 1.1.23antoine2016-10-162-4/+4
|
* Update to 0.2.4antoine2016-10-162-4/+4
|
* - Update to 0.4-2tota2016-10-162-5/+5
| | | | - Fix LICENSE section
* - Update to 7.3tota2016-10-162-4/+4
|
* - Update to 1.2-7tota2016-10-163-5/+6
| | | | | - Add "compiles" argument to USES=cran - Update WWW: line in pkg-descr
* - Update to 0.10tota2016-10-162-3/+4
|
* math/ceres-solver: minor sorting nitjbeich2016-10-161-1/+1
|
* math/ceres-solver: oops, fix a typojbeich2016-10-161-4/+4
|
* math/ceres-solver: add new portjbeich2016-10-165-0/+174
| | | | | | | | | | | | | | | Based on: Gentoo (1.11.0 ebuild) Tested on: graphics/openmvg from @outpaddling's repo (build on 10.3 amd64) Ceres Solver is an open source C++ library for modeling and solving large, complicated optimization problems. It is a feature rich, mature and performant library which has been used in production at Google since 2010. Ceres Solver can solve two kinds of problems. 1. Non-linear Least Squares problems with bounds constraints. 2. General unconstrained optimization problems. http://ceres-solver.org/
* New port: net/p5-Net-Libdnet6pi2016-10-165-0/+31
| | | | | | Add IPv6 support to Net::Libdnet WWW: http://search.cpan.org/dist/Net-Libdnet6/
* Update to 1.9.0bapt2016-10-162-5/+4
| | | | | | | | - Drop privileges in many commands - Drop privileges when fetching a file - Add resource limitation in sandboxes - Add support for METALOG - pkg delete new prints a warning for pattens that matches nothing?
* Fix plist after r424017.rakuco2016-10-162-93/+94
| | | | The headers are installed into include/kde4, not include, since r411156.
* Update to 1.9.99.0bapt2016-10-162-4/+4
| | | | | - Fix pkg refetching te repositories all the time - Add support for METALOG
* devel/arduino-builder: Add package hardware definitions.bsam2016-10-161-2/+6
| | | | | PR: 213496 Submitted by: Kyle Evans <bsdports@kyle-evans.net> (maintiner))
* Remove expired port:rene2016-10-1610-132/+1
| | | | 2016-10-15 mail/elmo-devel: Same version as mail/elmo, use it instead
* - Update to 1.5.4danilo2016-10-162-4/+4
|
* New port: net/p5-Net-Frame-Simplepi2016-10-165-0/+41
| | | | | | | | | | | | | | | | Frame crafting made easy This module is part of Net::Frame frame crafting framework. It is totally optional, but can make playing with the network far easier. Basically, it hides the complexity of frame forging, sending, and receiving, by providing helper methods, which will analyze internally how to assemble frames and find responses to probes. For example, it will take care of computing lengths and checksums, and matching a response frame to the requesting frame. WWW: http://search.cpan.org/dist/Net-Frame-Simple/
* ports-mgmt/synth: Upgrade version 1.54 => 1.60marino2016-10-163-5/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Major new feature: Web-based front-end A dynamic html report is now generated for each build. The report is placed at <profile log directory>/Report/index.html. The report is updated 10 times per minute. The entire build history is retained and is searchable, but that history is reset at the start of the next run. In addition, several fields are clickable and trigger a quick-filter on the history log including the "Built", "Failed", "Ignored", "Skipped", "No." column and "ID" column (see tiptool for action hint) and the "Total" field clears the search pattern quickly. An earlier but representative version of the web report can be seen at: https://github.com/jrmarino/synth#web-interface The Synth web report pulls 2 orders of magnitude less data than the equivalent poudriere report because the json data is split into multiple files limited to 500 ports each (e.g. the poudriere data file might be 1.8 Mb on a big bulk run polled every 8 seconds where as Synth only pulls the latest segment file (50kb avg) every 6 seconds. Synth also stops polling when the run is complete. Minor enhancement: The log files were cleaned up The data/phase headers and footers were modified so that the build log appears a lot cleaner now (subjective of course).
* mail/neomutt: update to 20161014gahr2016-10-152-5/+4
| | | | | | | Release notes: https://github.com/neomutt/neomutt/releases/tag/neomutt-20161014 Approved by: bapt (maintainer)
* Update to patchlevel 35.adamw2016-10-152-5/+5
| | | | | | Also, change the terminal library from libtermlib to libncurses. This change is for DragonflyBSD, and should have no effect on FreeBSD. Submitted by marino.
* - Update pgrouting to 2.3.0madpilot2016-10-158-66/+19
| | | | | PR: 213066 Submitted by: lbartoletti@tuxfamily.org (maintainer)
* Fix pkg-plist post r424008woodsb022016-10-151-1/+0
| | | | Approved by: adamw (mentor, implicit)
* lang/nim: update 0.11.2 -> 0.15.0robak2016-10-159-270/+527
| | | | | | | | * Remove files/patch-lib-posix-posix.nim PR: 213304 Submitted by: wen Approved by: Neal Nelson <ports@nicandneal.net> (maintainer)
* - Update calibre to 2.70.0madpilot2016-10-153-15/+9
| | | | - Add LICENSE
* - Update to 0.8.7nivit2016-10-152-3/+4
| | | | ReleaseHistory: https://github.com/Guake/guake/releases
* Update to 4.8.0jhale2016-10-153-85/+187
|
* Update finance/aqbanking to 5.6.12jhale2016-10-156-68/+22
| | | | | Bump PORTREVISION on dependent ports as there is a share library version increase
* Update to 5.0.4jhale2016-10-154-21/+12
|
* Update to 4.15.3jhale2016-10-155-39/+23
|
* Update to upstream version 0.06.18riggs2016-10-152-4/+4
| | | | | PR: 213409 Submitted by: luca.pizzamiglio@gmail.com (maintainer)
* - Update to finance/libofx to 0.9.11jhale2016-10-1511-20/+23
| | | | | | - Remake/rename patches - Bump PORTREVISION on dependent ports as the shared library version has increased
* Update devel/rebar3 to version 3.3.2.olgeni2016-10-152-14/+14
|
* Fix build:jhale2016-10-151-1/+1
| | | | | | | | | | | configure.ac:28: warning: macro 'AM_PROG_LIBTOOL' not found in library configure.ac:28: error: possibly undefined macro: AM_PROG_LIBTOOL If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. autoreconf-2.69: /usr/local/bin/autoconf-2.69 failed with exit status: 1 *** Error code 1 Reported by: pkg-fallout
* - Switch to USES=localbaseamdmi32016-10-151-15/+7
| | | | | - Switch to options helpers - Remove unneeded CONFIGURE_ARGS
* science/InsightToolkit: Update to 4.10.1woodsb022016-10-153-5/+12
| | | | | | | Changes this release: http://public.kitware.com/pipermail/insight-users/2016-October/053981.html Approved by: adamw (mentor, implicit)
* devel/visualparadigm: Update to 13.2.20161021woodsb022016-10-153-985/+990
| | | | | | | | | | | - Adds LICENSE details, which are quite restrictive with redistribution - Set the WRKSRC to the directory the distfile will be extracted into - Install into ${DATADIR} instead of LOCALBASE/visualparadigm - Use ${INSTALL_PROGRAM} for binaries, rather than pkg-plist @mode 0755 PR: 213211 Submitted by: fernando.apesteguia@gmail.com (maintainer) Approved by: adamw (mentor, implicit)
* New port for Puppetboard 0.2romain2016-10-1514-8/+86
| | | | | | | | | | | | | | | | | | Puppetboard depends on pypuppetdb>=0.3, so: - copy databases/py-pypuppetdb to databases/py-pypuppetdb03; - update databases/py-pypuppetdb03 to 0.3.1; - copy www/py-puppetboard to www/py-puppetboard02; - update www/py-puppetboard02 to 0.2.0; - register conflicts between these ports; - take maintainership of new ports. While here: - Update projects account. PR: 211604 [1], 211918 [2] Submitted by: neel@neelc.org [1], romain [2]
* Add new port textproc/icdiff, an improved colored diff utility.woodsb022016-10-154-0/+32
| | | | | | WWW: https://www.jefftk.com/icdiff Approved by: adamw (mentor, implicit)
* Minor updatesromain2016-10-151-2/+4
| | | | | | | | | 1. Fix dependency on readline 2. Set license 3. Bump PORTVERSION PR: 211843 [1] Submitted by: pi [1]
* devel/checkheaders: fix MASTER_SITE, submitter becomes maintainerpi2016-10-153-9/+15
| | | | | PR: 213493 Submitted by: Mageirias Anastasios <anastasios@mageirias.com>
* New port: sysutils/node_exporterpi2016-10-155-0/+97
| | | | | | | | | | node_exporter is a prometheus exporter for machine metrics, written in Go with pluggable metric collectors. WWW: https://github.com/prometheus/node_exporter PR: 212467 Submitted by: Jev Bjoersell <jev@ecadlabs.com>
* New port: net-mgmt/prometheuspi2016-10-157-2/+129
| | | | | | | | | | | | | | | | | | | | | | | | | Prometheus is a systems and service monitoring system. It collects metrics from configured targets at given intervals, evaluates rule expressions, displays the results, and can trigger alerts if some condition is observed to be true. Prometheus' main distinguishing features as compared to other monitoring systems are: - a multi-dimensional data model (timeseries defined by metric name and set of key/value dimensions) - a flexible query language to leverage this dimensionality - no dependency on distributed storage; single server nodes are autonomous - timeseries collection happens via a pull model over HTTP - pushing timeseries is supported via an intermediary gateway - targets are discovered via service discovery or static configuration - multiple modes of graphing and dashboarding support - support for hierarchical and horizontal federation WWW: https://prometheus.io/ PR: 212468 Submitted by: Jev Bjoersell <jev@ecadlabs.com>
* - Update to 2.7tota2016-10-152-6/+11
|
* misc/mc: Update to 4.8.18woodsb022016-10-154-18/+9
| | | | | | | | | | - Silence post-patch sed commands - Remove patch-src_cons.handler.c; changes upstreamed Changes this release: http://www.midnight-commander.org/wiki/NEWS-4.8.18 Approved by: adamw (mentor, implicit)
* audio/logitechmediaserver: Remove patch-dbix-class-bug.diffwoodsb022016-10-152-35/+1
| | | | | | | | | | | | | | | This fixes the scanner.pl program, which would otherwise produce this error in the log files: Slim::Schema::Storage::throw_exception (122) Error: DBI Exception: DBD::SQLite::db do failed: SQL logic error or missing database cannot ATTACH database within transaction [for Statement "ATTACH '/var/db/logitechmediaserver/cache/persist.db' AS persistentdb"] More details about this problem: http://forums.slimdevices.com/showthread.php?106257-FreeBSD-port&p=864545 Approved by: mark@tranquillussoftware.co.uk (maintainer), adamw (mentor) Differential Revision: https://reviews.freebsd.org/D8255
* Update math/libqalculate to 0.9.10jhale2016-10-1517-189/+113
| | | | | | | | | - Project is hosted on Github now Update math/qalculate to 0.9.9 - Qalculate now uses GTK+3 - Project is hosted on Github now - Take maintainership Bump PORTREVISION on ports that depend upon libqalculate due to shlib increase
* print/hplip and print/hplip-plugin: Update to 3.16.9woodsb022016-10-155-8/+13
| | | | | | | | Changes this release: http://hplipopensource.com/hplip-web/release_notes.html Approved by: makc (maintainer timeout), mat (mentor) Differential Revision: https://reviews.freebsd.org/D8031
* security/libkpass: Update to version 6woodsb022016-10-153-19/+8
| | | | | | | | | | | | - Change from Sourceforge to GitHub for upstream, as per note on SF page - Add LICENSE_FILE to demonstrate GPLv3 license - Delete patch-src_kpass.c as upstream incorporates similar changes Changes this release: https://github.com/bldewolf/libkpass/blob/6/ChangeLog Approved by: vg (maintainer timeout), mat (mentor) Differential Revision: https://reviews.freebsd.org/D8034
* New port: java/intellij-ultimatepi2016-10-159-0/+4176
| | | | | | | | | | | | | | | | | | | | | | | | IntelliJ IDEA is an advanced IDE developed by JetBrains and focused on developer productivity. The community edition features: * An intelligent code editor that understands Java code; provides refactorings, code inspections and intentions, and allows for fast code navigation. * Integration with such tools as JUnit and TestNG, Ant and Maven, and popular version control systems including: CVS, Subversion and git. * XML-Java interoperability and comprehensive Groovy programming language support. * The Swing UI designer complements the suite of tools for developing Java desktop applications. The difference between intellij and intellij-ultimate can be found at http://www.jetbrains.com/idea/features/editions_comparison_matrix.html WWW: http://www.jetbrains.com/idea/ PR: 212268 Submitted by: Andrey Cherkashin <andoriyu@gmail.com>
* Update to 1.0.14romain2016-10-152-4/+4
| | | | | Allow to override configuration location with the $portshaker_config_dir environment variable.
* Remove expired port:rene2016-10-156-524/+1
| | | | 2016-10-14 misc/fortune_strfile: unmaintained and duplicated from base
* Update to 0.92ehaupt2016-10-152-4/+10
| | | | Notified by: repology.org
* Add emulators/qemu-utilsasomers2016-10-157-5/+139
| | | | | | | | | | | | qemu-utils is a new port which installs a few miscellaneous qemu utilities that are useful even without emulation capabilities. It is useful where emulation is not needed, because it has far fewer dependencies than qemu. It is equivalent to the Debian package of the same name. Reviewed by: sbruno, brd Approved by: brd (ports) Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D8038
* net-mgmt/zabbix22-server: 2.2.14 -> 2.2.15pi2016-10-152-7/+7
| | | | | | PR: 213243 Changes: http://www.zabbix.com/rn2.2.15.php Submitted by: Pakhom Golynga <pg@pakhom.spb.ru> (maintainer)
* devel/git-cinnabar: chase r423921 by updating to 0.4.0.b3.6jbeich2016-10-152-4/+5
| | | | | | | | | | | common-main.o: In function `main': common-main.c:(.text+0x0): multiple definition of `main' cinnabar-helper.o:../cinnabar-helper.c:(.text+0x1b0): first defined here cc: error: linker command failed with exit code 1 (use -v to see invocation) Changes: https://github.com/glandium/git-cinnabar/compare/0.4.0b3...75f38ed PR: 213417 (for tracking) Reported by: pkg-fallout
* Change the default version of python3 from 3.4 to 3.5antoine2016-10-153-2/+16
| | | | | | | Thanks to Ruslan Makhmatkhanov for doing all the fixes PR: 204519 With hat: portmgr
* Update devel/relx to version 3.21.1.olgeni2016-10-152-4/+4
|
* Upgrade to 1.0.2girgen2016-10-152-62/+57
| | | | | | | | For upgrading, see this site: https://docs.influxdata.com/influxdb/v1.0/administration/013_vs_1/ Submitted by: maintainer PR: ports/213464
* Core board support used in Arduino 1.6bsam2016-10-159-0/+3785
| | | | | | | WWW: http://www.arduino.cc PR: 213482 Submitted by: bsdports@kyle-evans.net
* Update devel/p4d to 2016.1/1447837.gordon2016-10-153-7/+7
| | | | MFH: 2016Q4
* Update to the 20161013 snapshot of GCC 6.gerald2016-10-152-4/+4
|