summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-05-06Makefiles should stop on error.dholland2-1/+102
2012-05-06Make sure to contao211's version to 2.11.3.taca1-2/+2
Noted by David Holland, thanks much.
2012-05-06Not MAKE_JOBS_SAFE. (and now it takes that much longer to build... sigh)dholland1-1/+3
2012-05-06Something docbook-related changed a while ago and this package nowdholland1-1/+2
installs, among its documentation, an extra empty file called pfe-manual.proc. It's been failing in ~every bulk build, so I'm just going to add the thing to the PLIST unconditionally. And because of the total unimportance of the extra file, I'm not going to bump the package revision.
2012-05-05updated download archives since original ftp servser seems to have becomeschwarz3-22/+21
unreachable/unavailable. Now using source archive from old Ubuntu archives instead.
2012-05-05Added misc/py-anki version 1.2.9wiz1-1/+3
2012-05-05+ anki packages.wiz1-1/+3
2012-05-05Adapt for import.wiz1-2/+2
2012-05-05Initial import of py-anki-1.2.9:wiz5-0/+266
Anki is a program which makes remembering things easy. Because it is a lot more efficient than traditional study methods, you can either greatly decrease your time spent studying, or greatly increase the amount you learn. Anyone who needs to remember things in their daily life can benefit from Anki. Since it is content-agnostic and supports images, audio, videos and scientific markup (via LaTeX), the possibilities are endless.
2012-05-05Initial import of libanki-1.2.9.wiz3-0/+160
Anki is a program which makes remembering things easy. Because it is a lot more efficient than traditional study methods, you can either greatly decrease your time spent studying, or greatly increase the amount you learn. Anyone who needs to remember things in their daily life can benefit from Anki. Since it is content-agnostic and supports images, audio, videos and scientific markup (via LaTeX), the possibilities are endless. This package contains the libraries for anki.
2012-05-05Needs a full dependency on qt4-tools. Bump revision.joerg1-1/+4
2012-05-05Fix build of py26-expat against expat-2.0. Bump revision.joerg3-3/+22
2012-05-05Fix PLIST on !Linuxjoerg1-3/+3
2012-05-05Rearrange inline patches to hopefully work on both gcc and clang.dholland3-15/+32
2012-05-05Make sure rpath to Perl module is properly set. Bump revision.joerg3-3/+17
2012-05-05Sort dependencies to not conflict with KDE4joerg1-6/+8
2012-05-05Updated graphics/py-matplotlib to 1.1.0nb1wiz1-1/+2
2012-05-05Replace python interpreter in a few files. Bump PKGREVISION.wiz1-1/+10
2012-05-05Doesn't work with python25. (uses byte-string literals, needs >= 26)dholland1-1/+3
2012-05-05Update install rule patch to stop on error.dholland2-5/+9
2012-05-05Updated graphics/darktable to 1.0.3jakllsch1-1/+2
2012-05-05correct previousjakllsch1-6/+6
2012-05-05update darktable to 1.0.3jakllsch8-68/+67
Changes since 1.0: Usability improvements: - Filmstrip centers on selected image Behavioral changes: - Improved (hierarchical) tag export for flickr and friends Camera support: - Improved Sony NEX-7 support - Initial camera support for Nikon D800 and Sony SLT-A57 (color rendition of these cameras might still be suboptimal due to the lack of a proper color matrix, and is subject to future change.) - White balance updates for Canon EOS Rebel T3, Olympus E-5 & Nikon D800 Platform support: - Fixes for FreeBSD Various: - New subtle denoise preset for equalizer - Various build fixes - Numerous other fixes
2012-05-05Add missing krb5.bl3.mk; force use of internal libroken to avoid PLISTdholland1-1/+3
divergence. XXX: This package still cannot be used with pkgsrc heimdal because XXX: it conflicts on bin/kpasswd and bin/pagsh. This should be fixed, XXX: as replacing native kerberos's kpasswd binary on the PATH isn't XXX: really good either.
2012-05-05Fix spelling of 'internal' in configure test.dholland2-7/+19
2012-05-05Updated textproc/py-cssutils to 0.9.9gls1-1/+2
2012-05-05Update textproc/py-cssutils to 0.9.9.gls3-7/+157
Pkgsrc changes: --------------- Deal with /usr/bin/env python Upstream changes: ----------------- 0.9.9 final 120131 - FEATURE: Implemented API for ``MarginRule`` objects inside ``CSSPageRule``, see http://www.w3.org/TR/css3-page/. You can also use e.g. ``CSSPageRule['@top-left']`` to retrieve the MarginRule it it is set etc. All dict like methods should be there. If a margin is set twice or more all properties are merged into a single margin rule. Double set properties are all kept though (see below). - FEATURE: ``parseStyle()`` has optional parameter ``validate=False`` now too to disable validation (default is always ``True``). - FEATURE: ``CSSStyleDeclaration.setProperty`` has new option ``replace=True``. if True (DEFAULT) the given property will replace a present property. If False a new property will be added always. The difference to `normalize` is that two or more properties with the same name may be set, useful for e.g. stuff like:: background: red; background: rgba(255, 0, 0, 0.5); which defines the same property but only capable UAs use the last property value, older ones use the first value. + CHANGE: @rules attribute ``atkeyword`` value is now normalized. The actual keyword (example ``@IMPorT``) is kept and is optionally reserialized but in the example ``atkeyword == '@import'`` - BUGFIX: 'auto' is now an invalid CSSPageRule pagename. - BUGFIX: Fixed issue for GoogleAppEngine (GAE) which somehow handles codecs differently. ``parseUrl`` should work now. 0.9.8 ----- 0.9.8 final 111210 - FEATURE: Feature Request (#4) to be able to disable validation of a stylesheet has been implemented. Add Parameter ``validate=False`` for parsing. + BUGFIX: Fixed #5 Unicode escaping inside strings. Thanks to Simon Sapin + BUGFIX: The integer is optional in counter-reset and counter-increment, and not only on the first counter. Thanks to Simon Sapin + BUGFIX: Fix for unicode replacements by Denis Bilenko, thanks! https://bitbucket.org/cthedot/cssutils/pull-request/1/fix-a-bug-in-regex-which-accidentally - IMPROVEMENT: ``parseStyle`` moved to CSSParser, thanks to Simon Sapin 0.9.8a3 110727 + BUGFIX: Fixed validation of ``size`` property (thanks to Simon Sapin) + BUGFIX: Fixed Issue #55 (thanks to Simon Sapin): `outline-color` property was missing from validation. + BUGFIX: Fixed resolution of encoding detection of a stylesheet which did not use @charset in certain circumstances (mainly when imported sheets use different encoding than importing one which should be quite rare actually). - FEATURE: Added ``URIValue.absoluteUri`` (thanks to Simon Sapin) - FEATURE: Issue #53 feature request: Added new Preference option ``cssutils.ser.prefs.indentClosingBrace``. Defines if closing brace of block is indented to match indentation of the block (default) oder match indentation of selector. - FEATURE: Feature request: Added new Preference option ``cssutils.ser.prefs.omitLeadingZero``. Defines if values between -1 and 1 should omit the 0, like ``.5px``. Minified settings do this, else 0 is kept by default. + CHANGE (minor): Some error messages have slightly changed due to a simpler compatibility to Python 3. Problem are any ``u'...'`` texts inside error messages which now are simplified, some without and quotes. Changed are e.g. error messages by ``Property``. - **IMPROVEMENT**: Python 3 support. At least the unittests run in Python 2.5, 2.6, 2.7, 3.2 and Jython 2.5.1 now. Both encutils (with support by Fredrik Hedman, thanks!) and cssutils (thanks to Jaraco) and the CSS codec (thanks to Walter Dörwald) seem to work with Python 3 (tested on Python 3.2.1 Win64). Tests use Mock instead of MiniMock now as former is available for Python 2.x and 3.x. - **IMPROVEMENT**: Parsing of longer (and probably invalid) ``font`` or ``font-family`` values was *extremely* slow due to a very complex regex. This has been changed and parsing of specific stylesheets using these values should be much faster now. (``macros[Profiles.CSS_LEVEL_2]['font-family']`` is gone so if you used this in your own validation modules you need to check the source in `profiles.py`.) - IMPROVEMENT: Fixed Issue #54 (thanks to Simon Sapin): Short hand like `#f80` color value object have correct red, green and blue property values now. Also ``hsl()`` and ``hsla()`` colors report (almost) correct values (due to rounding problems). - **Source control has moved to bitbucket https://bitbucket.org/cthedot/cssutils**. Older Issues are currently still at Google Code, newer at Bitbucket. Please do not use Google Code for new issue reports anymore! 0.9.8a2 110611 - BUGFIX: Fixed Issue #59 which showed a rather strange problem with longer space separated lists of font-family values being so slow to actually stop parsing. - BUGFIX/IMPROVEMENT: Fixed Issue #48. ``CSSParser.parseUrl()`` uses the defined fetcher of this parser *for the initial stylesheet* at url too and not just the imported sheets *from* this sheet. - BUGFIX: Fixed Issue #50 which prevented cssutils parsing the acid2.css file correctly. Problem were selectors starting directly with ``[class]`` (an attribute selector). + **API CHANGE (major)** (Known) named colors are parsed as ColorValue objects now. These are the 16 simple colors (black, white, etc) and `transparent` but not all Extended color keywords yet. Also changed ``ColorValue.type`` to ``Value.COLOR_VALUE``. ColorValue has additional properties ``red, green, blue, alpha`` and ``colorType`` which is one of IDENT, HASH or FUNCTION for now. + API CHANGE (minor) Removed already DEPRECATED ``cssutils.parse`` and ``CSSParser.parse``. Use the more specific functions/methods ``parseFile parseString parseUrl`` instead. Removed already DEPRECATED ``cssutils.log.setlog`` and ``.setloglevel``. Use ``.setLog`` and ``.setLevel`` instead. Removed already DEPRECATED ``cssutils.ser.keepUnkownAtRules`` (note the typo). Use ``.keepUnknownAtRules`` instead. - IMPROVEMENT: Added validation profiles for some properties from `CSS Backgrounds and Borders Module Level 3 <http://www.w3.org/TR/css3-background/>`__, `CSS3 Basic User Interface Module <http://www.w3.org/TR/css3-ui/#resize>`__, `CSS Text Level 3 <http://www.w3.org/TR/css3-text/>`__ mainly `cursor`, `outline`, `resize`, `box-shadow`, `text-shadow` 0.9.8a1 101212 + **API CHANGE (major)** replace CSSValue with PropertyValue, Value and other classes. NEW CLASSES: :class:`cssutils.css.PropertyValue` replaces CSSValue and CSSValueList - is iterable (iterates over all single Value objects which in soruce CSS might be separated by "," "/" or " " - a comma separated list of IDENT values is no longer handled as a single String (e.g. ``Arial, sans-serif``) :class:`cssutils.css.Value` replaces CSSPrimitiveValue with separate ``value`` and ``type`` info (value is typed, so e.g. string for e.g. STRING, IDENT or URI values, int or float) and is base class for more specific values like: :class:`cssutils.css.URIValue` replaces CSSPrimitiveValue, additional attribute ``uri`` :class:`cssutils.css.DimensionValue` replaces CSSPrimitiveValue, additional attribute ``dimension`` :class:`cssutils.css.ColorValue` replaces CSSPrimitiveValue, additional attribute ``red``, ``green``, ``blue`` and ``alpha`` **TODO: Not yet complete, only rgb, rgba, hsl, hsla and has values use this object and color and alpha information no done yet!** :class:`cssutils.css.CSSFunction` replaces CSSPrimitiveValue function, not complete yet also renamed ``ExpressionValue`` to :class:`cssutils.css.MSValue` with new API - IMPROVEMENT/CHANGE: Validation of color values is tighter now. Values like ``hsl(1, 2, 3)`` do not validate as it must be ``hsl(1, 2%, 3%)``. This mostly effects HSL/A and RGB/A notation. - **IMPROVEMENT**: New Value parsing and API accelerate parsing of style declarations which take about 20-30% less time now. Of course this depends on the complexity of your styles. + BUGFIX: fixes issue #41, #42, #45, #46 PropertyValue.value returns value without any comments now, else use PropertyValue.cssText - FEATURE: ``cssutils.replaceUrls()`` accepts as first argument a `cssutils.css.CSSStyleSheet` but now also a :class:`cssutils.css.CSSStyleDeclaration` object, so may be used like the following which is useful when you work with HTML style attributes:: >>> style = cssutils.parseStyle("background-image: url(1.png), url('2.png')") >>> cssutils.replaceUrls(style, lambda url: 'prefix/'+url) >>> print style.cssText background-image: url(prefix/1.png), url(prefix/2.png) (I omitted the validation error message as more than one background-image is not yet defined in the cssutils validator but does parse through without problems) + CHANGE: explicit `+` of any dimension, percentage of number value is kept now instead of being stripped as if put explicitly in the author SHOULD have meant something ;)
2012-05-05Fix build with latest glib2dholland3-1/+33
2012-05-05Note update of www/contao211-translations package to 201205050.taca1-1/+2
2012-05-05Update contao211-translations to 201205050.taca3-23/+26
Update Bulgarian, Persian, Japanese, Swedish and Ukrainian language files. These language support Contao 2.11.3 except Bulgarian.
2012-05-05Not MAKE_JOBS_SAFE.dholland1-1/+3
2012-05-05Fix build with latest glib2.dholland2-1/+17
2012-05-05Updated devel/p5-Config-IniFiles to 2.71gls1-1/+2
2012-05-05Update devel/p5-Config-IniFiles to 2.71gls2-6/+8
Fixes CVE-2012-2451. pkgsrc changes: --------------- - p5-List-MoreUtils is required Upstream Changes: ----------------- Version 2.71: ( Wed May 2 10:59:04 IDT 2012 ) ------------------------------------------------ * SECURITY BUG FIX: Config::IniFiles used to write to a temporary filename with a predictable name ("${filename}-new") which opens the door for potential exploits. * Now requiring List::MoreUtils (for any() and other functions), File::Temp and File::Basename . * Add "use warnings;" to lib/Config/IniFiles.pm . * More refactoring. Version 2.70: ( Fri Apr 6 12:47:25 IDT 2012 ) ------------------------------------------------ * Fix the test dependency (in the new t/31comments_with_spaces.t test) on IO::stringy (now writing it to a file). - This caused some CPAN Testers failures such as: - http://www.cpantesters.org/cpan/report/c16b9978-7f40-11e1-9d6f-f6dbfa7543f5 * Modernized some of the open() calls in the test files. - three args open, lexcial file handles, etc. Version 2.69: ( Thu Apr 5 12:05:46 IDT 2012 ) ------------------------------------------------ * Fix https://sourceforge.net/tracker/?func=detail&aid=3388382&group_id=6926&atid=106926 - "Trailing comments with whitespace are not recognised" - Thanks to briconaut for the report and to rbowen for the patch and test. * Add the method ->OutputConfigToFileHandle which is a more explicit and safer version of ->OutputConfig. - ->OutputConfig now uses it. - all existing tests pass, and a new test was added to t/15store-and-retrieve-here-doc-terminator.t . * Started refactoring the code. - Expand tabs to spaces. - many other small changes.
2012-05-05Note update of www/contao211 package to 2.11.3.taca1-1/+2
2012-05-05Update contao211 to 2.11.3 (Contao 2.11.3).taca2-6/+6
pkgsrc change: install .htaccess as configuration file with .htaccess.default as an example. * Fix permission checking problem of Task center. * Provide improved .htaccess.default. * Several bug fixes and improvements.
2012-05-05Fix build with automake-1.12.wiz3-2/+18
While here, set LICENSE.
2012-05-05Added devel/p5-Test-Command-Simple version 0.03pettai1-1/+2
2012-05-05Added security/validns version 0.4pettai1-1/+2
2012-05-05Added validnspettai1-1/+2
2012-05-04Validns is a standalone command line RFC 1034/1035 zone file validationpettai6-0/+85
tool that, in addition to basic syntactic and semantic zone checks, includes DNSSEC signature verification and NSEC/NSEC3 chain validation, as well a number of optional policy checks on the zone.
2012-05-04Added p5-Test-Command-Simplepettai1-1/+2
2012-05-04This test module is intended to simplify testing of external commands.pettai3-0/+27
It does so by running the command under IPC::Open3, closing the stdin immediately, and reading everything from the command's stdout and stderr. It then makes the output available to be tested.
2012-05-04Add forgotten patches.joerg2-0/+34
2012-05-04Mark as broken, it just hangs around.joerg1-1/+3
2012-05-04Just use AT&T assembler syntax all the time.joerg2-5/+54
2012-05-04Fix missing prototypes. Fix conflicts with X11 headers.joerg5-77/+65
2012-05-04Fix inline usage.joerg14-2/+216
2012-05-04Fix a number of C issues.joerg5-4/+90
2012-05-04Sprinkle a tiny bit of ANSI C.joerg2-1/+15