summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2004-09-30Added and enabled cppunit-1.10.2: CppUnit is a C++ unit testing frameworkwulf1-1/+2
2004-09-30Added cppunit-1.10.2: CppUnit is a C++ unit testing frameworkwulf5-0/+1488
2004-09-30Version 1.1.0epg10-92/+71
(29 September 2004, from /branches/1.1.x) http://svn.collab.net/repos/svn/tags/1.1.0 See the 1.1 release notes for a more verbose overview of the changes since 1.0.x: http://subversion.tigris.org/svn_1.1_releasenotes.html User-visible-changes: * new non-database repository back-end (libsvn_fs_fs) * symlinks can now be placed under version control (unix systems only) * cmdline client now supports psuedo-IRIs and autoescapes chars (issue #1910) * 'svnadmin recover' no longer waits forever for a lock (new '--wait' option) * new $Revision$ synonym for $Rev$ and $LastChangedRevision$ * new runtime option 'store-passwords = ' gives finer control (r10794)x * fixed: working copies now shareable by multiple users (issue #1509) * fixed: diff and other subcommands correctly follow renames (issue #1093) - new 'peg' syntax for diff/merge: 'svn diff -r X:Y TARGET@REV' - now able to compare working copy with URL: 'svn diff --old WC --new URL' * new framework for localized error/info/help messages, initial translations: - German, Polish, Swedish, Norwegian Bokmål, Traditional Chinese, Japanese, Brazilian Portuguese. * speed improvements: - faster 'svn up' on complex working copies -- no more repos txns (r8840) - faster 'svn status' -- fewer stat() calls (r9182) - faster 'svn checkout' -- fewer sleep() calls (r9123) - faster 'svn blame' -- new RA->get_file_revs() func (issue #1715) * new switches added: - 'svn blame --verbose' - show extra annotation info - 'svn export --native-eol TYPE' - export using TYPE line-endings - 'svn add --force' - recurse into version-controlled dirs - 'svnadmin dump --deltas' - include binary diffs in dumpfile - 'svnadmin create --fs-type fsfs' - create fs_fs repos (default is bdb) - 'svnserve --tunnel-user=NAME' - assume authenticated NAME over tunnel - 'svndumpfilter [cmd] --quiet' - less chatty dumpfiltering - 'svnserve --version' - show program's version 'svnversion --version' 'svndumpfilter --version' * svnadmin dump/deltify now understand -r{DATE} (r9805) * allow update of non-existent target entry (partial issue #1902 fix) * 'svnadmin create' now sets sgid bit on repos/db/ (unix systems only) * increase default neon (ra_dav) timeout from 120 to 3600 seconds (r9568) * print verbose BDB error messages (r10557, r10566) * fixed: don't bail when 'svn up' refuses to delete local mods (issue #1806) * fixed: process svn:externals in defined order (issue #1788) * fixed: pass new propval to stdin of pre-revprop-change hook (issue #952) * fixed: svndumpfilter logic/memory/display bugs (r8691, 8831, 9061) * fixed: 'svnadmin hotcopy PATH .' (r8659) * fixed: copy crash bug (r8863) * fixed: 'svn st -u' crash bug (r10841) * fixed: 'svn commit' segfault (r10676) * fixed: allow cleanup on .svn/ dirs containing KILLME file (r8891) * fixed: 'svn revert' detects corrupted text-base (r8897) * fixed: 'svn status -N' no longer locks entire tree (r8906) * fixed: several different 'svn switch' bugs (r9192, 9203, 9238, 9698) * fixed: some 'svn copy' bugs (r9193, 9274) * fixed: obscure update-deletion bug (r8976) * fixed: utf8 conversion 'hang' (r9233) * fixed: missing UTF8->native recoding in 'svn log' output (r10652, 10673) * fixed: 'svn blame' now defaults to rev (r9440) * fixed: 'svn blame' closing files before deleting them (issue #1969) * fixed: 'svn diff' shows truncated paths (r9693) * fixed: 'svn diff --notice-ancestry' bug (r9699) * fixed: 'svn subcommand -r{DATE} URL' works if URL not in HEAD (issue #1840) * fixed: 'svn blame' on non-ascii path truncation (issue #1770) * fixed: svn:external 'wc not locked' bug (issue #1897) * fixed: proper mod_dav_svn html/xml escaping (issue #1209) * fixed: memleak in 'svn propset -R URL' (issue #1928) * fixed: potential repos corruption; ensure stdin/out/err always open (r10819) * fixed: stop 'svn up' from deleting schedule-add target dir (issue #1793) * fixed: 'svn merge' adding a directory already 'deleted' (issue #1769) * fixed: excessive memory use when fs deltifies revision 2^N (r10070) * fixed: disallow non-recursive directory commit (issue #1797) * fixed: allow propget of props with colon in name (issue #1807) * fixed: 'svnadmin load' computation of copyfrom-rev (issue #1795) * fixed: runtime config files created with proper line-endings (issue #1803) * fixed: make svnserve's authn work on usernames with spaces (r10385) * fixed: have svnserve use repos UUID as default authn realm (r10394) * fixed: segfault when history-following hits 'empty' revision (r10368) * fixed: overzealous out-of-dateness checks in 'svn cp wc URL' (issue 1994) * fixed: don't URI-encode path in mod_dav_svn XML listings (r10461) * fixed: 'svn info' should refuse URL targets (r10760) * fixed: incomplete-directory handling bug (r10956) * fixed: allow cancellation between files during recursive dir add (r10894) * general improvement and normalization of error messages * many improvements to contributed tools: mailer.py, psvn.el, etc. Developer-visible changes: * libsvn_fs now loads either bdb (libsvn_fs_base) or fsfs (libsvn_fs_fs) * new console-printing API: svn_cmdline_printf() family checks for errors. * new library-version querying API: - new svn_[libname]_version() in each library - svn_ver_*() family of functions * 2nd generation APIs, from svn_foo() --> svn_foo2(). old APIs deprecated. - svn_wc_adm_open2() & friends, svn_wc_export2(), svn_client_add2() svn_wc_parse_externals_description2(), svn_hash_read/write2(), svn_repos_dump/load_fs2() & friends, svn_wc_diff2(), svn_subst_copy_and_translate2() * other new APIs: - svn_stream_copy(), svn_txdelta_target_push(), svn_opt_parse_path(), svn_io_file_flush_to_disk, svn_repos_trace_node_locations(), svn_repos_get_file_revs(), RA->get_locations(), RA->get_file_revs, RA->get_version(), svn_sort_compare_paths(), svn_utf_initialize() * SVN_REVNUM_FMT_T usage replaced with %ld (r9691) * cache mod_authz_svn authz file per connection (r8867) * validate hex digits in % escape (issue #1947) * hashes now written to disk in sorted order (r9910) * do cancellation checks before loops, not after (r8918) * fixed: bug in svn_repos_dir_delta replacement logic (r8078) * fixed: tiny memory access bugs (r8229, 8230, 8313) * fixed: several commit buglets (r8955, 9658, 9757, 9855) * fixed: don't recursively lock all prop commands (r9172) * fixed: svnserve memory usage on many-file commits (r9185) * fixed: close svnserve child's listen-socket after forking (r10050) * fixed: 'svnadmin hotcopy' integrity improvements (issues #1817, #1818) * fixed: only verify media type of svn:mime-type, not encoding (r10126) * fixed: handle '//' and '..' in svn_path_canonicalize (issue #1779) * fixed: double URI escaping (issue #1814) * fixed: editor-driver bug (don't delete before every copy) (r10851) * fixed: potential mod_dav_svn crashes/memleaks (r10478) * fixed: better 'svnadmin verify verification (r10508, r10509) * fixed: encoding of get_repos_url_result (r10353, 10375) * fixed: prevent canonicalized URIs from ending in '/' (r10317) * stop using -std=c89 gcc flag (r11054) * sync with apr 1.0's find_apr.m4 and find_apu.m4 files (r10560) * win32 installer improvements (r10978) * huge improvements to python, perl, java bindings * huge changes to win32 build system pkgsrc changes: * subversion-base no longer requires db4. If APR_USE_DB4 is NO, subversion-base will only build the new native filesystem back-end; if it is YES subversion-base will build both back-ends. The APR_USE_DB4 variable is used for this purpose because when Subversion uses db4 it uses it through APR; it can't use db4 if APR doesn't. * Resurrect a tiny part of patch-aa so that subpackages (p5-subversion, etc.) don't try to install the libraries in subversion-base. * patch-ae is no longer needed.
2004-09-30This bends over backwards to remove the .a file, so how about not compilingtv1-1/+2
it at all to do it the right way.... Add SHLIBTOOL_OVERRIDE.
2004-09-30Add and enable libmatchboxagc1-1/+2
2004-09-30Initial import of libmatchbox-1.4 into the Packages Collection.agc5-0/+62
This is package is necessary for later versions of the matchbox window manager. A small basic library that provides a large amount of shared functionality to the various matchbox librarys. Provides image processing, font abstraction, a tray app toolkit and more. It is licensed under LGPL.
2004-09-29Correct the directory we descend into to build the version of perl neededkristerw1-1/+3
for this package.
2004-09-28Need to depend on p5-subversion>=1.0.4. Thanks, Thomas Klausner.epg1-2/+2
2004-09-28Update to 5.0:wiz5-27/+26
Release 5.0 13-Sep-04 --------------------- The licence under which PCRE is released has been changed to the more conventional "BSD" licence. In the code, some bugs have been fixed, and there are also some major changes in this release (which is why I've increased the number to 5.0). Some changes are internal rearrangements, and some provide a number of new facilities. The new features are: 1. There's an "automatic callout" feature that inserts callouts before every item in the regex, and there's a new callout field that gives the position in the pattern - useful for debugging and tracing. 2. The extra_data structure can now be used to pass in a set of character tables at exec time. This is useful if compiled regex are saved and re-used at a later time when the tables may not be at the same address. If the default internal tables are used, the pointer saved with the compiled pattern is now set to NULL, which means that you don't need to do anything special unless you are using custom tables. 3. It is possible, with some restrictions on the content of the regex, to request "partial" matching. A special return code is given if all of the subject string matched part of the regex. This could be useful for testing an input field as it is being typed. 4. There is now some optional support for Unicode character properties, which means that the patterns items such as \p{Lu} and \X can now be used. Only the general category properties are supported. If PCRE is compiled with this support, an additional 90K data structure is include, which increases the size of the library dramatically. 5. There is support for saving compiled patterns and re-using them later. 6. There is support for running regular expressions that were compiled on a different host with the opposite endianness. 7. The pcretest program has been extended to accommodate the new features. The main internal rearrangement is that sequences of literal characters are no longer handled as strings. Instead, each character is handled on its own. This makes some UTF-8 handling easier, and makes the support of partial matching possible. Compiled patterns containing long literal strings will be larger as a result of this change; I hope that performance will not be much affected.
2004-09-28Avoid rebuilding the info file. Closes PR 27041 by Naoto Morishima.wiz3-7/+16
2004-09-27Enable pkgviews installation type. From PR#27044 by Cesar Catrian C.cube1-1/+3
2004-09-27Update to version 0.9.1. From PR#27038 by Roland Illig.cube4-22/+31
Fri, Sep 3, 2004: Released Check 0.9.1 Updated tutorial with new features. Added support for XML output of the test results, courtesy of Frederic Peters. Fixed setup bug from forum, failure in setup did not abort test in nofork mode. Applied varargs patch (#933411) and added test cases. Applied fail_if (#709167) patch. Applied 'newbies' patch #995028 for autoconf doc. Applied doc patch #995028 from Bill Barnard. Fixed portability problems tests by changing == to =. Changed copyright according to bug report. Applied patch 796705. Replacing _exit with exit. Applied patch for bug 793671. Mon, May 17, 2004: Released Check 0.9.0 Run fixture teardowns in reverse order to setup Plugged some memory leaks. Added test name to log outputs. Applied patch (802160) for distcheck bug (579604). Fixed log printouts for nofork mode. Updated documentation and converted to DocBook. Added a new print mode, CK_ENV, that gets the print mode from the environment variable CK_VERBOSITY. Made tcase_free and suite_free static. This may break existing test programs. Everything is now freed when srunner_free is called.
2004-09-27Tweak doc to say "make extract" rather than "make configure".tv1-2/+2
2004-09-27Update semi to 1.14.6nb2.uebayasi2-3/+10
Fix PR27034, reported by Miles Nordin <carton at Ivy dot NET>. Help with Katsumi Yamaoka <yamaoka at jpl dot org>. Bump revision.
2004-09-27Update Gorm to 0.8.0. Notable changes include:rh3-7/+39
* New gorm file version. * Full custom palette support * Palette preferences panel to allow the user to configure palettes to load * Experimental: Standalone views. This feature is to allow the use of a view without the need of a containing window. This allows developers to treat these views as they would any other top level object in the .gorm file. This is experimental functionality. * Improved NSTableColumn inspector. The new inspector allows the user to change the data cell used for a given column. This allows the user to select from a list of cell subclasses and set the appropriate custom or non-custom one they want to appear in that column of the table. * Improved layout of some of the inspectors. * Removed old class parser. The parser was somewhat buggy and was actually causing some issues. A new parser will be available in the next version of Gorm. For now users will need to use the class inspector or the outline view to enter classes into Gorm. * Experimental: "File" section. This is essentially a per-file preference which allows the user to control which version of GNUstep a given file will be compatible with. It also lists the potential compatibility issues with the selected version. * Improved controls palette. New items for some of the standard font replace the old "Title" widget which was a System-14 font. The new widgets use a selection of the standard System font to allow the user to easily build a gui using these and reducing the amount of time the user needs to spend fiddling with the font panel.
2004-09-27Update gnustep-examples to 1.0.0. Changes are numerous minor updates andrh3-107/+114
fixes tracking the changes to the gnustep-* packages over the last year.
2004-09-27Add some more relevant directories to PRINT_PLIST_AWK.rh2-10/+128
2004-09-26Sort dependencies.epg1-12/+12
2004-09-26Oops, left out p5-Compress-Zlib and p5-YAML dependencies.epg1-1/+3
2004-09-26fix for darwindanw2-2/+16
2004-09-26Update to Version 0.7.0 (released Sep 02 2004)epg3-6/+28
http://svn.collab.net/repos/rapidsvn/tags/0.7.0 User-visible changes: 179 Direct text editor access from RapidSVN 172 Options are now configurable in View/Diff tool preferences 192 Added STOP button 190 Added Documentation for Release Management 191 New merge button in log dialogue 220 Tweaked: Remember window status "Maximized" 195 Tweaked: Commits are now recursive as default (in dialog) 206 Tweaked: Changed menu entries for "Add Working Copy" and "Add Repository" menu items confusing 165 Fixed: Space in dir name became %20 on rename 194 Fixed: Copy didnt work with URL destination 196 Fixed: Win32 build files were missing from tar.gz source kits 167 Fixed: crash on expand bottom bookmark 214 Fixed: Incorrect info for repository directories 197 Fixed: Commit/Update used active file instead of folder in folder browser menu (when right-clicking in the folder browser) 207 Fixed: TextViewer (called by LogDlg) removed (see #179) 189 Fixed: Sort order; group unversioned items with other modified 198 Fixed: folder double-clicking on Win32 Developer-visible changes: 201 Fixed: Client::log("") failed 204 Fixed: cat couldnt return binary data 218 Fixed: Default config dir created against user wishes 219 Fixed: Auth code ddidnt not use users config_dir 224 Fixed: make fails on Suse 9.1 208 Fixed: install svncpp headers (with make install) 199 Fixed: Correctly disable VC7 warning 4290 200 Fixed: VC7 wants some more Exception ctors
2004-09-26Import p5-Data-UUID-0.11.epg4-0/+35
This module provides a framework for generating UUIDs (Universally Unique Identifiers, also known as GUIDs (Globally Unique Identifiers). A UUID is 128 bits long, and is guaranteed to be different from all other UUIDs/GUIDs generated until 3400 A.D. UUIDs were originally used in the Network Computing System (NCS) and later in the Open Software Foundation's (OSF) Distributed Computing Environment. Currently many different technologies rely on UUIDs to provide unique identity for various software components, Microsoft COM/DCOM for instance, uses GUIDs very extensively to uniquely identify classes, applications and components across network-connected systems.
2004-09-26DEPENDS on p5-PerlIO-via-dynamic.kristerw1-1/+3
2004-09-26+p5-Clone, p5-Data-Hierarchy, p5-File-BaseDir, p5-File-MimeInfo,epg1-1/+12
p5-IO-Digest, p5-PerlIO-via-dynamic, p5-PerlIO-via-symlink, p5-Regexp-Shellish, p5-SVN-Mirror, p5-SVN-Simple, svk
2004-09-26Import svk-0.21.epg4-0/+56
While Subversion aims to take over the CVS user base, SVK attempts to take over the others -- including people who are already using other SCM systems, and people who had not started using SCM. SVK is written in Perl, using Subversion's underlying filesystem but provides additional features: * Offline operations like "checkin", "log", "merge". * Distributed branches. * Lightweight checkout copy management (no ".svn" directories). * Advanced merge algorithms, like "star-merge" and "cherry picking". For more information, please visit the web site at http://svk.elixus.org/.
2004-09-26Import p5-File-MimeInfo-0.10.epg4-0/+27
This module can be used to determine the mime type of a file; it's a replacement for File::MMagic trying to implement the freedesktop specification for using the shared mime-info database. The package comes with a script called 'mimetype' that can be used as a file(1) work-alike.
2004-09-26Import p5-File-BaseDir-0.02.epg4-0/+25
This module can be used to find directories and files as specified by the XDG Base Directory Specification.
2004-09-26Import p5-SVN-Simple-0.25.epg4-0/+24
SVN::Simple provides a simple interface to the Subversion delta editor interface for Perl.
2004-09-26Import p5-SVN-Mirror-0.47.epg4-0/+29
SVN::Mirror allows you to mirror one Subversion repository to another.
2004-09-26Import p5-IO-Digest-0.10.epg4-0/+25
This module allows you to calculate digests while reading or writing file handles. This avoids the case you need to reread the same content to compute the digests after written a file.
2004-09-26Import p5-PerlIO-via-symlink-0.02.epg4-0/+24
The PerlIO layer symlink allows you to create a symbolic link by writing to the file handle.
2004-09-26Import p5-PerlIO-via-dynamic-0.11.epg4-0/+24
PerlIO::via::dynamic is used for creating dynamic PerlIO layers. It is useful when the behavior or the layer depends on variables.
2004-09-26Import p5-Regexp-Shellish-0.93.epg4-0/+23
Regexp::Shellish provides shell-like regular expressions.
2004-09-26Import p5-Data-Hierarchy-0.20.epg4-0/+26
Data::Hierarchy is a Perl module for handling data in a hierarchical structure.
2004-09-26Import p5-Clone-0.15.epg4-0/+25
This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects.
2004-09-25Add APR_USE_DB4 to BUILD_DEFS.epg1-2/+2
2004-09-25Add and enable palmpowerrh1-1/+2
2004-09-25Initial import of palmpower-1.0.2, an assembler, disassembler, and PRCrh4-0/+39
splitter for PalmOS binaries.
2004-09-25Remove old, no longer used master site.epg1-3/+2
2004-09-25Version 1.0.8epg2-5/+5
(22 September 2004, from /branches/1.0.8) http://svn.collab.net/repos/svn/tags/1.0.8 User-visible-changes: * fixed: mod_authz_svn path and log-message metadata leaks. See CAN-2004-0749, and descriptive advisory at http://subversion.tigris.org/security/CAN-2004-0749-advisory.txt
2004-09-25+vanessa_adt, vanessa_logger, vanessa_socketgrant1-1/+4
2004-09-25Initial import of vanessa_adt-0.0.6 into the NetBSD packages collection.grant5-0/+48
vanessa_adt is a library that provides Abstract Data Types (ADTs). Includes queue, dynamic array, hash and key value ADT.
2004-09-25Initial import of vanessa_socket-0.0.7 into the NetBSD packages collection.grant5-0/+53
vanessa_socket is a library that simplifies TCP/IP socket operations. It includes code to open a socket to a server as a client, to listen on socket for clients as a server and to pipe information between sockets.
2004-09-25Initial import of vanessa_logger-0.0.7 into the NetBSD packages collection.grant5-0/+50
vanessa_logger is a library that provides a generic logging layer that may be used to log to one or more of syslog, an open file handle or a file name. Though due to to limitations in the implementation of syslog opening multiple syslog loggers doesn't makes sense. Includes the ability to limit which messages will be logged based on priorities.
2004-09-24Correct the directory we descend into to build the version of perl neededkristerw1-1/+3
for this package.
2004-09-24Update global to 4.8, from Kailash Sethuraman in PR#27017abs3-7/+11
Changes since 4.7: August 26 2004, Shigio Yamaguchi <shigio@gnu.org> * Moved function now() from gtags.c to libutil/date.c. * htags: Changed so that the path passed to CGI might be encoded to %xx. * htags: Rewritten in C language. * htags: The use of the 'gtags --write' was stopped. * die.c: New function sethandler() and warning() added. * gctags/reserved.pl: The use of the --key-positions option of gperf(1) was stopped. We need gperf-3.0.1 instead. June 1 2004, Shigio Yamaguchi <shigio@gnu.org> * htags: Function usable() was changed to the same specification as usable() in libutil/usable(). * htags: Execution path of global(1) was changed to the absolute path. * htags: Write FILEMAP file for reference from external system. * conf.c: New config variable 'bindir' and 'datadir' added. * w32/ directory removed.
2004-09-24Changes 2.0.12:adam2-5/+5
* piecolor naming fix * primitive API change to 'filledPie' * introduction of some const variables
2004-09-24Update gnustep-base to 1.10.0.rh9-14/+23
Bump PKGREVISION and BUILDLINK_RECOMMENDED for dependent packages due to library major revision bump. Noteworthy changes in gnustep-base-1.10.0: ========================================== Note the interface version of the library has changed so that apps, tools and libraries the use the base library need to be recompiled to use it. * A large majority of the library classes have been documented thanks to the efforts of Andrew Ruder * URL classes support persistant connections * Mac OSX XML compatibility fixes.
2004-09-24Update gnustep-make to 1.10.0. Notable changes include:rh3-6/+10
* a GNUsteprc file is now automatically created and installed in $GNUSTEP_SYSTEM_ROOT, which sets the system-wide default for the user root directory (default=~/GNUstep, which can be overriden with the `--with-user-root' argument to configure, or by modifying GNUsteprc after configuration.) * make_services is not run by GNUstep.sh anymore. You must run this manually now (see the gnustep-gui documentation). * Palettes use a plist instead of a strings format file now for the palette.table file. * You can use the `--enable-native-objc-exceptions' argument to configure to enable use of built in objc exceptions with compilers that support it.
2004-09-23Update cpuflags to 0.76:abs4-5/+9
Add 'Intel(R) Pentium(R) M processor' under Linux, plus make each version report the OS in the event of an unrecognised CPU.