summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2005-02-27Some more pthread fixes: set PTHREAD_OPTS+=require and include the pthreadjmmv2-2/+6
buildlink file in buildlink3.mk. From tv@.
2005-02-27Include pthread.buildlink3.mk; it's needed during the configure stage.jmmv1-1/+2
Pointed out by tv@.
2005-02-27Update to 1.9.4:wiz5-28/+13
- Enhanced generics support: now all arguments of methods are specialized, not only the first one. - Bugfixes + Now ships with (g-wrap gw-wct) compatibilty module needed by GnuCash at runtime. + Fixes for handling output arguments: - Wrapped functions with void return value and output arguments now return expected results - Optional argument count is now correctly computed in the presence of output arguments + The libffi alignment requirements are now honored. This fixes bus errors on many non-x86 architectures. + On big-endian architectures libffi-wrapped functions that return char now work correctly. + Some "uninitialized variable" warnings were fixed in generated code which caused compiles with GCC 4.0 to fail (Debian Bug#290305).
2005-02-26Let's sync with reality (reorganization of Boost packages).jmmv1-3/+4
2005-02-26Catch up with Boost packages rework: no need to use BOOST_SUFFIX any morejmmv1-5/+3
(because libraries are unversioned), and we only need to depend on the binary libraries (boost-libs); the huge boost dependency disappears. Bump PKGREVISION to 1.
2005-02-26Complete rework of the Boost packages:jmmv33-5663/+7147
- Drop devel/boost and devel/boost-thread. - Add devel/boost-docs which includes all the documentation related to Boost (previously included in devel/boost). - Add devel/boost-build which includes bjam, the Boost.Build framework. - Add devel/boost-headers which includes all the header files needed at build time by programs using Boost (previously included in devel/boost). - Add devel/boost-libs which includes all the binary libraries needed at build and run time by programs using Boost (previously included in devel/boost and devel/thread). All of them are multithreaded, to make things easier. - devel/boost-python includes the Boost Python library (as it did before), but now works, given that everything is threaded again. - Drop our thread_user.hpp customization. Avoids some build failures that appeared when the previous boost-thread package was not installed. - Use static PLISTs. - Install unversioned files. Makes things *a lot* easier when building stuff outside pkgsrc. - Add meta-pkgs/boost, a meta package that depends on all of the above. Thanks go to jlam@ and tv@ for their comments. While here, update to 1.32.0: New Toolset Names The names of some the Boost.Build toolsets have been changed to remove the "." (dot) character and to fix some other naming inconsistencies. For example, vc7.1 toolset was renamed to become vc-7_1. Please refer to the Supported Toolsets section of the installation guide for the complete list of the current toolset names. This change was made as a part of the effort to make the Boost distribution compatible with ISO 9660 level 2 requirements. New Libraries * Assignment Library: Filling containers with constant or generated data has never been easier, from Thorsten Ottosen. * Minmax Library: Standard library extensions for simultaneous min/max and min/max element computations, from Hervé Brönnimann. * Multi-index Containers Library: Containers with multiple STL-compatible access interfaces, from Joaquín M López Muñoz. * Numeric Conversion Library: Optimized policy-based numeric conversions, from Fernando Cacciola. * Program Options Library: Access to configuration data given on command line, in config files and other sources, from Vladimir Prus. * Range Library: A new infrastructure for generic algorithms that builds on top of the new iterator concepts, from Thorsten Ottosen. * Serialization Library: Serialization/de-serialization of arbitrary C++ data structures to various formats including text, binary, and xml, from Robert Ramey. * String Algorithms Library: Collection of string related algorithms for case conversion, trimming, find/replace operations and more, from Pavol Droba. * Tribool: 3-state boolean type library, from Doug Gregor. Updated Libraries * Compose: This deprecated library has been removed. * Graph: o Added bundled properties to the adjacency_list and adjacency_matrix class templates, greatly simplifying the introduction of internal vertex and edge properties. o The LEDA graph adaptors have been ported to LEDA 4.5. o Added algorithms for betweenness centrality and betweenness centrality clustering. o Added circle layout and undirected spring layout algorithms. * MPL Library: o Updated to use the Boost Software License. o New documentation, including a complete reference manual. o Major interface changes and improvements, many of which are not backward compatible. Please refer to the 1.32 changelog for the detailed information about upgrading to the new version. * Python Library: o Updated to use the Boost Software License. o A new, better method of wrapping classes with virtual functions has been implemented. o Support for the new Python Bool type, thanks to Daniel Holth. o Support for upcoming GCC symbol export control features have been folded in, thanks to Niall Douglas. o Improved support for std::auto_ptr-like types. o Components used by other libraries have been moved out of python/detail and into boost/detail to improve dependency relationships. o Miscellaneous bug fixes and compiler workarounds. * Signals Library: Introduced deterministic slot ordering, permitting slots to be connected at the beginning or end of slot groups or the slot list itself. Combiners may safely have state and are accessible from the signal. * Utility: class template result_of added. * Test Library: o namespace names gets shorten; old one still supported till next release o added proper encoding of XML PCDATA o support for wide string comparison implemented For complete list of changes see Test Library release notes. Regression tests This release has been extensively tested on a variety of different compilers and platforms. It is known to contain no regressions against the previous reference release on the compilers and configurations tested. Please refer to the corresponding regression reports to see how well your compiler performs on the new Boost codebase.
2005-02-26Update to 0.16:wiz2-7/+6
--- RELEASE V0.16 --- * Temp.pm: Remove spurious debug statement --- RELEASE V0.15 --- * Temp.pm (unlink_on_destroy): Add post-object creation method to control whether the temp file will be unlinked when the object goes out of scope. * Temp.pm: Increase maximum number of tries before aborting. * Temp.pm: Add $KEEP_ALL to allow the temporary files to be retained whilst debugging (suggestion from Ed Avis [and others]). * Temp.pm: Temp files should have been opened O_NOFOLLOW rather than O_FOLLOW! (thanks to Marc Tardif) * Temp.pm: Add cleanup() function so that temp files that would be removed by an END block can be removed by a daemon. (RT wishlist item #6928 by Robert Rothenberg) * Temp.pm: Force chmod on file before unlinking it. This can be a problem on windows (see RT bug #6935). tempdir() has been fixed by Slaven's earlier patch to change the rmtree arguments. * Temp.pm (top_system_uid): Add interix patch from Todd Vierling * Temp.pm (_gettemp): Pod patch from Steven Lembark clarifying the error message associated with two few XXXXs * Temp.pm: Add note on forking and make sure that END blocks only remove temporary files created by the current process ID (prompted by Daniel Macks in RT bug #11067) * Temp.pm (cmpstat): Roman Vasicek reported problems with the _ filehandle. Play it safe and remove that handle. (see RT bug #8822) * t/tempfile.t: Add test for write proteceted temp file (thanks to Slaven Rezic) * Temp.pm (_can_do_level): Change argument to rmtree to make it attempt to remove write-protected files on cleanup (thanks to Slaven Rezic) * Temp.pm: Add note on binmode usage
2005-02-26Update to 1.6.2:jmmv3-8/+11
* fixes for problems at logout time (hangs, crashes) * bugfixes for #160862, #152147. * minor enhancements to test login-helper-server-test.
2005-02-26Update to 1.8.2:jmmv2-6/+6
* Report correct parent of GailCanvasItem if atk_object_set_parent() was called. (bug #159556) * Correct implementation of GailClist so that seleced item in GtkCList is reported by gnopernicus. (bug #158437) * Report selection-changed after text insertion notification when GtkCOmbo is changed using arrow keys. (bug #156483) * Report children which are column headers correctly even when they are not visible. (bug #137222) * Fix crash in glade when cell is GtkCList is referred to. (bug #162083)
2005-02-26Update to 2.4.2:jmmv2-7/+6
- Fix toolbar breakage from the 2.4.1 release. - Fix handling of GtkFileChooserDialog internal children.
2005-02-26Update to 1.34:wiz2-7/+6
1.34 - 30 January 2005 * Fixed typo in the README * Fixed examples.t on Win32 where paths have embedded whitespace. * Fix for Cygwin and core integration from Jos I. Boumans * Upgrade zlib source to 1.2.2
2005-02-26Fix build on archs where va_list is not a pointer. Closes PR pkg/29535 byjmmv2-1/+17
Kibum Han (reporting failure under amd64).
2005-02-25Update to 1.01:wiz2-8/+8
1.01 Tue Apr 30 14:06:06 JST 2002 - remove untie() to shut up bleadperl 1.00 Fri Apr 12 03:20:40 JST 2002 - Fixed doc - Code cleanup (refactoring, s/die/croak/g etc.) * now requires Log::Dispatch 2.00
2005-02-25Changes 0.1.10a:adam2-5/+6
* Minor build issues fixed
2005-02-25Remove obsolete patch files.tron7-383/+0
2005-02-25Changes 0.98.39:adam3-31/+24
* fix buffer overflow * fix outas86's .bss handling * "make spotless" no longer deletes config.h.in. * %(el)if(n)idn insensitivity to string quotes difference (#809300). * (nasm.c) __OUTPUT_FORMAT__ changed to string value instead of symbol.
2005-02-25Changes 3.6.0-p1:adam17-360/+86
Patched version of 3.6.0 to fix potentially serious bug described at http://www.unidata.ucar.edu/packages/netcdf/docs/known_problems.html#cdf2-bug Changes 3.6.0: Added texinfo source for the documentation. Added large file tests to Windows directory in distribution. Modified win32 visual studio project files so that m4 is no longer required to build netcdf under visual studio. Modified rules.make to use install instead of cp, fixing install problem for cygwin users. Modified configure/install stuff to support HP-UX. Modified configure/install stuff to support G95. In the f90 interface, applied Arnaud Desitter's fixes to correct mismatches between scalar and array arguments, eliminating (legitimate) complaints by the NAGWare f95 compiler. Also fixed bugs introduced in 3.6.0-beta5 in the mapped array interfaces.
2005-02-25Changes 1.6.3:adam5-37/+269
New Features Configuration: - Added some initial support for making purify (or similar memory checking products) happier by initializing buffers to zero and disabling the internal free list code. To take advantage of this, define 'H5_USING_PURIFY' in your CFLAGS when building the library. - WINDOWS building,testing and installing improvements - On Windows, FORTRAN,C++ and C projects are merged into one zip file, users can choose an option to build either FORTRAN or C++ or both with basic C library.For detailed information, please read INSTALL_Windows.txt. - On Windows, szip compression library with or without encoder can be easily turned off or on when building HDF5. For detailed information, please read INSTALL_Windows.txt, especially section V. - On Windows, an optional procedure for building,testing and installing HDF5 from command line is provided. This procedure is supposed to be convenient for experienced users, please read INSTALL_windows_From_Command_Line.txt for details. - On Windows, an alternative short instruction document for building, testing and installing HDF5 is provided. This instruction is supposed to be convenient for general users, please read INSTALL_Windows_Short.txt for details. - On Windows, h5repack,h5diff,h5ls and h5import tool tests have been added. Library: - Modified the way how HDF5 calculates 'pixels_per_scanline' parameter for SZIP compression. Now there is no restriction on the size and shape of the chunk except that the total number of elements in the chunk cannot be bigger than 'pixels_per_block' parameter provided by the user. - HDF5 can now link to SZIP with or without szip's encoder. The new API function H5Zget_filter_info can be used to check szip's status. Attempting to assign szip to a dataset property list or attempting to write with szip will generate an error if szip's encoder is disabled. JL/NF - 2004/6/30 - SZIP always uses K13 compression. This flag no longer needs to be set when calling H5Pset_szip. If the flag for CHIP compression is set, it will be ignored (since the two are mutually exclusive). JL/NF - 2004/6/30 - A new API function H5Fget_name was added. It returns the name of the file by object(file, group, data set, named data type, attribute) ID. SLU - 2004/06/29 - A new API function H5Fget_filesize was added. It returns the actual file size of the opened file. SLU - 2004/06/24 - Added option that if $HDF5_DISABLE_VERSION_CHECK is set to 2, will suppress all library version mismatch warning messages. Tools: - h5repack was added to the tools suite. h5repack regenerates an HDF5 file from another HDF5 file, optionally applying HDF5 filters (compression) and/or chunking to the copied file. The filters options are read from the command line. See /doc/html/Tools.html for more details. PVN - 2004/9/13 - h5dump includes new features: 1) Printing of dataset filters, storage layout and fill value information. 2) Print a list of the file contents. 3) Escape non printing characters. 4) Print the content of the boot block. 5) Print array indices with the data (the default).
2005-02-24* Teach devel/p5-Module-Build to write .packlists just like MakeMaker.pmjlam10-112/+43
does. This allows us to use dynamic PLISTs for Perl modules that are built using Module::Build. Bump the PKGREVISION of p5-Module-Build to 1. * Drop the use of PERL5_USES_MODULE_BUILD and introduce a new variable PERL5_MODULE_TYPE that is either "MakeMaker" or "Module::Build" that names the framework used to build/install the module. * Split out the variables set in perl5/buildlink3.mk that are also used by perl5/module.mk into a new file perl5/vars.mk. Move some PERL5_* variable definitions from pkgsrc/mk/bsd.pkg.use.mk into perl5/vars.mk. This just centralizes the common PERL5_* definitions into a single file location. * Convert the known packages that use Module::Build to set PERL5_MODULE_TYPE and PERL5_PACKLIST: devel/p5-Class-Container devel/p5-Exception-Class devel/p5-Log-Dispatch devel/p5-Array-Compare textproc/p5-Pod-Coverage www/p5-Apache-Session-Wrapper www/p5-MasonX-Request-WithApacheSession
2005-02-24update to 3.6.2drochner3-51/+286
changes: -update for new PyQt/scintilla versions -previewer for translation files -new and extended version of the coverage analysis module -previewer for UI files -capability to set the environment for the program to be debugged -more UI improvements -updated translations -bugfixes
2005-02-24require gcc 3.3; should fix build on NetBSD-1.6drochner1-2/+3
(PR pkg/29456 by diro@nixsys.bz)
2005-02-24Changes 4.2r1:adam6-44/+74
Configuration * By default HDF4 libraries and utilities are installed under <source_dir>/NewHDF * Windows configuration, build and testing procedures have been changed. Please see INSTALL_WINDOWS.txt file for more information Library * New API SDidtype was added to the library (bug #766) * HCgetcompress renamed to HCPgetcompress * New API HCget_config_info added * The default chunk cache size was changed for 2D and higher chunks * Pablo instumentation was removed Utilities * hdiff and hrepack are supported on Windows. * Substantial performance improvements in hdiff and hrepack Support for new platforms and compilers * Fortran IBM xlf v 8.1 and Absoft f95 version 8.2 compilers are supported on Mac OSX. * Absoft Fortran compiler f95 version 9.0 is supported on Linux 2.4 * PGI C and Fortran compilers are supported on Linux 2.4 * Intel C and Fortran compilers are supported on Linux 2.4 * Cray TS IEEE is supported. Bugs fixed since HDF4.2r0 * VERY IMPORTANT: Data compressed with SZIP may be corrupted; fixed. For more information see "HDF4.2r1 SZIP Release Notes" available at http://hdf.ncsa.uiuc.edu/doc_resource/SZIP/SZIP_HDF4_2r1.pdf * Fortran couldn't read names with spaces when NetCDF interfaces were used; fixed * Library failed to compile in presence of the NetCDF library; fixed * h4fc couldn't create object files; fixed * When rank of SDS is 0, some SD APIs give segmentation fault (bug 1045); fixed * Some GR images with special elements are read in as duplicate (bug 814); fixed * Many bugs fixed in hdiff and hrepack utilities
2005-02-24Add and enable pmccabeagc1-1/+2
2005-02-24Initial import of pmccabe-2.2-3 into the Packages Collection, suggestedagc5-0/+80
by Mike Cheponis. pmccabe processes the named files, or standard input if none are named, calculating statistics including McCabe cyclomatic complexity for each function found. The files are expected to be either C (ANSI or K&R) or C++. pmccabe ignores all cpp preprocessor directives - calculating the complexity of the appearance of the code rather than the complexity after the preprocessor mangles the code. This is especially important since simple things like getchar(3) expand into macros which increase complexity.
2005-02-23Add RMD160 digests.agc548-552/+1120
2005-02-23Remove obsolete entry for "share/doc/libgnome/style.css" from pacakge list.tron1-2/+1
2005-02-23Update to 0.12:wiz1-3/+4
0.12 Sun Jan 23 21:02:35 CST 2005 - Fixed a bug in the container() method, which was only returning valid results for delayed objects, not auto-created ones. [Spotted by Sebastian Willert]
2005-02-23Update to 0.12:wiz1-4/+5
0.12 Sun Jan 23 21:02:35 CST 2005 - Fixed a bug in the container() method, which was only returning valid results for delayed objects, not auto-created ones. [Spotted by Sebastian Willert]
2005-02-23Update HOMEPAGE.wiz1-2/+2
2005-02-23Update to 1.20:wiz2-8/+8
1.20 Jan 1, 2005 - Moved the Classes() method to Exception::Class, now as a function, which is where it really belongs. Also corrected the docs for this function, as they incorrectly implied that it would return all subclasses, instead of just subclasses which were created when loading Exception::Class. - Added a Build.PL file, and releases are now signed with Module::Signature. - Added ignore_class and ignore_package constructor parameters. Patch by Daisuke Maki.
2005-02-23Enable pkgviews installation. Patches provided by Joachim Kuebart onminskim1-1/+5
tech-pkg@.
2005-02-22Update to 2.8.1:jmmv3-96/+9
* Bug fixes: - Fix crash in the file chooser (Alex Larsson) - Be smarter with non-local hosts in the file chooser (Rodney Dawes, Federico Meña Quintero) - Require newer gnome-vfs (J.H.M Dassen) - Fix a leak in the file chooser (Christian Persch) - Use correct size for external thumbnailing scripts (Fernando Herrera) - Fix compiler warnings (Kjartan) - Make gnome-app more robust against programmer mistakes (scott at asofyet org) - Removed prototypes for removed functions gnome_entry_construct and gnome_href_construct (J.H.M. Dassen (Ray)) * Translations: - Updated translations (bg de, en_CA, es, fr, it, ko, nso, zu)
2005-02-22Update to 2.8.1:jmmv3-21/+5
* Bug fixes: - Build fixes (Thomas Fitzsimmons, Kjartan Maraas <diskman at kc rr com>) - Escape the app id in gconf (Anders Carlsson) - Handle blank real name fields in /etc/password in gnome-scores.c (Callum McKenzie) Closes bug #149270 * Translations: - Various updated translations (en_CA, fr, it, hu, ko, th)
2005-02-22Update to 2.2.5:jmmv2-5/+5
- Updated translations: it (Luca Ferretti, Alessio Frusciante)
2005-02-22Changes 0.1.10:adam3-17/+15
* Un*x shell style filename expansion on windows * 'rebuild' can be done from a given changenumber * 'last-modified' can be done from a given changenumber * 'update' recognizes repository URLs of the format 'cdv://server/{changenumber}' * 'diff' can now take 'local' as either first or second -r argument * 'diff' does not display diffs for files which exist on only 1 side by default * 'diff' takes -N switch to show diffs for files which exist on only 1 side * fixed: critical bug where an invalid merge was generated and not caught by the server * fixed: locking bug on server when files are deleted * fixed: traceback when committing from windows * fixed: all files show up as modified after doing 'construct' * fixed: server sending responses out of order * fixed: merge done by 'update' was sometimes incorrect * fixed: 'update -d' not pulling in diffs * fixed: CVILLE directory could not be at the root of the filesystem * fixed: 'diff -r repo' caused traceback * fixed: 'revert' on a file deleted from the local filesystem caused traceback Changes 0.1.9: * Allow user to be specified on client command line via -u * Server port is configurable via the config file or -o on the command line (-p is already being used, I need to switch to long opts) * Server catches exceptions and only shuts down the offending connection, rather than exiting * 'commit' takes -b for backup, makes it not generate a new changeset * 'history' accepts filenames on the command line * New command 'heads' shows currents heads in the client * New command 'last-modified' gives the last change to modify a file * Server doesn't revalidate changes already committed to other repositories, better performance for branching and merging * fixed: bad changesets being generated for some merge cases * fixed: merging a change with its ancestor caused traceback * fixed: locking bug on failed commit * fixed: 'add' of CVILLE directory issued warning but did the add anyway * fixed: 'diff' with ... tries to diff files not open for edit
2005-02-22Added patch changing how program counter, stack pointer, and frame pointershannonjr4-6/+59
are retrieved on NetBSD. This fixes a build problem on CURRENT.
2005-02-22Update to 0.79:wiz2-6/+7
0.79 Wed Jan 19 15:39:00 PST 2005 - New maintainer: Richard Soderberg - Resolved several RT tickets - 4934, 8263, 8060, 8400, 8624, 5870, 4658, 8940, 1474, 4311 - Skip certain tests on AIX and OpenBSD as they deadlock otherwise - Applied AIX patch from ActiveState (#8263) - Fixed t/run.t on OS X (#8940) - Add check for EINTR to _read (#5870) - FreeBSD uses fds up to 4 by default, fixed tests to start at 5 (#8060) 0.78 Tue Mar 9 01:49:25 EST 2004 - Removed all psuedohashes - Require Win32::Process when on Win32 (<CORION a t cpan . org>) - Retry the select() instead of croaking when EINTR occurs (Ilya Martynov) - This needs further testing and analysis, but works for the submitter. 0.77 Fri Sep 26 15:36:56 EDT 2003 - Non-binmoded pipes are now s/\r//g on Win32 - Passes all tests on WinXPPro and WinNT - Deadlocks somewhere shortly after process creation on Win2K in some cases 0.76 - Does not use pseudohashes for perls >= 5.9.0 (reported by several users, patch by Nicholas Clark) - pumpable() is now exported - pumpable() now more thorough in checking for a dead child - it checks for reapable processes when all pipes to the process are paused - pumpable() now yields the processor when all pipes to - Distro layout improved: Run.pm and Run/... are now under lib/IPC/... 0.75 Tue Jan 28 11:33:40 EST 2003 - Fix a bug that was causing _pipe() to seem to fail when feeding
2005-02-22Add some perl packages.wiz1-1/+5
2005-02-22Add some perl packages needed for various test targets in other perlwiz16-0/+120
packages.
2005-02-22Add HOMEPAGE.wiz1-1/+2
2005-02-21update to roundup-0.8.1recht3-48/+64
2005-02-17 0.8.1 Fixed: - replaced MutlilinkIterator with multilinkGenerator (thanks Bob Ippolito) - fixed broken csv import in roundup.admin module - fixed braino in HTMLClass.filter() (sf bug 1124213) - change ZTUtils Iterator to always iter() its sequence argument 2005-02-16 0.8.0 Fixed: - fix roundup-server log and PID file paths to be absolute - fix initialisation of roundup-server in daemon mode so initialisation errors are visible - fix: 'Logout' link was enabled on issue index page only - have Permissions only test the check function if itemid is suppled - modify cgi templating system to check item-level permissions in listings - enable batching in message and file listings - more documentation of security mechanisms (incl. sf patches 1117932, 1117860) - better unit tests for security mechanisms - code cleanup (sf patch 1115329 and additional) - issue search page allows setting of no sorting / grouping (sf bug 1119475) - better edit conflict handling (sf bug 1118790) - consistent text searching behaviour (AND everywhere) (sf bug 1101036) - fix handling of invalid date input (sf bug 1102165) - retain Boolean selections in edit error handling (sf bug 1101492) - fix initialisation of logging module from config file (sf bug 1108577) - removed rlog module (py 2.3 is minimum version now) - fixed class "help" listing paging (sf bug 1106329) - nicer error looking up values of None (response to sf bug 1108697) - fallback for (list) popups if javascript disabled (sf patch 1101626) 2005-01-13 0.8.0b2 Fixed: - note about how to run roundup demo in Windows (sf bug 1082090) - fix API for templating utils extensions - remove "utils" arg (sf bug 1081981) - back_sqlite.py is missing "import time" (sf bug 1081959) - fix (list) popup (sf bug 1083570) - fix some security assertions (sf bug 1085481) - 'roundup-server -S' always writes [trackers] section heading (sf bug 1088878) - fix port number as int in mysql connection info (sf bug 1082530) - fix setup.py to work with <Python2.3 (sf bug 1082801) - fix permissions checks in cgi templating (sf bug 1082755) - fix "Users may only edit their issues" example in docs - handle ~/.my.cnf files for MySQL defaults (sf bug 1096031) 2004-12-08 0.8.0b1 Feature: - added MD5 scheme for password hiding - added support for HTTP charset selection - implement __nonzero__ for HTMLProperty - remove "manual" locking of sqlite database - create a new RDBMS cursor after committing - added basic logging, and configuration of it and python's logging module - roundup-mailgw now logs fatal exceptions rather than mailing them to admin - add a default argument to the DateHTMLProperty.field method, and an optional Interval (string or object) to the DateHTMLProperty.now (patch from Vickenty Fesunov) - hide "(list)" popup links when issue is only viewable - roundup-server options -g and -u accept both ids and names (sf bug 983769) - roundup-server now has a configuration file (-C option) - added mod_python interface (see installation.txt) - reorganised tracker configuration, using ConfigParser config, cleaned-up schema definition and implementing easier extension writing (sf rfe 661301) - Permissions may now be defined on a per-property basis - added "Create" Permission. Replaces the "Web"- and "Email Registration" Permissions. - added option to turn off registration confirmation via email ("instant_registration" in config) (sf rfe 922209) - roundup-admin reindex command may now work on single items or classes - multiple selection Link/Multilink search field (thanks Marlon van den Berg) - relaxed hyperlinking in web interface (accept "issue123" or "Issue 123") - record journaltag lookup ("fixes" sf bug 998140) - allow listing popup to be used in query forms (thanks Marcus Priesch) - roundup windows service may be installed with command line options recognized by roundup-server (but not tracker specification arguments). Use this to specify server configuration file for the service. - added experimental multi-thread server - don't try to import all backends in backends.__init__ unless we *want* to - unless in debug mode, keep a single persistent connection through a single web or mailgw request. - HTTP Basic Authentication (sf patch 1067690) - extended security.addPermissionToRole to allow skipping the separate getPermission call Fixed: - postgres backend open doesn't hide corruption in schema (sf bug 956375) - *dbm-style backends nuke() method now clear id counters - removed safeget() from the API (sf bug 994750) - demo tracker is always set up on localhost (sf bug 1049101) - relaxed URL designator syntax to allow issue[0]*1 (sf bug 1054523)
2005-02-21Sign over maintainership to tech-pkg@hubertf2-4/+4
2005-02-21Remove ruby-zlib package since it is included in ruby18 package now.taca5-209/+0
2005-02-21Delete databases/ruby-dbm, devel/ruby-zlib, security/ruby-digest andtaca1-2/+1
security/ruby-openssl.
2005-02-21Changes 1.6.1:adam4-71/+19
The gl_event_handler() function had the endif of a conditional compilation clause in the wrong place. This only upset the compiler on unusual systems that don't have select(). The problem was seen under Mac OS X, due to the configuration problem in 1.6.0 that caused the configure script to mistakenly report that select wasn't available.
2005-02-21Remove -D_POSIX_C_SOURCE=199506L from CFLAGS to make build on -current.wiz1-1/+3
2005-02-21Update to 2.10:wiz2-9/+8
2.10 Feb 11, 2004 - No changes to the core code, just a change to the included Makefile.PL so it works with Module::Build 0.23, which breaks backwards compatibility (grr). 2.09 Jan 09, 2004 - Fix a test failure on Win32 platforms. The problem was in the test, not the code. Patch by David Viner. - Distro is now signed with Module::Signature. Fixes PR 29481.
2005-02-20:tu isn't supported by pkgsrc bmake.grant1-2/+2
2005-02-20Do not use the BSD makefiles to install the files, because it triesxtraeme5-3/+80
to install the files into /lib, use our own do-install target. Add required casts to make this build, bump PKGREVISION.
2005-02-20Do not use the BSD makefiles to install the files, because it triesxtraeme3-3/+21
to install the files into /lib, use our own do-install target.