summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-07-26Update from version 0.02 to 0.04.he2-9/+14
Pkgsrc changes: o Added full list of dependencies, from Makefile.PL. Upstream changes: 0.04 Sun Jun 15 16:22:32 JST 2008 * fixed a bug caused memory greediness with too long strings :< * improved internal code for PAUSE. 0.03 Sat Jun 14 19:17:30 JST 2008 * added support for Math::Random::MT::Perl. * switched to Module::Build. * cleaned up test scripts. * added 'binary' option to rndpassword.
2008-07-26Add p5-Math-Random-MT-Perl.he1-1/+2
2008-07-26Import p5-Math-Random-MT-Perl version 1.05.he3-0/+33
Pure Perl implementation of the Mersenne Twister algorithm as implemented in C/XS in Math::Random::MT. The output is identical to the C/XS version. The Mersenne Twister is a 32 bit pseudorandom number generator developed by Makoto Matsumoto and Takuji Nishimura. The algorithm is characterised by a very uniform distribution but is not cryptographically secure. What this means in real terms is that it is fine for modeling but no good for crypto.
2008-07-26Note ikiwiki update.schmonz2-3/+3
2008-07-26Update to 2.54. From the changelog:schmonz3-9/+12
2.54: * Make it possible to load setup files w/o running them. Code needing to do so can call IkiWiki::Setup::load, which will return a hash of values. * ikiwiki-transition: Fix command-line processing so the prefix_directives transition works again. * template: Add support for a BASENAME variable. * Fixes creation of pages when clicking on WikiLinks starting with "/". * Change deb dependencies to list Text::Markdown before markdown, since the former, while slower, has a much better html parser that avoids numerous bugs. * Move yesno function out of inline and into IkiWiki core, not exported. * Error handling improvement for preprocess hooks. It's now safe to call error() from such hooks; it will cause a nicely formatted error message to be inserted into the page. * Cut the size of the binary package in half by excluding pages for bugs and todo items from the html shipped in it. * parentlinks: New plugin, split out of ikiwiki core and enabled by default, and several new fields added to allow for advanced styling. (intrigeri) * smileys: Some fixes for escaped smileys. * smileys: Note that smileys need to be double-escaped for the escaping to work. Markdown removes one level of escaping. * Add a postscan hook. * search: Use postscan hook, avoid updating index when previewing. * git: Put web committer name/openid/address in the git author field. The committer's email address is not used (because leaking email addresses is not liked by many users). Closes: #451023 * git: Fix parsing of git logs with no commit messages at all. * search: Fixes for title stemming, and use better term for tags. (Rebuilding the wiki on upgrade to this version is recommended if you use the search plugin.) * meta, inline: Support guid options, to allow forcing a particular url or uuid in feeds. * meta: fix title() PageSpec * Some footer style changes. * aggregate: Add an `aggregateinternal` option, which allows storing aggregated data to internal-use files, rather than wiki pages. This can save disk space, and be faster. * ikiwiki-transition: Add a `aggregateinternal` transition to rename the aggregated files. 2.53: * search: generate configuration files once only when rebuilding * attachment: Fix an uninitialised value warning when editing a page that currently has no attachments. * Fix a bug with links to pages whose names contained colons. * attachment: Support old versions of CGI.pm that lack an upload method. * Include ikiwiki.setup in examples in the debian package. * attachment: Support perl 5.8's buggy version of CGI.pm. * otl: Support utf-8 files. (Recai Oktaş) 2.52: * attachment: New plugin for uploading and managing attachments. This includes a fairly powerful PageSpec based admin pref for deciding whether to accept a given upload, and an attachment management interface on the edit page. * If attachments are not enabled, configure CGI.pm to disable file uploads by default. (An anti-DOS measure.) * toggle: Add support for toggles that are open by default. * toggle: Fix to work in preview mode. * toggle: Add javascript to top of page, not to end. This avoids flicker since closed toggles will not be displayed as the page is loading. * The editpage form now uses the raw page name, not the page title, in its 'page' cgi parameter. Using the title was ambiguous and made it impossible to tell between some pages, like "foo/bar" and "foo__47__bar", sometimes causing the wrong page to be edited. * This change means that some edit links need to be updated. Force a rebuild on upgrade to this version. * Above change also allowed really fixing escaped slashes from the blogpost form. 2.51: * Improve toplevel parentlink to link directly to index.html when usedirs is disabled. * map: Add a "show" parameter. "show=title" can be used to display page titles, rather than the default page name. Based on a patch from Jaldhar H. Vyas, Closes: #484510 * hnb: New plugin, contributed by Axel Beckert. * meta: Store "description" in pagestate for use by other plugins. * map: Support show=description. * textile: The Text::Textile perl module has some regexps that fail if input is flagged as utf-8, but contains invalid characters such as 0x92. To prevent it from crashing, re-encode the content before calling it, which will ensure that it's really utf-8. * Version the suggests of xapian-omega to a version known to be new enough to work with ikiwiki. Reportedly, version 0.9.9 is too old to work. Closes: #486592 * creole: New plugin from Bernd Zeimetz. Closes: #486930 * aggregate: Add template parameter. * Add support for the universal edit button <http://universaleditbutton.org/> (To get this on all pages of an exiting wiki, rebuild the wiki.) * txt: New plugin, contributed by Gabriel McManus. * smiley: Generate links relative to the destpage. (Fixes a reversion from 2.41.) * toc: Revert change in 2.45 that made it run at sanitize time. That broke use of toc in a sidebar. * Call format hooks when generating page previews, thus fixing toc display there, as well as fixing inlins to again display in page previews, since it's started using format hooks. This also allows several other things, like embed, that use format hooks, to work during page preview time. * Format hooks should not rely on getting an entire html document, as they will only get the body during page preview. * toggle: Deal with preview mode when adding javascript. 2.50: * img: Support captions. * img: Don't generate empty title attributes, etc. * img: Allow setting defaults for class and id too. * ikiwiki-mass-rebuild: Make group list comparison more robust. * search: Work around xapian bug #486138 by only stemming locales in a whitelist. 2.49: * haiku: Generate valid xhtml. * ikiwiki-mass-rebuild: Don't trust $! when setting $) * inline: The optimisation in 2.41 broke nested inlines. Detect those and avoid overoptimising. * search: Converted to use xapian-omega. * Filter hooks are no longer called during the scan phase. This will prevent wikilinks added by filters from being scanned properly. But no known filter hook does that, so let's not waste time on it. * Pass a destpage parameter to the sanitize hook. * The search interface now allows searching for a page by title ("title:foo"), as well as for pages that contain a given link ("link:bar").
2008-07-26Add p5-CLASS.he1-1/+2
2008-07-26Import p5-CLASS version 1.00 (from pkgsrc-wip, more or less).he3-0/+24
CLASS and $CLASS are both synonyms for __PACKAGE__. Easier to type. $CLASS has the additional benefit of working in strings.
2008-07-26Update from version 3.10 to 3.12.he2-6/+6
Changes: Version: 3.12 - Makefile.PL If no mod_perl version is found, just require mod_perl2. This makes sure that CPAN testers will get the right dependencies. way. Also set up PREREQ_PM properly for mod_perl version 1. Version: 3.11 - Fix tiny pod doc error. - Escape CR and LF in 'destination' field to prevent possible XSS attack [Steffen Schwigon]
2008-07-26Update from version 6.30 to 6.44.he6-145/+52
Update discussed in general terms with jlam@. Pkgsrc changes: o Some of our changes appear to have been adopted upstream, so patch-aa is gone and other diffs are reduced in size. o We don't install or tweak perllocal.pod, so comment out the testing of it being installed in the selftests. Upstream changes: 6.44 Thu Feb 28 16:06:04 PST 2008 Bug Fixes * Updated bundled ExtUtils::Install to 1.45 which should fix some Cygwin issues. [rt.cpan.org 33291] 6.43_01 Tue Jan 1 16:06:47 PST 2008 Bug Fixes * Change the "is this really a Perl core library directory" checks to look for strict instead of Exporter. Now that Exporter is on CPAN it can wind up in site_perl. * split_command() will now set aside a little more space for macro expansion. This should help on systems with cramped command line lengths. Specifically, Pugs on Win32. [rt.cpan.org 20145] Installation * MakeMaker would not install if the installed MakeMaker was too old, like on 5.6.1. The installation process was still using the installed MakeMaker in a few places. This has been fixed. [rt.cpan.org 24746] OS X * "make dist" will no longer bundle up resource fork files (._foo). [rt.cpan.org 29525] Docs * The documentation of VERSION_FROM was recommending vstrings (1.2.3) which have never worked right. * The documentation for the accepted values of LICENSE moved to Module::Build::API. [rt.cpan.org 32020] Tests * The compilation test was testing the installed modules, not the about-to-be-installed. * xs.t would fail if ExtUtils::CBuilder was not installed. Misc * Cleanups brought to you by no more 5.5 compatibility! * MakeMaker is now perlcritic clean at severity level 5... except the really silly ones. * DIE use vars DIE! * Added some resources to the META.yml 6.42 Fri Dec 7 17:00:14 PST 2007 Bug Fixes - 6.33 moved PREREQ_FATAL to happen after CONFIGURE. This meant if your CONFIGURE use a prereq it would fail and no PREREQ_FATAL message would be displayed. - Put the "nicetext" functionality back, VMS needs it to deal with other people's custom make. But rename it to the more accurate maketext_filter(), test it and fix a bug where it would stop processing if it saw a macro declaration. 6.40 Thu Dec 6 03:00:47 PST 2007 Bug Fixes - Remove the dubious nicetext() Makefile formatting hack to account for a lack of space between the target and colon needed on VMS. This interfered with META.yml creation on VMS and possibly other output. - Fix the remaining targets which don't have a space between the target and the colon. 6.38 Wed Nov 28 16:01:12 PST 2007 Releasing 6.37_03 as 6.38. 6.37_03 Mon Nov 26 14:15:34 PST 2007 Tests - parse_version.t had wrong test count when version.pm isn't installed. - Fixed some warnings in the XS module we're using for testing. - "our $VERSION" test in parse_version.t was never running - Quoting uses of 1.2.3 style versions in parse_version.t to protect older perls. Portability - Moved the minimum required version up to 5.6.0. 6.37_02 Sun Nov 25 23:33:14 PST 2007 Test Improvements - Added a test for a basic XS build. Bug Fixes - A refactoring in 6.37_01 broke XS compilation. 6.37_01 Sun Nov 25 17:05:53 PST 2007 Improvements - Upgraded the META.yml to version 1.3 of the spec (which really doesn't change anything). Thanks bdfoy. - MakeMaker now always includes the required 'author' field in the META.yml even if it's undef to comply with the META.yml spec. - Updated ExtUtils-Install to latest version (1.44) - Unified the version numbers of all modules. Test Fixes - cd() test on VMS used non-native paths. [bleadperl 31534] - Removed uses of "no_plan" in tests to remain compatible with old versions of Test::Harness. - writemakefile_args.t had the wrong test count if version.pm isn't installed. Bug Fixes - $VERSION detection code would be confused by "sub version" [rt.cpan.org 30747] - LINKTYPE=static will now be propagated to child builds. [bleadperl 31761] Portability Fixes - Add "dragonfly" to the list of BSDish operating systems - BSD detection code would not pick up bsdos or internix - Fix detection of shared libperl on NetBSD [bleadperl 31526] 6.36 Tue Jul 3 01:06:40 PDT 2007 Test Fixes - version.pm prior to 0.7203 caused Foo->VERSION to reformat $Foo::VERSION. This caused prereq.t to fail. 6.35 Sun Jul 1 20:53:38 PDT 2007 New Features * MakeMaker will now try to "use version" before parsing $VERSION. This allows "$VERSION = qv(1.2.3)" to work. Test Fixes - writemakefile_args.t now works with older versions of version.pm 6.34 Sat Jun 30 11:06:54 CDT 2007 Test Fixes - Accidentally hard coded the version of strict.pm [rt.cpan.org 27838]
2008-07-26Update net/liblive to 20080725tonio1-1/+2
2008-07-26Update net/liblive to liblive-20080725tonio2-6/+7
2008.07.25: - Minor bug fix to "MPEG2TransportStreamFramer" (reset "fTSPCRCount" in "doStopGettingFrames()"). (Thanks to Qiujian Shu for reporting this bug.) - Modified the previous changes to "QuickTimeFileSink" and "AVIFileSink" so that the "createNew()" functions return NULL if the output file cannot be opened. 2008.07.24: - Changed "MultiFramedRTPSource" to handle the very first packet that we receive as if there were packet loss beforehand. This ensures that we correctly discard any initial packets that we receive that occur after the start of a (multi-packet) frame. - Fixed "QuickTimeFileSink" and "AVIFileSink" to close the output file (if it's not stdout or stderr) in the destructor, 2008.07.22: - Fixed "MPEG2TransportStreamMultiplexor" to use an appropriate stream for our SCR, even if the input contained its own Program Stream Map. - More minor changes to the code to make Erik Hovland's code-checking tools happy. 2008.07.06: - Corrected one of Erik Hovland's memory leak fixes made to the previous revision.
2008-07-26Note initial addition of p5-Moose version 0.54 asseb1-1/+2
devel/p5-Moose into The NetBSD Packages Collection. Moose is an extension of the Perl 5 object system. The main goal of Moose is to make Perl 5 Object Oriented programming easier, more consistent and less tedious. With Moose you can to think more about what you want to do and less about the mechanics of OOP. Additionally, Moose is built on top of Class::MOP, which is a metaclass system for Perl 5. This means that Moose not only makes building normal Perl 5 objects better, but it provides the power of metaclass programming as well.
2008-07-26Add & enable p5-Mooseseb1-1/+2
2008-07-26Initial import of p5-Moose version 0.54 into The NetBSDseb3-0/+37
Packages Collection. Moose is an extension of the Perl 5 object system. The main goal of Moose is to make Perl 5 Object Oriented programming easier, more consistent and less tedious. With Moose you can to think more about what you want to do and less about the mechanics of OOP. Additionally, Moose is built on top of Class::MOP, which is a metaclass system for Perl 5. This means that Moose not only makes building normal Perl 5 objects better, but it provides the power of metaclass programming as well.
2008-07-26Note initial addition of p5-Class-MOP version 0.63 asseb1-1/+2
devel/p5-Class-MOP into The NetBSD Packages Collection. The Perl 5 module Class::MOP is a fully functioning meta object protocol for the Perl 5 object system. It makes no attempt to change the behavior or characteristics of the Perl 5 object system, only to create a protocol for its manipulation and introspection. It does attempt to create the tools for building a rich set of extensions to the Perl 5 object system
2008-07-26Add & enable p5-Class-MOPseb1-1/+2
2008-07-26Initial import of p5-Class-MOP version 0.63 into The NetBSDseb3-0/+36
Packages Collection. The Perl 5 module Class::MOP is a fully functioning meta object protocol for the Perl 5 object system. It makes no attempt to change the behavior or characteristics of the Perl 5 object system, only to create a protocol for its manipulation and introspection. It does attempt to create the tools for building a rich set of extensions to the Perl 5 object system
2008-07-26Note initial addition of p5-Sub-Identify version 0.03 asseb1-1/+2
devel/p5-Sub-Identify into The NetBSD Packages Collection. The Perl 5 module Sub::Identify allows you to retrieve the real name of code references.
2008-07-26Add & enable p5-Sub-Identifyseb1-1/+2
2008-07-26Initial import of p5-Sub-Identify version 0.03 into The NetBSDseb3-0/+24
Packages Collection. The Perl 5 module Sub::Identify allows you to retrieve the real name of code references.
2008-07-26Disable the installation of Git Gui.app under Darwintonio2-6/+23
2008-07-26Note initial addition of p5-Sub-Name version 0.04 as devel/p5-Sub-Nameseb1-1/+2
into The NetBSD Packages Collection. The Perl 5 module Sub::Name has only one function, subname, which assigns new names to subs.
2008-07-26Add & enable p5-Sub-Nameseb1-1/+2
2008-07-26Initial import of p5-Sub-Name version 0.04 into The NetBSDseb3-0/+23
Packages Collection. The Perl 5 module Sub::Name has only one function, subname, which assigns new names to subs.
2008-07-26Updated graphics/GraphicsMagick to 1.2.5obache1-1/+2
2008-07-26Note update of devel/p5-Getopt-Euclid to version 0.2.0seb1-1/+2
2008-07-26Update GraphicsMagick to 1.2.5.obache2-6/+6
1.2.5 (July 26, 2008) ===================== Security Fixes: * None. Bug fixes: * TIFF: Eliminated a memory leak in the codec support detection code. * JPEG: Removed over-write of image->client_data. * PNG: Fixed crash when writing PNG images with transparency and either optimize is requested, or the image is colormapped. Feature improvements: * A file extension proxy module is used to automatically map from common camera raw format extensions to dcraw so that camera RAW images are loaded automatically using 'dcraw' or similar program as defined via the 'dcraw' entry in delegates.mgk. * ThresholdImage() uses a new implementation backported from the development version which attempts to avoid unnecessary image updates.
2008-07-26Update to version 0.2.0.seb2-7/+7
Changes since last packaged version (0.1.0): 0.2.0 Sat Aug 4 17:22:31 2007 - Added fallback to $main::VERSION if version not specified in Pod (thanks Todd and Thomas) - Added non-zero exit value on bad arg list (thanks Toby) - Changed module behaviour: now removes identified arguments from @ARGV. on successful match (thanks Aran and Tim) - Allowed alternations everywhere (i.e. outside optionals too) - Allowed E<lt> and E<gt> in option specifiers (thanks Wes)
2008-07-26Note update of devel/p5-Smart-Comments to version 1.0.3seb1-1/+2
2008-07-26Update to version 1.0.3seb2-7/+7
Changes since last packaged version (1.0.2): 1.0.3 Fri Feb 22 17:25:30 2008 - Added -ENV config option (thanks Steven) - Added doc note about -MSmart::Comments approach (thanks David) - Smartened up vertical spacing of output (thanks Steve!)
2008-07-26Sort.kristerw1-2/+2
2008-07-25Update net/unison to 2.27.57tonio1-1/+2
Enable full destdir support
2008-07-25Update net/unison to 2.27.53tonio5-40/+30
Enable full destdir support. Changes since 2.17: * Several small fixes to the GTK2 UI to make it work better under Windows * The backup functionality has been completely rewritten. The external interface has not changed, but numerous bugs, irregular behaviors, and cross-platform inconsistencies have been corrected. * Some important safety improvements: o Added a new mountpoint preference, which can be used to specify a path that must exist in both replicas at the end of update detection o The confirmation of “big deletes” is now controlled by a boolean preference confirmbigdeletes. Default is true, which gives the same behavior as previously. (This functionality is at least partly superceded by the mountpoint preference, but it has been left in place in case it is useful to some people.) o If Unison is asked to “follow” a symbolic link but there is nothing at the other end of the link, it will now flag this path as an error, rather than treating the symlink itself as missing or deleted. This avoids a potentially dangerous situation where a followed symlink points to an external filesystem that might be offline when Unison is run (whereupon Unison would cheerfully delete the corresponding files in the other replica!). * Smaller changes: o Added forcepartial and preferpartial preferences, which behave like force and prefer but can be specified on a per-path basis. [Thanks to Alan Schmitt for this.] o A bare-bones self test feature was added, which runs unison through some of its paces and checks that the results are as expected. The coverage of the tests is still very limited, but the facility has already been very useful in debugging the new backup functionality (especially in exposing some subtle cross-platform issues). o Refined debugging code so that the verbosity of individual modules can be controlled separately. Instead of just putting '-debug verbose' on the command line, you can put '-debug update+', which causes all the extra messages in the Update module, but not other modules, to be printed. Putting '-debug verbose' causes all modules to print with maximum verbosity. o Removed mergebatch preference. (It never seemed very useful, and its semantics were confusing.) o Rewrote some of the merging functionality, for better cooperation with external Harmony instances. o Changed the temp file prefix from .# to .unison. o Compressed the output from the text user interface (particularly when run with the -terse flag) to make it easier to interpret the results when Unison is run several times in succession from a script. o Changed the order of arguments to the default diff command (so that the + and - annotations in diff's output are reversed). o Small fix to ctime (non-)handling in update detection under windows with fastcheck.
2008-07-25Update net/unison-devel to 2.30.4tonio1-1/+2
Enable full destdir support
2008-07-25Update net/unison-devel to 2.30.4tonio3-16/+17
Changelog: - Small fix to ctime (non-)handling in update detection under windows with fastcheck. - bugfixes Enable full destdir support
2008-07-25- bmp-musepack-1.2obache1-2/+1
2008-07-25-mpich-1.2.7p1 which has been done apparently.tonnerre1-2/+1
2008-07-25Updated audio/bmp-musepack to 1.2obache1-1/+2
2008-07-25Update bmp-musepack to 1.2.obache2-8/+8
1.2 General code refactoring Taglib dependency for ape/id3v1 tags Not using vfs anymore Lots of memleaks removed Various bugs corrected Safer multithreading Updated for libmpcdec-1.2 1.1.2 port to new C libmusepack
2008-07-25Update pkglint to 4.87.dillo1-1/+2
2008-07-25Update to 4.87:dillo2-3/+16
- Add explanation for "Unquoted shell variable" warning. Patch by rillig.
2008-07-25Note revision bump of libmpcdec related packages.obache1-1/+5
2008-07-25Revision bump due to ABI changes of audio/libmpcdec.obache4-6/+9
2008-07-25Updated audio/libmpcdec to 1.2.6obache1-1/+2
2008-07-25Update libmpcdec to 1.2.6.obache3-9/+11
While here, add DESTDIR support. 1.2.6 * Fix an infinite loop regression from 1.2.3 * Fix possible noise at the beginning of files 1.2.5 * Properly increase API version since it has changed since 1.2.3 Apps compiled with 1.2.2 WILL BREAK when used with 1.2.3 & 1.2.4 libs installed
2008-07-25Add DESTDIR support.obache1-7/+8
2008-07-25Note updates of libzip to 0.9 and ckmame to 0.10.dillo1-1/+3
2008-07-25update to 0.10:dillo2-7/+9
- use SQLite3 instead of Berkeley DB - optionally TorrentZip ROM set - mkmamedb: add support for ROM Management Datafile format - mkmamedb: add support to read dat files from zip archives - mkmamedb: extract version and game description from listxml output - ckmame: fix finding ROMs that need detectors from superfluous and extra - change to 3-clause BSD license
2008-07-25Update to 0.9:dillo3-7/+11
* remove erroneous references to GPL * add support for torrentzip * new functions: zip_get_archive_flag, zip_set_archive_flag * zip_source_zip: add flag to force recompression * zip_sorce_file: only keep file open while reading from it
2008-07-25Removal of python23-nth.joerg6-72/+3