pkgsrc-WIP-changes archive

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

cyclone: update to cyclone-0.33.0



Module Name:	pkgsrc-wip
Committed By:	Yorick Hardy <yorickhardy%gmail.com@localhost>
Pushed By:	yhardy
Date:		Sun Sep 26 00:08:05 2021 +0200
Changeset:	c892a4f6a10cfdbe884efbe2d75a57de9e6e7258

Modified Files:
	cyclone/Makefile
	cyclone/distinfo

Log Message:
cyclone: update to cyclone-0.33.0

Changelog:

== 0.33.0 - September 24, 2021

Features

- Allow easier macro debugging from the REPL by using `expand`.
  Passing a single expression as an argument will return the
  expanded expression:

      cyclone> (expand '(when #t (+ 1 2 3)))
      (if #t ((lambda () (+ 1 2 3))) )

- During compilation the compiler will now call itself as a
  subprocess to perform Scheme-to-C compilation. This allows
  Cyclone to free all of those resources before calling the C
  compiler to generate a binary, resulting in more efficient
  compilation.

Bug Fixes

- Do not inline calls to `system` as it could result in multiple
  calls of the same command.

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

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

diffstat:
 cyclone/Makefile | 2 +-
 cyclone/distinfo | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs:
diff --git a/cyclone/Makefile b/cyclone/Makefile
index 3ae813bf18..f91c340394 100644
--- a/cyclone/Makefile
+++ b/cyclone/Makefile
@@ -1,7 +1,7 @@
 # $NetBSD$
 
 GITHUB_PROJECT=	cyclone-bootstrap
-GITHUB_TAG=	v0.32.0
+GITHUB_TAG=	v0.33.0
 DISTNAME=	${GITHUB_TAG}
 PKGNAME=	cyclone-${DISTNAME:S,^v,,}
 CATEGORIES=	lang
diff --git a/cyclone/distinfo b/cyclone/distinfo
index 0cebd7e8a6..79623ba34e 100644
--- a/cyclone/distinfo
+++ b/cyclone/distinfo
@@ -1,8 +1,8 @@
 $NetBSD$
 
-SHA1 (cyclone-bootstrap/v0.32.0.tar.gz) = fb7d11b933185612dbb70b92e652aebab2a2504a
-RMD160 (cyclone-bootstrap/v0.32.0.tar.gz) = ff03a0fa4e27749d36c2d82e41d5c79944f030fc
-SHA512 (cyclone-bootstrap/v0.32.0.tar.gz) = 9a2c24f667e148fc87c6a87eed5c96ddab7e47f804fe1d725a1d13411dd66acc910c0ab138f34c0eb57c7c496ed0f4d9ff33bd71f750b08eeed60664cccfa056
-Size (cyclone-bootstrap/v0.32.0.tar.gz) = 3936913 bytes
+SHA1 (cyclone-bootstrap/v0.33.0.tar.gz) = ae1f85c13c2e52598070273017edd13ba4737296
+RMD160 (cyclone-bootstrap/v0.33.0.tar.gz) = 3487db5f9685d4b714a1a1474382776f062ac0c5
+SHA512 (cyclone-bootstrap/v0.33.0.tar.gz) = 96ffd3d04636b27f36c98920359a9f880c4b2a15e9820e5d91c82f821dc93357b665537e7688b00510d6a4fd113666edbd5ec109ff491f4f18d547129527b763
+Size (cyclone-bootstrap/v0.33.0.tar.gz) = 3946573 bytes
 SHA1 (patch-Makefile) = 3b1405ff54738ac53808f1f4e2e2a8d3f458f75d
 SHA1 (patch-Makefile.config) = 30e817749f9915590c37239614e179e61d3b7130


Home | Main Index | Thread Index | Old Index