summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-01-18math: Add tex-mathpartir{,-doc}markd1-1/+3
2018-01-18tex-mathpartir{,-doc}: Add version 1.3.2markd8-0/+58
The package provides macros for typesetting math formulas in mixed horizontal and vertical mode, automatically as best fit. It provides an environment mathpar that behaves much as a loose centered paragraph where words are math formulas, and spaces between them are larger and adjustable. It also provides a macro \inferrule for typeseting fractions where both the numerator and denominator may be sequences of formulas that will be also typeset in a similar way. It can typically be used for typeseting sets of type inference rules or typing derivations. A macro inferrule for typesetting type inference rules.
2018-01-18devel: Add tex-doclicense{,-doc}markd1-1/+3
2018-01-18tex-doclicense{,-doc}: Add version 1.6.0markd8-0/+106
This package allows you to put your document under a license and include a link to read about the license or include an icon or image of the license. Currently, only Creative Commons is supported, but this package is designed to handle all kinds of licenses.
2018-01-18print: add tex-fvextra{,-doc}markd1-1/+3
2018-01-18Updated lang/py-execjs, www/py-aiohttpadam1-1/+3
2018-01-18py-aiohttp: updated to 2.3.9adam2-7/+7
2.3.9: Fix colon handing in path for dynamic resources
2018-01-18tex-fvextra{,-doc}: add version 1.3.1markd8-0/+53
fvextra provides several extensions to fancyvrb, including automatic line breaking and improved math mode. It also patches some fancyvrb internals. Parts of fvextra were originally developed as part of pythontex and minted.
2018-01-18Updated sysutils/xenkernel48 to 4.8.2nb3bouyer1-1/+2
2018-01-18Add patches from upstream, from xsa254/README.pti :bouyer6-3/+1363
> This README gives references for one of three mitigation strategies > for Meltdown. > This series is a first-class migitation pagetable isolation series for > Xen. It is available for Xen 4.6 to Xen 4.10 and later. bump PKGREVISION
2018-01-18py-execjs: updated to 1.5.1adam2-8/+8
1.5.1: Bug fixes.
2018-01-18Added mail/py-ukpostcodeparser, Updated devel/py-fakeradam1-1/+3
2018-01-18py-faker: updated to 0.8.10adam2-7/+12
0.8.10: * Pass python_requires argument to setuptools. * Remove some words from en_US lorem ipsum provider.
2018-01-18py-ukpostcodeparser: added version 1.1.2adam5-1/+48
UK Postcode parser Original code taken from: http://www.brunningonline.net/simon/blog/archives/001292.html
2018-01-18print: add tex-tex4ebook{,-doc}markd1-1/+3
2018-01-18tex-tex4ebook{,-doc}: Add version 0.1emarkd8-0/+74
This is a bundle of lua scripts and LaTeX packages for conversion of LaTeX files to ebook formats such as epub, mobi and epub3. tex4ht is used as conversion engine.
2018-01-18Updated graphics/freetype2adam1-1/+2
2018-01-18freetype2: updated to 2.9adam3-13/+10
FreeType 2.9 FreeType version 2.9, the first release of a new ‘minor’ series, is now available for download. The main reason for starting a new series is Ewald Hew's GSoC contribution of making Adobe's CFF engine handle Type 1 fonts also, greatly improving the rendering quality of this ancient but still important font format.
2018-01-18Updated net/p5-Net-Twitter to 4.01043wen1-1/+2
2018-01-18tex-tex4ht{,-doc}: update to 2017.45922markd5-18/+27
changes unknown
2018-01-18Update to 4.01043wen2-7/+7
Upstream changes: 4.01043 2018-01-17 - deprecation notice: Twitter::API is the new Net::Twitter - deprecated update_with_media - doc and build updates - remove debugger breakpoint (Oof!)
2018-01-18Updated databases/py-sqlalchemy, databases/py-alembicadam1-1/+3
2018-01-18Updated devel/p5-Log-Any to 1.705wen1-1/+2
2018-01-18py-alembic: use PYVERSSUFFIX and ALTERNATIVESadam3-3/+8
2018-01-18Update to 1.705wen2-8/+8
Upstream changes: 1.705 2018-01-17 13:49:22-06:00 America/Chicago [Fixed] - Fixed the `binmode` attribute of the File adapter not working properly. Thanks @MadLord80! [Github #71]
2018-01-18qt5-qtbase: remove references to qt5-qtquick1 and qt5-sqlite3markd1-4/+2
2018-01-18py-sqlalchemy: updated to 1.2.1adam3-8/+12
1.2.1: [orm] [bug] Fixed bug where an object that is expunged during a rollback of a nested or subtransaction which also had its primary key mutated would not be correctly removed from the session, causing subsequent issues in using the session. [orm] [bug] Fixed regression where pickle format of a Load / _UnboundLoad object (e.g. loader options) changed and __setstate__() was raising an UnboundLocalError for an object received from the legacy format, even though an attempt was made to do so. tests are now added to ensure this works. [orm] [bug] Fixed regression caused by new lazyload caching scheme in 3954 where a query that makes use of loader options with of_type would cause lazy loads of unrelated paths to fail with a TypeError. [orm] [bug] Fixed bug in new “selectin” relationship loader where the loader could try to load a non-existent relationship when loading a collection of polymorphic objects, where only some of the mappers include that relationship, typically when PropComparator.of_type() is being used. sql [sql] [bug] Fixed bug in Insert.values() where using the “multi-values” format in combination with Column objects as keys rather than strings would fail. Pull request courtesy Aubrey Stark-Toller. mssql [mssql] [bug] Fixed regression in 1.2 where newly repaired quoting of collation names in 3785 breaks SQL Server, which explicitly does not understand a quoted collation name. Whether or not mixed-case collation names are quoted or not is now deferred down to a dialect-level decision so that each dialect can prepare these identifiers directly. oracle [oracle] [bug] Fixed regression where the removal of most setinputsizes rules from cx_Oracle dialect impacted the TIMESTAMP datatype’s ability to retrieve fractional seconds. [oracle] [bug] Fixed regression in Oracle imports where a missing comma caused an undefined symbol to be present. Pull request courtesy Miroslav Shubernetskiy. misc [bug] [ext] Fixed regression in association proxy due to 3769 (allow for chained any() / has()) where contains() against an association proxy chained in the form (o2m relationship, associationproxy(m2o relationship, m2o relationship)) would raise an error regarding the re-application of contains() on the final link of the chain. [bug] [tests] Removed an oracle-specific requirements rule from the public test suite that was interfering with third party dialect suites. [bug] [tests] Added a new exclusion rule group_by_complex_expression which disables tests that use “GROUP BY <expr>”, which seems to be not viable for at least two third party dialects.
2018-01-18doc: update qt5-{mysql,psql,odbc}markd1-1/+4
2018-01-18qt5-odbc: update to 5.10.0markd3-11/+14
2018-01-18qt5-psql: update to 5.10.0markd3-11/+14
2018-01-18qt5-mysql: update to 5.10.0markd3-11/+14
2018-01-18Added mail/py-email_validator versionadam1-1/+2
2018-01-18Fixed typoadam1-2/+2
2018-01-18py-email_validator: added version 1.0.2adam6-1/+54
This library validates that address are of the form x@y.com. This is the sort of validation you would want for a login form on a website. Key features: * Good for validating email addresses used for logins/identity. * Friendly error messages when validation fails (appropriate to show to end users). * (optionally) Checks deliverability: Does the domain name resolve? * Supports internationalized domain names and (optionally) internationalized local parts. * Normalizes email addresses (super important for internationalized addresses!).
2018-01-18Removed a reference to wipadam1-2/+2
2018-01-18Removed references to wipadam1-4/+4
2018-01-18doc: removal of some qt5 packagesmarkd1-1/+3
2018-01-18qt5-qtquick1: removed in qt5-5.10.0markd7-332/+1
2018-01-18qt5-sqlite3: removed, now part of qt5-qtbasemarkd6-55/+1
2018-01-18doc: this mornings updatesmarkd1-1/+99
2018-01-18baloo5: update distinfo to match this mornings updatemarkd1-8/+7
2018-01-18kwallet: remove old patchmarkd1-14/+0
2018-01-18py-sip: update distinfo to match this mornings updatemarkd1-6/+7
2018-01-18add and enable lynisjnemeth1-1/+2
2018-01-18Updated www/moodle to 3.4.1wen1-1/+2
2018-01-18Update to 3.4.1wen2-7/+7
Upstream changes: Here is the full list of fixed issues in 3.4.1. Highlights MDL-34161 - LTI: backup and restore supports submissions and also course and site tools. References to the site tools are restored only on the same site (they are not included in course backup for security reasons). MDL-27886 - If general backup setting "Include users" is unchecked, users with relevant capability can now backup user data MDL-40613 - LDAP authentication method can now synchronise custom user profile fields Fixes and improvements MDL-58887 - Accessibility: Gear icon is now properly defined for screen readers MDL-54106 - Incomplete user accounts are now deleted after specified period of time (setting "Delete not fully setup users after") MDL-59512 - Allow to connect to OAuth 2 services that only support client authentication via Basic Auth MDL-56197 - Lesson: Multiple Choice answers appear on same line as radio button MDL-45068 - Import Groups from CSV tool bug fixes MDL-52100 - Folder resource: Large files deleted when editing teachers update resource with global maxbytes lower MDL-37757 - Turning off Server Files Repository should not break courses that use it MDL-58272 - Assignment: Converting images in submissions to pdf (unoconv) MDL-54967 - IMS Common Cartridge import works correctly with HTML entities in URLs MDL-27230 - Quiz: when group override is deleted the calendar event should also be deleted MDL-57431 - Quiz: Clicking on help for "Shuffle" button no longer toggles shuffle itself MDL-42676 - Assignment: The message "This assignment is not accepting submissions" is displayed in the assignment when override the grade MDL-34389 - Category manager with the 'moodle/course:changecategory' should be able to move existing courses between categories MDL-52538 - Lesson: Content pages no longer display grade MDL-45500 - Allow uninstalling grading methods plugins MDL-58817 - LTI: display correct icons MDL-43042 - Lesson multi-choice questions with multiple answers: more clear indication for the user which answer was correct MDL-40790 - Lesson: UI fix for content buttons running off the edge of the page MDL-59999 - Lesson: Grade essays page shows which essays have been graded MDL-57564 - "Sort my courses (navsortmycoursessort)" setting now respected on the dashboard Security issues A number of security related issues were resolved. Details of these issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version.
2018-01-17dynamips: update to 0.2.17markd2-7/+7
* Set nonblocking I/O for UDP sockets * Fix tap interface usage on FreeBSD * Fix build on FreeBSD * NM-16ESW: process packets even if MAC address table is full. Fixes #72.
2018-01-17gcc7 fixmarkd2-1/+21
2018-01-17kf5: update to 5.41.0markd63-270/+371
16 months worth of updates. requires qt5>=5.7
2018-01-17textproc: add syntax-highlightingmarkd1-1/+2