summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-02-20Use Administrators for ROOT_GROUP of Cygwin instead of Administrator.obache1-2/+2
2013-02-20Fixes ROOT_GROUP setting for Cygwin.obache1-2/+4
2013-02-20Add apxs to buildlink3, so that packages that use apxs will build properlyfhajny3-3/+24
under restricted pbulk.
2013-02-20Fixes reverse condition of is_root() for Cygwin.obache1-3/+3
2013-02-20fix a typoobache1-2/+2
2013-02-20Set proper variables for the case of --compiler=clang.obache1-1/+9
2013-02-20Fix path to default status file.dillo2-4/+4
2013-02-20Fix continuation for previous.wiz1-2/+2
2013-02-20Remove OPSYS and LOWER_OPSYS substitutions in print-PLIST;wiz1-3/+1
nowadays they cause more PLIST breakage than they fix.
2013-02-20Fix silly PLIST mistake, no revision bump neededfhajny1-2/+2
2013-02-20skip symbolic link for shlibs check, it may point to absolute path and currentlyobache1-2/+5
installed old version's file.
2013-02-19Fix package build for MACHINE_ARCH == x86_64dsainty2-5/+8
2013-02-19Request C++11 when building with clang.joerg1-2/+6
2013-02-19NetBSD needs _KMEMUSER now.joerg1-1/+3
2013-02-19Fix build with new libpng.joerg2-1/+14
2013-02-19Doesn't really need gtar.joerg1-3/+3
2013-02-19Drop gtar dependencyjoerg1-4/+4
2013-02-19Improve DESCR.ryoon2-19/+16
Mention difference between 1.6 and 1.7.
2013-02-19Add TEST_TARGET.wiz1-1/+3
2013-02-19Updated textproc/py-markdown to 2.2.1ryoon1-1/+2
2013-02-19Update to 2.2.1ryoon3-21/+31
* Fix MASTER_SITES, sf.net no longer has distfile. * Fix HOMEPAGE. Changelog: * Change command name to markdown_py from markdown. * Drop python 2.3 and 2.4 support. * Many bugfixes.
2013-02-19options.mk clean upadam1-45/+7
2013-02-19Handle jpeg9.markd2-1/+19
2013-02-19Add upstream patch 12497. Fixes diskd complaints about no filename in shmmarkd3-2/+40
buffer. Bump PKGREVISION
2013-02-19Updated textproc/p5-Text-vFile-asData to 0.08.kleink1-1/+2
2013-02-19Update p5-Text-vFile-asData to 0.08.kleink2-7/+6
0.08 Monday 28th January, 2013 Merge fix from Ashley Willis - Only " should get special treatment as a quote character. https://github.com/richardc/perl-text-vfile-asdata/pull/1
2013-02-19Updated devel/py-mako to 0.7.3ryoon1-1/+2
2013-02-19Update to 0.7.3ryoon3-7/+10
Changelog: 0.7.3 - [bug] legacy_html_escape function, used when Markupsafe isn't installed, was using an inline-compiled regexp which causes major slowdowns on Python 3.3; is now precompiled. - [bug] AST supporting now supports tuple-packed function arguments inside pure-python def or lambda expressions. [ticket:201] - [bug] Fixed Py3K bug in the Babel extension. - [bug] Fixed the "filter" attribute of the <%text> tag so that it pulls locally specified identifiers from the context the same way as that of <%block> and <%filter>. - [bug] Fixed bug in plugin loader to correctly raise exception when non-existent plugin is specified. 0.7.2 - [bug] Fixed regression in 0.7.1 where AST parsing for Py2.4 was broken. [ticket:193] 0.7.1 - [feature] Control lines with no bodies will now succeed, as "pass" is added for these when no statements are otherwise present. Courtesy Ben Trofatter [ticket:146] - [bug] Fixed some long-broken scoping behavior involving variables declared in defs and such, which only became apparent when the strict_undefined flag was turned on. [ticket:192] - [bug] Can now use strict_undefined at the same time args passed to def() are used by other elements of the <%def> tag. [ticket:191] 0.7.0 - [feature] Added new "loop" variable to templates, is provided within a % for block to provide info about the loop such as index, first/last, odd/even, etc. A migration path is also provided for legacy templates via the "enable_loop" argument available on Template, TemplateLookup, and <%page>. Thanks to Ben Trofatter for all the work on this [ticket:125] - [feature] Added a real check for "reserved" names, that is names which are never pulled from the context and cannot be passed to the template.render() method. Current names are "context", "loop", "UNDEFINED". - [feature] The html_error_template() will now apply Pygments highlighting to the source code displayed in the traceback, if Pygments if available. Courtesy Ben Trofatter [ticket:95] - [feature] Added support for context managers, i.e. "% with x as e:/ % endwith" support. Courtesy Ben Trofatter [ticket:147] - [feature] Added class-level flag to CacheImpl "pass_context"; when True, the keyword argument 'context' will be passed to get_or_create() containing the Mako Context object. [ticket:185] - [bug] Fixed some Py3K resource warnings due to filehandles being implicitly closed. [ticket:182] - [bug] Fixed endless recursion bug when nesting multiple def-calls with content. Thanks to Jeff Dairiki. [ticket:186] - [feature] Added Jinja2 to the example benchmark suite, courtesy Vincent Férotin 0.6.2 - [bug] The ${{"foo":"bar"}} parsing issue is fixed!! The legendary Eevee has slain the dragon! [ticket:20]. Also fixes quoting issue at [ticket:86]. 0.6.1 - [bug] Added special compatibility for the 0.5.0 Cache() constructor, which was preventing file version checks and not allowing Mako 0.6 to recompile the module files. 0.6.0 - [feature] Template caching has been converted into a plugin system, whereby the usage of Beaker is just the default plugin. Template and TemplateLookup now accept a string "cache_impl" parameter which refers to the name of a cache plugin, defaulting to the name 'beaker'. New plugins can be registered as pkg_resources entrypoints under the group "mako.cache", or registered directly using mako.cache.register_plugin(). The core plugin is the mako.cache.CacheImpl class. - [feature] Added support for Beaker cache regions in templates. Usage of regions should be considered as superseding the very obsolete idea of passing in backend options, timeouts, etc. within templates. - [feature] The 'put' method on Cache is now 'set'. 'put' is there for backwards compatibility. - [feature] The <%def>, <%block> and <%page> tags now accept any argument named "cache_*", and the key minus the "cache_" prefix will be passed as keyword arguments to the CacheImpl methods. - [feature] Template and TemplateLookup now accept an argument cache_args, which refers to a dictionary containing cache parameters. The cache_dir, cache_url, cache_type, cache_timeout arguments are deprecated (will probably never be removed, however) and can be passed now as cache_args={'url':<some url>, 'type':'memcached', 'timeout':50, 'dir':'/path/to/some/directory'} - [feature/bug] Can now refer to context variables within extra arguments to <%block>, <%def>, i.e. <%block name="foo" cache_key="${somekey}">. Filters can also be used in this way, i.e. <%def name="foo()" filter="myfilter"> then template.render(myfilter=some_callable) [ticket:180] - [feature] Added "--var name=value" option to the mako-render script, allows passing of kw to the template from the command line. [ticket:178] - [feature] Added module_writer argument to Template, TemplateLookup, allows a callable to be passed which takes over the writing of the template's module source file, so that special environment-specific steps can be taken. [ticket:181] - [bug] The exception message in the html_error_template is now escaped with the HTML filter. [ticket:142] - [bug] Added "white-space:pre" style to html_error_template() for code blocks so that indentation is preserved [ticket:173] - [bug] The "benchmark" example is now Python 3 compatible (even though several of those old template libs aren't available on Py3K, so YMMV) [ticket:175]
2013-02-19Updated devel/jenkins to 1.480.3ryoon1-1/+2
2013-02-19Update to 1.480.3ryoon3-17/+23
* Fix https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2013-02-16 Changelog: What's new in 1.480.3 (2013/02/15) "Remember me on this computer" does not work, cookie is not accepted in new session (issue 16278) Slow/hung web UI in 1.483+ (stuck in parseURI) (issue 16474) Failure to delete old config files during rekeying on Windows (issue 16319) NoClassDefFoundError on Base64 when launching an headless slave with -jnlpCredential option (issue 9679) Loading asynchPeople calls (synch) People constructor (issue 16397) Jenkins briefly displays build queue and then it disappears until the page is reloaded (issue 15335) View.hasPeople too slow to use in sidepanel.jelly (issue 16244) XSS (SECURITY-46) File parameter causing data lost after Jenkins restart (issue 13536)
2013-02-19libboost_locale needed on Darwinadam1-1/+4
2013-02-19Note update of www/contao30 package to 3.0.5.taca1-1/+2
2013-02-19Update contao30 to 3.0.5.taca2-6/+6
Version 3.0.5 (2013-02-19) -------------------------- ### Fixed Removed the pixel unit from the video width and height attributes (see #5383). ### Fixed Correctly load the language files (see #5384).
2013-02-19Note addition of kyua-testers, version 0.1jmmv1-1/+2
2013-02-19Add and enable kyua-testers.jmmv1-1/+2
2013-02-19Initial import of kyua-testers, version 0.1:jmmv5-0/+95
Kyua (pronounced Q.A.) is a testing framework for both developers and users. Kyua is different from most other testing frameworks in that it puts the end user experience before anything else. There are multiple reasons for users to run the tests themselves, and Kyua ensures that they can do so in the most convenient way. This module, kyua-testers, provides scriptable interfaces to interact with test programs of various kinds. The interface of such testers allows the caller to execute a single test case of a single test program in a controlled and homogeneous manner.
2013-02-19Fix typo in package name.darcy1-2/+2
net/openvpn-acct-wtpmx ==> net/openvpn-acct-wtmpx
2013-02-19Distfile changed in place (spelling and other documentationschmonz2-5/+6
reformatting). Set DIST_SUBDIR.
2013-02-19Updated graphics/GraphicsMagick to 1.3.17nb4wiz1-1/+2
2013-02-19Bump PKGREVISION for png detection fix.wiz1-2/+2
2013-02-19Detect png-1.6 and 1.7, while we're here.wiz2-1/+17
2013-02-18Fix compiled-in default path to sendmail; it should be /usr/sbin/sendmaildholland3-3/+17
on essentially all even halfway modern systems. This regressed since 0.98, although I'm not sure where/why.
2013-02-18Added do-test:adam1-3/+5
2013-02-18Updated www/nginx to 1.2.7imil1-1/+2
2013-02-18Changes with nginx 1.2.7imil3-10/+11
*) Change: now if the "include" directive with mask is used on Unix systems, included files are sorted in alphabetical order. *) Change: the "add_header" directive adds headers to 201 responses. *) Feature: the "geo" directive now supports IPv6 addresses in CIDR notation. *) Feature: the "flush" and "gzip" parameters of the "access_log" directive. *) Feature: variables support in the "auth_basic" directive. *) Feature: the $pipe, $request_length, $time_iso8601, and $time_local variables can now be used not only in the "log_format" directive. Thanks to Kiril Kalchev. *) Feature: IPv6 support in the ngx_http_geoip_module. Thanks to Gregor Kali¨nik. *) Bugfix: nginx could not be built with the ngx_http_perl_module in some cases. *) Bugfix: a segmentation fault might occur in a worker process if the ngx_http_xslt_module was used. *) Bugfix: nginx could not be built on MacOSX in some cases. Thanks to Piotr Sikora. *) Bugfix: the "limit_rate" directive with high rates might result in truncated responses on 32-bit platforms. Thanks to Alexey Antropov. *) Bugfix: a segmentation fault might occur in a worker process if the "if" directive was used. Thanks to Piotr Sikora. *) Bugfix: a "100 Continue" response was issued with "413 Request Entity Too Large" responses. *) Bugfix: the "image_filter", "image_filter_jpeg_quality" and "image_filter_sharpen" directives might be inherited incorrectly. Thanks to Ian Babrou. *) Bugfix: "crypt_r() failed" errors might appear if the "auth_basic" directive was used on Linux. *) Bugfix: in backup servers handling. Thanks to Thomas Chen. *) Bugfix: proxied HEAD requests might return incorrect response if the "gzip" directive was used. *) Bugfix: a segmentation fault occurred on start or during reconfiguration if the "keepalive" directive was specified more than once in a single upstream block. *) Bugfix: in the "proxy_method" directive. *) Bugfix: a segmentation fault might occur in a worker process if resolver was used with the poll method. *) Bugfix: nginx might hog CPU during SSL handshake with a backend if the select, poll, or /dev/poll methods were used. *) Bugfix: the "[crit] SSL_write() failed (SSL:)" error. *) Bugfix: in the "fastcgi_keep_conn" directive. + updated MESSAGES in order to show a working logrotate.
2013-02-18Use BUILDLINK_PREFIX.kth-krb4 to get krb4 includes, not /usr.dholland1-2/+3
2013-02-18Ugly hack to fix Solaris packaging. Fixing this properly involvesjperkin1-2/+2
rewriting this entire package, and I've not yet had time to test my proposed rewrite on enough platforms, so this will do for now.
2013-02-18Note update of the "phpmyadmin" package to version 3.5.7.tron2-3/+3
2013-02-18Update "phpmyadmin" package to version 3.5.7. Changes since 3.5.6:tron2-6/+6
- bug #3779 [core] Problem with backslash in enum fields - bug #3816 Missing server_processlist.php - bug #3821 Safari: white page - Correct detection of the Chrome browser
2013-02-18Updated lang/abcl to 1.1.1asau1-1/+2