summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-10-01Added security/php-ssh2 version 0.12fhajny1-1/+2
2014-10-01Import security/php-ssh2 (based on wip/php-ssh2).fhajny3-0/+27
Provides bindings to the functions of libssh2 which implements the SSH2 protocol.
2014-10-01Updated converters/help2man to 1.46.3wiz2-3/+3
2014-10-01Update to 1.46.3:wiz3-7/+9
help2man (1.46.3) unstable; urgency=medium * Update Serbian translation (thanks to Мирослав Николић). * Add Spanish translation (thanks to Antonio Ceballos). -- Brendan O'Dea <bod@debian.org> Sun, 21 Sep 2014 19:01:16 +1000
2014-10-01Changes 2.1.2:adam3-7/+8
* "git push" over HTTP transport had an artificial limit on number of refs that can be pushed imposed by the command line length. * When receiving an invalid pack stream that records the same object twice, multiple threads got confused due to a race. * An attempt to remove the entire tree in the "git fast-import" input stream caused it to misbehave. * Reachability check (used in "git prune" and friends) did not add a detached HEAD as a starting point to traverse objects still in use. * "git config --add section.var val" used to lose existing section.var whose value was an empty string. * "git fsck" failed to report that it found corrupt objects via its exit status in some cases.
2014-10-01Updated security/libgpg-error to 1.16wiz2-3/+3
2014-10-01Update to 1.16:wiz2-7/+6
Noteworthy changes in version 1.16 (2014-09-18) [C12/A12/R2] ----------------------------------------------- * Support building for iOS. * Fixed a prototype mismatch. * Fix es_fclose for streams opened with "samethread".
2014-10-01Updated sysutils/py-psutil to 2.1.2wiz2-3/+3
2014-10-01Update to 2.1.2:wiz3-11/+11
2.1.2 - 2014-09-21 ================== **Enhancements** - #407: project moved from Google Code to Github; code moved from Mercurial to Git. - #492: use tox to run tests on multiple python versions. (patch by msabramo) - #505: [Windows] distribution as wheel packages. - #511: new examples/ps.py sample code. **Bug fixes** - #340: [Windows] Process.get_open_files() no longer hangs. (patch by Jeff Tang) - #501: [Windows] disk_io_counters() may return negative values. - #503: [Linux] in rare conditions Process exe(), open_files() and connections() methods can raise OSError(ESRCH) instead of NoSuchProcess. - #504: [Linux] can't build RPM packages via setup.py - #506: [Linux] python 2.4 support was broken. - #522: [Linux] Process.cpu_affinity() might return EINVAL. (patch by David Daeschler) - #529: [Windows] Process.exe() may raise unhandled WindowsError exception for PIDs 0 and 4. (patch by Jeff Tang) - #530: [Linux] psutil.disk_io_counters() may crash on old Linux distros (< 2.6.5) (patch by Yaolong Huang) - #533: [Linux] Process.memory_maps() may raise TypeError on old Linux distros.
2014-10-01Updated audio/musicpd to 0.18.16wiz2-3/+3
2014-10-01Update to 0.18.16:wiz5-55/+6
ver 0.18.16 (2014/09/26) * fix DSD breakage due to typo in configure.ac ver 0.18.15 (2014/09/26) * command - list: reset used size after the list has been processed * fix MixRamp * work around build failure on NetBSD
2014-10-01Updated databases/py-ldap to 2.4.17wiz2-3/+3
2014-10-01Update to 2.4.17:wiz2-6/+7
Released 2.4.17 2014-09-27 Changes since 2.4.16: Lib/ * New hook syncrepl_refreshdone() in ldap.syncrepl.SyncReplConsumer (thanks to Petr Spacek and Chris Mikkelson) Modules/ * Added support for getting file descriptor of connection with ldap.OPT_DESC
2014-10-01Updated devel/pcre to 8.36wiz2-3/+3
2014-10-01Update to 8.36:wiz2-7/+6
Version 8.36 26-September-2014 ------------------------------ 1. Got rid of some compiler warnings in the C++ modules that were shown up by -Wmissing-field-initializers and -Wunused-parameter. 2. The tests for quantifiers being too big (greater than 65535) were being applied after reading the number, and stupidly assuming that integer overflow would give a negative number. The tests are now applied as the numbers are read. 3. Tidy code in pcre_exec.c where two branches that used to be different are now the same. 4. The JIT compiler did not generate match limit checks for certain bracketed expressions with quantifiers. This may lead to exponential backtracking, instead of returning with PCRE_ERROR_MATCHLIMIT. This issue should be resolved now. 5. Fixed an issue, which occures when nested alternatives are optimized with table jumps. 6. Inserted two casts and changed some ints to size_t in the light of some reported 64-bit compiler warnings (Bugzilla 1477). 7. Fixed a bug concerned with zero-minimum possessive groups that could match an empty string, which sometimes were behaving incorrectly in the interpreter (though correctly in the JIT matcher). This pcretest input is an example: '\A(?:[^"]++|"(?:[^"]*+|"")*+")++' NON QUOTED "QUOT""ED" AFTER "NOT MATCHED the interpreter was reporting a match of 'NON QUOTED ' only, whereas the JIT matcher and Perl both matched 'NON QUOTED "QUOT""ED" AFTER '. The test for an empty string was breaking the inner loop and carrying on at a lower level, when possessive repeated groups should always return to a higher level as they have no backtrack points in them. The empty string test now occurs at the outer level. 8. Fixed a bug that was incorrectly auto-possessifying \w+ in the pattern ^\w+(?>\s*)(?<=\w) which caused it not to match "test test". 9. Give a compile-time error for \o{} (as Perl does) and for \x{} (which Perl doesn't). 10. Change 8.34/15 introduced a bug that caused the amount of memory needed to hold a pattern to be incorrectly computed (too small) when there were named back references to duplicated names. This could cause "internal error: code overflow" or "double free or corruption" or other memory handling errors. 11. When named subpatterns had the same prefixes, back references could be confused. For example, in this pattern: /(?P<Name>a)?(?P<Name2>b)?(?(<Name>)c|d)*l/ the reference to 'Name' was incorrectly treated as a reference to a duplicate name. 12. A pattern such as /^s?c/mi8 where the optional character has more than one "other case" was incorrectly compiled such that it would only try to match starting at "c". 13. When a pattern starting with \s was studied, VT was not included in the list of possible starting characters; this should have been part of the 8.34/18 patch. 14. If a character class started [\Qx]... where x is any character, the class was incorrectly terminated at the ]. 15. If a pattern that started with a caseless match for a character with more than one "other case" was studied, PCRE did not set up the starting code unit bit map for the list of possible characters. Now it does. This is an optimization improvement, not a bug fix. 16. The Unicode data tables have been updated to Unicode 7.0.0. 17. Fixed a number of memory leaks in pcregrep. 18. Avoid a compiler warning (from some compilers) for a function call with a cast that removes "const" from an lvalue by using an intermediate variable (to which the compiler does not object). 19. Incorrect code was compiled if a group that contained an internal recursive back reference was optional (had quantifier with a minimum of zero). This example compiled incorrect code: /(((a\2)|(a*)\g<-1>))*/ and other examples caused segmentation faults because of stack overflows at compile time. 20. A pattern such as /((?(R)a|(?1)))+/, which contains a recursion within a group that is quantified with an indefinite repeat, caused a compile-time loop which used up all the system stack and provoked a segmentation fault. This was not the same bug as 19 above. 21. Add PCRECPP_EXP_DECL declaration to operator<< in pcre_stringpiece.h. Patch by Mike Frysinger.
2014-10-01Updated net/py-foolscap to 0.7.0wiz2-3/+3
2014-10-01Update to 0.7.0:wiz3-23/+16
* Release 0.7.0 (23-Sep-2014) ** Security Fixes The "flappserver" feature was found to have a vulnerability in the service-lookup code which, when combined with an attacker who has the ability to write files to a location where the flappserver process could read them, would allow that attacker to obtain control of the flappserver process. Users who run flappservers should upgrade to 0.7.0, where this was fixed as part of #226. Each flappserver runs from a "base directory", and uses multiple files within the basedir to track the services that have been configured. The format of these files has changed. The flappserver tool in 0.7.0 remains capable of reading the old format (safely), but will upgrade the basedir to the new format when you use "flappserver add" to add a new service. Brand new servers, created with "flappserver create", will use the new format. The flappserver tool in 0.6.5 (or earlier) cannot handle this new format, and will believe that no services have been configured. Therefore downgrading to an older version of Foolscap will require manual reconstruction of the configured services. ** Major Changes UnauthenticatedTub has been deprecated, and will be removed in the next release (0.8.0). This seldom-used feature provides Foolscap's RPC semantics without any of the security, and was included to enable the use of Foolscap without depending upon the (challenging-to-install) PyOpenSSL library. However, in practice, the lack of a solid dependency on PyOpenSSL has made installation more difficult for applications that *do* want the security, and UnauthenticatedTub is a footgun waiting to go off. Foolscap's code and packaging will be simpler without it. (#67) ** Minor Changes The "git-foolscap" tools, which make it possible to publish and clone Git repositories over a Foolscap (flappserver) connection, have been moved from their hiding place in doc/examples/ into their own project, hosted at https://github.com/warner/git-foolscap . They will also be published on PyPI, to enable "pip install git-foolscap". The documentation was converted from Lore to ReStructuredText (.rst). Thanks to Koblaid for the patient work. (#148) The connection-hint parser in 0.7.0 has been changed to handle all TCP forms of Twisted's "Client Endpoint Descriptor" syntax, including the short "tcp:127.0.0.1:9999" variant. A future version should handle arbitrary endpoint descriptors (including Tor and i2p, see #203), but this small step should improve forward compatibility. (#216, #217)
2014-10-01Updated misc/py-anki2 to 2.0.29wiz2-3/+3
2014-10-01Update to 2.0.29:wiz3-7/+8
Changes in 2.0.29 Fix "app is damaged" message on OSX Yosemite A new "added" graph that shows how many new cards have been added to the collection. When exporting notes as text, say the number of notes that were exported, not the number of cards. Allow tags to be separated with an ideographic space character (eg. Japanese full width space) Allow closing the edit current dialog with Ctrl-Enter. Show more info when syncing media, so you can see it’s progressing and get an idea of how long is left. All the web components in Anki default to accepting focus and allowing copying now, which should fix issues with some screens not allowing copy to the clipboard, such as the card info screen. Fix a bug where <br> tags were being inserted in place of newlines when importing with html enabled. Fix a bug when trying to recover from a corrupt profile. Fix addons being downloaded with double newlines on Windows. If an existing anki instance is hung, start a new instance when user clicks on anki icon. A few translation fixes thanks to Derbeth. Disable a better error message when some ssl errors occur. Make the tab width in the template editor reasonable. Strip any formatting when pasting into the template editor, as rich text has no meaning there. If the computer has no desktop folder, place collection packages in the user’s home directory. Fix a bug that was allowing nesting other decks under filtered decks. Fix a bug that was causing templates to get out of sync with field names on Don’t jump around in the browser’s card list when deleting cards. On Linux systems that don’t have a documents folder defined, default to ~/Documents/Anki (in English) for the profile folder. We no longer encode and decode %20 and so on when fields are edited. This should fix the bug where users were having text with percent signs in it being turned into other characters. Tags that differ only in case are no longer allowed, as tags were sometimes case-sensitive and sometimes not. The case that you use the first time you enter will be used for all future cards added with that tag. If you want to change the capitalization of that tag, you can temporarily remove the tag from all cards and then add it again with the new case. Ignore >100MB files when syncing instead of having the server throw an error.
2014-10-01Note update of the "spamassassin" package to version 3.4.0nb2.tron1-1/+2
2014-10-01Make the DNSRBL based plug-ins work with version 0.76 or newer of thetron3-3/+27
"p5-Net-DNS" package. Patch taken from the SVN repository.
2014-10-01Updated x11/xterm to 311wiz2-3/+3
2014-10-01Update to 311:wiz2-6/+6
Patch #311 - 2014/09/18 * mention xclip in manpage as an alternative workaround for copying clipboard data, noting that selectToClipboard (from patch #209) is the recommended approach (Debian #639094). * correct comparison in do_select_regex() of working position against starting column. * correct initialization for regular-expression feature of exec-selectable and insert-selectable actions (Debian #758633). * modify logic for exec-formatted and insert-formatted actions to ensure that the formatting occurs just after the selection is received (Debian #758633). * account for state of reverse-video in special case of cursor coloring (Debian #759734). * fix a sign-extension problem in ReGIS support, as well as correcting a case where ignored-characters were not really ignored (patch by Ross Combs). * Enable the "Escape Sequence" menu entry when an OSC 50 is received. Also disable it if the escape sequence specifies no font (Debian #760208). * improve fix for the fontsel menu entry from patch #304: because the recovery used the "current font", it would fail if one first selected a valid font, then an invalid font (Debian #760207). * correct an off-by-one in limit-check for ScrnLimitChar function (report by Egmont Koblinger).
2014-10-01wxmaxima-14.09.0.wiz1-1/+3
2014-10-01Remove wxMaxima; wxmaxima replaces it.wiz1-2/+2
2014-10-01Import wxmaxima-14.09.0 as math/wxmaxima. The casing of the package namewiz4-0/+57
is finally consistent. This is a graphical UI for the computer algebra system maxima. Changes compared to math/wxMaxima: 14.09.0: Bugfixes and compatibility with wxGTK-3.x.
2014-10-01Updated www/p5-CGI to 4.04wiz1-1/+2
2014-10-01Update to 4.04, add a build (test?) dependency.wiz2-10/+10
4.04 2014-09-04 [ RELEASE NOTES ] - this release removes some long deprecated modules/functions and includes refactoring to the temporary file handling in CGI.pm. if you are doing anything out of the ordinary with regards to temp files you should test your code before deploying this update as temp files may no longer be stored in previously used locations [ REMOVED / DEPRECATIONS ] - startform and endform methods removed (previously deprecated, you should be using the start_form and end_form methods) - both CGI::Apache and CGI::Switch have been removed as these modules 1) have been deprecated for *years*, and 2) do nothing whatsoever [ SPEC / BUG FIXES ] - handle multiple values in X-Forwarded-Host header, we follow the logic in most other frameworks and take the last value from the list (RT #54487) - refactor CGITempFile::find_tempdir to use File::Spec->tmpdir (related: RT #71799) - fix warnings when QUERY_STRING has empty key=value pairs (RT #54511) - pad custom 500 status response messages to > 512 for MSIE (RT #81946) - make Vars tied hash delete method return the value deleted from the hash making it act like perl's delete (RT #51020) [ TESTING ] - add .travis.yml (https://travis-ci.org) - test case for RT #53966 - disallow filenames with ~ char - test case for RT #55166 - calling Vars to get the filename does not return a filehandle, so this cannot be used in the call to uploadinfo, also update documentation for the uploadInfo to show that ->Vars should not be used to get the filename for this method - fix t/url.t to pass on Win32 platforms that have the SCRIPT_NAME env variable set (RT #89992) - add procedural call tests for upload and uploadInfo to confirm these work as should (RT #91136) [ DOCUMENTATION ] - tweak perldoc for -utf8 option (RT #54341, thanks to Helmut Richter) - explain the HTML generation functions should no longer be used and that they may be deprecated in a future release 4.03 2014-07-02 [ REMOVED / DEPRECATIONS ] - the -multiple option to popup_menu is now IGNORED as this did not function correctly. If you require a menu with multiple selections use the scrolling_list method. (RT #30057) [ SPEC / BUG FIXES ] - support redirects in mod_perl2, or fall back to using env variable for up to 5 redirects, when getting the query string (RT #36312) - CGI::Cookie now correctly supports the -max-age argument, previously if this was passed the value of the -expires argument would be used meaning there was no way to supply *only* this argument (RT #50576) - make :all actually import all methods, except for :cgi-lib, and add :ssl to the :standard import (RT #70337) [ DOCUMENTATION ] - clarify documentation regarding query_string method (RT #48370) - links fixed in some perldoc (Thanks to Michiel Beijen) [ TESTING ] - add t/changes.t for testing this Changes file - test case for RT #31107 confirming multipart parsing is to spec - improve t/rt-52469.t by adding a timeout check 4.02 2014-06-09 [ NEW FEATURES ] - CGI::Carp learns noTimestamp / $CGI::Carp::NO_TIMESTAMP to prevent timestamp in messages (RT #82364, EDAVIS@cpan.org) - multipart_init and multipart_start learn -charset option (RT #22737) [ SPEC / BUG FIXES ] - Support multiple cookies when passing an ARRAY ref with -set-cookie (RT #15065, JWILLIAMS@cpan.org) [ DOCUMENTATION ] - Made licencing information consistent and remove duplicate comments about licence details, corrected location to report bugs (RT #38285)
2014-10-01Updated www/p5-Template-Toolkit to 2.26wiz1-1/+2
2014-10-01Update to 2.26:wiz2-7/+6
#----------------------------------------------------------------------- # Version 2.26 - 17th September 2014 #------------------------------------------------------------------------ * Andy Wardley added outline directives. See Template::Manual::Syntax and Template::Manual::Config for details of the OUTLINE_TAG option and new 'outline' TAG_STYLE. See t/outline.t for examples. * Andy Wardley improved the handling of keywords when the ANYCASE option is in use. See t/anycase.t for examples. * Chromatic fixed UTF-8 encoding in URLs in URL plugin. https://github.com/abw/Template2/pull/31 * Brian Fraser added support for platforms without LC_ALL/setlocale. https://github.com/abw/Template2/pull/34 * Amiri Barksdale fixed RT46691 to plug filter memory leaks https://github.com/abw/Template2/pull/36 * John Lightsey fixed RT59208 to improve SET https://github.com/abw/Template2/pull/38 UPDATE: This had to be reverted as it cause a subtle breakage elsewhere
2014-10-01Updated devel/p5-Path-Class to 0.35wiz1-1/+2
2014-10-01Update to 0.35:wiz2-6/+6
0.35 Sun Sep 14 21:29:07 CDT 2014 - fce4b8e - Fixed a t/03-filesystem.t test error on Windows <Andrew Gregory>
2014-10-01Updated devel/p5-Exporter-Tiny to 0.040wiz1-1/+2
2014-10-01Update to 0.040:wiz2-6/+6
0.040 2014-09-17 [ Packaging ] - Repackage as a stable release. 0.039_01 2014-07-20 [ Documentation ] - Document warning and error messages produced by Exporter::Tiny. [ Other ] - Exporter::Tiny would previously cause B.pm to be loaded into memory any time it exported anything. It no longer does. - No longer die when redefining locally defined subs. - Warn when redefining any subs.
2014-10-01Updated devel/p5-Variable-Magic to 0.54wiz1-1/+2
2014-10-01Update to 0.54:wiz2-7/+6
0.54 2014-09-22 17:30 UTC + Add : The new constant VMG_COMPAT_CODE_COPY_CLONE evaluates to true if your perl calls 'copy' magic when a magical code prototype is cloned, which is currently the case for perl 5.17.0 and above. + Fix : [RT #90205] : copy magic on subs puts raw CV in $_[3] $_[3] will now contain a reference to the cloned code when 'copy' magic is called for a coderef. Thanks Lukas Mai for reporting. + Fix : t/35-stash.t has been taught about perl 5.21.4. + Fix : Tests using run_perl() in t/17-ctl.t will no longer fail on Android.
2014-10-01Updated time/p5-DateTime-TimeZone to 1.75wiz1-1/+2
2014-10-01Update to 1.75:wiz2-6/+6
1.75 2014-09-30 - This release is based on version 2014h of the Olson database. This release only includes historical changes.
2014-10-01Updated devel/p5-Package-Stash to 0.37wiz1-1/+2
2014-10-01Update to 0.37. Fix dependency.wiz2-8/+7
0.37 2014-09-21 - fix spurious warning in taint mode (Niko Tyni, #12)
2014-10-01Updated textproc/p5-YAML to 1.12wiz1-1/+2
2014-10-01Update to 1.12:wiz2-6/+6
1.12 Mon Sep 22 08:24:43 PDT 2014 - Fix https://rt.cpan.org/Ticket/Display.html?id=97870
2014-10-01Updated archivers/p5-Archive-Tar to 2.02wiz1-1/+2
2014-10-01Update to 2.02:wiz2-6/+6
2.02 14/09/2014 - Tests should now be able to be run in parallel
2014-10-01Updated devel/p5-IO-Compress to 2.066wiz1-1/+2
2014-10-01Update to 2.066:wiz2-6/+6
2.066 21 Sept 2014 * IO::Uncompress::Gzip Documentation of ExtraFlags stated the XFL values for BEST_COMPRESSION and BEST_SPEED use the values 2 & 4 respectively. They should be 4 & 2. Code for setting XFL was correct. * RT #95494: IO::Uncompress::Gunzip: Can no longer gunzip to in-memory file handle
2014-10-01Updated mail/p5-MIME-Types to 2.09wiz1-1/+2
2014-10-01Update to 2.09:wiz2-6/+6
version 2.09: Sun Sep 14 18:12:08 CEST 2014 Improvements: - documentation use consistent parameter casing - do not use '//' to support 5.8.* rt.cpan.org#98664 [Paul]
2014-10-01Updated devel/p5-Compress-Raw-Bzip2 to 2.066wiz1-1/+2
2014-10-01Update to 2.066:wiz2-6/+6
------- 2.066 21 Sept 2014 * No Changes