diff options
author | skrll <skrll@pkgsrc.org> | 2003-01-21 11:18:23 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2003-01-21 11:18:23 +0000 |
commit | b348d6439ec7f20c1b70f7ab75ab5033d7063f77 (patch) | |
tree | d1cfc8c15fcf2478f8256ae4c7881042e359afb5 | |
parent | 2e2e27d411d888f740b8228713d584a91eb0e210 (diff) | |
download | pkgsrc-b348d6439ec7f20c1b70f7ab75ab5033d7063f77.tar.gz |
Update jikes to 1.18. This closes PR 19979 from Marc Recht.
Major user noticable items this release include:
- Compilation that encounters syntax errors is more robust.
- An assertion failure involving placeholder_type was solved.
- Many other minor bugs have been fixed; including a number of
segfaults and regressions present in 1.17.
Items of interest to developers and open source hackers include:
- Completely revamped error reporting system from Elliott Hughes
which simplifies the task of adding a new error message.
Also note that in 1.18 we have removed the copy of the GPL that was
improperly packaged with versions 1.15 through 1.7 due to a mis-
configuration of automake in the Jikes source tree. While the GPL license
was erroniously included with the sources for those three version, no
source file referenced it, and all source files, help texts and user
messages continued to reference the proper IBM license, which was also
bundled.
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | lang/jikes/Makefile | 6 | ||||
-rw-r--r-- | lang/jikes/distinfo | 8 | ||||
-rw-r--r-- | lang/jikes/patches/patch-ab | 10 |
4 files changed, 13 insertions, 14 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 347733f8fd9..4922a1f8388 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.1179 2003/01/21 11:12:21 wiz Exp $ +$NetBSD: CHANGES,v 1.1180 2003/01/21 11:18:23 skrll Exp $ Changes to the packages collection and infrastructure in 2003: @@ -350,3 +350,4 @@ Changes to the packages collection and infrastructure in 2003: Updated cvs to 1.11.5 [wiz 2003-01-21] Updated libgtop to 1.0.13nb1 [tron 2003-01-21] Updated ncurses to 5.3 [wiz 2003-01-21] + Updated jikes to 1.18 [skrll 2003-01-21] diff --git a/lang/jikes/Makefile b/lang/jikes/Makefile index 632b64fc377..feb9446a415 100644 --- a/lang/jikes/Makefile +++ b/lang/jikes/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.12 2002/10/30 07:22:09 skrll Exp $ +# $NetBSD: Makefile,v 1.13 2003/01/21 11:18:24 skrll Exp $ # -DISTNAME= jikes-1.17 +DISTNAME= jikes-1.18 CATEGORIES= lang -MASTER_SITES= http://oss.software.ibm.com/pub/jikes/1.17/ +MASTER_SITES= http://oss.software.ibm.com/pub/jikes/1.18/ EXTRACT_SUFX= .tar.bz2 MAINTAINER= packages@netbsd.org diff --git a/lang/jikes/distinfo b/lang/jikes/distinfo index 77f00552dbb..81efef85460 100644 --- a/lang/jikes/distinfo +++ b/lang/jikes/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2002/10/30 06:46:07 skrll Exp $ +$NetBSD: distinfo,v 1.5 2003/01/21 11:18:25 skrll Exp $ -SHA1 (jikes-1.17.tar.bz2) = 0d06c46dbb56ec3c84d2883fadedf68a8908b031 -Size (jikes-1.17.tar.bz2) = 533215 bytes -SHA1 (patch-ab) = 45b368181c1efabb9f3fcefa35636f82fa495cd8 +SHA1 (jikes-1.18.tar.bz2) = 82569a81b6e6e28372e412abb4afea265c235db4 +Size (jikes-1.18.tar.bz2) = 536498 bytes +SHA1 (patch-ab) = 7aa08474f5593743a5d012aa09ebe77d77ef438e diff --git a/lang/jikes/patches/patch-ab b/lang/jikes/patches/patch-ab index 8b41a8fbb8e..f6a8334cfd5 100644 --- a/lang/jikes/patches/patch-ab +++ b/lang/jikes/patches/patch-ab @@ -1,9 +1,7 @@ -$NetBSD: patch-ab,v 1.4 2002/10/30 06:46:07 skrll Exp $ - ---- doc/Makefile.in.orig Wed Jul 10 07:16:00 2002 -+++ doc/Makefile.in -@@ -80,7 +80,7 @@ am__quote = @am__quote@ - install_sh = @install_sh@ +--- doc/Makefile.in.orig Thu Nov 21 08:18:00 2002 ++++ doc/Makefile.in Mon Jan 6 10:28:18 2003 +@@ -116,7 +116,7 @@ + target_alias = @target_alias@ man_MANS = jikes.1 -docdir = $(prefix)/doc/${PACKAGE}-${VERSION} |