summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-10-12Implement builtin detection for openldap client.ahoka1-0/+15
Tested on NetBSD 4.99.72.
2008-10-12mention p5-Gtk2-GladeXML importkefren1-1/+2
2008-10-12Initial import of Gtk2::GladeXML 1.007kefren3-0/+35
This extension module binds libglade to Perl so you can create and manipulate user interfaces in Perl code in conjunction with Gtk2 and even Gnome2. Better yet you can load a file's contents into a PERL scalar do a few magical regular expressions to customize things and the load up the app. It doesn't get any easier.
2008-10-12MAKE_JOBS_SAFE=nokefren2-1/+26
Add buildlink3.mk file
2008-10-12Note update of net/p5-INET6 to version 2.56seb1-1/+2
2008-10-12Update to version 2.56.seb2-9/+9
Approved by MAINTAINER. Pkgsrc changes: switched to the IO-Socket-INET6 distribution tarball without changing the package name, mark as not requiring any compiler. Changes since last packaged version (2.01): 2008-10-06 Shlomi Fish <shlomif@iglu.org.il> * Applied a modified version of a patch by Anicka Bernathova <anicka@suse.cz>: {{{ Previously IO-Socket-INET6 tried to bind even when one side is AF_INET and the other AF_INET6 and this cannot work. The FAMILY_CHECK loop is meant to make sure both sides have the same family. }}} * New Release IO-Socket-INET6-2.56 2008-09-24 Shlomi Fish <shlomif@iglu.org.il> * Fixed: http://rt.cpan.org/Ticket/Display.html?id=39550 : Problem with connect to IPv4 w/o given domain on FreeBSD6.1 (and other BSD systems). (Thanks to Steffen Ullrich) * New Release IO-Socket-INET6-2.55 2008-02-22 Shlomi Fish <shlomif@iglu.org.il> * Added pack_sockaddr_in6_all to the imports from Socket6 to fix the "configure" sub in several cases. Added t/configure6.t to test it. * New Release IO-Socket-INET6-2.54 2008-02-21 Shlomi Fish <shlomif@iglu.org.il> * Converted to Build.PL and placed INET6.pm under lib/. * Added a "repository" URL to the POD. * Added the pod.t and pod-coverage.t files and we now have full POD coverage. * Added more dependencies to the Build.PL. * Added the credit of "Shlomi Fish". * Changed the email address of Rafael to the new one in the ChangeLog and README files. * Someone reported that sockflow() and peerflow() were broken. The reason for that was that unpack_sockaddr_in6_all was not imported from Socket6. This release fixes it (with tests in t/host6.t). * New Release IO-Socket-INET6-2.53 2008-02-05 Shlomi Fish <shlomif@iglu.org.il> * New Release IO-Socket-INET6-2.52 * Added a test for peerhost() too. * Fixed sockhost() with the fact that inet_ntop() was not imported. - Added a test. * Added "use warnings" to IO::Socket::INET6. * Added a modified version of my patch (with more comments) to patch the problems I found in IO-Socket-INET6. (generating warnings upon using and failed tests.). 2004-18-10 Rafael Martinez Torres <rmartine@fdi.ucm.es> * New Release INET6-2.51 . * Patch from David Town <David.Town@marconi.com> - peeraddr(), sockaddr() methods implemented. - peerhost(), peerport(), sockhost(), sockport() improved efficiency. - New optional parameters: Local(Peer)Flow,Local(Peer)Scopeid. (Only for IPv6) - Local hack for MSWin32 platforms.
2008-10-12Add note (for now) that this version is incompatible with perl 5.10.0abs1-1/+2
2008-10-12Update to not require p5-Attribute-Handlers for perl>=5.10.0, bump pkgrevisionabs2-5/+6
2008-10-12Added devel/p5-Devel-Declare version 0.001011abs1-1/+7
Added devel/p5-MooseX-Types version 0.04 Added devel/p5-Test-Class version 0.31nb1 Added misc/p5-File-MMagic-XS version 0.09003 Added www/p5-Catalyst-Model-Adaptor version 0.03 Added www/p5-Catalyst-Plugin-I18N version 0.08
2008-10-12+p5-Devel-Declare & p5-MooseX-Typesabs1-1/+3
2008-10-12+p5-File-MMagic-XSabs1-1/+2
2008-10-12+p5-Catalyst-Model-Adaptor & p5-Catalyst-Plugin-I18Nabs1-1/+3
2008-10-12Added www/p5-Catalyst-Plugin-I18N version 0.08abs3-0/+30
Internationlization for Catalyst apps - Supports mo/po files and Maketext classes under your applications I18N namespace.
2008-10-12Added www/p5-Catalyst-Model-Adaptor version 0.03abs3-0/+39
Catalyst is an elegant web application framework, extremely flexible yet extremely simple. It's similar to Ruby on Rails, Spring (Java) and Maypole, upon which it was originally based. Catalyst follows the Model-View-Controller (MVC) design pattern, allowing you to easily separate concerns, like content, presentation and flow control, into separate modules. This separation allows you to modify code that handles one concern without affecting code that handles the others. Catalyst promotes re-use of existing Perl modules that already handle common web application concerns well.
2008-10-12Added misc/p5-File-MMagic-XS version 0.09003abs3-0/+28
This is a port of Apache2 mod_mime_magic.c in Perl, written in XS with the aim of being efficient and fast, especially for applications that need to be run for an extended amount of time. There is a compatibility layer for File::MMagic. you can specify :compat when importing the module
2008-10-12Added devel/p5-MooseX-Types version 0.04abs3-0/+43
The types provided with Moose are by design global. This package helps you to organise and selectively import your own and the built-in types in libraries. As a nice side effect, it catches typos at compile-time too. However, the main reason for this module is to provide an easy way to not have conflicts with your type names, since the internal fully qualified names of the types will be prefixed with the library's name. This module will also provide you with some helper functions to make it easier to use Moose types in your code.
2008-10-12Added devel/p5-Devel-Declare version 0.001011abs4-0/+48
import and unimport declarator magic for perl
2008-10-12+p5-Test-Classabs1-1/+2
2008-10-12Added devel/p5-Test-Class version 0.31nb1abs3-0/+42
Test::Class provides a simple way of creating classes and objects to test your code in an xUnit style. Built using Test::Builder it is designing to work with other Test::Builder based modules (Test::More, Test::Differences, Test::Exception, etc.) Note: This module will make more sense if you are already familiar with the "standard" mechanisms for testing perl code. Those unfamiliar with Test::Harness, Test::Simple, Test::More and friends should go take a look at them now. Test::Tutorial is a good starting point.
2008-10-12Updated net/freeradius2 to 2.1.1adrianp1-1/+2
2008-10-12Update to 2.1.1adrianp8-126/+164
Patches mainly from adam@ with some changes by me 05 September 2008 - Version 2.1.0 has been released. The focus of this release is features. Feature Improvements * Clients may now be defined dynamically, based on IP address. See raddb/sites-available/dynamic-clients. * SNMP support is now available through an experimental Perl script. See scripts/snmp-proxy/README * SNMP statistics are also available through Status-Server packets. See raddb/sites-available/status * Added more Microsoft attributes from bug #568. * The linelog module has more functionality and flexibility. See raddb/modules/linelog. * The debugging output has been sanitized. It should be much more readable. * Debug logs can now be turned on/off while the server is running, for a user, group, realm, etc. See the log section of raddb/radiusd.conf. * Added support for WiMAX Forum attributes. The dynamic keys are not yet calculated. See share/dictionary.wimax * Added session resumption for PEAP and TTLS. See raddb/eap.conf, and the cache sub-section. * Added radmin command-line tool for administering a running server. See man radmin and raddb/sites-available/control-socket. Bug Fixes * Double escaping of '\\' in the users (and some other) files has been fixed. If you have '\\' in the users file, your configuration will need to be checked, and fixed! * Parse security section of radiusd.conf. This was accidentally deleted in 2.0.5. Closes bug #566. * Bind to interface before IP, which allows DHCP sockets to listen on "*" for multiple interfaces. * Fix handling of giaddr in DHCP responses. * Corrected parsing of status_check in home_server so that it works. * Fix hints so that "Puser" works again. * Removed length restrictions on attribute names in the dictionaries. * Update socket code to avoid C compiler optimizations. 25 September 2008 - Version 2.1.1 has been released. The focus of this release is stability. Feature Improvements * Many more options and features are available via radmin. See man radmin and raddb/sites-available/control-socket. * Many more commands available via the control socket. Connect via radmin, and type help for more information. * Added dictionary.networkphysics and dictionary.lancom. * Calculate WiMAX MIP keys, and added sample WiMAX SQL tables. Bug Fixes * Fixed bug that made radmin not work. * Fixed Suse && Debian package scripts. * Fixed issues with dynamic clients. * Fixed configure checks for -lreadline * rlm_sqlippool no longer needs to be linked to rlm_sql. * Add statistics for detail file listeners. This closes bug #593. * Fixed printing of some WiMAX attributes. * Fixed double free on exit() in rlm_attr_filter. * Fixed build issues on Solaris. * Fixed fast session resumption for EAP-TLS.
2008-10-12Note update of the "graphviz" package to version 2.16.1nb3.tron1-1/+2
2008-10-12Add patch for the graphviz 2.20.3 release to fix the securitytron3-4/+29
vulnerability reported in SA32186.
2008-10-12Note update of www/drupal6-translations package to 20081012.taca1-1/+2
2008-10-12Update drupal6-translations package to 20081012.taca5-7/+57
* Add Norwegian Bokmal (book language) support. * Fix Ukrainian/UKRAINE language's PLIST.
2008-10-12Updated security/ap-modsecurity2 to 2.5.7adrianp1-1/+2
2008-10-12Update from 2.1.4->2.5.7adrianp6-91/+76
Use ./configure as one is now supplied libmxl2 is no longer optional but curl is Rename doc/eg dirs from ap-security to ap-modsecurity * Allow for disabling request body limit checks in phase:1 * Now log XML parsing/validation warnings and errors to be in the debug log at levels 3 and 4, respectivly. * Transformation caching has been deprecated, and is now off by default. We now advise against using transformation caching in production. * Improve request body processing error messages. Any many more . . . see CHANGES for all the details
2008-10-12Fix entries for initial additions of devel/p5-Package-Generatorseb1-3/+3
and net/p5-Net-SNMP-Mixin.
2008-10-12Note update of the "apache22" package to version 2.2.9nb5.tron1-1/+2
2008-10-12Use the pid file to determine whether "httpd" is still running. This shouldtron2-3/+4
make "/etc/rc.d/apache restart" work more reliable and fix PR pkg/39713 by Martti Kuparinen. Bump package revision because of this fix.
2008-10-12Updated time/kronolith to 2.3adrianp1-1/+2
2008-10-12Update to 2.3adrianp3-9/+37
---- v2.3 ---- [jan] Change group field in shares table to work with LDAP groups (Bug 6883). [jan] Fix user name conversion with user hooks in the calendar panel (Bug 7366). [gwr] Fixed handling of free events in the Kolab driver (noethen@uni-paderborn.de, Bug 7192). [jan] Differentiate between days with events and days with busy events in the year view. -------- v2.3-RC1 -------- [jan] Send correct iTip notifications when deleting recurring event instances (Bug 6636). [mjr] Add support for embedding calendar widgets on external websites. [jan] Log moving of events in the history backend (Bug 3207). [jan] Fix listing alarms of recurring events crossing day boundaries (Bug 7035). [jan] Fix deleting all events over WebDAV (Bug 7005). [jan] Add Atom feeds. [jan] Fix encoding of holiday names. [jan] Add Estonian translation (Alar Sing <alar.sing@err.ee>). [jan] Consider RECURRENCE-ID attributes in iCalendar data. [cjh] Fix a problem with the put() API call and events that already exist (almarin@um.es, Bug 7088). [jan] Fix importing iCalendar events with only a single recurrence exception (guyzdm@gmail.com, Bug 7068). [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [mjr] Add support for maintenance tasks and add a task for purging old events. [jan] Fix future events not being received under certain circumstances (Bugs 6946, 6966). [jan] Correctly sort recurring events (develop@kristov.de, Bug 7037). [jan] Fix display of recurring events crossing midnight in the portal block (develop@kristov.de, Bug 7036). [jan] Fix agenda emails containing wrong events. [mjr] Remove user permissions on all shares when deleting a user. [jan] Fix warning when importing events through the API (Bug 6865). [cjh] Be case insensitive when comparing attendees (aloyse.gilbert@gmail.com, Bug 6833). [jan] Use smaller icons for private events.
2008-10-12Updated mail/turba to 2.3adrianp1-1/+2
2008-10-12Update to 2.3adrianp3-8/+16
---- v2.3 ---- [jan] Change group field in shares table to work with LDAP groups (Bug 6883). [jan] Fix exporting address books with country fields as vCards (Bug 7372). [mjr] Make sure we use all address books when searching via the api and the user's addressbooks pref is empty (Bug 7357). [mjr] Correctly calculate the age of time objects (Bug 7330). -------- v2.3-RC1 -------- [jan] Improve vCard EMAIL field parsing (Bug 7281). [jan] Correctly import and export address extensions (Bug 7279). [jan] Export full country names to vCard addresses. [jan] Respect precedence of multiple vCard properties (Request 7122). [jan] Remove deleted address books from address book preference (Request 6938). [jan] Export LABEL properties to vCard if address fields are available. [gwr] Add support for storing public PGP keys when using Kolab. [gwr] Add support for adding addresses from IMP when using Kolab. [jan] Add configuration option for an alternative name field. [jan] Add support for image fields to SQL driver (requires Horde 3.3). [jan] Add more default field mappings for CSV import (Request 6901). [jan] Update field names for Outlook 2003 export (Request 6901). [jan] Improve logic which entries to show in the sidebar menu. [jan] Add support for the category form field (Request 6884). [jan] Fix sorting so that sort order is always reflected correctly, independent of name format. [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [jan] Add ability to mark a contact as your own and API method to export it. [jan] Fix importing phone numbers from Synthesis clients (Bug 7011). [mjr] Fix issue with searching composite fields when the number of search terms is less than the number of composed fields (Bug 6796) [cjh] Allow importing multiple address into an email field if allow_multi is set to true on the field in attributes.php (Bug 6897). [mjr] Remove user permissions on all shares when deleting a user. [jan] Fix searching of client address books that have been disabled in the preferences (Bug 6961). [mjr] Fix issue with removeUserData api that caused the deleted user's address books to not be deleted as well as remove an erroneous error notification (Bug 6969). [cjh] Fix the column selector/sorter in IE (Bug 6912).
2008-10-12Updated mail/ingo to 1.2.1adrianp1-1/+2
2008-10-12Update to 1.2.1adrianp3-7/+14
------ v1.2.1 ------ [jan] Don't show script icon in menu if preference to automatically update scripts is both set and locked (Request 7251). [mjr] Change MDB2 sequence name to 'id' (Bug 7240) [jan] Fix adding more than 5 wildcard blacklists (Bug 7077). [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [jan] Fix saving spam rules in the preference backend (Bug 7033). [jan] Correctly catch dates before the 10th of a month in Sieve timed vacations (Bug 7023). [mas] Fix vacation with procmail driver (Bugs 6509, 7052). [jan] Fix moving to INBOX with the maildrop driver. [jan] Disable drop down entries with informational purpose only. [jan] Fix filter activity messages with non-ASCII folder names (taguchi@iij.ad.jp, Bug 6764).
2008-10-12Updated mail/imp to 4.3adrianp1-1/+2
2008-10-12Fix PLIST file for uk.taca1-2/+1
2008-10-12Update to 4.3adrianp3-10/+21
---- v4.3 ---- [jan] Add compose token to redirect view (bug 7383). [jan] Don't resize window if not composing messages in a popup. -------- v4.3-RC2 -------- [mms] Fix loading of print stylesheets when printing a message (bug 7310). [mjr] Fix redirect loop when conf[server][change_server] is true (bug 6978). [mms] Fix message caching and optimize storage. [mms] Fix autocomplete address positioning on IE (bug 7074). [cjh] When the selected view doesn't match the type of browser's default view (IMP or DIMP for a mobile browser, MIMP or DIMP for a desktop browser), explicitly redirect to that view and disable the frameset (bug 6332). [jan] Add support for updating exsting events and cancelled recurring event instances to iTip viewer (bug 6636). [mms] Fix uploaded compose attachment names if magic quoting is on (bug 7215). [mms] Cache results of address formatting. [jan] Show name and email address in the address book popup (Request 6937). [mms] Messages from lists can now have large quotes automatically hidden. --------------------------------- v4.3-RC1 (released as v4.2.1-RC1) --------------------------------- [mms] Fix incorrect autocomplete replacement in certain cases (bug 6819). [mms] Use optimized autocomplete javascript library. [mms] Handle ';' to delimit addresses when composing. [jan] Don't allow adding private PGP keys as public keys (bug 7080). [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [mms] Search by size now displayed in KB (Request 6921). [jan] Add option to attach personal vCard to message (requires Turba 2.2.2). [jan] Fix maildir quota driver (bug 7014). [jan] Add configuration for quota message format. [mms] Maintain original header encoding on redirect (bug 7006). [cjh] Add CSRF tokens to the Compose screen (Kris Steinhoff <steinhof@umich.edu>). [jan] Fix adding vhost specific trailer.txt. [jan] Add more flexible placeholders to SQL quota driver. [jan] Fix passing passwords to quota drivers. [mms] Improved folder list generation (bug 6972). [cjh] Allow hiding quota messages when quota is unlimited (Thomas Jarosch <thomas.jarosch@intra2net.com>, Request 6934). [jan] Add mailto: handler for Firefox 3+. [mms] Fix address MIME encoding issues when saving a draft (bug 6986). [cjh] Include a hint about fixing invalid From addresses in the error message (steinhof@umich.edu, bug 6941). [cjh] Fix overwriting $params in _imp_adminDo API call (bug 6955). [mms] Never wrap flowed lines in text/plain messages. [mms] Fix broken spellcheck when using fckeditor on Safari 3 (bug 6909). [mms] Fix unescaping URL parameters passed to popup windows (bug 6834). [jan] Fix logging of forwarded messages. [mms] Fix creation of subfolders in certain namespaces (thomas.jarosch@intra2net.com, bug 6827). [mms] Improve search page by moving flags into search criteria section (Request 6825). [mms] If using imagemagick, allow creation of PDF thumbnails. [mms] Strip quotation marks and backslashes from displayed addresses. [mms] Fix spellcheck in HTML mode when using Xinha on IE (bug 6799). [mms] Fix rare case when spellchecking HTML input could result in the HTML tags being recognized as misspelled words. [jan] Fix parsing for Token System configuration parameters. [mms] Add ability to search by size.
2008-10-12Updated www/horde to 3.3adrianp1-1/+2
2008-10-12Update to 3.3adrianp3-25/+73
---- v3.3 ---- [jan] Fix synchronization issues with Blackberry clients (bug 6949). [mms] Fix setting the horde user when using application authentication with realms (bug 6749). [jan] Fix user name conversion with user hooks in the permissions interfaces (bug 6371). [jan] Provide all settings for the read server in split SQL configuration (Request #7024). [jan] Improve HTML to text filter. [mjr] Hierarchical SQL Share driver now correctly removes all children when removing a share (Bug: 7347). [mjr] Fix an issue with various date/time fields in horde form that was causing erroneous validation errors. [cjh] Sign parameters to go.php with an HMAC based on a new secret key configuration value, to prevent using go.php as an open referrer. [cjh] Make logout tokens only valid for a configurable length of time. -------- v3.3-RC1 -------- [mms] Fix garbage collection handling on SQL session handler backends. [mjr] Change MDB2 sequence names to 'id' in SQL share driver (bug 7240). [cjh] When a URL is supplied for pass-through after logging in, go to that URL in mobile browsers instead of going to the mobile portal (bug 6332). [mms] Memcache session handler no longer writes data with a lifetime. [cjh] Add DIMP to the horde LDAP OIDs and hordePerson objectclass (bug 7243). [mms] Update FCKeditor to v2.6.3. [jan] Use global mailer configuration when sending alarm emails (adrieder@sbox.tugraz.at, bug 7058). [jan] Reset background colors when resetting the category form (bug 7226). [jan] Improve Funambol contacts support (Requests #7099, #7100). [jan] Correctly parse GEO tags in vCard 2.1 data (bug 6563). [jan] Remove Horde portal link from application menus (bug 7221). [cjh] Create a driver for signups, allowing backends other than DataTree (Duck <duck@obala.net>, Request #7161). [jan] Fix displaying images with the image form field. [mjr] Fix issue with hierarchical SQL share driver that caused permissons to erroneously be denied when the share contained group permissions and was instantiated by a listShares call. [mjr] Fix issue with hierarchical SQL share driver that caused any child shares to be orphaned when the parent share was moved in the hierarchy. [mjr] Fix issue with SQL share drivers that was causing permission checks to fail under certain conditions by no longer explicitly storing owner permissions in the Perms backend. [cjh] Fix overwriting a variable in the tableset_html VarRenderer (Paul Roy <proy@corom.ca>, bug 7120). [mms] Fix MIME encoding when using the ISO-2022-JP charset (bug 1621). [jan] Fix SQL Share driver not using the correct database when using different databases in Horde applications (bug 6997). [cjh] Fix SQL portability in Share_sql driver (bug 7084). [jan] Fix synchronizing large amounts of data split across several SyncML messages. [jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV <xabier.arrieta@ehu.es>). [cjh] Fix Horde_Lock::getLockInfo (duck@obala.net, Bub #7046). [cjh] Fix SQL portability in Group_sql driver (bug 7075). [jan] Fix PAM authentication driver, but also mark it as deprecated (bug 6982). [mjr] Fix issue with native SQL Share driver that caused filtering shares by attributes to fail. [jan] Fix synchronization of event alarms with Funambol clients (bug 7003). [jan] Correctly detect Funambol clients on Blackberry devices (bug 6995). [mjr] Remove all user application permissions and group memberships from storage when removing the user from the system (Bug: 6999) [cjh] Call the postauthenticate hook in Auth::setAuth(), and allow the postauthenticate hook to cause setAuth() to fail. Allows postauthenticate to fire on any event, including transparent authentication, that could result in a user being successfully logged in. [jan] Improve attribute support and charset conversion in vCard viewer. [jan] Show photos in vCard object if provided with an URL. [mjr] Remove permissions from storage also when removing a share. [jan] Add Horde_Form fields for string arrays and PGP and S/MIME keys. [jan] Only show Add Permission icons in permissions interface where adding them is possible. [mjr] Fix issue in Horde_Image that was causing erratic results when cropping images. [jan] Fix validation of phone fields marked as required (bug 6948). [mms] Fix quoting periods in display part of e-mail address (bug 6899). [mms] Fix error checking when parsing an undisclosed recipients mail header and using an older version of PEAR::Mail (bug 6930). [jan] Return to portal after editing or deleting blocks directly from there.
2008-10-12kbiff update.markd2-4/+3
also remove emacs-22.3 from TODO, as done.
2008-10-12Update kbiff to 3.9markd5-32/+42
10-05-08 - Kurt Granroth (3.9) o Converted KBiff into a full-fledged kdeinit module compatible with the latest KDE 3.5 (previous support was outdated) o Yet more tweaks to compile under the gcc 4.x running target without warnings o Cleaned up a bunch of Makefiles, configure files, and automake files along with an updated 'admin' directory o Got rid of the 'release-kbiff' "meta" version and date tags o Updated the .spec file to be more up to date 09-09-08 - Frédéric Brière o Replaced complicated date-time calculations with toTime_t() 03-30-08 - Léo Terziman o Fix compilation of ASUS led code under gcc 4 03-21-08 - Martin Spirk o Added 'stopped' icon state 02-27-08 - Elve o Updated Dutch translation (nl.po) 01-21-08 - Kurt Granroth o Updated automake admin dir with latest code from KDE 3.8 o Tweaked the code to compile on gcc 4.2 without warnings with -Wall o Status window tweaks to work better on multiple-monitors as well as in more positions (side, bottom, top, etc). o Removed some 2.x code. Nobody uses KDE2 anymore so it's high time KBiff stops supporting it. o Fix display of icons with the icon selector
2008-10-12Note update of the "dbus" package to version 1.2.4.tron1-1/+2
2008-10-12Update "dbus" package to version 1.2.4. Changes since 1.2.3:tron3-26/+13
- Security fix for CVE-2008-3834 - A small number of compilation and portability fixes
2008-10-12Note initial addition of p5-Devel-Gladiator version 0.01 asseb1-1/+2
devel/p5-Devel-Gladiator into The NetBSD Packages Collection. The Perl 5 module Devel::Gladiator iterate's Perl's internal memory structures and can be used to enumerate all the currently live SVs. This can be used to hunt leaks and to profile memory usage
2008-10-12Add & enable p5-Devel-Gladiatorseb1-1/+2
2008-10-12Initial import of p5-Devel-Gladiator version 0.01 in the NetBSDseb3-0/+27
Packages Collection. The Perl 5 module Devel::Gladiator iterate's Perl's internal memory structures and can be used to enumerate all the currently live SVs. This can be used to hunt leaks and to profile memory usage
2008-10-12+subversion-1.5.3.taca1-1/+2
2008-10-12No longer patching any lisp files so don't need to recompile them.markd1-8/+1