summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-06-10Update openjdk8 to latest version from the bsd-port hg tree. (u45-b13)tnn12-183/+70
No full changelog available but at least fixes the security issues noted in the April 2015 Critical Patch Update from Oracle.
2015-06-10Updated www/py-mod_wsgi to 4.4.12adam1-1/+2
2015-06-10Changes 4.4.12:adam3-7/+15
Bugs Fixed 1. If the WSGI application when run under daemon mode returned response content as many small blocks, this could result in excessive memory usage in the Apache child worker process proxying the request due to many buckets being buffered until the buffer size threshold was reached. If the number of buckets reaches a builtin threshold the buffered data will now be forcibly flushed even if the size threshold hadn’t been reached.
2015-06-10Fix GITHUB_TAG.wiz1-2/+2
TODO: I argue that PKGREVISION_NOREV should be the default PKGREVISION...
2015-06-10Updated devel/py-subvertpy to 0.9.2wiz1-1/+2
2015-06-10Also commit the actual update.wiedi1-2/+5
Thanks to abs@ for noticing.
2015-06-10Update to 0.9.2:wiz2-6/+6
0.9.2 2015-04-25 BUG FIXES * Support failing server certification check. (Mitsuhiro Koga, #1059821) CHANGES * Drop support for Python versions before 2.6. (Jelmer Vernooij) IMPROVEMENTS * Support PYDOCTOR_OPTIONS in Makefile. (Jelmer Vernooij)
2015-06-10Updated misc/calibre to 2.30.0wiz2-3/+3
2015-06-10Update to 2.30.0:wiz3-9/+29
- version: 2.30.0 date: 2015-06-05 new features: - title: "An option to auto-convert a book on adding even if it is already in the output format (Preferences->Adding Books)." - title: "E-book viewer: If there are entries in the Table of Contents that are long enough to be truncated, display the full text in a popup menu when the mouse hovers over the item." - title: "News download: Add support for turning off SSL certificate verification in individual recipes" - title: "Kobo driver: Support for upcoming firmware version 3.16" bug fixes: - title: "DOCX Output: Fix aspect ratio of images being distorted when the input document specifies image width but not height or vice-versa." - title: "DOCX Output: Fix extra page breaks being inserted in some situations." - title: "LIT Input: Fix smarten punctuation not working for text (as opposed to HTML) based LIT files." - title: "EPUB metadata: Fix extraction of cover image from EPUB 3 files that do not use EPUB 2 backward compatible markup and that have incorrect cover page markup as well." - title: "Book details panel: On windows use only \\ as a path separator when copying file paths" - title: "Edit Book: Fix Saved searches panel not working well with very long search/replace expressions" - title: "OS X: Fix changing preferences causing 'Email to selected recipients...' appearing multiple times in the Connect/Share menu." - version: 2.29.0 date: 2015-05-29 new features: - title: "Allow opening the full Tag Editor dialog directly from the book list by holding down the Shift key while starting an edit of a tag-like field. For example, click on the tags field for a book and press Shift-F2" - title: "Tag Browser: Allow undoing the deletion of items in the Manage categories window" - title: "calibredb add: Allow setting arbitrary identifiers, not just ISBN." - title: "Add a 'Retry' button to the news download failed error message." bug fixes: - title: "DOCX Output: Detect the common idiom of placing centered images as inline images inside a containing centered block and render the resulting image as a floating centered image in the DOCX file." - title: "DOCX Output: Fix incorrect handling of bold/italic in paragraphs where the majority of text is either bold or italic instead of normal" - title: "Table of Contents editor: Fix save/load of settings in the XPath wizard not working across restarts" - title: "Get Books: Update the Kobo Store plugin for website changes" improved recipes: - Popular Science - General Knowledge Today - Scientific American - Wired Magazine
2015-06-10+ calibre-2.30.0.wiz1-1/+2
2015-06-10Updated textproc/p5-Encode-Locale to 1.05wiz1-1/+2
2015-06-10Update to 1.05:wiz2-6/+6
## 2015-06-09 Release 1.05 Mats Peterson (1): Use GetACP() to get the ANSI code page like before Thomas Sibley (1): Conditionalize the Win32::Console recommendation
2015-06-10Updated www/py-uwsgi to 2.0.10nb1rodent1-1/+2
2015-06-10This package should not self-conflict. Prefix the files in $SHAREDIR withrodent3-57/+59
${PYPKGPREFIX} to avoid such an instance. Some people will run apps with different versions of python, so we can handle that accordingly with ALTERNATIVES. Bump PKGREVISION.
2015-06-10Added geography/osm2pgsql version 0.87.3wiedi1-1/+2
2015-06-10+ osm2pgsqlwiedi1-1/+2
2015-06-10Import osm2pgsql-0.87.3 as geography/osm2pgsqlwiedi6-0/+107
Converts OSM planet.osm data to a PostgreSQL / PostGIS database suitable for specific applications like rendering into map tiles by Mapnik or geocoding with Nominatim.
2015-06-10Be explicit about libjson-c and buildlink libxml2wiedi1-1/+3
2015-06-10fix buildlinkwiedi1-3/+3
2015-06-10Added devel/protobuf-c version 1.1.1wiedi1-1/+2
2015-06-10+ protobuf-cwiedi1-1/+2
2015-06-10Import protobuf-c 1.1.1 as devel/protobuf-cwiedi6-0/+75
This is protobuf-c, a C implementation of the Google Protocol Buffers data serialization format. It includes libprotobuf-c, a pure C library that implements protobuf encoding and decoding, and protoc-c, a code generator that converts Protocol Buffer .proto files to C descriptor code, based on the original protoc.
2015-06-10Updated devel/protobuf and py-protobuf to 2.6.1wiedi1-1/+3
2015-06-10Update protobuf to 2.6.1wiedi7-19/+34
Changelog: 2014-10-20 version 2.6.1: C++ * Added atomicops support for Solaris. * Released memory allocated by InitializeDefaultRepeatedFields() and GetEmptyString(). Some memory sanitizers reported them as memory leaks. Java * Updated DynamicMessage.setField() to handle repeated enum values correctly. * Fixed a bug that caused NullPointerException to be thrown when converting manually constructed FileDescriptorProto to FileDescriptor. Python * Fixed WhichOneof() to work with de-serialized protobuf messages. * Fixed a missing file problem of Python C++ implementation. 2014-08-15 version 2.6.0: General * Added oneofs(unions) feature. Fields in the same oneof will share memory and at most one field can be set at the same time. Use the oneof keyword to define a oneof like: message SampleMessage { oneof test_oneof { string name = 4; YourMessage sub_message = 9; } } * Files, services, enums, messages, methods and enum values can be marked as deprecated now. * Added Support for list values, including lists of mesaages, when parsing text-formatted protos in C++ and Java. For example: foo: [1, 2, 3] C++ * Enhanced customization on TestFormat printing. * Added SwapFields() in reflection API to swap a subset of fields. Added SetAllocatedMessage() in reflection API. * Repeated primitive extensions are now packable. The [packed=true] option only affects serializers. Therefore, it is possible to switch a repeated extension field to packed format without breaking backwards-compatibility. * Various speed optimizations. Java * writeTo() method in ByteString can now write a substring to an output stream. Added endWith() method for ByteString. * ByteString and ByteBuffer are now supported in CodedInputStream and CodedOutputStream. * java_generate_equals_and_hash can now be used with the LITE_RUNTIME. Python * A new C++-backed extension module (aka "cpp api v2") that replaces the old ("cpp api v1") one. Much faster than the pure Python code. This one resolves many bugs and is recommended for general use over the pure Python when possible. * Descriptors now have enum_types_by_name and extension_types_by_name dict attributes. * Support for Python 3.
2015-06-09Bump PKGREVISION for hs-parsec-3.1.9szptvlfn7-14/+14
2015-06-09Updated textproc/hs-parsec to 3.1.9szptvlfn1-1/+2
2015-06-09Update to 3.1.9szptvlfn4-15/+14
CHANGES: 3.1.9 - Many and various updates to documentation and package description (inlcuding the homepage links). - Add an 'Eq' instance for 'ParseError' - Fixed a regression from 3.1.6: 'runP' is again exported from module Text.Parsec. 3.1.8 - Fix a regression from 3.1.6 related to exports from the main module.
2015-06-09Updated devel/binutils to 2.25ryoon2-3/+3
2015-06-09Update to 2.25ryoon13-244/+76
Changelog: Not available? As far as I know: * Add Andes NDS32 architecture support. * Improve Solaris support.
2015-06-09Updated databases/py-barman to 1.4.1fhajny1-1/+2
2015-06-09Remove stale patch file.fhajny1-23/+0
2015-06-09Update databases/py-barman to 1.4.1.fhajny3-7/+21
Version 1.4.1 - 05 May 2015 * Fix for WAL archival stop working if first backup is EMPTY (Closes: #64) * Fix exception during error handling in Barman recovery (Closes: #65) * After a backup, limit cron activity to WAL archiving only (Closes: #62) * Improved robustness and error reporting of the backup delete command (Closes: #63) * Fix computation of WAL production ratio as reported in the show-backup command * Improved management of xlogb file, which is now correctly fsynced when updated. Also, the rebuild-xlogdb command now operates on a temporary new file, which overwrites the main one when finished. * Add unit tests for dateutil module compatibility * Modified Barman version following PEP 440 rules and added support of tests in Python 3.4
2015-06-09Updated lang/openjdk7 to 1.7.80tnn1-1/+2
2015-06-09Update to OpenJDK7, Update 80.tnn5-39/+15
This is a maintenance release that fixes ~100 bugs in the following subsystems: client-libs: 2d, java.awt, javax.swing core-libs: Support, java.lang, java.lang.class_loading, java.lang:reflect java.net, java.nio, java.nio.charsets, java.util.jar, java.util:i18n core-svc: javax.management deploy: deployment_toolkit, plugin, webstart globalization: locale-data, translation hotspot: compiler, gc, jvmti, runtime, svc security-libs: java.security, javax.crypto, javax.crypto:pkcs11, javax.net.ssl, org.ietf.jgss:krb5 tools: javac xml: jaxp
2015-06-09Updated sysutils/rsyslog to 8.10.0fhajny1-1/+2
2015-06-09Update sysutils/rsyslog to 8.10.0.fhajny3-10/+25
Version 8.10.0 [v8-stable] 2015-05-19 - imfile: add capability to process multi-line messages based on regex input parameter "endmsg.regex" was added for that purpose. The new mode provides much more power in processing different multiline-formats. - pmrfc3164: add new parameters * "detect.yearAfterTimestamp" This supports timestamps as generated e.g. by some Aruba Networks equipment. * "permit.squareBracesInHostname" Permits to use "hostnames" in the form of "[127.0.0.1]"; also seen in Aruba Networks equipment, but we strongly assume this can also happen in other cases, especially with IPv6. - supplementary groups are now set when dropping privileges closes https://github.com/rsyslog/rsyslog/issues/296 Thanks to Zach Lisinski for the patch. - imfile: added brace glob expansion to wildcard Thanks to Zach Lisinski for the patch. - zmq: add the ability for zeromq input and outputs to advertise their presence on UDP via the zbeacon API. Thanks to Brian Knox for the contribution. - added omhttpfs: contributed module for writing to HDFS via HTTP Thanks to sskaje for the contribution. - Configure option "--disable-debug-symbols" added which is disabled per default. If you set the new option, configure won't set the appropriate compiler flag to generate debug symbols anymore. - When building from git source we now require rst2man and yacc (or a replacement like bison). That isn't any new requirement, we only added missing configure checks. - Configure option "--enable-generate-man-pages" is now disabled for non git source builds per default but enforced when building from git source. - mmpstrucdata: some code cleanup removed lots of early development debug outputs - bugfix imuxsock: fix a crash when setting a hostname Setting a hostname via the legacy directive would lead to a crash during shutdown caused by a double-free. Thanks to Tomas Heinrich for the patch. - bugfix: memory leak in mmpstrucdata Thanks to Gregoire Seux for reporting this issue. closes https://github.com/rsyslog/rsyslog/issues/310 - bugfix (minor): default action name: assigned number was one off see also https://github.com/rsyslog/rsyslog/pull/340 Thanks to Tomas Heinrich for the patch. - bugfix: memory leak in imfile A small leak happened each time a new file was monitored based on a wildcard. Depending on the rate of file creation, this could result in a serious memory leak.
2015-06-09Updated devel/py-argcomplete to 0.8.9fhajny1-1/+2
2015-06-09Update devel/py-argcomplete to 0.8.9.fhajny3-7/+10
Version 0.8.9 (2015-06-01) - Correct doc filename in setup.cfg (fixes bdist_rpm failure, Issue 111). - Make context managers exception-safe. Version 0.8.8 (2015-05-01) - Build and upload universal wheel packages in release. - Fix issue with non-string choices for arguments. - Improve non-ascii argparse argument support on Python 2.7. Version 0.8.7 (2015-04-11) - register-python-argcomplete: add option to avoid default readline completion. Version 0.8.6 (2015-04-11) - Expand tilde in script name, allowing argcomplete to work when invoking scripts from one's home directory. Version 0.8.5 (2015-04-07) - Fix issues related to using argcomplete in a REPL environement. - New helper method for custom completion display. - Expand test suite; formatting cleanup.
2015-06-09Updated textproc/sphinxsearch to 2.2.9fhajny1-1/+2
2015-06-09Update textproc/sphinxsearch to 2.2.9.fhajny2-6/+6
- fixed #2190, incorrect GROUP BY outer JSON object - fixed #2197, TRUNCATE fails to remove disk chunk files after calling OPTIMIZE - fixed #2199, invalid packedfactors JSON output for index with stopwords - fixed #2203, legacy API SELECT list - fixed #2201, crash with string comparison at expressions and expression ranker - fixed #2196, .NET connector issue (UTC_TIMESTAMP() support) - fixed #2144, query parser crash vs multiforms with heading numbers - fixed #2228, removed searchd shutdown behavior on failed connection - fixed #2220, aliased JSON elements support - fixed #2122, id64 daemon failed to load RT disk chunk with kill-list from id32 build - fixed #2208, ZONESPANLIST() support for RT indexes - fixed #1979, snippets generation and span length and lcs calculation in proximity queries - fixed truncated results (and a potential crash) vs long enough ZONESPANLIST() result
2015-06-09Pass down libgcrypt.joerg1-2/+3
2015-06-09Pass down libgnome-keyring.joerg1-1/+2
2015-06-09Updated x11/autocutsel to 0.10.0ryoon1-1/+2
2015-06-09Update to 0.10.0ryoon2-10/+20
* Adjust X11 library dependencies. Changelog: 0.10.0: set WM_NAME, _NET_WM_NAME, and _NET_WM_PID (Michael Stapelberg) support for UTF-8 strings minor fixes 0.9.1: fixed cutsel segfault for empty cut buffer (Jurij Smakov) built package with libtool 2.4.2.418 to support ppc64le
2015-06-09Updated net/rabbitmq to 3.5.3fhajny2-3/+3
2015-06-09Update net/rabbitmq to 3.5.3.fhajny3-8/+7
RabbitMQ 3.5.3: - If rabbitmqctl can't contact a node, suggest to verify any Erlang TLS distribution configuration - Ensure the memory monitor is fully started before the file handle cache is used - Management plugin: Fix a crash during RabbitMQ startup if force_fine_statistics is set in rabbitmq_management_agent configuration RabbitMQ 3.5.2: - Improve integration with Docker - Add a way to send log messages (both "normal" and sasl messages) to stdout - Do not try to use exec before su ... as su(1) forks a process anyway - Report a queue is under flow control only if it was in this situation in the last 1 second, instead of the last 5 seconds previously - Add a check to ensure the Mnesia directory is not shared with the PID file location or the plugin expansion directory - Ensure the file handle cache remains under the memory high watermark when syncing a mirrored queue - Restore support for messages stored on disk with the previous x-death header format - Ensure passwords containing $ characters are properly escaped so they are not interpreted by the shell, when a password is changed using rabbitmqctl change_password - Management plugin: Allow to configure rates_mode even if only rabbitmq-management-agent is enabled - Management plugin: Fix a badarith crash if for some reasons, the disk free space or the file descriptors count are temporarily reported incorrectly - STOMP plugin: Ensure the "processor" thread is terminated at the same time the "reader" thread exits RabbitMQ 3.5.1: - Introduce a new channel log category for channel log messages - Ensure consumer_closed events are emitted for the actually closed channels only, not all of them - Ensure the number of x-death message headers doesn't grow indefinitely - Adjust the file read buffer cache size to avoid useless reads - Ensure the priority queue plugin reports its memory consumption properly - Prevent a crash while synchronising paged out priority queues - Pass the PID file to rabbitmqctl stop in rabbitmq-server.ocf, exactly like Debian- and Red Hat-flavour init scripts - AMQP plugin: Fix heartbeats - AMQP plugin: Respond with a protocol error if a disposition frame is incorrect - AMQP plugin: Fix a crash if the initial-delivery-count is not 0
2015-06-09Updated databases/redis to 3.0.2fhajny1-1/+2
2015-06-09Update databases/redis to 3.0.2.fhajny4-23/+8
--[ Redis 3.0.2 ] Release date: 4 Jun 2015 Upgrade urgency: HIGH for Redis because of a security issue. LOW for Sentinel. * [FIX] Critical security issue fix by Ben Murphy: http://t.co/LpGTyZmfS7 * [FIX] SMOVE reply fixed when src and dst keys are the same. (Glenn Nethercutt) * [FIX] Lua cmsgpack lib updated to support str8 type. (Sebastian Waisbrot) * [NEW] ZADD support for options: NX, XX, CH. See new doc at redis.io. (Salvatore Sanfilippo) * [NEW] Senitnel: CKQUORUM and FLUSHCONFIG commands back ported. (Salvatore Sanfilippo and Bill Anderson) --[ Redis 3.0.1 ] Release date: 5 May 2015 Upgrade urgency: LOW for Redis and Cluster, MODERATE for Sentinel. * [FIX] Sentinel memory leak due to hiredis fixed. (Salvatore Sanfilippo) * [FIX] Sentinel memory leak on duplicated instance. (Charsyam) * [FIX] Redis crash on Lua reaching output buffer limits. (Yossi Gottlieb) * [FIX] Sentinel flushes config on +slave events. (Bill Anderson)
2015-06-09Updated archivers/lz4 to 130fhajny1-1/+2
2015-06-09Update archivers/lz4 to 130.fhajny9-147/+49
LZ4 r130 Fixed : incompatibility sparse mode vs console Fixed : LZ4IO exits too early when frame crc not present Fixed : incompatibility sparse mode vs append mode Performance fix : big compression speed boost for clang (+30%) New : cross-version test, by Takayuki Matsuoka LZ4 r129 New : LZ4_compress_fast() Changed: New lz4 and lz4hc compression API. Previous function prototypes still supported. Changed: Sparse file support enabled by default New : LZ4 CLI improved performance compressing/decompressing multiple file Added : LZ4_compress_destSize() Fixed : GCC 4.9+ vector optimization Changed: Enums converted to LZ4F_ namespace convention Added : AppVeyor CI environment, for Visual tests Modified:Obsolete functions generate warnings Fixed : Bug #75 (unfinished stream) Updated: Documentation converted to MarkDown format LZ4 r128 New : lz4cli sparse file support New : command -m, to compress multiple files in a single command Fixed : Restored lz4hc compression ratio (slightly lower since r124) New : lz4 cli supports long commands New : lz4frame & lz4cli frame content size support New : lz4frame supports skippable frames Changed: Default "make install" directory is /usr/local New : lz4 cli supports "pass-through" mode New : datagen can generate sparse files New : scan-build tests New : g++ compatibility tests New : arm cross-compilation test Fixed : Fuzzer + frametest compatibility with NetBSD Added : Visual project directory Updated: Man page & Specification