summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2003-08-04Update to 1.6.0.jtb3-21/+21
Summary: This release has the following new features that are not available in 1.4.* releases 1. Generic properties to give application more control on I/O pipeline 2. Time allocation and fill value properties 3. New filters: external compression filter szip internal shuffling and checksum filters 4. Compact storage layout for datasets 5. Redesigned I/O pipeline for better performance. For more information see http://hdf.ncsa.uiuc.edu/HDF5/doc_resource/SZIP/index.html http://hdf.ncsa.uiuc.edu/HDF5/doc/ADGuide.html http://hdf.ncsa.uiuc.edu/HDF5/doc/ADGuide/Changes.html
2003-08-04Deal with the changed layout of the "Idle" IDE stuff in Python-2.3:drochner1-5/+25
All the meat coms with the base installation; we just install a small wrapper here.
2003-08-04Removed gpasm which has been supersceeded by gputilswulf5-168/+0
2003-08-03Added and enabled gputils: a collection of tools for Microchip's PICwulf1-2/+2
micro-processors, replacing obsoleted package gpasm. Removed obsoleted package gpasm.
2003-08-03Initial commit of gputils-0.11.6, a collection of development tools forwulf4-0/+485
Microchip's PIC micro-processors, replacing obsoleted package gpasm.
2003-08-03Update bmake and mk-files.sjg4-11/+11
Changes to mk-files: * install-mk: add ability to use cp -f when updating destination .mk files. Also now possible to play games with FORCE_SYS_MK=ln etc on *BSD machines to link /usr/share/mk/sys.mk into dest - not recommended unless you seriously want to. * own.mk (IMPFLAGS): add support for COPTS.${IMPSRC:T} etc for semi-compatability with NetBSD. Changes to bmake: * boot-strap: Allow setting configure args on command line. * configure.in: add --with-defshell to allow sh or ksh to be selected as default shell. * Merge with NetBSD make 20030731 Pick up .SHELL spec for ksh and associate man page changes. Also compat mode now uses the same shell specs. * var.c (Var_Parse): ensure delim is initialized. * unit-tests/Makefile.in: use single quotes to avoid problems from some shells. * makefile.boot.in: Run the unit-tests as part of the bootstrap procedure. * unit-tests/Makefile.in: always force complaints from ${TEST_MAKE} to be from 'make'. * configure.in: add check for 'diff -u' also fix some old autoconf'isms * Makefile.in (BMAKE_VERSION): bump version to 20030728. if using GCC add -Wno-cast-qual to CFLAGS for var.o * Merge with NetBSD make 20030728 Pick up fix for :ts parsing error in some cases. Pick unit-tests.
2003-08-03CVSync 0.24.3gehenna2-5/+5
Changes: * Fix a bug to fail to update a symlink status. (client) * New keyword: nordiff (server) On updating a regular file, a server send a whole file instead of using rdiff algorithm. It is efficient to update tarballs or similar. * Improve a rdiff performance slightly. (server)
2003-08-02Make this compile on archs where size_t != unsigned int.kristerw2-1/+14
2003-08-02Override config.guess and config.sub to make the pkg recognize and buildkristerw1-1/+3
on more systems (e.g. NetBSD 1.6.1/shark).
2003-08-02gcc 2.95.3/arm gives "internal compiler error" when compiling this with -O2.kristerw1-1/+5
Use -O1 instead for arm.
2003-08-02Undo last. While it may make live easier, it's not good for binarywiz1-2/+2
packages.
2003-08-02when determining whether iconv is required, don't require gettext-libgrant1-2/+2
0.11.5nb1 or higher, 0.11.5 is good enough. fixes build with slightly older installation of gettext-lib.
2003-08-02use USE_GNU_TOOLS+= so we can co-exist with a user's setting.grant1-2/+2
2003-08-02USE_GNU_TOOLS=awkgrant1-4/+3
2003-08-01Depend on latest kde1. Bump PKGREVISION.wiz1-3/+3
2003-08-01fix makesum.gehenna1-3/+3
2003-07-30Add TEST_TARGETheinz1-1/+3
2003-07-30Update to 2.2.3:jmmv3-8/+45
- Fixed BonoboSocket so that it will autoactivate controls appropriately; this did not work for in-process controls. - Merged changes from the HEAD branch so that toolbar buttons are not focusable.
2003-07-30CVSync 0.24.2gehenna2-5/+5
Changes: * A 'access' file is reloaded dynamically. (server) This file is reloaded when a client is connected if necessary. Not necessary to restart for reloading any files. * New keyword: base-prefix (server) Specifies the prefix for the keyword 'prefix' of collections. It must be an absolute path. * Fix a bug to try to remove wrong pid file mistakenly. (server) * Fix a bug to forget to tranfer the last file in some cases. (server) * native SHA1 is enabled on OpenBSD 3.3 or prior again. All SHA1 calculations is wrapped by giant lock on OpenBSD. * Fix a rdiff bug. (server) * New keyword: haltfile (server) When specified, a server checks it instead of /var/run/cvsyncd.HALT. * New feature: file-based halt (server) If /var/run/cvsyncd.HALT is created or modified when a server is running, the server exits gracefully. * New keyword: pidfile (server) Specifies the file to store the pid number in a configuration file. * Fix a bug to mirror directories/files specified as 'deny' in 'distfile' mistakenly.
2003-07-30x11/kde3/ -> meta-pkgs/kde3/markd3-7/+7
2003-07-30Update kdbg to 1.2.8markd4-42/+41
* Fixed security flaw regarding the program specific debugger command.
2003-07-30Update kdesdk to 3.1.3.markd3-11/+10
Changes: * cervisia: Immediately save changed settings in the settings dialog * cervisia: Fixed the size of the diff overview widget * cervisia: Fixed crash when hidden files changed * cervisia: Re-added the "clear" command to the context menu of the protocol view * kbabel: Fix TP robot interaction * kbabel: Allow upgrade translation database from Berkeley Database II to Berkeley Database IV * kbabel: DocBook entities can contain dots * kapptemplate: Fix UIC detection for KDE 2.x projects. * kapptemplate: tail -n / head -n POSIX compliance fix.
2003-07-29Add and enable re2cagc1-1/+2
2003-07-29Initial import of re2c-0.9.1 into the NetBSD Packages Collection.agc4-0/+31
re2c is a preprocessor that generates C-based recognizers from regular expressions. The input to re2c consists of C/C++ source interleaved with comments of the form /*!re2c ... */ which contain scanner specifications. In the output these comments are replaced with code that, when executed, will find the next input token and then execute some user-supplied token-specific code. re2c generates parsers which are not table-based, and can be twice as fast as flex.
2003-07-29Add and enable device-driver-doc-deagc1-1/+2
2003-07-29Initial import of Jochen Kunz's documentation for writing device driversagc4-0/+38
for NetBSD (written in German) into the NetBSD Packages Collection. A "NetBSD Device Driver Writing Guide": It consists of three main sections: - Introduction to autoconfig(8). - Usage of the autoconfig(8) infrastructure, demonstrated on the example of rf(4). - Core of the rf(4) driver, that shows how data is transfered from and to a (disk) device.
2003-07-28raw new lines are forbidden in string literals; avoid themmrg2-1/+312
2003-07-28Add patch to fix audio output problem in plaympeg. From soren@blef.org injmmv2-1/+28
PR pkg/20204.
2003-07-28Depend on glu, needed to build the GL movie player. Bump PKGREVISION to 4.jmmv1-2/+3
Hopefully fixes problems shown by Hubert's bulk build.
2003-07-26Let the NAS audio driver be a plugin too, to get rid of the SDL_USE_NAS buildjmmv6-27/+47
definition. Bump revision again, to 6, for better dependancy handling.
2003-07-26Bump revision due to SDL update, and sync versions in buildlink files wherejmmv9-17/+18
needed. This is required because esound has been droped as a dependancy.
2003-07-26Implement loadable plugin support for arts and esound output. This is tojmmv8-85/+259
avoid using build variable definitions, and to allow optional use of these daemons on machines where binary packages are used. esound is no longer needed in this package by default. OSS is kept in the package as it was before, beeing the default output driver. Bump PKGREVISION to 5. The patch has been reviewed by wiz@, the maintainer. It has also been sent back to SDL authors in the hope that they will implement this functionality. Closes PR pkg/21774 by Marc Recht, which requested the addition of arts as an optional dependancy (not done).
2003-07-25+py-zconfigdrochner1-1/+2
2003-07-25add ZConfig-1.0, a Python configuration library for those who don't likedrochner5-0/+84
the Windows-ini-file-like stuff which comes with the base pkg
2003-07-25add some...drochner2-0/+24
2003-07-25xmlcatmgr/catalogs.mk is not needed; the buildlink2.mk is enough.jmmv1-2/+2
2003-07-25Update to 5.42a:jmmv2-7/+6
Version 5.41 2003-06-30 Added runtests.bat contributed by Lon Amick <lon.g.amick@mail.sprint.com> Added JAVT timezone. David Coppit <david@coppit.org> Fixed bug where -HH:MM and +HH:MM were not being accepted as valid timezones. Hank Barta <hbarta@htc.com> Small patch for OpenVMS. Martin P.J. Zinser <zinser@decus.de> Minor doc fix. Jeremy Tietsort <jrtietsort@micron.com> Added BRST timezone. Daniel Serodio <dserodio@email.com> Added Russian translation. Dapi <dapi@mail.ru> Made the UnixDate %Z format work with numeric timezones. Michael Isard <michael.isard@compaq.com> Minor bug fix where /etc/timezone not correctly read. Jacek Nowacki <jacekn@polcard.com.pl> Added ART timezone. Fabian Mandelbaum <fabman@mandrakesoft.com> Minor enhancement to ParseRecur. Randy Harmon <rjh@fortheweb.com Fixed spelling of Veteran's day. Dirk Eddelbuettel <edd@debian.org> Documentation improvements. James Olsen <jolsen@multiad.com> Added Brazilian timezones. Raul Dias <raul@dias.com.br> Fixed WEST timezone. Pedro Melo CUNHA <melo@isp.novis.pt> Added NOVST timezone. Roman Y Malakhov <roman@intis.tomsk.ru> Additions to Dutch translation. Willem <itsme@xs4all.nl> Fixed a bug where timezones -HH:MM weren't handled in ISO 8601 dates. Ed Avis <ed@membled.com> Fixed a bug involving business deltas with negative hours. Ludovic Dubost <ludovic@pobox.com> Modified Delta_Format to treat the entire delta as exact if no month component is present. Due to discussion with Tim Turner <torrid@mindspring.com> Added EAT timezone. David Whiting <dave@pluto.ammp> Added BOT timezone. Khaled Mostaguir <Khaled.Mostaguir@isb-sib.ch> Added several Australian timezones. Jason King <Jason.King1@team.telstra.com> Added some support for NetWare. Chris Shields <cshields@waubonsee.edu> Added some help for VMS timezones. Don Slutz <DSlutz@arrayinc.com> Applied some robustness patches. Ed Avis <ed@membled.com> Fixed a bug with years <1000. Jonathan Callahan <Jonathan.S.Callahan@noaa.gov> Patch to make Manip.pm -Mstrict clean and better VMS support. Peter Prymmer <PPrymmer@factset.com> Patch to French support. Patrick Turmel <patrick@espacecourbe.com> Added Tues/Thur abbreviations. <mthurn@cise.ufl.edu> Fixed a bug in "1st saturday of 2005" format. Maurice Aubrey <maurice@redweek.com> Taint check insecure $ENV{PATH} fix. Ed Avis <ed@membled.com> Patch to allow deltas of the form "+ -1 day" to work. Ed Avis <ed@membled.com> Added Turkish. <giray@pultar.org> Added Danish. Jesper Dalberg <dalberg@cybercity.dk> Added some checking to the timezone determination. Ed Avis <ed@membled.com> ***Replaced all non-ASCII characters with hex representations to avoid the malformed UTF-8 character warnings. Ed Avis <ed@membled.com> Removed ampersands from function calls in documentation to fit new perl coding standards. Bill Pollock <billp@statenet.com> Fixed a bug where spaces in a date caused problems in German (due to the number 1st, 2nd, etc. being 1., 2., etc.). Erik Roderwald <erik@roderwald.de> Version 5.42 2003-07-02 Number changed to distinguish between the development release (5.41) and official release since. Version 5.42a 2003-07-03 A quick fix to replace a faulty test.
2003-07-25Apply distribution patch and fix a minor problem (linker flags not beeingjmmv3-4/+11
passed to configure checks). Bump PKGREVISION to 1.
2003-07-25Revision bump, because libexif shared library version changed in 0.5.10adam1-2/+2
2003-07-24add python libsdrochner1-1/+3
2003-07-24add py-kjbuckets-2.2, a fast hashtable implemtationdrochner4-0/+47
2003-07-24add py-pqueue-0.2, a fast priority-queue implementationdrochner4-0/+48
2003-07-24Add and enable buildtool-doc.jmmv1-1/+2
2003-07-24Initial import of buildtool-doc, version 0.12:jmmv4-0/+54
This package provides the full User's and Developer's manual for the Buildtool portable BSD-like build infrastructure. Documentation is installed in HTML format only.
2003-07-24Update to 0.12:jmmv5-18/+75
Released on 2003/07/24, its state was alpha. o The bt_wizard module was added, which creates the basic structure needed for a project based on a serie of interactive questions. o Added cache support for many checks in bt_config. This makes the program run a lot faster if checks are duplicated, and more impor- tant, lets the administrator define check results beforehand in the system wide bt_config.conf configuration file. o The bt_swcgen module was added, which aids the system administrator in the creation of system-wide configuration files for bt_config (that is, files that store check results to avoid rechecking the same thing over and over again). o The buildtool.d/config_init file was deprecated. The entire configu- ration script is now read from a single file, buildtool.d/config, as the old framework was confusing and error prone. Compatibility will be kept for some time. o The TeXinfo documentation was removed. The manual is now distributed in its own `buildtool-doc' package, written using Docbook/XML. o The buildtool.spec file was added, needed to create RPM packages. It actually supports building binary packages for RedHat Linux and SuSE Linux. o Improved user experience: better usage messages and support for long options added. o A developer mode was added to all configure scripts (disabled by de- fault). It enables extra functionality during the build process, ideal for developers but which may annoy end users. o Removed license description files. bt_dist will suggest a COPYING file instead, as this is the most common practice suggested by li- censes. o New standard checks in the bt_config module, specially bt_check_prog_m4() and bt_check_attribute(). o Code cleanup and simplification (using M4 in some places).
2003-07-23There was a bug in make 20030714 such that the :ts modifier didn't work.sjg4-11/+11
Update to 20030723, which also has some minor portability improvements in the boot-strap and install-mk scripts.
2003-07-23Depend on diffutils >= 2.7.seb1-2/+2
Patch provided by Jonathan Perkin <jonathan at perkin dot org dot uk> in PR pkg/22236.
2003-07-23adapt to our naming scheme for Pythin version dependant utilities.drochner2-1/+24
Now "pyuic" and "pylupdate" are found properly.
2003-07-22Add perl interpreter lines to perl scripts, and use REPLACE_PERL to makeagc5-3/+37
sure the right interpreter gets used.
2003-07-22+eric3drochner1-1/+2