summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-04-22Update tex-cite{,-doc} to 5.5markd4-14/+14
latest texlive version. changes unknown.
2015-04-22Update tex-makeindex{,-doc} to 20130512markd6-23/+26
latest texlive version. changes unknown.
2015-04-22Update tex-cancel{,-doc} to 2.2markd4-14/+14
latest texlive version. changes unknown.
2015-04-22Update tex-bezos{,-doc} to 25507markd6-16/+19
latest texlive version. changes unknown.
2015-04-22Update tex-beamer{,-doc} to 3.36markd6-27/+128
latest texlive version. changes unknown.
2015-04-22Update tex-babelbib{,-doc} to 1.31markd6-26/+30
latest texlive version. changes unknown.
2015-04-22Update tex-babel{,-doc} to 3.9lmarkd6-140/+25
latest texlive version. changes unknown.
2015-04-22Update tex-arabtex{,-doc} to 3.17markd4-15/+14
latest texlive version. changes unknown.
2015-04-22Update tex-arabi{,-doc} to 1.1pl25095markd4-15/+14
latest texlive version. changes unknown.
2015-04-22Update tex-answers{,-doc} to 2.16markd5-18/+15
latest texlive version. changes unknown.
2015-04-22Update tex-amsrefs{,-doc} to 2.14markd5-20/+17
latest texlive version. changes unknown.
2015-04-22Update tex-amsmath{,-doc} to 2.14markd5-18/+15
latest texlive version. changes unknown.
2015-04-22Update tex-amscls{,-doc} to 2014.34870markd5-19/+23
latest texlive version. changes unknown.
2015-04-22Update tex-algorithm2e{,-doc} to 5.0markd5-15/+17
latest texlive version. changes unknown.
2015-04-22Update tex-acronym{,-doc} to 1.41markd4-14/+14
latest texlive version. changes unknown.
2015-04-22Update tex-IEEEtran{,-doc} to 1.8amarkd5-15/+17
latest texlive version. changes unknown.
2015-04-22Needs lex and yacc.jperkin1-1/+2
2015-04-22Preliminary hacks for building this with -m32 on amd64 NetBSD.dholland5-2/+67
I've run into local problems with COMPAT_32 so this only gets a short distance in before I can't run it any further, but I'm going to commit anyway as "broken package" > "no package", and with luck I'll get it sorted out fully before much longer. Also allow amd64 Linux as the necessary hacks for that seem to already be in place.
2015-04-22Note update of www/wordpressmorr1-1/+2
2015-04-22Security update to version 4.1.2.morr2-6/+6
Changes: 4.1.1: Maintenance release, fixed 21 bugs. 4.1.2: - A serious critical cross-site scripting vulnerability, which could enable anonymous users to compromise a site. - Files with invalid or unsafe names could be uploaded. - Some plugins are vulnerable to an SQL injection attack. - A very limited cross-site scripting vulnerability could be used as part of a social engineering attack. - Four hardening changes, including better validation of post titles within the Dashboard.
2015-04-22Updated graphics/p5-Image-Info to 1.38wiz1-1/+2
2015-04-22Update to 1.38:wiz2-6/+6
2015-04-19 Slaven Rezic <slaven@rezic.de> Release 1.38 Pod typo fixes (by hatorikibble) New xt tests (synopsis, strict, kwalitee, by hatorikibble)
2015-04-22Updated time/p5-DateTime-TimeZone to 1.87wiz1-1/+2
2015-04-22Update to 1.87:wiz2-6/+6
1.87 2015-04-20 - This release is based on version 2015c of the Olson database. This release includes contemporary changes for Egypt, though it looks like those will change again soon.
2015-04-22Updated www/p5-CGI to 4.15wiz1-1/+2
2015-04-22Update to 4.15. Read the changelog below!wiz3-44/+11
4.15 2015-04-20 [ RELEASE NOTES ] - This release removes the AUTOLOAD and compile optimisations from CGI.pm that were introduced into CGI.pm twenty (20) years ago as a response to its large size, which meant there was a significant compile time penalty. - This optimisation is no longer relevant and makes the code difficult to deal with as well as making test coverage metrics incorrect. Benchmarks show that advantages of AUTOLOAD / lazy loading / deferred compile are less than 0.05s, which will be dwarfed by just about any meaningful code in a cgi script. If this is an issue for you then you should look at running CGI.pm in a persistent environment (FCGI, etc) - To offset some of the time added by removing the AUTOLOAD functionality the dependencies have been made runtime rather than compile time. The POD has also been split into its own file. CGI.pm now contains around 4000 lines of code, which compared to some modules on CPAN isn't really that much - This essentially deprecates the -compile pragma and ->compile method. The -compile pragma will no longer do anything, whereas the ->compile method will raise a deprecation warning. More importantly this also REMOVES the -any pragma because as per the documentation this pragma needed to be "used with care or not at all" and allowing arbitrary HTML tags is almost certainly a bad idea. If you are using the -any pragma and using arbitrary tags (or have typo's in your code) your code will *BREAK* - Although this release should be back compatible (with the exception of any code using the -any pragma) you are encouraged to test it throughly as if you are doing anything out of the ordinary with CGI.pm (i.e. have bugs that may have been masked by the AUTOLOAD feature) you may see some issues. - References: GH #162, GH #137, GH #164 [ SPEC / BUG FIXES ] - make the list context warning in param show the filename rather than the package so we have more information on exactly where the warning has been raised from (GH #171) - correct self_url when PATH_INFO and SCRIPT_NAME are the same but we are not running under IIS (GH #176) - Add the multi_param method to :cgi export (thanks to xblitz for the patch and tests. GH #167) - Fix warning for lack of HTTP_USER_AGENT in CGI::Carp (GH #168) - Fix imports when called from CGI::Fast, restores the import of CGI functions into the callers namespace for users of CGI::Fast (GH leejo/cgi-fast#11 and GH leejo/cgi-fast#12) [ FEATURES ] - CGI::Carp now has $CGI::Carp::FULL_PATH for displaying the full path to the offending script in error messages - CGI now has env_query_string() for getting the value of QUERY_STRING from the environment and not that fiddled with by CGI.pm (which is what query_string() does) (GH #161) - CGI::ENCODE_ENTITIES var added to control which chracters are encoded by the call to the HTML::Entities module - defaults to &<>"\x8b\x9b' (GH #157) [ DOCUMENTATION ] - Fix some typos (GH #173, GH #174) - All *documentation* for HTML functionality in CGI has been moved into its own namespace: CGI::HTML::Functions - although the functionality continues to exist within CGI.pm so there are no code changes required (GH #142) - Add missing documentation for env variable fetching routines (GH #163) [ TESTING ] - Increase test coverage (GH #3) [ INTERNALS ] - Cwd made a TEST_REQUIRES rather than a BUILD_REQUIRES in Makefile.PL (GH #170) - AutoloadClass variables have been removed as AUTOLOAD was removed in v4.14 so these are no longer necessary (GH #172 thanks to alexmv) - Remove dependency on constant - internal DEBUG, XHTML_DTD and EBCDIC constants changes to $_DEBUG, $_XHTML_DTD, and $_EBCDIC
2015-04-22texlive updatesmarkd1-1/+43
2015-04-22Update tex-xypic{,-doc} to 3.8.9markd6-19/+20
latest texlive version. changes unknown.
2015-04-22Update tex-pstricks-add{,-doc} to 3.77markd5-15/+16
latest texlive version. changes unknown.
2015-04-22Update tex-pstricks{,-doc} to 2.60markd6-30/+21
latest texlive version. changes unknown.
2015-04-22Update tex-pst-slpe{,-doc} to 1.31markd4-14/+14
latest texlive version. changes unknown.
2015-04-22Update tex-pst-poly{,-doc} to 1.63markd4-14/+14
latest texlive version. changes unknown.
2015-04-22Update tex-pst-plot{,-doc} to 1.70markd6-20/+28
latest texlive version. changes unknown.
2015-04-22Update tex-pst-node{,-doc} to 1.35markd6-21/+22
latest texlive version. changes unknown.
2015-04-21Update tex-pst-math{,-doc} to 0.63markd4-14/+14
latest texlive version. changes unknown.
2015-04-21Update tex-pst-coil{,-doc} to 1.05markd4-14/+14
latest texlive version. changes unknown.
2015-04-21Update tex-pst-circ{,-doc} to 2.12amarkd5-16/+15
latest texlive version. changes unknown.
2015-04-21Update tex-pst-barcode{,-doc} to 0.12markd4-14/+14
latest texlive version. changes unknown.
2015-04-21Update tex-pst-3dplot{,-doc} to 2.01markd5-17/+16
latest texlive version. changes unknown.
2015-04-21Update tex-pdfcrop{,-doc} to 1.37markd5-21/+20
latest texlive version. changes unknown.
2015-04-21Update tex-metapost{,-doc} to 1.803pl34194markd5-15/+16
latest texlive version. changes unknown.
2015-04-21Update tex-epstopdf{,-doc} to 2.23markd4-16/+15
latest texlive version. changes unknown.
2015-04-21Simplify updates for databases/sqlite3{,-docs,-tcl}khorben4-9/+21
This change adds a Makefile.version file, common to every package from SQLite 3.
2015-04-21Update tex-luatexbase{,-doc} to 0.6markd5-17/+16
latest texlive version. changes unknown.
2015-04-21Update tex-lualibs{,-doc} to 2.2markd6-19/+38
latest texlive version. changes unknown.
2015-04-21Update tex-l3packages{,-doc} to 0.5471markd5-15/+16
latest texlive version. changes unknown.
2015-04-21Update HOMEPAGE (localhost.nl to github).mef1-2/+2
2015-04-21Update tex-l3kernel{,-doc} to 0.5547markd6-20/+27
latest texlive version. changes unknown.
2015-04-21Update tex-etoolbox{,-doc} to 2.1dmarkd4-15/+16
latest texlive version. changes unknown.
2015-04-21Update tex-makeindex{,-doc} to 2.15markd6-19/+17
latest texlive version. changes unknown.