diff options
author | mycroft <mycroft@pkgsrc.org> | 2003-02-21 12:53:23 +0000 |
---|---|---|
committer | mycroft <mycroft@pkgsrc.org> | 2003-02-21 12:53:23 +0000 |
commit | f6f31e9857672711f48c995e010d26be62a5c3ef (patch) | |
tree | 75fb7e7f15d12658c0f6651063d6720cd47942ed | |
parent | caf75551b92db4aa763ec254c9e09fe51a8a3bc3 (diff) | |
download | pkgsrc-f6f31e9857672711f48c995e010d26be62a5c3ef.tar.gz |
Update to librep 0.16.1.
* New modules `rep.data.trie', `rep.threads.proxy'
* Also added `rep.xml.reader' and `rep.xml.printer', though these
should probably be used with extreme caution
* Appending to queues is now O(1) not O(n)
* Many changes to `rep.net.rpc' module, protocol is incompatible
with previous version. Should be more robust
* `rep.i18n.gettext' module exports the `bindtextdomaincodeset'
function (Christophe Fergeau)
* Slightly more secure way of seeding the rng
* `inexact->exact' can now convert floating point numbers to
rationals (though not optimally). This means that `numerator' and
`denominator' also work better with floats now
* New function `file-ttyp'
* Some random bug fixes
-rw-r--r-- | lang/librep/Makefile | 6 | ||||
-rw-r--r-- | lang/librep/PLIST | 15 | ||||
-rw-r--r-- | lang/librep/buildlink2.mk | 4 | ||||
-rw-r--r-- | lang/librep/distinfo | 6 |
4 files changed, 20 insertions, 11 deletions
diff --git a/lang/librep/Makefile b/lang/librep/Makefile index 23f66d8d27d..d6ef0e7279c 100644 --- a/lang/librep/Makefile +++ b/lang/librep/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.25 2002/12/23 04:25:01 jlam Exp $ +# $NetBSD: Makefile,v 1.26 2003/02/21 12:53:23 mycroft Exp $ # DISTNAME= librep-${REP_VERS} -REP_VERS= 0.15.1 -PKGREVISION= 3 +REP_VERS= 0.16.1 +#PKGREVISION= 3 CATEGORIES= lang devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=librep/} diff --git a/lang/librep/PLIST b/lang/librep/PLIST index 8778a69bd2f..f508cb7a084 100644 --- a/lang/librep/PLIST +++ b/lang/librep/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2002/07/19 04:39:09 mycroft Exp $ +@comment $NetBSD: PLIST,v 1.4 2003/02/21 12:53:23 mycroft Exp $ bin/rep bin/rep-config bin/rep-remote @@ -23,8 +23,8 @@ info/librep.info-9 lib/librep.a lib/librep.la lib/librep.so -lib/librep.so.11 -lib/librep.so.11.1 +lib/librep.so.12 +lib/librep.so.12.0 libexec/rep/${MACHINE_GNU_PLATFORM}/install-aliases libexec/rep/${MACHINE_GNU_PLATFORM}/libtool libexec/rep/${MACHINE_GNU_PLATFORM}/rep_config.h @@ -125,6 +125,8 @@ share/rep/${REP_VERS}/lisp/rep/data/string-util.jl share/rep/${REP_VERS}/lisp/rep/data/string-util.jlc share/rep/${REP_VERS}/lisp/rep/data/symbol-table.jl share/rep/${REP_VERS}/lisp/rep/data/symbol-table.jlc +share/rep/${REP_VERS}/lisp/rep/data/trie.jl +share/rep/${REP_VERS}/lisp/rep/data/trie.jlc share/rep/${REP_VERS}/lisp/rep/i18n/xgettext.jl share/rep/${REP_VERS}/lisp/rep/i18n/xgettext.jlc share/rep/${REP_VERS}/lisp/rep/io/file-handlers.jl @@ -194,6 +196,8 @@ share/rep/${REP_VERS}/lisp/rep/threads/message-port.jl share/rep/${REP_VERS}/lisp/rep/threads/message-port.jlc share/rep/${REP_VERS}/lisp/rep/threads/mutex.jl share/rep/${REP_VERS}/lisp/rep/threads/mutex.jlc +share/rep/${REP_VERS}/lisp/rep/threads/proxy.jl +share/rep/${REP_VERS}/lisp/rep/threads/proxy.jlc share/rep/${REP_VERS}/lisp/rep/threads/utils.jl share/rep/${REP_VERS}/lisp/rep/threads/utils.jlc share/rep/${REP_VERS}/lisp/rep/user.jl @@ -254,6 +258,10 @@ share/rep/${REP_VERS}/lisp/rep/www/fetch-url.jl share/rep/${REP_VERS}/lisp/rep/www/fetch-url.jlc share/rep/${REP_VERS}/lisp/rep/www/quote-url.jl share/rep/${REP_VERS}/lisp/rep/www/quote-url.jlc +share/rep/${REP_VERS}/lisp/rep/xml/printer.jl +share/rep/${REP_VERS}/lisp/rep/xml/printer.jlc +share/rep/${REP_VERS}/lisp/rep/xml/reader.jl +share/rep/${REP_VERS}/lisp/rep/xml/reader.jlc share/rep/${REP_VERS}/lisp/ring.jl share/rep/${REP_VERS}/lisp/ring.jlc share/rep/${REP_VERS}/lisp/scheme.jl @@ -282,6 +290,7 @@ share/rep/${REP_VERS}/lisp/unscheme/syntax.jl share/rep/${REP_VERS}/lisp/unscheme/syntax.jlc @dirrm share/rep/${REP_VERS}/lisp/unscheme @dirrm share/rep/${REP_VERS}/lisp/scheme +@dirrm share/rep/${REP_VERS}/lisp/rep/xml @dirrm share/rep/${REP_VERS}/lisp/rep/www @dirrm share/rep/${REP_VERS}/lisp/rep/vm/compiler @dirrm share/rep/${REP_VERS}/lisp/rep/vm diff --git a/lang/librep/buildlink2.mk b/lang/librep/buildlink2.mk index 33fa73c7d99..95d23c966a1 100644 --- a/lang/librep/buildlink2.mk +++ b/lang/librep/buildlink2.mk @@ -1,11 +1,11 @@ -# $NetBSD: buildlink2.mk,v 1.3 2002/12/23 04:27:31 jlam Exp $ +# $NetBSD: buildlink2.mk,v 1.4 2003/02/21 12:53:23 mycroft Exp $ # .if !defined(LIBREP_BUILDLINK2_MK) LIBREP_BUILDLINK2_MK= # defined BUILDLINK_PACKAGES+= librep -BUILDLINK_DEPENDS.librep?= librep>=0.15.1nb1 +BUILDLINK_DEPENDS.librep?= librep>=0.16.1 BUILDLINK_PKGSRCDIR.librep?= ../../lang/librep EVAL_PREFIX+= BUILDLINK_PREFIX.librep=librep diff --git a/lang/librep/distinfo b/lang/librep/distinfo index 41e1fe30451..e8be72d831a 100644 --- a/lang/librep/distinfo +++ b/lang/librep/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2002/06/28 07:46:23 agc Exp $ +$NetBSD: distinfo,v 1.8 2003/02/21 12:53:23 mycroft Exp $ -SHA1 (librep-0.15.1.tar.gz) = 1f0a785d49b0b43149951e7ab27f31d9c8415f6c -Size (librep-0.15.1.tar.gz) = 895480 bytes +SHA1 (librep-0.16.1.tar.gz) = 4bdd5666d8a7145a774bf8549f353918986b0c8e +Size (librep-0.16.1.tar.gz) = 913250 bytes SHA1 (patch-aa) = f1575fb4010fedbf5db96146b947c0bd0e9d21f7 SHA1 (patch-ac) = 562f8a25b2da564fa4372101bfa1199b0c755ee3 |