pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

cyclone: update to cyclone-0.25



Module Name:	pkgsrc-wip
Committed By:	Yorick Hardy <yorickhardy%gmail.com@localhost>
Pushed By:	yhardy
Date:		Tue Jan 26 20:37:33 2021 +0200
Changeset:	e8a97134e964bb2776f2459bdd00710047e3657c

Modified Files:
	cyclone/Makefile
	cyclone/PLIST
	cyclone/distinfo
	cyclone/patches/patch-Makefile

Log Message:
cyclone: update to cyclone-0.25

Released Cyclone Scheme 0.25
January 25th, 2021

Features

* Our package manager has been renamed to winds. Thanks Arthur
  Maciel! Please upgrade to this release to continue using the package
  manager as many of the links have been modified to point to the
  newly-renamed repository.
* Added the c-compiler-options expression and -COPT Cyclone compiler
  option to allow specifying options for the C compiler.
* Allow c-linker-options to work as a top-level expression in a
  program.

Bug Fixes

* Fix import of library dependencies from the interpreter, when
  the dependencies are imported via cond-expand.
* Arthur Maciel fixed when and unless to no longer return #f in
  cases where the expression body is not executed.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=e8a97134e964bb2776f2459bdd00710047e3657c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 cyclone/Makefile               |  2 +-
 cyclone/PLIST                  |  2 +-
 cyclone/distinfo               | 10 +++++-----
 cyclone/patches/patch-Makefile | 10 +++++-----
 4 files changed, 12 insertions(+), 12 deletions(-)

diffs:
diff --git a/cyclone/Makefile b/cyclone/Makefile
index 0fa0be8808..91b6081cce 100644
--- a/cyclone/Makefile
+++ b/cyclone/Makefile
@@ -1,7 +1,7 @@
 # $NetBSD$
 
 GITHUB_PROJECT=	cyclone-bootstrap
-GITHUB_TAG=	v0.24
+GITHUB_TAG=	v0.25
 DISTNAME=	${GITHUB_TAG}
 PKGNAME=	cyclone-${DISTNAME:S,^v,,}
 CATEGORIES=	lang
diff --git a/cyclone/PLIST b/cyclone/PLIST
index ab70f541b1..84bf645d77 100644
--- a/cyclone/PLIST
+++ b/cyclone/PLIST
@@ -1,7 +1,7 @@
 @comment $NetBSD$
 bin/cyclone
-bin/cyclone-winds
 bin/icyc
+bin/winds
 include/cyclone/bignum.h
 include/cyclone/ck_ht_hash.h
 include/cyclone/hashset.h
diff --git a/cyclone/distinfo b/cyclone/distinfo
index a284e806e8..bbac586010 100644
--- a/cyclone/distinfo
+++ b/cyclone/distinfo
@@ -1,8 +1,8 @@
 $NetBSD$
 
-SHA1 (cyclone-bootstrap/v0.24.tar.gz) = 7ca1a5ed9e6f59ed80c832550647b35e94fda5a6
-RMD160 (cyclone-bootstrap/v0.24.tar.gz) = 584875fd19de269626f7a8209bcea6f7a69f648e
-SHA512 (cyclone-bootstrap/v0.24.tar.gz) = ed6aad8d4eb7c699b5cd4271abf037dfff9159718f483a7b09eeb3be3902805e74ea31e42cd4c13159326f0ffa236cb8b131a96b0c52e784ccc4fa44980b8381
-Size (cyclone-bootstrap/v0.24.tar.gz) = 3461589 bytes
-SHA1 (patch-Makefile) = 57caf8baa42259b870b5a47aad8d54bcee277515
+SHA1 (cyclone-bootstrap/v0.25.tar.gz) = 63b884ca2b5dd99e76c93fed1b2151689a3ef0d8
+RMD160 (cyclone-bootstrap/v0.25.tar.gz) = b8d3101fa4abc7261fcb65e3f0a577ef8349cdcd
+SHA512 (cyclone-bootstrap/v0.25.tar.gz) = ea8ee62be7c1bd90688c58219cac02954959a6b93063c0396b11d70973796a8df5fe81a3038cb195be2a28f8d97f7de41770a4202573d7b1b780239feadb647e
+Size (cyclone-bootstrap/v0.25.tar.gz) = 3478009 bytes
+SHA1 (patch-Makefile) = 7cda8694e900623b9a10c91521e0189fb5d45a38
 SHA1 (patch-Makefile.config) = b5f857305be64f8c05c04449bf5125746e44eb51
diff --git a/cyclone/patches/patch-Makefile b/cyclone/patches/patch-Makefile
index 2ccd499b2e..7ddfbb0c0e 100644
--- a/cyclone/patches/patch-Makefile
+++ b/cyclone/patches/patch-Makefile
@@ -2,7 +2,7 @@ $NetBSD$
 
 Use pkgsrc libtommath (internally named libcyclonebn).
 
---- Makefile.orig	2020-08-14 21:48:06.000000000 +0000
+--- Makefile.orig	2021-01-25 23:12:19.000000000 +0000
 +++ Makefile
 @@ -8,8 +8,8 @@ include Makefile.config
  
@@ -15,7 +15,7 @@ Use pkgsrc libtommath (internally named libcyclonebn).
  CYC_LIBS = $(CYC_RT_LIB) $(CYC_BN_LIB)
  
  COBJ = scheme/base \
-@@ -96,8 +96,8 @@ $(CYC_RT_LIB): runtime.c include/cyclone
+@@ -95,8 +95,8 @@ $(CYC_RT_LIB): runtime.c include/cyclone
  	  $(CREATE_LIBRARY_COMMAND) $(CREATE_LIBRARY_FLAGS) $(LIBRARY_OUTPUT_FILE) runtime.o gc.o dispatch.o ffi.o mstreams.o hashset.o
  	  $(RANLIB_COMMAND)
  
@@ -26,7 +26,7 @@ Use pkgsrc libtommath (internally named libcyclonebn).
  
  cyclone: $(CFILES) $(COBJECTS) $(C_SHARED_OBJECTS) $(CYC_LIBS)
  	$(CC) cyclone.c $(CFLAGS) -c -o cyclone.o
-@@ -166,7 +166,7 @@ install:
+@@ -167,7 +167,7 @@ install:
  #install-libs:
  	$(MKDIR) $(DESTDIR)$(LIBDIR)
  	$(INSTALL) -m0644 $(CYC_RT_LIB) $(DESTDIR)$(LIBDIR)/
@@ -35,9 +35,9 @@ Use pkgsrc libtommath (internally named libcyclonebn).
  #install-cyclone:
  	$(MKDIR) $(DESTDIR)$(BINDIR)
  	$(MKDIR) $(DESTDIR)$(DATADIR)/scheme/cyclone
-@@ -191,7 +191,7 @@ install:
+@@ -192,7 +192,7 @@ install:
  	$(INSTALL) -m0755 icyc $(DESTDIR)$(BINDIR)/
- 	$(INSTALL) -m0755 cyclone-winds $(DESTDIR)$(BINDIR)/
+ 	$(INSTALL) -m0755 winds $(DESTDIR)$(BINDIR)/
  	$(INSTALL) -m0644 $(CYC_RT_LIB) $(DESTDIR)$(LIBDIR)/
 -	$(INSTALL) -m0644 $(CYC_BN_LIB) $(DESTDIR)$(LIBDIR)/
 +#	$(INSTALL) -m0644 $(CYC_BN_LIB) $(DESTDIR)$(LIBDIR)/


Home | Main Index | Thread Index | Old Index