Commit graph

152 commits

Author SHA1 Message Date
abs
3cd0f19d2a Update mserv to mserv-0.33nb5:
Correctly parse ID3V2 headers.
2002-10-03 15:47:49 +00:00
martti
362d12556c * Updated libxml2 to 2.4.25
* Updated libxslt to 1.0.21
2002-10-03 14:07:12 +00:00
markd
cf85a927e1 Note update of kdesdk, kdevelop and kdevelop-base 2002-10-03 13:57:19 +00:00
agc
c63b1572ba Fix two minor typos in previous entries. 2002-10-03 13:23:49 +00:00
cjep
3ced27dc0f Added editors/easyedit (formerly editors/ee). 2002-10-03 07:05:06 +00:00
lukem
9eb17da0dd cdrecord-devel 1.10.34nb1 2002-10-03 05:05:59 +00:00
itojun
4aceea6312 mail/sendamil 2002-10-03 04:03:35 +00:00
seb
a8489d7f10 Note update of devel/gtexinfo to version 4.2 [lots of new features, most notably xml and docbook generation support] 2002-10-03 02:10:37 +00:00
wiz
2908ae8b00 www/php4 update [phpize change] 2002-10-02 23:49:00 +00:00
cjep
7fa346fa89 Initial import of the Easy Editor 1.4.5a into the NetBSD packages
collection as editors/ee.

EE is an easy to use text editor, intended to be usable with little or no
instruction. (A version of this editor is found in FreeBSD).
2002-10-02 21:39:07 +00:00
jlam
d2a8af248d pkgsrc/audio/oss - Open Sound System(TM) soundcard driver
Open Sound System(TM) (OSS) is the first attempt in unifying the digital
audio architecture for UNIX.  OSS is a set of device drivers that provide a
uniform API across all the major UNIX architectures.  It supports Sound
Blaster or Windows Sound System compatible sound cards which can be plugged
into any UNIX workstation supporting the ISA or PCI bus architecture.  OSS
also supports workstations with on-board digital audio hardware.

The pkgsrc OSS installs the evaluation version of OSS available from
ftp.opensound.com, but allows for updating the license file to a permanent
license.
2002-10-02 20:36:23 +00:00
grant
624b8e4571 note xfstt update. 2002-10-02 13:40:57 +00:00
grant
be090028d8 note apache and apache6 update. 2002-10-02 13:36:36 +00:00
grant
1aefa38581 Fix apache2 update to 2.0.40 - s/apache/apache2/ 2002-10-02 13:34:36 +00:00
grant
9db56029f6 note socks5 update. 2002-10-02 13:32:01 +00:00
itojun
e32cbf08d8 www/apache2 2002-10-02 13:10:58 +00:00
tron
f5cbd672d7 Fix typo in last entry for the "vmware-module" package. 2002-10-02 11:49:28 +00:00
minoura
7f3e816b77 Note upgrade of lang/gauche package.
Release 0.5.5 : Feature enchancements.
 * New module math.mt-random : implements Mersenne-Twister random
number generator.
 * New module srfi-19: supports SRFI-19 (Time data types and procedures).
 * New procedure pa$ (partial apply), compose, and some
combinator-like procedures like map$, for-each$. See "Combinators"
section of the reference manual for details.
 * New procedures copy-file, move-file, touch-file and
find-file-in-paths in file.util module.
 * New procedures arity, procedure-arity-includes?,
arity-at-least-value to query procedure's arity. See "Procedure arity"
section of the reference manual.
 * New syntax define-constant, set!-values, begin0, let1.
 * New module math.const : provides some useful constants like pi and e.
 * New system procedure sys-utime.
 * New built-in type <time>, a SRFI-compatible time
representation. SRFI-18 procedures current-time, time->seconds and
seconds->time are also provided.
 * Built-in sort function is improved for the worst case.

Release 0.5.6 : Bug fix and feature enchancements.

 * Supports JIS X 0213:2000 japanese character set.
 * SRFI-27 (Source of random bits) is supported.
 * Added macro dolist; I couldn't regist the temptation.
 * Fixed a bug that caused active objects in DLL to be
garbage-collected on cygwin platform.
 * Fixed a bug that char->integer returned wrong number (thanks for
Sven Hartrumpf).
 * Fixed gosh's usage message (thanks for Sven Hartrumpf).
 * vector-fill! takes optional start/end argument (parallel to SRFI-13
string-fill!).

Release 0.5.7

 * Updated Boehm GC to version 6.1alpha5.
 * Characters can be written in Unicode, as #\uXXXX or #\uXXXXXXXX, or
embedded in literal strings as \uXXXX or \UXXXXXXXX. If Gauche's
internal character encoding is not UTF-8, they are converted to
internal encoding by the reader. Procedures char->ucs and ucs->char
are also provided.
 * Added SRFI-25 (multi-dimensional arrays) support as gauche.array
module. See "Arrays" section of the reference manual for details.
 * Added SRFI-26 (cut and cute macros for specializing parameters)
support. See "Making procedures" section of the reference manual.
 * Added SRFI-28 (basic format strings) support by simply extending
the existing format to allow to omit the port argument.
 * Renamed module srfi-4 to gauche.uvector and added lots of
arithmetic operations on the homogeneous numeric vectors. The old
module srfi-4 still works as an alias of gauche.uvector.
 * Fixed a bug in the UTF8 to EUC_JP conversion routine in
gauche.charconv module.
 * Added make target 'uninstall'.

Release 0.6

 * Multithread support
 * Now info documents are created and installed by default.
 * On-line documentation.
 * Several bug fix and cleanup in signal handling. Added
set-signal-handler!, get-signal-handler and get-signal-handlers. Added
sys-sigmask and sys-sigsuspend. Fixed sys-pause that had missed some
signals to catch.
 * In gauche.net module, allow socket-bind and make-server-socket to
accept 0 as port number and let the system assign the port. (Thanks to
ODA Hideo for a patch).
 * Bug fix in eqv? and equal? : (eqv? 1 1.0) should be #f, but it
returned #t. So as equal?.
 * Bug fix in call/cc and dynamic-wind handling. When you assigned
continuation to the top-level variable and re-invoked it later,
dynamic-wind stack wasn't called properly in certain situations.
 * Bug fix in reading library path from the environment variable
(thanks to Alex Shinn).
 * Bug fix in gauche.uvector code that caused random crash with
s64vector/u64vector.
 * Bug fix in gosh that didn't flush buffered ports when it is used
non-interactively and Scheme's main function returns. (thanks to
Fujii-san).

Release 0.6.1 : minor fixes.

 * Bug fix: fixed the stack trace in the default error message which
was broken since the last release.
 * Bug fix: gosh sometimes went into an infinite loop or dumped core
when used as a slave process of Emacs and the Emacs is killed. (Thanks
to Sakae for pointing this out).
 * The stub generator script is improved. The new format allows more
compact notation. It is not fully compatible with the older versions.

Gauche release 0.6.2 :

 * Module inheritance: modules can be inherited now. You can extend
the existing modules, or bind them togehter into one module, using
module inheritance. See the extended "Modules" section of the
reference manual.
 * Added nested block comment #| ... |#. This is defined in SRFI-30
and compatible among lots of popular Scheme implementations.
 * Added debug stub feature (#?=). See "Debugging" section of the
reference manual.
 * Bug fix: when SIGINT handler was installed and read was
interrupted, the read procedure returned EOF. (Thanks to Julian
Fondren for reporting this).
 * Bug fix: enable-debug hasn't been working for some time.
 * Bug fix: regexp worked incorrectly for patterns like #/a|(b)|c/
(thanks to Alex Shinn for reporting this).
 * The default signal handler for SIGHUP, SIGQUIT and SIGTERM now
terminates the interpreter. So gosh terminates properly when run under
Emacs and the Scheme buffer is killed.
 * New procedures: fixnum?, bignum?, string-pointer-copy,
string-pointer-byte-index (these two are contributed by Alex Shinn),
keyword->string, read-eval-print-loop, sys-nanosleep.
 * New procedures in util.queue: queue-length, list-&gtqueue,
queue->list, find-in-queue, remove-from-queue!.

Gauche release 0.6.3 :

 * Improved the compiler and the VM. Call-intensive applications may
observe 5%-10% performance improvement.
 * Object-apply hook: if non-procedure object is 'applied', a generic
method object-apply is implicitly invoked.
 * Regexp improvements:
 * Charset reader improvement: you can include POSIX character class
notations, such as [:alpha:], in the literal character set,
e.g. #[[:alpha:]].
 * Syntax for literal incomplete strings are changed from #"..." to
#*"...". The old one is still recognized, but its use is deprecated;
eventually the #"..." syntax will be taken by string interpolation
feature, so please move to the new syntax if you're using the old one.
 * Added module: gauche.syslog - syslog(3) API.
 * gauche.logger improvements: now <log-drain> object accepts
procedures to generate prefix. The log can be directed to system
logger by specifying symbol syslog as the logfile path.
 * Bug fix in file.util: directory-fold signalled an error when the
directory had a dangling symlink.
 * Added module: rfc.quoted-printable
 * Bug fix in math.mt-random: the DSO file is linked with
:export-symbols #t, so that other extension modules that use C API of
math.mt-random can work.
 * Bug fix in configure.in : changed autoconf variable GZIP to
GZIP_PROGRAM, for the former interferes gzip's operation.
2002-10-02 08:27:37 +00:00
uebayasi
240f2a7637 Note update of vmware-module 1.0nb1. Patch for the new devsw framework. 2002-10-02 05:32:48 +00:00
rh
6730056467 Note update of pan to 0.11.4 2002-10-02 03:43:01 +00:00
rh
17a21f9bf2 Note downgrade of pan to 0.11.2nb2 and re-import of pan-0.13.0 as gtk2-pan 2002-10-02 03:13:30 +00:00
uebayasi
b292a01dd6 Note update of ddskk-20020929. 2002-10-01 14:44:54 +00:00
dillo
67917d731d note update of mplayer packages to 0.90rc8nb1:
fix VCD playback
	search for config files where we install them
2002-10-01 12:54:01 +00:00
drochner
020182d3cb german fortunes 2002-10-01 10:36:10 +00:00
frueauf
ce27128c14 Note update of fetchmail{conf} to 6.1.0.
Please update older version because of recent vulnerability
(http://security.e-matters.de/advisories/032002.html).
2002-09-30 20:53:31 +00:00
wiz
9766b539db pkgtools/pkglint-3.36 bugfix update; net/dc_gui-0.62 [new options] 2002-09-30 16:36:59 +00:00
wiz
d6dc3de0e4 graphics/tuxpaint-2002.09.29 update. 2002-09-30 16:03:53 +00:00
taca
2b7732b341 Note update of security/rats to 2.1. 2002-09-30 13:54:14 +00:00
wiz
567876f05e graphics/tuxpaint-stamps update to 2002.09.29 2002-09-30 12:48:36 +00:00
martti
05da7abd5e Updated ethereal to 0.9.7 2002-09-30 11:50:42 +00:00
abs
078830ccff Update netatalk to 1.5.5
Neither the Changelog nor CHANGES files list the changes from 1.5.3.1
2002-09-30 09:26:05 +00:00
martti
85ad3fab78 Updated mrtg to 2.9.22 2002-09-30 09:12:30 +00:00
martti
1a85f598bc Added distfetch-20020930 2002-09-30 08:38:25 +00:00
rh
e61203321f Note update of evolution to 1.0.8nb3 2002-09-30 00:02:08 +00:00
rh
97429c6986 Note update of gnustep-make to 1.5.0nb3 2002-09-29 23:46:52 +00:00
simonb
c438b32ce7 Note update spamassassin to 2.41.
Major changes include:

 - SpamAssassin now *REQUIRES* procmail for local delivery support; "-P"
   option is now the default.  Unless you use procmail, Mail::Audit, KMail,
   or an MTA-level integration, do not upgrade blindly, your mail *WILL*
   spill all over the floor in a big mess.

 - significant speed increases, mostly from Matt Sergeant and Dan Quinlan

 - bugs in whitelist_to, all_spam_to and friends fixed

 - rules which were causing too many false-positives removed or fixed:
   DOUBLE_CAPSWORD, UPPERCASE_25_50, PARTIAL_RFC_2369, MSGID_CHARS_SPAM,
   many others

 - lots of rule fixes, and lots of new rules
2002-09-29 23:45:51 +00:00
wiz
87d2851a7c Added fonts/pfaedit-20020910 [postscript font editor -- take a look!] 2002-09-29 23:17:16 +00:00
rh
2a86d6b584 Note update of pkgconfig to 0.13.0 2002-09-29 21:51:19 +00:00
wiz
426fd73a72 graphics/tuxpaint-2002.09.28 update 2002-09-29 20:59:56 +00:00
wiz
b98834adad net/dctc-0.83.5 update [minor] 2002-09-29 17:39:10 +00:00
wiz
b6ed1a0247 mencoder, mplayer, and mplayer-share-0.90rc8 updates. 2002-09-29 16:25:31 +00:00
wiz
c5c3cc15ad lang/sml-nj-110.41 update 2002-09-29 15:04:24 +00:00
wiz
6d9ee55978 www/htmldoc{,-x11}-1.8.22 update 2002-09-29 14:20:48 +00:00
wiz
3147d39923 devel/pkgconfig-0.12.0nb1 update [pthread dependency] 2002-09-29 13:05:05 +00:00
martti
f23247d232 Updated cvsweb to 2.0.6 2002-09-29 12:48:42 +00:00
rh
342fe00fef Note addition of ImageViewer-0.6.0 2002-09-29 09:37:51 +00:00
rh
44e0b9ca9c Note addition of gnustep-preferences-1.2.0 2002-09-29 09:09:39 +00:00
lukem
f508957cbf add cdrecord-devel-1.11a34 2002-09-29 08:43:25 +00:00
rh
5038656a05 Note addition of 3DKit-0.3.1r2 packages 2002-09-29 06:21:15 +00:00
rh
7d4acd4f7a Note addition of GNUMail-1.0.3 2002-09-29 03:49:17 +00:00