summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-02-16Fix typo. Reported by reed@ in private mail.jmmv1-2/+2
2013-02-16Updated graphics/png to 1.6.0nb1wiz1-1/+2
2013-02-16Update to 1.6.0:wiz4-17/+18
This release adds a "simplified API" and removes some features that have been deprecated since libpng.1.5.x. Changes to Libpng from version 1.5.x to 1.6.x: A "simplified API" has been added (see documentation in png.h and a simple example in contrib/examples/pngtopng.c). The new publicly visible API includes the following: macros: PNG_FORMAT_* PNG_IMAGE_* structures: png_control png_image read functions png_image_begin_read_from_file() png_image_begin_read_from_stdio() png_image_begin_read_from_memory() png_image_finish_read() png_image_free() write functions png_image_write_to_file() png_image_write_to_stdio() Starting with libpng-1.6.0, you can configure libpng to prefix all exported symbols, using the PNG_PREFIX macro. We no longer include string.h in png.h. The include statement has been moved to pngpriv.h, where it is not accessible by applications. Applications that need access to information in string.h must add an '#include "string.h"' directive. It does not matter whether this is placed prior to or after the '"#include png.h"' directive. The following API are now DEPRECATED: png_info_init_3() png_convert_to_rfc1123() which has been replaced with png_convert_to_rfc1123_buffer() png_data_freer() png_malloc_default() png_free_default() png_reset_zstream() The following has been removed: png_get_io_chunk_name(), which has been replaced with png_get_io_chunk_type(). The new function returns a 32-bit integer instead of a string. The png_sizeof(), png_strlen(), png_memcpy(), png_memcmp(), and png_memset() macros are no longer used in the libpng sources and have been removed. These had already been made invisible to applications (i.e., defined in the private pngpriv.h header file) since libpng-1.5.0. The signatures of many exported functions were changed, such that png_structp became png_structrp or png_const_structrp png_infop became png_inforp or png_const_inforp where "rp" indicates a "restricted pointer". Error detection in some chunks has improved; in particular the iCCP chunk reader now does pretty complete validation of the basic format. Some bad profiles that were previously accepted are now rejected, in particular the very old broken Microsoft/HP sRGB profile. The library now issues a warning if both background processing and RGB to gray are used when gamma correction happens. As with previous versions of the library the results are numerically very incorrect in this case. There are some minor arithmetic changes in some transforms such as png_set_background(), that might be detected by certain regression tests. Unknown chunk handling has been improved internally, without any API change. This adds more correct option control of the unknown handling, corrects a pre-existing bug where the per-chunk 'keep' setting is ignored, and makes it possible to skip IDAT chunks in the sequential reader.
2013-02-16Correct path to www/squid3.kristerw1-2/+2
2013-02-16LICENSE=original-bsdobache1-1/+2
2013-02-16check usability of builtin termcap if FETCH_USING=ftpobache1-1/+12
to avoid circular dependency with termcap from pkgsrc (devel/ncurses).
2013-02-16Updated misc/dvtm to 0.8shattered2-3/+3
2013-02-16Update to 0.8. No change log.shattered2-7/+8
2013-02-16Updated graphics/cdlabelgen to 4.2.0shattered2-3/+3
2013-02-16Update to 4.2.0. Notable changes:shattered3-17/+16
* --tray-overlay option added - use this to overlay a EPS file onto the tray, for example, a barcode image. * cdinsert.pl now used to display initial form, as well as a filled-in form to allow for easy corrections/resubmits on the done page. * Create covers for double-sided DVD cases that hold 6 DVDs. * cdinsert.pl now supports "Omit title/subtitle from Cover" option. * Support for double-depth slim DVD cases. --slim-double-case option added.
2013-02-16Remove fetched file if fetch command succeeds to fetch but checksum mismatchobache2-2/+4
with PKG_RESUME_TRANSFERS=YES. PR 39896.
2013-02-16Remove obsolute patches.hiramatsu5-104/+0
2013-02-16note update of math/py-pandas to 0.10.1bad1-1/+2
2013-02-16Update pandas to 0.10.1.bad2-6/+6
Release date: 2013-01-22 New features: Add data inferface to World Bank WDI pandas.io.wb (GH2592) API Changes: Restored inplace=True behavior returning self (same object) with deprecation warning until 0.11 (GH1893) HDFStore refactored HFDStore to deal with non-table stores as objects, will allow future enhancements removed keyword compression from put (replaced by keyword complib to be consistent across library) warn PerformanceWarning if you are attempting to store types that will be pickled by PyTables Improvements to existing features: HDFStore enables storing of multi-index dataframes (closes GH1277) support data column indexing and selection, via data_columns keyword in append support write chunking to reduce memory footprint, via chunksize keyword to append support automagic indexing via index keyword to append support expectedrows keyword in append to inform PyTables about the expected tablesize support start and stop keywords in select to limit the row selection space added get_store context manager to automatically import with pandas added column filtering via columns keyword in select added methods append_to_multiple/select_as_multiple/ select_as_coordinates to do multiple-table append/selection added support for datetime64 in columns added method unique to select the unique values in an indexable or data column added method copy to copy an existing store (and possibly upgrade) show the shape of the data on disk for non-table stores when printing the store added ability to read PyTables flavor tables (allows compatiblity to other HDF5 systems) Add logx option to DataFrame/Series.plot (GH2327, GH2565) Support reading gzipped data from file-like object pivot_table aggfunc can be anything used in GroupBy.aggregate (GH2643) Implement DataFrame merges in case where set cardinalities might overflow 64-bit integer (GH2690) Raise exception in C file parser if integer dtype specified and have NA values. (GH2631) Attempt to parse ISO8601 format dates when parse_dates=True in read_csv for major performance boost in such cases (GH2698) Add methods neg and inv to Series Implement kind option in ExcelFile to indicate whether it's an XLS or XLSX file (GH2613) Bug fixes: Fix read_csv/read_table multithreading issues (GH2608) HDFStore correctly handle nan elements in string columns; serialize via the nan_rep keyword to append raise correctly on non-implemented column types (unicode/date) handle correctly Term passed types (e.g. index<1000, when index is Int64), (closes GH512) handle Timestamp correctly in data_columns (closes GH2637) contains correctly matches on non-natural names correctly store float32 dtypes in tables (if not other float types in the same table) Fix DataFrame.info bug with UTF8-encoded columns. (GH2576) Fix DatetimeIndex handling of FixedOffset tz (GH2604) More robust detection of being in IPython session for wide DataFrame console formatting (GH2585) Fix platform issues with file:/// in unit test (GH2564) Fix bug and possible segfault when grouping by hierarchical level that contains NA values (GH2616) Ensure that MultiIndex tuples can be constructed with NAs (GH2616) Fix int64 overflow issue when unstacking MultiIndex with many levels (GH2616) Exclude non-numeric data from DataFrame.quantile by default (GH2625) Fix a Cython C int64 boxing issue causing read_csv to return incorrect results (GH2599) Fix groupby summing performance issue on boolean data (GH2692) Don't bork Series containing datetime64 values with to_datetime (GH2699) Fix DataFrame.from_records corner case when passed columns, index column, but empty record list (GH2633) Fix C parser-tokenizer bug with trailing fields. (GH2668) Don't exclude non-numeric data from GroupBy.max/min (GH2700) Don't lose time zone when calling DatetimeIndex.drop (GH2621) Fix setitem on a Series with a boolean key and a non-scalar as value (GH2686) Box datetime64 values in Series.apply/map (GH2627, GH2689) Upconvert datetime + datetime64 values when concatenating frames (GH2624) Raise a more helpful error message in merge operations when one DataFrame has duplicate columns (GH2649) Fix partial date parsing issue occuring only when code is run at EOM (GH2618) Prevent MemoryError when using counting sort in sortlevel with high-cardinality MultiIndex objects (GH2684) Fix Period resampling bug when all values fall into a single bin (GH2070) Fix buggy interaction with usecols argument in read_csv when there is an implicit first index column (GH2654)
2013-02-15Ride previous commit and include the egg-file in the PLIST.bad1-1/+2
2013-02-15Don't depend on py-gobject and py-gtk2 directly, use the py-gtk2 buildlink3.mk.bad2-20/+7
Use python/distutils.mk as it should. Use shared-mime-info/mimedb.mk as it should and remove file managed by shared-mime-info from PLIST. This makes zim not abort when started. Bump PKGREVISION.
2013-02-15Update to 0.8.6. Changes:shattered4-9/+9
- fixed a bug in ezxml_add_child() that can occur when adding tags out of order - for consistency, ezxml_set_attr() now returns the tag given - added ezxml_move() and supporting functions ezxml_cut() and ezxml_insert() - fixed a bug where parsing an empty file could cause a segfault
2013-02-15Note update of contao30 packages:taca1-1/+3
www/contao30 3.0.4 www/contao30-example 3.0.4
2013-02-15Update contao30 to 3.0.4.taca4-11/+22
This relase contains fix for CVE-2012-6112(TinyMCE), too. Version 3.0.4 (2013-02-14) -------------------------- ### Fixed Correctly split the words when adding to the search index (see #5363). ### Fixed If an eagerly loaded relation does not exist, return `null` instead of an empty model in `Model::getRelated()` (see #5356). ### Fixed Throw an exception if the file system and the database are out of sync and show a meaningful error message (see #5101). ### Fixed Return an associative array in `Model_Collection::fetchEach()` if the requested field is **not** `id` (see #5134). ### Fixed Make eagerly loaded "pageTree" fields mandatory again (see #4866). ### Fixed Do not use forward pages as upper page in the book navigation (see #5074). ### Fixed Correctly show the "empty news list" note (see #5304). ### Fixed Correctly sort values by an external order field (see #5322). ### Fixed Define the login status constants in the back end (see #4099, #5279). ### Fixed Make sure the drag'n'drop hints do not overlay the field labels (see #5338). ### Fixed Apply the color picker to single fields as well (see #5240). ### Fixed Correctly close the SimpleModal overlay with the escape key (see #5297). ### Updated Update TinyMCE to version 3.5.8 (see #5273). ### Fixed Correctly check for nested arrays in `Widget::isValidOption()` (see #5328). ### Fixed Preserve the order of multi source fields when exporting a theme (see #5237). ### Fixed Also check whether the target exists when creating new folders (see #5260). ### Fixed Load the core `autoload.php` files first (see #5261). ### Fixed Support `null` as column default value in the DCA (see #5252). ### New Added the `$blnDoNotCreate` option to the `Files` class, which makes the class write to a temporary file first and then move it to its destination in one atomic operation. This fixes some cache issues (see #5307). ### Fixed Handle `@` blocks when importing style sheets (see #5250). ### Fixed Show the newsletter list even if there is no jumpTo page configured in the channel and show the enclosures in the newsletter reader (see #5233). ### Fixed Added an option to load model relations uncached (see #5248, #5102). Also fixed the `array_merge()` order so the default options can be overriden. ### Updated Updated SimplePie to version 1.3.1 (see #5207). ### Updated Updated SwiftMailer to version 4.3.0 (see #5263). ### Fixed The jQuery accordion script did not work with minified markup (see #5245). ### Fixed Removed the "spaceToUnderscore" option from all alias fields (see #5266). ### Fixed The media content element now supports .ogg files (see #5282). ### Fixed Do not rewrite requests for .mp3, .mp4, .webm or .ogv files (see #5258, #5284). ### Fixed Correctly determin the last run of the command scheduler (see #5278). ### Fixed Make the jQuery accordion behave like the MooTools version (see #5251). ### Fixed Added support for more advanced media queries (see #5236). ### Fixed Added the missing `UserGroupModel` class (see #5218). ### Fixed Handle the case that `glob()` returns `false` (see #5226). ### Fixed The table sorter did not work if jQuery and MooTools were active (see #5228). ### Fixed Copy all content elements if pages are duplicated with childs (see #5241). ### Fixed Added lazy template loading for newsletter mail templates.
2013-02-15Remove obsolete patches.ryoon2-45/+0
2013-02-15recursive bump from boost-lib shlib update.obache74-144/+148
2013-02-15check requirement of uac manifest, it is required for Windows Vistaobache2-4/+12
(aka NT-6.0) and later.
2013-02-15set Cygwin kernel name to OS_VARIANT for further usage.obache1-1/+2
2013-02-14Updated security/knc to 1.7.1schmonz1-1/+2
2013-02-14Update to 1.7.1. From the changelog:schmonz2-6/+6
* Fix autoconf issues...
2013-02-14Note update of atf and atf-libs to 0.17.jmmv1-1/+3
2013-02-14Update atf and atf-libs to 0.17:jmmv4-10/+11
* Added the atf_utils_cat_file, atf_utils_compare_file, atf_utils_copy_file, atf_utils_create_file, atf_utils_file_exists, atf_utils_fork, atf_utils_grep_file, atf_utils_grep_string, atf_utils_readline, atf_utils_redirect and atf_utils_wait utility functions to atf-c-api. Documented the already-public atf_utils_free_charpp function. * Added the cat_file, compare_file, copy_file, create_file, file_exists, fork, grep_collection, grep_file, grep_string, redirect and wait functions to the atf::utils namespace of atf-c++-api. These are wrappers around the same functions added to the atf-c-api library. * Added the ATF_CHECK_MATCH, ATF_CHECK_MATCH_MSG, ATF_REQUIRE_MATCH and ATF_REQUIRE_MATCH_MSG macros to atf-c to simplify the validation of a string against a regular expression. * Miscellaneous fixes for manpage typos and compilation problems with clang. * Added caching of the results of those configure tests that rely on executing a test program. This should help crossbuild systems by providing a mechanism to pre-specify what the results should be. * PR bin/45690: Make atf-report convert any non-printable characters to a plain-text representation (matching their corresponding hexadecimal entities) in XML output files. This is to prevent the output of test cases from breaking xsltproc later.
2013-02-14Try to fix a possible buffer overrun (CVE-2012-4428). Didn't finddrochner4-3/+62
a patch upstream nor anywhere else, hope this is correct. Someone please review. Being here, fix a memcpy() size bug on 64-bit systems. bump PKGREV
2013-02-14Now that I understand that py-sqlite2 means sqlite3, adjust commentsgdt1-3/+5
about trac/ja-trac database differences (which I now perceive as smaller).
2013-02-14Add comment explaining that py-sqlite2 is for sqlite3.gdt1-1/+5
(I'm assuming that if I can't follow this, at least some others will be confused as well.) This is a comment-only change.
2013-02-14I forget to remove this obsolete patchmanu1-25/+0
2013-02-14Updated x11/xterm to 290wiz1-1/+2
2013-02-14Update to 290:wiz2-6/+6
Fixes an incomplete revert of a change in the previous patch, which caused incorrect display in the scrollback area.
2013-02-14Fix OPSYS for Cygwin (formerly using CYGWIN before importing Cygwin support).obache1-2/+2
2013-02-14sortjnemeth1-2/+2
2013-02-14Updated devel/mr to 1.14schmonz1-1/+2
2013-02-14Update to 1.14. From the changelog:schmonz3-8/+8
* Added a fetch command. Closes: #480580 * status: Now includes information about unpushed changes, for git, git-svn, hg, and bzr. Closes: #693021 * Added lib/vis, an add-on to visualise repo history. Closes: #693022 Thanks, Paul Wise * Drop an extra -m from various commit/record commands. Closes: #695478 Thanks, Paul Wise
2013-02-13Added databases/mysql56-{client,server} version 5.6.10adam2-3/+4
2013-02-13Changes 5.6.10:adam37-0/+10215
http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-10.html
2013-02-13Added databases/mysql56-{client,server} version 5.6.10adam1-2/+3
2013-02-13Note update of the "phpmyadmin" package to version 3.5.6.tron2-3/+3
2013-02-13Update "phpmyadmin" package to version 3.5.6. Changes since 3.5.5:tron2-6/+6
- bug #3593604 [status] Erroneous advisor rule - bug #3596070 [status] localStorage broken in server status monitor - bug #3598736 [routines] Editing a procedure with special characters - bug #3600322 [core] Visualize GIS data throws Fatal Error - bug #3599362 [core] Double-escaped error message - bug #3776 [cookies] Login without auth on second server
2013-02-13Updated x11/gtk2 to 2.24.15adam1-1/+2
2013-02-13Changes 2.24.15:adam2-7/+6
* Bug fixes: 626499 GtkClipboard unnotified on change of OS X pasteboard owner 656565 Signalify (already existing) GtkMenuShell.insert() 664640 CUPS authentication does not work 669808 fullscreen/unscreen was broken for Quartz on OS X earli... 674556 File chooser dialog does not save its sizes 679883 When printing Custom paper sizes GTK Print Dialog does ... 683511 spinbutton: fix xthickness bug when resizing the text a... 689810 Include guard optimization 689982 Make GChecksum more fully introspectable 690788 Critical in gtknotebook dnd with rgba colormap 692099 autogen.sh doesn't recognize automake 1.13 692554 entry: never use GTK_STATE_ACTIVE to paint the background 692810 Fails to build with the gold linker due to missing refe... Fix scrolling in insensitive modal dialogs * Translation updates Norwegian bokmål
2013-02-13PLIST fix for LDAP option enabledadam1-5/+5
2013-02-13Updated www/trac to 1.0gdt1-1/+2
2013-02-13Update to 1.0.gdt4-38/+128
The only significant packaging change is to drop the dependency on py-subversion. It's still needed to use subversion repositories, but use of svn is now optional. Update provided by Martin Resnick of BBN, with minor tweaks by me. Trac 1.0 'Cell' (September 7, 2012) http://svn.edgewall.org/repos/trac/tags/trac-1.0 Trac 1.0 is a major release adding refreshed user interface and improved DVCS repository support as the most visible changes. The following list contains only a few highlights: - The default theme looks more modern, especially on recent browsers (no effort has been made to make it look better on older browsers like IE6 or 7) - The TracHacks GitPlugin has been donated by Herbert Valerio Riedel to the Trac project (many thanks!) and is now maintained here as an optional component - As a consequence, the Subversion support has been moved below `tracopt.versioncontrol` as well - The Git and Mercurial log view feature a visualization of the branching structure - Usability improvements for the tickets, with a better support for conflict detection and resolution - Integration of the TracHacks BatchModifyPlugin, contributed by Brian Meeker (many thanks!) and is now maintained there as a default component - jQuery/UI integration, featuring a date picker for date fields - Improved integration with Pygments syntax highlighting - ... and numerous smaller features added and bugs fixed since 0.12!
2013-02-13Note update of textproc/ruby-multi_json package to 1.6.0.taca1-1/+2
2013-02-13Update ruby-multi_json to 1.6.0.taca3-8/+13
1.6.0 ----- * [Add gson.rb support](https://github.com/intridea/multi_json/pull/71) * [Add MultiJson.default_options](https://github.com/intridea/multi_json/pull/70) * [Add MultiJson.with_adapter](https://github.com/intridea/multi_json/pull/67) * [Stringify all possible keys for ok_json](https://github.com/intridea/multi_json/pull/66) * [Alias `MultiJson::DecodeError` to `MultiJson::LoadError`](https://github.com/intridea/multi_json/pull/79)
2013-02-13Note update of www/heel package to 3.0.1.taca1-1/+2