summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-11-24Security update to 4.0.1.morr2-6/+6
Changes: - Three cross-site scripting issues that a contributor or author could use to compromise a site. - A cross-site request forgery that could be used to trick a user into changing their password. - An issue that could lead to a denial of service when passwords are checked. - Additional protections for server-side request forgery attacks when WordPress makes HTTP requests. - An extremely unlikely hash collision could allow a user’s account to be compromised, that also required that they haven’t logged in since 2008 (I wish I were kidding). - WordPress now invalidates the links in a password reset email if the user remembers their password, logs in, and changes their email address. More details on http://codex.wordpress.org/Version_4.0.1.
2014-11-24Mention vala024 removal.wiz1-1/+2
2014-11-24Remove vala024, no packages using it left.wiz7-386/+1
2014-11-24Now that pkglint's Makefile defines its LICENSE, I would expect theschmonz1-5/+5
'..' test to print "looks fine." and exit 0. Indeed, this is what an installed pkglint does when run in pkgtools/pkglint. But the corresponding test does not, depending in some way on the state left by previous tests of main(). In lieu of precise understanding, just run the adjusted '..' test earlier so that nothing causes it to fail. This will annoy someone later (probably me), but gets us back to green.
2014-11-24Updated chat/telepathy-glib to 0.24.1nb1wiz1-1/+2
2014-11-24Switch from vala024 to vala (0.26).wiz1-2/+3
2014-11-24Mention vala020 removal.wiz1-1/+2
2014-11-24Remove vala020, no packages using it left.wiz7-378/+1
2014-11-24Updated www/midori to 0.4.9nb17wiz1-1/+2
2014-11-24Switch from vala020 to vala (0.26). Bump PKGREVISION.wiz1-3/+3
XXX: someone should really update this to 0.5.9...
2014-11-24Updated graphics/shotwell-gtk3 to 0.20.2wiz1-1/+2
2014-11-24Update to 0.20.2:wiz4-88/+141
Shotwell 0.20.2 - 31 October 2014 --------------------------------- * Set Desktop Slideshow dialog resource now included in distribution (#739095) * Check for rendering failure in video thumbnailer (#738245) * Updated translations Shotwell 0.20.1 - 2 October 2014 -------------------------------- * Corrects problems with navigating photos in full-screen mode (#737092) * Better memory utilization via more conservative pixbuf cache (#715198) * Fixes minor bugs detected by better Vala code analysis Shotwell 0.20.0 - 16 September 2014 ----------------------------------- * Fix crash when deleting a photo in Shotwell Photo Viewer * Fix crash when deleting a photo * Better detection of corrupt files while importing * Updated translations Shotwell 0.19.0 - 21 August 2014 -------------------------------- * Support for Rajce.net and Gallery 3 photo services added * Set background image for lock screen * Better detection of corrupt images during import * Various bug fixes * Updated translations Shotwell 0.18.1 - 30 Jun 2014 ----------------------------- * Fix Flickr publishing errors due to Flickr moving to HTTPs-only * Fix crash when updating photo data/time * Fix crash due to nested tag and changing sidebar selection * Corrected URLs to point to new gnome.org pages Shotwell 0.18.0 - 17 March 2014 ------------------------------- * Compile and install translated help files * Updated translations Shotwell 0.17.2 - 4 March 2014 ------------------------------ * UNIX pipe unnecessarily left open for each imported video * Improved searching for event comments and diacritics * Update translations Shotwell 0.17.1 - 17 February 2014 ---------------------------------- * Updated translations * Parent folder names as search keywords rolled back (see bgo#722756) Shotwell 0.17.0 - 4 February 2014 --------------------------------- * Include parent folder names for keyword search * Tumblr publishing fixed * Bug fixes * Updated translations
2014-11-24- php-5.6.0.taca1-2/+1
2014-11-24Note addition of meta-pkgs/php56-extensions package version 5.6.3.taca1-1/+2
2014-11-24Add and enable php56-extensions.taca1-1/+2
2014-11-24Add php56-extensions package which contains most of extensions containedtaca2-0/+76
in PHP 5.6.x release.
2014-11-24Allow build with php56.taca1-2/+2
2014-11-24Add support for php56.taca2-2/+9
2014-11-24Note addition of lang/php56 package version 5.6.3.taca1-1/+2
2014-11-24Add and enable php56.taca1-1/+2
2014-11-24Add php56, PHP version 5.6.3.taca29-0/+1085
THe main features of PHP 5.6: * Constant scalar expressions. * Variadic functions and argument unpacking using the ... operator. * Exponentiation using the ** operator. * Function and constant importing with the use keyword. * phpdbg as an interactive integrated debugger SAPI. * php://input is now reusable, and $HTTP_RAW_POST_DATA is deprecated. * GMP objects now support operator overloading. * File uploads larger than 2 gigabytes in size are now accepted. Please refer for difference from oldre release:http://php.net/migration56.
2014-11-24Add support for php56 (PHP 5.6.x).taca1-8/+18
2014-11-24Remove wmthemes.joerg1-4/+2
2014-11-24Updated net/gssdp to 0.14.9nb2wiz1-1/+2
2014-11-24Switch from vala020 to vala (0.26).wiz1-3/+3
Bump PKGREVISION.
2014-11-24Updated graphics/pngcrush to 1.7.81; databases/mysql-connector-c++ to 1.1.4adam2-3/+4
2014-11-24Changes 1.1.4:adam3-12/+12
* Connector/C++ now supports the following connection options: sslVerify (boolean), sslCRL (string), and sslCRLPath (string). These correspond to the MYSQL_OPT_SSL_VERIFY_SERVER_CERT, MYSQL_OPT_SSL_CRL, and MYSQL_OPT_SSL_CRLPATH options for the mysql_options() C API function. * Connector/C++ has new functions to provide schema, table, and column character set and collation metadata for result sets: ResultSet * DatabaseMetaData::getSchemaCollation(const sql::SQLString& catalog, const sql::SQLString& schemaPattern) ResultSet * DatabaseMetaData::getSchemaCharset(const sql::SQLString& catalog, const sql::SQLString& schemaPattern) ResultSet * DatabaseMetaData::getTableCollation(const sql::SQLString& catalog, const sql::SQLString& schemaPattern, const sql::SQLString& tableNamePattern) ResultSet * DatabaseMetaData::getTableCharset(const sql::SQLString& catalog, const sql::SQLString& schemaPattern, const sql::SQLString& tableNamePattern) SQLString ResultSetMetaData::getColumnCollation(unsigned int columnIndex) SQLString ResultSetMetaData::getColumnCharset(unsigned int columnIndex) * Connector/C++ now supports the MYSQL_OPT_CONNECT_ATTR_ADD option, which accepts an std::map argument. This option corresponds to the MYSQL_OPT_CONNECT_ATTR_ADD option for mysql_options4(). * Connector/C++ now supports a useLegacyAuth connection option, which corresponds to the MYSQL_SECURE_AUTH option for mysql_options(). * Connector/C++ is now compiled and linked with Connector/C 6.1.5 rather than with libmysql. Bugs Fixed * MySQL_ResultSetMetaData::getColumnTypeName() returned UNKNOWN for LONG_BLOB fields. * Definitions for character sets and collations were added (utf8mb4 in particular). * Connector/C++ version-information methods have been revised to return the correct values.
2014-11-24Updated emulators/vmips to 1.5mef1-1/+2
2014-11-24Update 1.4.1 to 1.5mef5-56/+7
------------------- User-visible changes in version 1.5 (since version 1.4.1): * New features/improvements: * VMIPS now includes a basic direct-mapped cache simulation. The cache isolation and cache swap bits in the CP0 Status register are now honored. * The boot monitor distributed with VMIPS now sets up a dummy `argv[0]' value for the loaded program. Also, it halts by entering an infinite loop rather than attempting to execute a `break' instruction when it encounters an unexpected exception. * The setup assembly routine distributed with VMIPS has been made more TLB-friendly. Identity virtual-to-physical mappings for the first few pages of physical RAM are installed in the TLB at program start time. * When `-o excmsg' is on, TLB miss addresses will be printed to stderr. * When `-o ttydev=stdout' is specified, simulated program output will be sent to VMIPS's standard output, even if it is not a tty. * The interactor can now disassemble memory. Also, stepping in the interactor now prints the PC after each step. * VMIPS now supports more of the GDB remote serial protocol, in support of the GDB `info threads' and `detach' commands. The debug protocol TCP port is now configurable via the `-o debugport' option. Also, if something halts the program while the debugger interface is active, VMIPS will tell GDB that the program exited. * Bug fixes: * A bug was fixed in the debugger interface where disconnecting from the debugger socket could cause vmips to enter an infinite loop. * The interactor will refuse to dump raw memory words at non-word-aligned addresses. * The CP0 Cause register IP field is now recomputed whenever the register is read, rather than only when exceptions happen. This makes polling loops with interrupts disabled work correctly. * A bug was fixed in the DECstation-compatible clock device which was preventing some of its registers from being zeroed properly. * Some endianness bugs were fixed in the generic memory-mapped device code and in the DECstation-compatible serial device.
2014-11-24+ py-google-api-python-clientwiz1-1/+2
2014-11-24Added www/py-google-api-python-client version 1.3.1wiz1-1/+2
2014-11-24Import py27-google-api-python-client-1.3.1 as www/py-google-api-python-client.wiz4-0/+70
This is the Python client library for Google's discovery based APIs.
2014-11-24Added security/py-oauth2client version 1.4.1wiz1-1/+2
2014-11-24+ py-oauth2clientwiz1-1/+2
2014-11-24Import py34-oauth2client-1.4.1 as security/py-oauth2client.wiz4-0/+84
This is a client library for accessing resources protected by OAuth 2.0.
2014-11-24Added security/py-rsa version 3.1.4wiz1-1/+2
2014-11-24+ py-rsa.wiz1-1/+2
2014-11-24Import py34-rsa-3.1.4 as security/py-rsa.wiz4-0/+94
Python-RSA is a pure-Python RSA implementation. It supports encryption and decryption, signing and verifying signatures, and key generation according to PKCS#1 version 1.5. It can be used as a Python library as well as on the commandline.
2014-11-24+ py-asn1-moduleswiz1-1/+2
2014-11-24Added security/py-asn1-modules version 0.0.5wiz1-1/+2
2014-11-24Import py34-asn1-modules-0.0.5 as security/py-asn1-modules.wiz4-0/+94
This is a small but growing collection of ASN.1 data structures expressed in Python terms using the pyasn1 data model. It's thought to be useful to protocol developers and testers.
2014-11-24Updated fonts/tamsyn-font to 1.10mef1-1/+2
2014-11-24VERSION 1.10 2013-09-17mef3-14/+17
CHANGES IN 1.10 - New size: 7x13. - New size: 8x16 (replaces 8x17) - Many changes in favor of a cleaner look. In particular, replaced the double-story lowercase "g" with the single-story variety. - Added the degree symbol. (Enjoy, Sven!) - Added the copyright symbol.
2014-11-24Updated fonts/p5-Font-TTF to 1.04mef1-1/+2
2014-11-24Update 1.0.2 to 1.0.4mef2-7/+6
1.04 (r994, 2014-01-09) * Bug fixes: * Fix rt.cpan.org 80671, 80672; simplify fix for #42553 per OP * Shared tables in TTC weren't working * Quiet a cleanup warning in TTC processing * Update licensing info for test fonts to OFL 1.03 (r969, 2013-11-10) * Add $t->minsize() to all tables for assisting with font subsetting * Add deduping to Name table writing * Add OS/2 table method to guess at Unicode and Codepage range bits. * Add support for cmap format 13 subtables * Expunge notion of 'dflt' language tag from Ttopen.pm * Bug fixes
2014-11-24Updated fonts/cantarell-fonts to 0.0.16mef1-1/+2
2014-11-24Update 0.0.15 to 0.0.16mef2-7/+6
0.0.16 - add space variations (#735205)
2014-11-24+ py-uritemplatewiz1-1/+2
2014-11-24Added textproc/py-uritemplate version 0.6wiz1-1/+2
2014-11-24Import py34-uritemplate-0.6 as textproc/py-uritemplate.wiz4-0/+29
This is a Python implementation of RFC6570, URI Template, and can expand templates up to and including Level 4 in that specification.