summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2009-10-11bzr-svn 1.0.0 2009-09-24epg2-7/+7
PERFORMANCE * Avoid re-fetching the basis inventory during fetch. (Jelmer Vernooij) BUG FIXES * Generate valid inventory delta's when the root of a tree is replaced with an older copy of itself. (Jelmer Vernooij) * Hide backtrace for EAI_NONAME errors. (John Szakmeister) * Allow commits without an author. (Jelmer Vernooij, #434230) * Cope with extra arguments to Repository._check(). (Jelmer Vernooij) * Properly encode symlink targets when pushing. (Jelmer Vernooij) bzr-svn 1.0.0rc1 2009-09-20 FEATURES * Mark as compatible with Bazaar 2.0. (Jelmer Vernooij) BUG FIXES * Cope with InProcessTransport errors during format probe. (Jelmer Vernooij, #433803) bzr-svn 0.6.5 2009-09-01 API CHANGES * Removed unused SvnRepository.find_children() function. (Jelmer Vernooij) FEATURES * Mark as compatible with bzr 1.18. (Jelmer Vernooij)
2009-10-11September 3 2009epg2-7/+7
* RELEASE: bzrtools 2.0.0
2009-10-11bzr 2.0.0epg3-14/+32
######### :2.0.0: 2009-09-22 :Codename: Instant Karma This release of Bazaar makes the 2a (previously 'brisbane-core') format the default when new branches or repositories are created. This format is substantially smaller and faster for many operations. Most of the work in this release focuses on bug fixes and stabilization, covering both 2a and previous formats. (See the Upgrade Guide for information on migrating existing projects.) This release also improves the documentation content and presentation, including adding Windows HtmlHelp manuals. The Bazaar team decided that 2.0 will be a long-term supported release, with bugfix-only 2.0.x releases based on it, continuing for at least six months or until the following stable release. Changes from 2.0.0rc2 to final ****************************** * Officially branded as 2.0.0 rather than 2.0 to clarify between things that "want to happen on the 2.0.x stable series" versus things that want to "land in 2.0.0". (Changes how bzrlib._format_version_tuple() handles micro = 0.) (John Arbash Meinel) bzr 2.0.0rc2 ############ :2.0.0rc2: 2009-09-10 New Features ************ * Added post_commit hook for mutable trees. This allows the keywords plugin to expand keywords on files changed by the commit. (Ian Clatworthy, #408841) Bug Fixes ********* * Bazaar's native protocol code now correctly handles EINTR, which most noticeably occurs if you break in to the debugger while connected to a bzr+ssh server. You can now can continue from the debugger (by typing 'c') and the process continues. However, note that pressing C-\ in the shell may still kill the SSH process, which is bug 162509, so you must sent a signal to the bzr process specifically, for example by typing ``kill -QUIT PID`` in another shell. (Martin Pool, #341535) * ``bzr check`` in pack-0.92, 1.6 and 1.9 format repositories will no longer report incorrect errors about ``Missing inventory ('TREE_ROOT', ...)`` (Robert Collins, #416732) * ``bzr info -v`` on a 2a format still claimed that it was a "Development format" (John Arbash Meinel, #424392) * ``bzr log stacked-branch`` shows the full log including revisions that are in the fallback repository. (Regressed in 2.0rc1). (John Arbash Meinel, #419241) * Clearer message when Bazaar runs out of memory, instead of a ``MemoryError`` traceback. (Martin Pool, #109115) * Conversion to 2a will create a single pack for all the new revisions (as long as it ran without interruption). This improves both ``bzr upgrade`` and ``bzr pull`` or ``bzr merge`` from local branches in older formats. The autopack logic that occurs every 100 revisions during local conversions was not returning that pack's identifier, which resulted in the partial packs created during the conversion not being consolidated at the end of the conversion process. (Robert Collins, #423818) * Fetches from 2a to 2a are now again requested in 'groupcompress' order. Groups that are seen as 'underutilized' will be repacked on-the-fly. This means that when the source is fully packed, there is minimal overhead during the fetch, but if the source is poorly packed the result is a fairly well packed repository (not as good as 'bzr pack' but good-enough.) (Robert Collins, John Arbash Meinel, #402652) * Fix a potential segmentation fault when doing 'log' of a branch that had ghosts in its mainline. (Evaluating None as a tuple is bad.) (John Arbash Meinel, #419241) * Fix a segmentation fault when computing the ``merge_sort`` of a graph that has a ghost in the mainline ancestry. (John Arbash Meinel, #419241) * ``groupcompress`` sort order is now more stable, rather than relying on ``topo_sort`` ordering. The implementation is now ``KnownGraph.gc_sort``. (John Arbash Meinel) * Local data conversion will generate correct deltas. This is a critical bugfix vs 2.0rc1, and all 2.0rc1 users should upgrade to 2.0rc2 before converting repositories. (Robert Collins, #422849) * Network streams now decode adjacent records of the same type into a single stream, reducing layering churn. (Robert Collins) * Prevent some kinds of incomplete data from being committed to a 2a repository, such as revisions without inventories, a missing chk_bytes record for an inventory, or a missing text referenced by an inventory. (Andrew Bennetts, #423506, #406687) Documentation ************* * Fix assertion error about "_remember_remote_is_before" when pushing to older smart servers. (Andrew Bennetts, #418931) * Help on hooks no longer says 'Not deprecated' for hooks that are currently supported. (Ian Clatworthy, #422415) * PDF and CHM (Windows HtmlHelp) formats are now supported for the user documentation. The HTML documentation is better broken up into topics. (Ian Clatworthy) * The developer and foreign language documents are now separated out so that searching in the HTML and CHM files produces more useful results. (Ian Clatworthy) * The main table of contents now provides links to the new Migration Docs and Plugins Guide. (Ian Clatworthy) bzr 2.0.0rc1 ############ :Codename: no worries :2.0.0rc1: 2009-08-26 Compatibility Breaks ******************** * The default format for bzr is now ``2a``. This format brings many significant performance and size improvements. bzr can pull from any existing repository into a ``2a`` one, but can only transfer from ``2a`` into ``rich-root`` repositories. The Upgrade guide has more information about this change. (Robert Collins) * On Windows auto-detection of Putty's plink.exe is disabled. Default SSH client for Windows is paramiko. User still can force usage of plink if explicitly set environment variable BZR_SSH=plink. (#414743, Alexander Belchenko) New Features ************ * ``bzr branch --switch`` can now switch the checkout in the current directory to the newly created branch. (Lukáš Lalinský) Bug Fixes ********* * Fetches were being requested in 'groupcompress' order, but weren't recombining the groups. Thus they would 'fragment' to get the correct order, but not 'recombine' to actually benefit from it. Until we get recombining to work, switching to 'unordered' fetches avoids the fragmentation. (John Arbash Meinel, #402645) * Fix a pycurl related test failure on karmic by recognizing an error raised by newer versions of pycurl. (Vincent Ladeuil, #306264) * Fix a test failure on karmic by making a locale test more robust. (Vincent Ladeuil, #413514) * Fix IndexError printing CannotBindAddress errors. (Martin Pool, #286871) * Fix "Revision ... not present" errors when upgrading stacked branches, or when doing fetches from a stacked source to a stacked target. (Andrew Bennetts, #399140) * ``bzr branch`` of 2a repositories over HTTP is much faster. bzr now batches together small fetches from 2a repositories, rather than fetching only a few hundred bytes at a time. (Andrew Bennetts, #402657) Improvements ************ * A better description of the platform is shown in crash tracebacks, ``bzr --version`` and ``bzr selftest``. (Martin Pool, #409137) * bzr can now (again) capture crash data through the apport library, so that a single human-readable file can be attached to bug reports. This can be disabled by using ``-Dno_apport`` on the command line, or by putting ``no_apport`` into the ``debug_flags`` section of ``bazaar.conf``. (Martin Pool, Robert Collins, #389328) * ``bzr push`` locally on windows will no longer give a locking error with dirstate based formats. (Robert Collins) * ``bzr shelve`` and ``bzr unshelve`` now work on windows. (Robert Collins, #305006) * Commit of specific files no longer prevents using the the iter_changes codepath. On 2a repositories, commit of specific files should now be as fast, or slightly faster, than a full commit. (Robert Collins) * The internal core code that handles specific file operations like ``bzr st FILENAME`` or ``bzr commit FILENAME`` has been changed to include the parent directories if they have altered, and when a directory stops being a directory its children are always included. This fixes a number of causes for ``InconsistentDelta`` errors, and permits faster commit of specific paths. (Robert Collins, #347649) Documentation ************* * New developer documentation for content filtering. (Martin Pool) API Changes *********** * ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its classes changed to manage lock lifetime of the trees they open in a way consistent with reader-exclusive locks. (Robert Collins, #305006) Internals ********* Testing ******* bzr 1.18.1 ########## :Codename: nein nein nein! :1.18.1: 2009-09-09 This release fixes two small but worthwhile bugs relevant to users on Microsoft Windows: some commands that failed on with locking errors will now work, and a bug that caused poor performance after committing a file with line-ending conversion has now been fixed. It also fixes a bug in pushing to older servers. Bug Fixes ********* * Fixed a problem where using content filtering and especially end-of-line conversion will commit too many copies a file. (Martin Pool, #415508) * Fix assertion error about ``_remember_remote_is_before`` in ``set_tags_bytes`` when pushing to older smart servers. (Andrew Bennetts, Alexander Belchenko, #418931) Improvements ************ * ``bzr push`` locally on Windows will no longer give a locking error with dirstate based formats. (Robert Collins) * ``bzr shelve`` and ``bzr unshelve`` now work on Windows. (Robert Collins, #305006) API Changes *********** * ``bzrlib.shelf_ui`` has had the ``from_args`` convenience methods of its classes changed to manage lock lifetime of the trees they open in a way consistent with reader-exclusive locks. (Robert Collins, #305006) * ``Tree.path_content_summary`` may return a size of None, when called on a tree with content filtering where the size of the canonical form cannot be cheaply determined. (Martin Pool)
2009-10-11fix typosno1-2/+2
2009-10-11Updating devel/p5-Class-ISA from 0.34 to 0.36sno2-6/+6
Upstream changes: 2009-09-29 Steffen Mueller smueller@cpan.org * Release 0.36 -- fix installation dirs. 2009-09-26 Steffen Mueller smueller@cpan.org * Release 0.35 -- minor documentation nit.
2009-10-11Updating devel/p5-File-Path from 2.07 to 2.08sno2-6/+7
pkgsrc changes: - Adding license definition Upstream changes: 2.08 2009-10-04 10:14:36 UTC - make_path() can now set user- and group-ownership on created directories. (Suggested by Jens Rehsack, CPAN #47558). 2.07_03 2009-06-21 13:11:30 UTC - Merged 2.07_02 patches from blead - Remove stat checks on Windows platform (inhibits UNC path removals from working, and Windows is immune to this particular attack). CPAN #34701
2009-10-11- allow firefox and xulrunner to share some infrastructuretnn8-76/+156
- install headers for plugin and liveconnect (needed by openjdk7-icedtea-plugin) - bump revision for both packages
2009-10-11Updating devel/p5-Variable-Magic from 0.37 to 0.38sno2-6/+6
Upstream changes: 0.38 2009-10-04 16:10 UTC + Dep : All the signature-related features are DEPRECATED and will be removed in december 2009. This includes the 'sig' option to wizard(), the getsig() and gensig() functions, and the SIG_* constants. Afaik those features were never used in real life, and they make the XS code slow and brittle. If you want your wizards to be globally available, you'll have to handle that yourself by storing them in a hash. + Doc : More examples in a new COOKBOOK section. + Fix : Compatiblity with the 5.11.0 release. The new compatibility constant VMG_COMPAT_ARRAY_PUSH_NOLEN_VOID was added to cover this. + Fix : Work around Kwalitee test misfailures.
2009-10-11Updating devel/p5-ExtUtils-ParseXS from 2.20.04.01 to 2.21sno2-7/+7
Upstream changes: 2.21 - Mon Oct 5 11:17:53 EDT 2009 Bug fixes: - Adds full path in INCLUDE #line directives (RT#50198) [patch by "spb"] Other: - Updated copyright and maintainer list 2.20_07 - Sat Oct 3 11:26:55 EDT 2009 Bug fixes: - Use "char* file" for perl < 5.9, not "char[] file"; fixes mod_perl breakage due to prior attempts to fix RT#48104 [David Golden] 2.20_06 - Fri Oct 2 23:45:45 EDT 2009 Bug fixes: - Added t/typemap to fix broken test on perl 5.6.2 [David Golden] - More prototype fixes for older perls [Goro Fuji] - Avoid "const char *" in test files as it breaks on 5.6.2 [Goro Fuji] Other: - Merged changes from 2.2004 maintenance branch (see 2.200401 to 2.200403) [David Golden] 2.20_05 - Sat Aug 22 21:46:56 EDT 2009 Bug fixes: - Fix prototype related bugs [Goro Fuji] - Fix the SCOPE keyword [Goro Fuji]
2009-10-11Updating devel/p5-Date-Calc from 5.8 to 6.0sno2-6/+6
Upstream changesi (since 5.8): Version 6.0 07.10.2009 + Added new functions "N_Delta_YMDHMS()", "Add_N_Delta_YMD()" and "Add_N_Delta_YMDHMS()" to "Date::Calc" + Added more tests to "t/f037.t" for these new functions + Added a new "normalized" mode to "Date::Calc::Object" which uses the new functions "N_Delta_YMD()", "N_Delta_YMDHMS()", "Add_N_Delta_YMD()" and "Add_N_Delta_YMDHMS()" + Added test scripts "t/m012.t" and "t/m013.t" for this new mode + The language can now be set individually for each function in "Date::Calc" that requires it (through a new optional parameter; the default continues to be a global setting for backward compatibility); the affected functions are: "Decode_Month()", "Decode_Day_of_Week()", "Compressed_to_Text()", "Date_to_Text()", "Date_to_Text_Long()", "Calendar()", "Month_to_Text()", "Day_of_Week_to_Text()", "Day_of_Week_Abbreviation()", "Decode_Date_EU()", "Decode_Date_US()", "Decode_Date_EU2()", "Decode_Date_US2()", "Parse_Date()". + BEWARE that the interface of "DateCalc.c" has changed! + Module "Date::Calc::Object" has been changed similarly + Module "Date::Calendar::Year" has also been adapted accordingly + Many test scripts have been changed to reflect the modifications in "Date::Calc", "Date::Calc::Object" and "Date::Calendar::Year" and more test cases have been added + Updated the documentation to reflect all changes + Updated version numbers of dependencies in "t/f000.t"
2009-10-11Updating devel/p5-Bit-Vector from 7.0 to 7.1sno2-6/+6
Upstream changes: Version 7.1 29.09.2009 + Added prefix "BV_" to all global identifiers in "BitVector.c", "BitVector.h" and "Vector.xs"
2009-10-11Updating devel/p5-MooseX-Getopt from 0.22nb1 to 0.23sno2-7/+7
pkgsrc changes: - add newly imported devel/p5-MooseX-ConfigFromFile as test depend Upstream changes: 0.23 Fri. Oct 02 2009 * MooseX::Getopt - Allow the config file to be a code ref which is called to return the config file location (Gordon Irving)
2009-10-11+ fossil, p5-IMDB-Film.wiz1-1/+3
2009-10-11Updating devel/p5-MooseX-Method-Signatures from 0.27nb1 to 0.28sno2-7/+6
Upstream changes: 0.28 Fri, 09 Oct 2009 01:28:02 +0200 * Fix default values for named arguments.
2009-10-11Initial import of p5-IMDB-Film-0.41:wiz4-0/+45
IMDB::Film is OO Perl interface to the database of films IMDB (www.imdb.com). It allows to retrieve information about movies by its IMDB code or title. Also, there is a possibility to get information about IMDB persons (actors, actresses, directors, etc.) by their name of code.
2009-10-11Initial import of fossil-200909211920:wiz4-0/+73
There are plenty of open-source version control systems available on the internet these days. What makes Fossil worthy of attention? 1. Bug Tracking And Wiki - In addition to doing distributed version control like Git and Mercurial, Fossil also supports distributed bug tracking and distributed wiki all in a single integrated package. 2. Web Interface - Fossil has a built-in and easy-to-use web interface that simplifies project tracking and promotes situational awareness. Simply type "fossil ui" from within any check-out and Fossil automatically opens your web browser in a page that gives detailed history and status information on that project. 3. Autosync - Fossil supports "autosync" mode which helps to keep projects moving forward by reducing the amount of needless forking and merging often associated distributed projects. 4. Self-Contained - Fossil is a single stand-alone executable that contains everything needed to do configuration management. Installation is trivial: simply download a precompiled binary for Linux, Mac, or Windows and put it on your $PATH. Easy-to-compile source code is available for users on other platforms. Fossil sources are also mostly self-contained, requiring only the "zlib" library and the standard C library to build. 5. Simple Networking - Fossil uses plain old HTTP (with proxy support) for all network communications, meaning that it works fine from behind restrictive firewalls. The protocol is bandwidth efficient to the point that Fossil can be used comfortably over a dial-up internet connection. 6. CGI Enabled - No server is required to use fossil. But a server does make collaboration easier. Fossil supports three different yet simple server configurations. The most popular is a 2-line CGI script. This is the approach used by the self-hosting fossil repositories. 7. Robust & Reliable - Fossil stores content in an SQLite database so that transactions are atomic even if interrupted by a power loss or system crash. Furthermore, automatic self-checks verify that all aspects of the repository are consistent prior to each commit. In over two years of operation, no work has ever been lost after having been committed to a Fossil repository.
2009-10-11Updating devel/p5-Mouse from 0.32nb1 to 0.37sno2-13/+12
pkgsrc changes: - adjusting dependencies (according to META.yml/Makefile.PL) Upstream changes: 0.37 Mon Sep 28 10:48:27 2009 * Ensure backward compatibility by author/test-externa.pl (gfx) * Change the algorithm of has_method() for backward compatibility (gfx) * $ENV{MOUSE_VERBOSE}=1 for Moose-compatible warnings (gfx) 0.36 Sun Sep 27 16:53:06 2009 * Fix an issue that breaks backward compatibility (gfx) - MouseX::Attribute does work, although make tests doesn't pass 0.35 Sat Sep 26 12:38:27 2009 * Work around Test::Exception 0.27_0x by including authorized ver. (gfx) 0.34 Fri Sep 25 21:55:48 2009 * Make sure to work on 5.6.2 (gfx) * Remove Class::Method::Modifiers dependency (gfx) * Remove testing modules from inc/ (gfx) * Put t/019-handles.t on ice (gfx) 0.33_01 Thu Sep 24 16:16:57 2009 * Implement traits => [...] in has() (gfx) 0.33 Wed Sep 23 15:06:40 2009 * Fix RT #49902: 0.32 fails tests reported by GRUBER (gfx) * Add some tests
2009-10-11Update to 0.14.3, and fix MASTER_SITES.wiz2-10/+9
0.14.3 - 2009-10-02 ------------------- Bugfixes release. * qcommit: * Fixed bug with inability of run qcommit /path/to/tree/root after merge. (#433137, Alexander Belchenko) * qlog: * Ensure that tree objects correctly locked when checking for directories. (#436467, Gary van der Merwe) 0.14.2 - 2009-09-16 ------------------- Bugfixes. * qlog: * Fixed couple of problems with proper rendering of branch labels when inspecting log for several branches (e.g. in shared repo). * qmerge, qcommit, ...: * Fixed a bug where we create the QApp after opening a Branch, but we had already installed the QUIFactory(). A branch can be a lightweight checkout of a remote location which requires a password. Which wants to open a UI dialog, which causes a crash because QApp has not been created yet. (#430232, John Arbash Meinel) 0.14.1 - 2009-09-10 ------------------- Maintenance release: * qannotate: * Fixed a bug when annotating a file in a branch with no working tree. (Bug 419477) * Fixed a bug were the logwidget would crash trying to render some graphs. (Bug 417895) * Fixed a bug were it was not possible to annotate files that have been deleted. (Bug 419790) * Fixed a bug where opening a per file diff would crash with a ObjectNotLocked error in a 2a branch. (Bug 426688) * qlog: * Fixed a bug where it was not possible to do any file list context menu actions on a file that was renamed in the revision that you were viewing. (Bug 418340) * Fixed a graph layout bug, where if the first revions of a brach was filter, there was no non direct line to it. (Bug 417895) * Removed superfluous twisties at the end of a filterted branch line. (Bug 419784) * Fixed a bug where branch lables would show on the wrong revisions. (Bug 423201) * qcommit: * Show a friendly error message when tring to commit a specific file, and there are pending merges. (Bug 417210) * qbrowse: * Fixed a bug where the window would crash with a ObjectNotLocked error when expanded a folder in a 2a branch. (Bug 424258) * Handle errors raised from _qbzr_run methods and the __init__ methods that they call, so that ui-mode is honoured when they are reported. (Bug 420534)
2009-10-11Update to 0.4.2:wiz2-6/+6
This release fixes issues related to Python 2.5 and 64 bits machines. It also fixes some issues in the treatment of return codes of some libusb functions. As PyUSB 1.0 is under development, PyUSB 0.x is in bug fixes only mode. This means that no additional future is planned for this branch.
2009-10-11Updating devel/p5-MooseX-MethodAttributes from 0.16nb1 to 0.18sno2-9/+10
pkgsrc changes: - Adjusting dependencies Upstream changes: 0.18 Fri, 25 Sep 2009 10:51:24 +0100 * Bump Test::More dependency to 0.88 for done_testing * Require namespace::autoclean for t/late_reinitialize.t 0.17 Wed, 23 Sep 2009 15:35:50 +0100 * Bump MooseX::Types version to 0.20 to avoid warnings with newer Moose releases
2009-10-11Updating devel/p5-Moose from 0.91nb1 to 0.92sno2-8/+7
pkgsrc changes: - requiring new Class::MOP (0.94) Upstream changes: 0.92 Tue, Sep 22, 2009 * Moose::Util::TypeConstraints - added the match_on_type operator (Stevan) - added tests and docs for this (Stevan) * Moose::Meta::Class - Metaclass compat fixing should already happen recursively, there's no need to explicitly walk up the inheritance tree. (doy) * Moose::Meta::Attribute - Add tests for set_raw_value and get_raw_value. (nothingmuch)
2009-10-11Updating devel/p5-Params-Validate from 0.91nb2 to 0.92sno2-11/+16
pkgsrc changes: - Adjusting license - Adjusting dependencies Upstream changes: 0.92 Sep 25, 2009 - Switched to Module::Build and don't try to detect a compiler. If you want to force a Perl-only build, run the Build.PL as "perl Build.PL --pp". Addresses RT #44719 (more or less), Reported by Olivier Mengu'e. - Require Scalar::Util 1.10, since that is the first version with looks_like_number. Reported by Olivier Mengu'e. RT #45103. - Require Attribute::Handlers 0.79. Reported by Olivier Mengu'e. RT #44066.
2009-10-11Updating devel/p5-Class-C3-XS from 0.11 to 0.13sno2-7/+7
pkgsrc changes: - Adjusting license Upstream changes: 0.13 Thu Sep 24, 2009 - Release 0.12_03 as a stable release, without further modifications. 0.12_03 Mon Sep 21, 2009 - Fix compatibility with perl 5.6.x. Thanks again, Nicholas. 0.12_02 Mon Sep 7, 2009 - Actually ship with the changes 0.12_01 claimed to have. Thanks for catching this, Nicholas. 0.12_01 Sat Aug 22, 2009 - Backport a couple of performance tweaks from bleadperl. This gives a performance improvement of about 40% in calculating the linearized isa for hierarchies with single parents only.
2009-10-11Updating devel/p5-Cache-Memcached from 1.26 to 1.27sno2-7/+7
pkgsrc changes: - Adjusting license Upstream changes: 2009-09-22: version 1.27 * Fix get() with utf-8 keys (athomason) * "stats malloc" command is gone in 1.4; remove those tests (athomason) * Add append/prepend support (dormando) * Fix occasional failure in the 100_flush_bug.t test (Ask Bjorn Hansen)
2009-10-11Update KDE4 to 4.3.2markd2-7/+5
KDE 4.3.2 brings a nice number of bugfixes, some critical, some just fixing small annoyances: * Many crashers have been fixed in KDE's core libraries, bringing more stability to all applications * KWin's window compositing effects have been further stabilized by fixing a number of bugs in effect plugins such as the famous coverswitch window switcher * The biggest number of bugs for this release has been fixed in KMail, KDE's email client, making it more reliable and usable by correcting a number of display issues * Saving files over themselves works again in Okular, KDE's document viewer
2009-10-11Updating devel/p5-File-Which from 1.08 to 1.09sno2-6/+6
Upstream changes: 1.09 Sun 27 Sep 2009 - Set svn:executable for the exe files so cygwin tests work
2009-10-11Updating devel/p5-Class-MOP from 0.93 to 0.94sno2-7/+7
pkgsrc changes: - requiring more actual p5-Test-Simple (0.88) according to META.yml Upstream changes: 0.94 Tue, Sep 22, 2009 * Class::MOP::Attribute - Introduce set_raw_value and get_raw_value, side effect free variants of {get,set}_value. These don't do anything useful in Class::MOP but have different behavior that set_value and get_value for Moose attributes. (nothingmuch)
2009-10-11Fix nss build on FreeBSDsno3-1/+81
2009-10-11avoid gzip dependencytnn2-1/+17
2009-10-10add common Makefile fragment for mozilla packages based on gecko 1.9.1,tnn1-0/+66
such as xulrunner-1.9.1, firefox-3.5, thunderbird-3.0 and seamonkey-2.0. Nothing in the tree uses this file yet. Having it here now makes for one less pullup later.
2009-10-09Unused file.joerg1-1113/+0
2009-10-08Set PKG_DESTDIR_SUPPORT to 'no'. I had set it to user-destdir but itdarcy1-2/+2
failed on some ports. I guess I don't understand PKG_DESTDIR_SUPPORT so I will just set it to 'no' like others do.
2009-10-08Redo fix for leaking .buildlink references in a more generic fashion byjoerg2-10/+8
using the real path in CPPFLAGS etc. The wrapper framework will translate those back. Add some more substitutions for additional directories to help other packages being destdir safe.
2009-10-07Provide --mode for libtool.joerg2-1/+22
2009-10-07More gtkdoc-rebase workaround.sketch1-1/+5
2009-10-07Remove unused SITE_LISP.taca1-3/+1
2009-10-06remove three files which were listed twice in the PLISTtnn1-4/+1
2009-10-06Not MAKE_JOBS ready.joerg1-1/+3
2009-10-06Don't use the buildlink fake gnustep directory here as it would leakjoerg2-3/+9
the build path into the binary package. Bump revision.
2009-10-06Add missing header needed for recent (gcc44) gcc.dmcmahill2-1/+14
2009-10-02Add kdesdk4markd1-1/+2
2009-10-02Import KDE4.3.1 from wipmarkd6-0/+933
OKed during freeze by wiz and agc
2009-09-30Add a bunch more gtkdoc-rebase workarounds.sketch2-2/+10
2009-09-27Rename getline to get_line to avoid clash with libc function.apb2-5/+23
No need to bump PKGREVISION.
2009-09-27The xulrunner distfile is just a copy of the firefox distfile.tnn2-9/+9
Let's use the latter directly instead to save bandwidth and allow faster security updates.
2009-09-27- Explicitly depend on texlive-pdftools to use epstopdf.minskim3-9/+28
- Invoke epstopdf using the absolute path.
2009-09-26Since this was renamed from libglade2 to libglade (more than two yearswiz1-2/+2
ago...) it should conflict with libglade2, not libglade (i.e. itself). Noted by reed@
2009-09-25Recognize more CVS keywords. From David Young in private mail.wiz3-2/+17
Bump PKGREVISION.
2009-09-24Bumping revision of packages which depend direct or indirect onsno50-52/+100
devel/p5-Class-MOP. A late detected incompible change forced it.
2009-09-23Update to 0.45: bump dependency on monotone to 0.45.jmmv1-3/+3