summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2003-07-12don't define test target directly, use do-testdillo1-2/+2
2003-07-12use TEST_TARGET instead of custom test targetdillo4-23/+14
2003-07-12Let the commit message contain an empty line by default.wiz2-5/+14
Requested by salo; ride 1.11.6 update version bump.
2003-07-12Update to 1.11.6.wiz21-137/+115
* A warning message is now issued if an administrative file contains more than one DEFAULT entry. * An error running a verifymsg script (such as referencing an unset user variable or the script not existing) now causes the verification to fail. * Errors in administrative files commands (like unset user variables) are no longer reported unless the command is actually executed. * When a file is initially checked out, its last access time is now set to the current time rather than being set to the time the file was last checked in like the modification time is. * The Checkin.prog and Update.prog functionality has been removed. This fuctionality previously allowed executables to be specified in the modules file to be run at update and checkin time, but users could edit these files on a per workspace basis, creating a security hole. [NB: already fixed in the package earlier -- wiz] * Corrected the path in a failed write error message. * Autoconf and Automake are no longer run automatically unless you run configure with --enable-maintainer-mode. Accordingly, noautomake.sh is no longer needed and has been removed. * We've standardized on Automake version 1.7.5 and Autoconf version 2.57 to get at a few new macros. Again, this should only really affect developers. See the section of the INSTALL file about using the autotools if you are compiling CVS yourself.
2003-07-12Update to 1.7.6:wiz3-22/+14
* Fix depcomp's icc mode for ICC 7.1. * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments. * Fix maintainer-clean's removal of autom4te.cache in VPATH builds. * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1. * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS. * Remove Latin-1 characters from elisp-comp. * Update the manual's @dircategory to match the Free Software Directory.
2003-07-12Not needed in 15.4.wiz1-13/+0
2003-07-12Update to 15.4: bugfix release.wiz4-46/+43
2003-07-12Update to 0.25.epg4-25/+9
Upstream change log: Version 0.25.0 (released 09 July 2003, revision 6394, branches/release-0.25.0) User-visible changes: * command line options: . new --force option for svn export (r6327,#1296) . new --force-log for commit, copy, delete, import, mkdir, move (r6294) . --force no longer needed for commit * commands . new - svnadmin archive (r6310) . changed - svn import syntax now 'svn import [PATH] URL' (r6288,#933,#735) . fixed - Search PATH for external diff commands (r6373) . fixed - 'svn switch' memory bug (r6296) . fixed - 'svn mkdir' coredump (r6388,#1369) * python bindings now in -tools rpm for Mandrake 9.1 (r6374) * allow parent-into-child copies, provided they are not WC->WC. (r6348,#1367) * fixed - Apache module installation order (r6382-6,#1381) * now requre apache 2.0.47 (and apr 0.9.4) * fix 2 commit leaks * fix mod_dav_svn path-escaping bug Developer-visible changes: * Win32 build system . new - .vcproj files for svn_config project and APR (r6311) . fixed - SWIG bindings for Win32 (r6304) . vcproj generator now works (r6316) . swig's generated .c files now dependent on headers in .i files (r6379) . refactored code common to dsp & vcproj into gen_win.py (r6328) * fixed . SEGFAULTs in SWIG bindings (r6339) . potential SEGFAULTs in 'REPORT vcc' backward-compatibility code (r6377) . mod_dav_svn's autoversioning failure on PUT (r6312) . 'svn switch' memory bug (r6296) * changed - mailer.py now uses svn_repos_replay()
2003-07-11Update to 2.2.2:jmmv3-7/+8
Library: * Fix a memory leak in the pixbuf utils. Patch by Takuro Ashie <ashie@homa.ne.jp>. Fixes bug #114928 * Fix a bunch of typos (Kjartan) * Fix problems with sound event handling (Leena) Translations: * Dafydd Harries (cy), Joel Brich (eo), Arafat Mendini (ar).
2003-07-11Update to 2.2.3:jmmv4-13/+13
Library: * Check that user shells exist and are executable in gnome-util.c Fixes bug #91925. (Giovanni Pardini) * Use glib versions of string functions in help converters. Fixes bug #81355. (Morten Welinder) * Fix leak in score handling. Fixes bug #116794 (Kjartan) * Fix reading of free'd memory in poptContext handling in gnome-program. (Jeff) * Fix reading free'd memory in gnome-program (Jeff Steadfast) Translations: * Arafat Mendini (ar), Jordi Mallach (ca), Dafydd Harries (cy)
2003-07-10Also provide a patch file for make.info and not onlyseb3-3/+18
on make.texi so makeinfo is not required to build this package.
2003-07-10Updated cpuflags to cpuflags-0.54abs3-15/+11
Handle hw.model frmatting from hp300 On gcc3 -frename-registers still causes problems for xdm with _some_ -march=XXX values. Next time I might just listen to fredb first...
2003-07-09include gawk/buildlink2.mk to get a working awk on Solaris, fixesgrant1-1/+4
build on Solaris.
2003-07-09kill some leading whitespacegrant1-15/+16
2003-07-09my usual style () "" nits.grant1-3/+3
2003-07-09Update cpuflags to 0.53:abs2-13/+5
Revert changes in 0.52
2003-07-09CVSync 0.23.8gehenna2-5/+5
Changes: * Fix a bug not to accept the option -L. (cvscan) * Fix a bug that the default value of 'maxclients' is not set properly when 'maxclients' is not specified. (server) * Fix bugs of alignment. (server/client) * Fix bugs not to work properly when set 'errormode' to 'fixup' or 'ignore' in some case. (server/client)
2003-07-09force the configure script to look for ncurses *last* when lookinggrant3-1/+29
for a terminal library. [in an ideal world, ncurses wouldn't even be listed, but according to the comments in configure.ac, some Linux distributions don't have libcurses, only libncurses, so it should stay.] fixes a problem when building with an external gcc, since gcc, when installed into /prefix, unconditionally searches /prefix/lib for libraries at link time causing it to find libncurses in /prefix/lib (the normal gcc ugliness). this leads to the runtime linker being unable to find libncurses. noted by gavan@, fix tested by gavan@ and myself.
2003-07-09upgrade to apache-2.0.47/apr-0.9.4.2.0.47.itojun2-5/+5
Changes with Apache 2.0.47 *) SECURITY [CAN-2003-0192]: Fixed a bug whereby certain sequences of per-directory renegotiations and the SSLCipherSuite directive being used to upgrade from a weak ciphersuite to a strong one could result in the weak ciphersuite being used in place of the strong one. [Ben Laurie] *) SECURITY [CAN-2003-0253]: Fixed a bug in prefork MPM causing temporary denial of service when accept() on a rarely accessed port returns certain errors. Reported by Saheed Akhtar <S.Akhtar@talis.com>. [Jeff Trawick] *) SECURITY [CAN-2003-0254]: Fixed a bug in ftp proxy causing denial of service when target host is IPv6 but proxy server can't create IPv6 socket. Fixed by the reporter. [Yoshioka Tsuneo <tsuneo.yoshioka@f-secure.com>] *) SECURITY [VU#379828] Prevent the server from crashing when entering infinite loops. The new LimitInternalRecursion directive configures limits of subsequent internal redirects and nested subrequests, after which the request will be aborted. PR 19753 (and probably others). [William Rowe, Jeff Trawick, André Malo] *) core_output_filter: don't split the brigade after a FLUSH bucket if it's the last bucket. This prevents creating unneccessary empty brigades which may not be destroyed until the end of a keepalive connection. [Juan Rivera <Juan.Rivera@citrix.com>] *) Add support for "streamy" PROPFIND responses. [Ben Collins-Sussman <sussman@collab.net>] *) mod_cgid: Eliminate a double-close of a socket. This resolves various operational problems in a threaded MPM, since on the second attempt to close the socket, the same descriptor was often already in use by another thread for another purpose. [Jeff Trawick] *) mod_negotiation: Introduce "prefer-language" environment variable, which allows to influence the negotiation process on request basis to prefer a certain language. [André Malo] *) Make mod_expires' ExpiresByType work properly, including for dynamically-generated documents. [Ken Coar, Bill Stoddard]
2003-07-08Update cpuflags to 0.52:abs2-5/+13
On i386 try to S/-fomit-frame-pointer/-momit-leaf-frame-pointer/ for package with problems with -fomit-frame-pointer
2003-07-08CVSync 0.23.7gehenna2-5/+5
Changes: * Fix a memory leak. (server)
2003-07-07cvsync 0.23.6gehenna2-5/+5
Changes: * New feature : errormode (server/client) Specifies the behaviour when any errors/conflicts are found in local distributions. abort : Exit/Disconnect with error messages immediately. fixup : Recover errors/conflicts and keep running. ignore : Ignore any errors/conflicts. The keyword 'loose' is obsoleted, same to set 'errormode' to 'ignore'. This exists only for the backward compatibility. * Option (client) -L : Set 'errormode' to 'fixup' for all collections. * Option (cvscan) -L : Set 'errormode' to 'fixup'. -l : Set 'errormode' to 'ignore'. * Improve stability. (server/client)
2003-07-07use DIST_SUBDIR as ruby.taca2-4/+5
2003-07-06Add and enable ruby-installpkg.taca1-1/+2
2003-07-06Initial import of ruby-installpkg 0.0.1, baed on PR pkg/21968.taca4-0/+30
(I've fixed category was www.) This is a module that wraps the classes defined in Minero Aoki's install.rb script. It allows you to easily create your own installation files. It makes the process of creating installation scripts a bit more uniform.
2003-07-05Update ccache to version 2.2. No clear list of changes since 1.8 is available.chris3-23/+5
However changes since 2.1.1 include: # added a test suite # better integration with distcc # added CCACHE_PREFIX option # disabled hard links by default # recognise some more gcc options (eg. profiling) # added --ccache-skip option
2003-07-03Fix some templates to work with the (newer) automake that comes withskrll2-3/+34
pkgsrc. Fixes PR 21989 from Rene Schickbauer.
2003-07-03Add and enable libgsf.wiz1-1/+2
2003-07-03Use ${SH} instead of hardcoding /bin/sh.jmmv1-2/+2
2003-07-03update to 0.5.8. changes:lukem2-5/+5
2003-06-19 0.5.8 - plugged cross-site-scripting hole (thanks Jeff Epler) - minor interface tweak (sf bug 753885)
2003-07-02revert last, we now pass --split-size to makeinfo >= 4.6.grant4-37/+3
unbump PKGREVISION.
2003-07-02add USE_GCC_SHLIB.grant1-2/+3
2003-07-02makeinfo: split info files at 50000 (as per texinfo 4.5 and below)grant4-3/+37
to maintain conistency of the generated files as currently required by pkgsrc. bump PKGREVISION. (perhaps info files will be automatically added to the PLIST in the future?)
2003-07-02Add a test target.uebayasi1-1/+2
2003-07-01NetBSD-current's iconv is good enough, remove USE_GNU_ICONV.drochner2-5/+2
This saves all the headache about mixing GNU and native (lib)iconv.
2003-06-30propagate the USE_GNU_ICONV to dependant packages, otherwise we getdrochner1-1/+2
conflicting dependencies
2003-06-30Update to 4.3pl5. Incorporate 5 official patches.uebayasi2-2/+17
[readline43-001] Pressing certain key sequences causes an infinite loop in _rl_dispatch_subseq with the `key' argument set to 256. This eventually causes bash to exceed the stack size limit and crash with a segmentation violation. [readline43-002] Repeating an edit in vi-mode with `.' does not work. [readline43-003] When in a locale with multibyte characters, the readline display updater will occasionally cause a segmentation fault when attempting to compute the length of the first multibyte character on the line. [readline43-004] When running in a locale with multibyte characters, the readline display updater will use carriage returns when drawing the line, overwriting any partial output already on the screen and not terminated by a newline. [readline43-005] Using the vi editing mode's case-changing commands in a locale with multibyte characters will cause garbage characters to be inserted into the editing buffer. (Any maintainership taker?)
2003-06-29Update to version 3.64.jtb3-25/+31
No changelog. diff shows only minor changes.
2003-06-29Update to version 3.2.2.jtb5-54/+36
Here are the new features in version 3.2: 1. New option -mkhtml to generate HTML documentation files from the source code. Thanks go to Mark McVeigh for contributing this feature. 2. I/O unit usage information is now provided under the -symtab option. A table is printed listing each I/O unit by name and/or number, together with the opera- tions performed on it. 3. A single large project file, created by concatenating a number of separately produced project files, can be input for use as a library project file. 4. Combined type declarations and data-statement-like initializers, as in INTEGER N / 100 / are accepted. 5. Fixed a bug that caused ftnchek to crash if a parameter is declared with the same name as the subprogram containing it. New error message for same. 6. Fixed a bug in checking type agreement between variables and their initial values in Fortran 90-style declarations with initializers, as in INTEGER :: N=100. 7. New error message when an internal file is a constant rather than a variable. Some compilers permit this for READ operations, but it is prohibited by the F90 Standard.
2003-06-29include pthread.buildlink2.mk, as the php sources this uses needsgrant1-1/+2
pth.h.
2003-06-29Add a test target. One appropriate ${MAKE_PROGRAM}.uebayasi1-2/+9
2003-06-28After a short, nonviolent, debate with Shell Hung, merge his py-Checkerdrochner5-89/+0
and my py-checker into one pkg.
2003-06-28After a short, nonviolent, debate with Shell Hung, merge his py-Checkerdrochner5-31/+40
and my py-checker into one pkg. Moved py-Checker to py-Checker-mixedcase in the repository [schmonz 2007-06-07]
2003-06-28After a short, nonviolent, debate with Shell Hung, merge his py-Checkerdrochner1-2/+1
and my py-checker into one pkg.
2003-06-28Update to 0.2.2. Patch provided by Juan RP in PR pkg/21850.jmmv4-49/+49
Changes in 0.2.2: * FAR jmp/call support. Changes in 0.2.1: # Added support for NASM-like -I and -P options to the preprocessor to specify include directories and pre-included files respectively (thanks to Michael Urman for his quick work). # Fixed a number of issues with libtool/libltdl and module building (these issues only affected UNIX builds). # Made the "real" NASM preprocessor the default preprocessor. This was not the case in the original Milestone 2 release (despite an example to the contrary in the release notes)
2003-06-27Initial import of libgsf, version 1.8.0:jmmv7-0/+203
libgsf provides an efficient extensible I/O abstraction for dealing with different structured file formats. It has support for Microsoft OLE2 streams and Zip import. The aim of this library is to replace libole2. Provided in pkgsrc-wip by Jeremy C. Reed with many changes by me.
2003-06-27oops, correct HOMEPAGEdrochner1-2/+2
2003-06-27+py-checkerdrochner1-1/+2
2003-06-27import pychecker-0.8.12, something like "lint", but for Pythondrochner5-0/+81
2003-06-27Update to 6.2:jmmv3-6/+7
Since 6.2alpha5: - There was extra underscore in the name of GC_save_registers_in_stack for NetBSD/SPARC. (Thanks to Jaap Boender for the patch.) - Integrated Brian Alliet's patch for Darwin. This restructured the linuxthreads/pthreads support to separate generic pthreads support from more the system-dependent thread-stopping code. I believe this should make it easier to eliminate the code duplication between pthreads platforms in the future. The patch included some other code cleanups. - Integrated Dan Bonachea's patch to support AIX threads. This required substantial manual integration, mostly due to conflicts with other recent threads changes. It may take another iteration to get it to work. - Removed HPUX/PA-RISC support from aix_irix_threads.c. It wasn't used anyway and it cluttered up the code. And anything we can do to migrate towards generic pthreads support is a good thing. - Added a more explicit test for tracing of function arguments to test.c. (Thanks to Dan Grayson.) - Added Akira Tagoh's PowerPC64 patch. - Fixed some bit rot in the Cygwin port. (Thanks to Dan Bonachea for pointing it out.) Gc.h now includes just windows.h, not winbase.h. - Declared GC_save_regs_in_stack() in gc_priv.h. Remove other declarations. - Changed --enable-cplusplus to use automake consitionals. The old way confused libtool. "Make install" didn't work correctly for the old version. Previously --enable-cplusplus was broken on cygwin. - Changed the C version of GC_push_regs to fail at compile time if it is generated with an empty body. This seems to have been the cause of one or two subtle failures on unusual platforms. Those failures should now occur at build time and be easily fixable. Since 6.2alpha6: - Integrated a second round of Irix/AIX patches from Dan Bonachea. Renamed mips_sgi_mach_dep.S back to mips_sgi_mach_dep.s, since it requires the Irix assembler to do the C preprocessing; gcc -E doesn't work. - Fixed Makefile.direct for DARWIN. (Thanks to Manuel Serrano.) - There was a race between GC_pthread_detach and thread exit that could result in a thread structure being deallocated by GC_pthread_detach eventhough it was still needed by the thread exit code. (Thanks to Dick Porter for the small test case that allowed this to be debugged.) - Fixed version parsing for non-alpha versions in acinclude.m4 and version checking in version.h.