summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-03-04Pull in TLS fixes from https://github.com/bumptech/stud/pull/138jperkin3-12/+33
Bump PKGREVISION.
2015-03-04convert to Makefile.common-style package so libLLVM can reference thistnn3-97/+105
2015-03-04Updated www/nginx-devel to 1.7.10imil1-1/+2
2015-03-04Updated nginx to version 1.7.10imil2-6/+6
Changes with nginx 1.7.10 10 Feb 2015 *) Feature: the "use_temp_path" parameter of the "proxy_cache_path", "fastcgi_cache_path", "scgi_cache_path", and "uwsgi_cache_path" directives. *) Feature: the $upstream_header_time variable. *) Workaround: now on disk overflow nginx tries to write error logs once a second only. *) Bugfix: the "try_files" directive did not ignore normal files while testing directories. Thanks to Damien Tournoud. *) Bugfix: alerts "sendfile() failed" if the "sendfile" directive was used on OS X; the bug had appeared in 1.7.8. *) Bugfix: alerts "sem_post() failed" might appear in logs. *) Bugfix: nginx could not be built with musl libc. Thanks to James Taylor. *) Bugfix: nginx could not be built on Tru64 UNIX. Thanks to Goetz T. Fischer. Changes with nginx 1.7.9 23 Dec 2014 *) Feature: variables support in the "proxy_cache", "fastcgi_cache", "scgi_cache", and "uwsgi_cache" directives. *) Feature: variables support in the "expires" directive. *) Feature: loading of secret keys from hardware tokens with OpenSSL engines. Thanks to Dmitrii Pichulin. *) Feature: the "autoindex_format" directive. *) Bugfix: cache revalidation is now only used for responses with 200 and 206 status codes. Thanks to Piotr Sikora. *) Bugfix: the "TE" client request header line was passed to backends while proxying. *) Bugfix: the "proxy_pass", "fastcgi_pass", "scgi_pass", and "uwsgi_pass" directives might not work correctly inside the "if" and "limit_except" blocks. *) Bugfix: the "proxy_store" directive with the "on" parameter was ignored if the "proxy_store" directive with an explicitly specified file path was used on a previous level. *) Bugfix: nginx could not be built with BoringSSL. Thanks to Lukas Tribus. Changes with nginx 1.7.8 02 Dec 2014 *) Change: now the "If-Modified-Since", "If-Range", etc. client request header lines are passed to a backend while caching if nginx knows in advance that the response will not be cached (e.g., when using proxy_cache_min_uses). *) Change: now after proxy_cache_lock_timeout nginx sends a request to a backend with caching disabled; the new directives "proxy_cache_lock_age", "fastcgi_cache_lock_age", "scgi_cache_lock_age", and "uwsgi_cache_lock_age" specify a time after which the lock will be released and another attempt to cache a response will be made. *) Change: the "log_format" directive can now be used only at http level. *) Feature: the "proxy_ssl_certificate", "proxy_ssl_certificate_key", "proxy_ssl_password_file", "uwsgi_ssl_certificate", "uwsgi_ssl_certificate_key", and "uwsgi_ssl_password_file" directives. Thanks to Piotr Sikora. *) Feature: it is now possible to switch to a named location using "X-Accel-Redirect". Thanks to Toshikuni Fukaya. *) Feature: now the "tcp_nodelay" directive works with SPDY connections. *) Feature: new directives in vim syntax highliting scripts. Thanks to Peter Wu. *) Bugfix: nginx ignored the "s-maxage" value in the "Cache-Control" backend response header line. Thanks to Piotr Sikora. *) Bugfix: in the ngx_http_spdy_module. Thanks to Piotr Sikora. *) Bugfix: in the "ssl_password_file" directive when using OpenSSL 0.9.8zc, 1.0.0o, 1.0.1j. *) Bugfix: alerts "header already sent" appeared in logs if the "post_action" directive was used; the bug had appeared in 1.5.4. *) Bugfix: alerts "the http output chain is empty" might appear in logs if the "postpone_output 0" directive was used with SSI includes. *) Bugfix: in the "proxy_cache_lock" directive with SSI subrequests. Thanks to Yichun Zhang. Changes with nginx 1.7.7 28 Oct 2014 *) Change: now nginx takes into account the "Vary" header line in a backend response while caching. *) Feature: the "proxy_force_ranges", "fastcgi_force_ranges", "scgi_force_ranges", and "uwsgi_force_ranges" directives. *) Feature: the "proxy_limit_rate", "fastcgi_limit_rate", "scgi_limit_rate", and "uwsgi_limit_rate" directives. *) Feature: the "Vary" parameter of the "proxy_ignore_headers", "fastcgi_ignore_headers", "scgi_ignore_headers", and "uwsgi_ignore_headers" directives. *) Bugfix: the last part of a response received from a backend with unbufferred proxy might not be sent to a client if "gzip" or "gunzip" directives were used. *) Bugfix: in the "proxy_cache_revalidate" directive. Thanks to Piotr Sikora. *) Bugfix: in error handling. Thanks to Yichun Zhang and Daniil Bondarev. *) Bugfix: in the "proxy_next_upstream_tries" and "proxy_next_upstream_timeout" directives. Thanks to Feng Gu. *) Bugfix: nginx/Windows could not be built with MinGW-w64 gcc. Thanks to Kouhei Sutou. Changes with nginx 1.7.6 30 Sep 2014 *) Change: the deprecated "limit_zone" directive is not supported anymore. *) Feature: the "limit_conn_zone" and "limit_req_zone" directives now can be used with combinations of multiple variables. *) Bugfix: request body might be transmitted incorrectly when retrying a FastCGI request to the next upstream server. *) Bugfix: in logging to syslog. Changes with nginx 1.7.5 16 Sep 2014 *) Security: it was possible to reuse SSL sessions in unrelated contexts if a shared SSL session cache or the same TLS session ticket key was used for multiple "server" blocks (CVE-2014-3616). Thanks to Antoine Delignat-Lavaud. *) Change: now the "stub_status" directive does not require a parameter. *) Feature: the "always" parameter of the "add_header" directive. *) Feature: the "proxy_next_upstream_tries", "proxy_next_upstream_timeout", "fastcgi_next_upstream_tries", "fastcgi_next_upstream_timeout", "memcached_next_upstream_tries", "memcached_next_upstream_timeout", "scgi_next_upstream_tries", "scgi_next_upstream_timeout", "uwsgi_next_upstream_tries", and "uwsgi_next_upstream_timeout" directives. *) Bugfix: in the "if" parameter of the "access_log" directive. *) Bugfix: in the ngx_http_perl_module. Thanks to Piotr Sikora. *) Bugfix: the "listen" directive of the mail proxy module did not allow to specify more than two parameters. *) Bugfix: the "sub_filter" directive did not work with a string to replace consisting of a single character. *) Bugfix: requests might hang if resolver was used and a timeout occurred during a DNS request. *) Bugfix: in the ngx_http_spdy_module when using with AIO. *) Bugfix: a segmentation fault might occur in a worker process if the "set" directive was used to change the "$http_...", "$sent_http_...", or "$upstream_http_..." variables. *) Bugfix: in memory allocation error handling. Thanks to Markus Linnala and Feng Gu.
2015-03-04Updated audio/glyr to 1.0.8wiz2-3/+3
2015-03-04Update audio/glyr to 1.0.8, provided by Leonardo Taccari in PR 49713.wiz2-7/+6
Changes: 1.0.8 ----- o Fixes for lyrix.at. 1.0.7 ----- o Fixes for lyricwiki. 1.0.6 ----- o Fix for cache getter: Print like normal getters and also call appropiate programs o Clamp the timeout of select to the user-set timeout. o Made the -c (--cache) option have an optional argument. Without argument the path is ~/.cache/glyrc (will be created if necessary). o Make glyrc return EXIT_SUCESS on success or EXIT_FAILURE in case of any failure. o Fixed faulty sha-1 versioning in cmakelists.
2015-03-04Updated x11/p5-Tk to 804.033wiz2-3/+3
2015-03-04Update to 804.033:wiz4-49/+8
Tk-804.033 release (2015-02-21) ------------------ Tests New t/pod.t test (github pull request #16) Tk-804.032_501 release (2015-01-31) ---------------------- Fixes Teach perl/Tk where OS X Yosemite Xquartz puts the X11 files (github pull request #12) Pushstack experiment to workaround crashes with perl 5.20.x and XFT=0 (RT #96543) Tk::Text: don't insert ctrl and meta key presses (github issue #9) Fix memory leak in canvas text item handling with XFT=1 (RT #100211) Use public version of Perl_utf8_hop (RT #100878) FixBuggyUTF8String is not called anymore for new perls Improvements Use Cwd::getcwd() instead of Cwd::cwd() (performance improvement) Tests t/font.t does not fail with only one font family installed (RT #99411) unicode.t - update textwidget before examining new state (RT #100153) Compatibility with old Test::More versions without note() and isa_ok class check Workaround for core dumps in some fork-using tests (RT #100399) Workaround for more timing problems in wm-tcl.h Tk-804.032_500 release (2014-11-06) ---------------------- Fixes Freetype header files may now be in /usr/include/freetype2/freetype.h in newer freetype installations (e.g. Debian/jessie). https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740207 Tk::MainWindow::Create without args used to segfault. Fix X11 discovery on non-x86_64 platforms (RT #95590). Fix new sprintf warning with perl 5.21.x. Workaround behaviour change in ExtUtils::MakeMaker 6.99_10 (PERL value is now quoted), which caused build failures (RT #100044). Tests Fix race condition in t/errordialog.t t/create.t uses Test::More Remove useless hostname and getlogin retrieval in t/fileevent.t (RT #98889). Use pipe instead of stdin in t/fileevent2.t (RT #98891). Fix font-related issues with t/entry.t (RT #98831). Documentation New Pod ErrorDialog.pod (github pull request #6).
2015-03-04Updated graphics/librsvg to 2.40.8wiz2-3/+3
2015-03-04Update to 2.40.8:wiz3-10/+7
Version 2.40.8 - Bugs fixed from fuzz testing: #744688 - possible double g_free() when processing stroke-dasharray - Optimize rendering of polylines, lines, rectangles, circles, and ellipses. These should be marginally faster, marginally more precise, and should put less pressure on the memory allocator. Version 2.40.7 - Bugs fixed from fuzz testing: #703102, #738050, #738169, #744270, #744299 - Fixed unfiled bug from fuzz testing, where the convolution filter had an integer multiplication overflow. - Fix build of rsvg-convert on Windows. - Fix a bunch of compiler warnings.
2015-03-04+ glyr-1.0.8 [pkg/49713], grilo-0.2.12, grilo-plugins-0.2.14,wiz1-3/+6
librsvg-2.40.8, p5-Tk-804.033 [pkg/49712].
2015-03-04Updated emulators/cmdpack to 1.03nb1snj1-1/+2
2015-03-04also install ecm as unecm, since the binary behaves differently if invokedsnj2-3/+6
under that name. bump PKGREVISION to 1.
2015-03-03Include mk/bsd.fast.prefs.mk, it's needed for setting MACHINE_ARCH correctly.sevan1-1/+3
Resolves packing issue on FreeBSD/AMD64 Reviewed by jaapb@ wiz@
2015-03-03Updated misc/libreoffice4 to 4.4.1.2nb1ryoon1-1/+2
2015-03-03Bump PKGREVISION.ryoon5-8/+37
* Enable JavaScript scriptiong support in non-openjdk7 case.
2015-03-03Work on updated MesaLib takes place in pkgsrc-wip.tnn1-3/+3
2015-03-03Read from uhid device and insert events until there are no more eventsjmcneill2-7/+123
to consume. Matches SDL2 BSD joystick driver behavior, and makes things like "iBUFFALO Classic USB Gamepad" work with Retroarch.
2015-03-03Fix incorrect date on update of misc/py-anita to 1.36gson1-2/+2
2015-03-03Updated lang/python27 to 2.7.9nb1snj1-1/+2
2015-03-03Fix http://bugs.python.org/issue22885 with patch from that URL.snj4-2/+49
Bump PKGREVISION to 1.
2015-03-03Add default off shlib option for building PIC & installing shared libLLVM libs.tnn6-6/+181
I will spin this off to a libLLVM package when we have a ready use case for it. Packages that may want to use libLLVM are for example MesaLib and OpenJDK.
2015-03-03+ hs-base-unicode-symbolspho1-1/+2
2015-03-03Added devel/hs-base-unicode-symbols version 0.2.2.4pho1-1/+2
2015-03-03Import hs-base-unicode-symbols-0.2.2.4 from wippho5-0/+88
This package defines new symbols for a number of functions and operators in the base package. All symbols are documented with their actual definition and information regarding their Unicode code point. They should be completely interchangeable with their definitions.
2015-03-03Updated graphics/gnuplot to 5.0.0mef1-1/+2
2015-03-03(pkgsrc)mef5-34/+55
- Two targets added, post-build: and post-install:, to build gnuplot.pdf (which was in 4.6.6 PLIST), and two dependency for above process. Thanks gdt@ for comment. (upstream) - Update 4.6.6 to 5.0.0 --------------------- GNUPLOT Version 5.0 Release Notes ================================= Gnuplot version 5 contains significant new capabilities and enhancements. The most recent previous release was 4.6 patchlevel 6 (4.6.6). Please see the NEWS file for bugfixes and minor changes to version 5.0 applied after feedback on release candidates -rc1, -rc2, and -rc3. Release Notes date: 31 December 2014 NOTABLE NEW FEATURES ==================== * New plot styles "with parallelaxes" and labeled contours. * New coordinate system (Degrees, Minutes, Seconds) "set xdata geographic". * The "fit" command can now handle functions with up to 12 variables, and can take into account errors on x as well as errors on dependent variables. Final covariance terms are stored in user-accessible variables. Fitting options are now controlled by the command "set fit ..." rather than by environmental variables. * The interpretation of columns in a "fit" command depends on new keywords "error", "xyerror", "zerror". In most cases the program can also recognize version 4 syntax (no error keyword but last column contains zerror). * The dot/dash pattern of a line can now be controlled independently from other line properties using the keyword "dashtype". * The default color of individual line types can be changed using "set linetype" (introduced in 4.6). In version 5 a default overall color sequence can be selected using "set colors {default|classic|podo}". The "classic" sequence is red/green/blue/magenta/cyan/yellow as used by older gnuplot versions. The default and podo colors are chosen to be more easily distinguished in print and in particular by people with color vision problems. * Text markup now supports bold and italic font settings in addition to the subscript, superscript, font size and other options previously provided by the "enhanced text" mode. This mode is now the default. * Command scripts may place in-line data in a named data block for repeated plotting. * Bit shift operators << and >> * RGB colors can include an alpha-channel for transparency. # ARGBcolor = (Alpha << 24) + (Red << 16) + (Green << 8) + Blue * Secondary axes (x2, y2) can be locked to the primary axis via a mapping function. In the simplest case this guarantees that the primary and secondary axis ranges are identical. In the general case it allows you to define a non-linear axis, something that previously was only possible for the special case of log scaling. * The "import" command attaches a user-defined function name to a function provided by an extenal shared object (i.e. a plugin library). * Previous commands in the history list of an interactive session can be reexecuted by number. For example "history !5" will reexecute the command numbered 5 in the list reported by "history". * Hypertext labels in the interactive terminals including web display using the HTML canvas or svg terminals. Many other additions are described in the "New Features" section of the documentation. CHANGES ======= Gnuplot development assigns very high priority to backward compatibility with earlier versions. For example any command script that worked in version 4.0 is expected to continue to work for all version 4 releases including the most recent one (4.6.6). However changes introduced in version 5 can affect the operation of some version 4 scripts. A brief summary of potentially incompatible changes is given here. * Earlier versions of gnuplot used the keyword "linetype" to mean both the color and the solid/dot/dash pattern of a line. Version 5 has separate keywords "linecolor" and "dashtype". You can use these keywords directly in a plot command or assign any desired color and a dash pattern to a linetype. The program now provides a default set of 8 linetypes, all solid. You can change these or add new linetypes as you please. You do not need to change the current terminal or terminal mode in order to use dashed lines. * The handling of input data containing NaN, Inf, an inconsistent number of data columns, or other unexpected content has changed. See documentation under "missing" for examples and figures. * Time coordinates are stored internally as the number of seconds relative to the standard unix epoch 1-Jan-1970. Earlier versions of gnuplot used a different epoch internally (1-Jan-2000). This change resolves inconsistencies introduced when time in seconds was generated externally. The epoch convention used by a particular gnuplot installation can be determined using the command `print strftime("%F",0)`. Time is now stored to at least millisecond precision. * The function `timecolumn(N,"timeformat")` now has 2 parameters. Because the second parameter is not associated with any particular data axis, this allows using the `timecolumn` function to read time data for reasons other than specifying the x or y coordinate. Use of time formats to generate axis tick labels is now controlled by "set {xy}tics time" rather than by "set {xy}data time". Thus prior calls to `set xdata time` or `set timefmt x` are unnecessary for either input or output. These older commands still work, but are deprecated. * The "reverse" keyword (e.g. "set xrange [*:*] reverse") now affects only autoscaling. It has no effect on explicit ranges. "set xrange [0:1] reverse" is _not_ the same as "set xrange [1:0]". * Options to the "fit" command are now given by "set fit ..." rather than by setting environmental variables. Fit can handle up to MAX_NUM_VAR independent variables (currently 12). Variables other than the first two (x, y) have been dissociated from axis names. This means, for example, "set urange [U1:U2]" has no effect on fitting because "u" is not a fit variable. Use the command "set dummy ..." to assign names to fit variables 3 ... 12. * The `call` command is implemented by providing a set of variables ARGC, ARG0, ..., ARG9. ARG0 holds the name of the script file being executed. ARG1 to ARG9 are string variables and thus may either be referenced directly or expanded as macros, e.g. @ARG1. The older convention for referencing call parameters as tokens $0 ... $9 is deprecated. * "unset xrange" (and other axis ranges) restores the default range. * "unset terminal" restores the original terminal of the current session.
2015-03-03Updated devel/py-mercurial to 3.3.2wiz1-1/+2
2015-03-03Update to 3.3.2:wiz2-6/+6
Mercurial 3.3.2 (2015-03-02) An unscheduled bugfix release to fix the fix. transaction: really disable hardlink backups (issue4546) Mercurial 3.3.1 (2015-03-02) This is a regularly scheduled bugfix release. It fixes a significant regression with transactions on Windows network shares. dispatch: work around UnicodeDecodeError caused by SSLError of Python 2.7.9 hgweb: recreate old DOM structure for css in monoblue style largefiles: access to specific fields only if largefiles enabled (issue4547) log: fix json-formatted output when file copies are listed (issue4523) repoview: invalidate cached changelog if _delayed changes (issue4549) revisionbranchcache: fall back to slow path if starting readonly (issue4531) revset: mask specific names for named() predicate shellquote: fix missing quotes for empty string templatekw: fix {join(bookmarks, sep)} to always show associated bookmarks transaction: disable hardlink backups (issue4546)
2015-03-03Updated misc/py-anita to 1.36.gson1-2/+2
2015-03-03Update misc/py-anita to 1.36.gson2-6/+6
The previous commit message accidentally contained the changes from 1.35 to 1.36 rather than those from 1.34 to 1.35. The changes from 1.34 to 1.35 were: Support Linux host systems that have genisoimage but not mkisofs, such as Debian 7. New command line option --run-timeout.
2015-03-03Updated misc/py-anita to 1.35gson1-1/+2
2015-03-03Update misc/py-anita to 1.35. Changes from 1.34:gson2-6/+6
When running a shell command, wrap the exit status in distictive text so that it can be reliably matched in the presence of buffered output containing other numeric strings. Halt the VM when done. Print the qemu command.
2015-03-03Updated editors/emacs24 to 24.4nb3ryoon1-1/+2
2015-03-03Bump PKGREVISION.ryoon3-19/+100
* Support firefox-36.0 or later with upstream patch.
2015-03-03Note update of www/ruby-http package to 0.7.2.taca1-1/+2
2015-03-03Update ruby-http to 0.7.2.taca2-7/+8
## 0.7.2 (2015-03-02) * Swap from `form_data` to `http-form_data` (changed gem name).
2015-03-03Note rename of www/ruby-form_data package to www/ruby-http-form_data.taca1-1/+2
2015-03-03Remove ruby-form_data, renamed to ruby-http-form_data.taca4-47/+0
2015-03-03Remove ruby-form_data.taca1-2/+1
2015-03-03Note addition of www/ruby-http-form_data package version 1.0.0.taca1-1/+2
2015-03-03Add and enable ruby-http-form_data.taca1-1/+2
2015-03-03Add ruby-http-form_data package version 1.0.0.taca4-0/+48
Utility-belt to build form data request bodies. Provides support for application/x-www-form-urlencoded and multipart/form-data types. This is newer version of ruby-form-data. ## 1.0.0 (2015-01-04) * Gem renamed to `http-form_data` as `FormData` is not top-level citizen anymore: `FormData -> HTTP::FormData`.
2015-03-03clang-3.6.0 donetnn2-3/+3
2015-03-03Update to clang-3.6.0 (2015-02-27)tnn3-40/+94
Non-comprehensive list of changes in this release: - Support for AuroraUX has been removed. - Added support for a native object file-based bitcode wrapper format. - Added support for MSVC?s __vectorcall calling convention as x86_vectorcallcc.
2015-03-03Revert my last change: this meta-package should contain packages providedkhorben2-4/+2
by the original PHP language distribution file, which security/php-ssdeep does not belong to. Thanks taca@ for the heads up.
2015-03-03Updated www/p5-CGI-Fast to 2.07mef1-1/+2
2015-03-03(pkgsrc)mef2-6/+8
- Add dependency to devel/p5-CPAN-Changes (but only necessary for make test) (upstream) - Update 2.05 to 2.07 ------------------- 2.07 2015-02-23 [FIX] - test added in 2.06 should use File::Temp 2.06 2015-02-23 [FEATURE] - Add support for changing socket permissions. Thanks to powerman for the patch and tests
2015-03-03Updated www/album to 4.13mef1-1/+2
2015-03-03Update to 4.13mef2-6/+6
-------------- Version 4.13, 2015/03/02 ------------------------ + Fixed some options and usage for galbum + Many UI improvements to galbum + New plugin: captions/exif/strftime.alp (Thanks Steven Schubiger)