SHA256
1
0
forked from pool/racket
racket/dont-strip.patch

73 lines
2.6 KiB
Diff
Raw Normal View History

Accepting request 896608 from home:polslinux:branches:devel:languages:misc - Update to 8.1: * DrRacket tabs can be dragged, and have new close buttons. * Racket CS supports cross-compilation using raco exe. * Racket CS supports Android on 32-bit and 64-bit ARM processors. * The database library supports running queries in OS threads. * Check-Syntax arrows correctly identify the definition site of identifiers with contracts. * Racket CS performance has improved for structure predicates and accessors * Racket CS is faster at multiplying extremely large numbers and dividing large integers. * Racket CS allows callbacks to raise exceptions if they are annotated with #:callback-exns?. * New ephemeron hash tables simplify the implementation of tables where keys can refer to values. * Typed Racket supports for/foldr. * The stepper works for #lang htdp/*sl. * Struct signatures work for the ASL teaching language. - Update to 8.0: * Racket CS is the default implementation (except for ppc64le and s390x) * Racket CS has better parallel garbage collection, a 10%–30% reduction in the size of generated code, and various targeted optimizations. * A rewrite of the test-engine package allows the #lang versions of teaching languages to produce linked test-failure messages. * The release comes with a new mark-up DSL for composing text to appear in the REPL (simple-tree-text-markup). * Redex has an added define-overriding-judgment form and improved error source location reporting. * Windows scrolling speed reflects the system preference. * The db package uses the utf8mb4 charset for MySQL connections. - Rebase dont-strip.patch OBS-URL: https://build.opensuse.org/request/show/896608 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=47
2021-06-02 09:29:03 +02:00
diff -ru old/src/bc/configure new/src/bc/configure
--- old/src/bc/configure 2021-01-11 23:44:10.000000000 +0100
+++ new/src/bc/configure 2021-04-27 13:40:11.656962958 +0200
@@ -7052,7 +7052,7 @@
LIBSFX=la
WXLIBS=WXLIBSDYN
ICP="${LIBTOOLPROG} --mode=install cp"
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
ICP_STATIC_LIB='$(NOOP)'
MRLIBINSTALL="install-lib"
LIBFINISH="${LIBTOOLPROG} --mode=finish"
diff -ru old/src/bc/configure.ac new/src/bc/configure.ac
--- old/src/bc/configure.ac 2021-01-11 23:44:10.000000000 +0100
+++ new/src/bc/configure.ac 2021-04-27 13:40:12.884967341 +0200
@@ -1358,7 +1358,7 @@
LIBSFX=la
WXLIBS=WXLIBSDYN
ICP="${LIBTOOLPROG} --mode=install cp"
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
Accepting request 828522 from home:polslinux:branches:devel:languages:misc - Update to 7.8: * Racket CS supports AArch32 and AArch64, including places and futures. * Racket CS supports an "incremental" garbage-collection mode that can eliminate long GC pauses for some applications, such as animations and interactive games. * Racket CS unboxes local floating-point arithmetic * DrRacket's spell check features lower overhead and has fewer bugs. * Web Server performance under high concurrency is better by up to an order of magnitude * The math library includes the Kronecker product. * The new prop:struct-field-info property provides static information about field names. * In `plot`, the legend font and the plot font can be controlled independently, and error-bars have an `#:invert?` option. * Racket CS uses a new HAMT implementation, dramatically reducing the memory required for immutable hash tables. * GC callbacks are reliably called on major collections in Racket CS. Also, Garbage collection is 10-20% faster. * DrRacket can recover much more quickly from errors involving large stack traces. * Call-with-current-language allows more reliable tests for language level code. * Use of the Cairo library can be multi-threaded. * DrRacket's scrolling has been made more responsive. * DrRacket's dark mode support is improved for Mac OS and Unix. * The Web Server provides fine-grained control over various aspects of handling client connections (timeouts, buffer sizes, maximum header counts, etc.) via the new "safety limits" construct. * The Web Server's handling of large files is improved, and its latency for long-running request handlers is reduced. OBS-URL: https://build.opensuse.org/request/show/828522 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=44
2020-10-09 22:40:45 +02:00
ICP_STATIC_LIB='$(NOOP)'
MRLIBINSTALL="install-lib"
LIBFINISH="${LIBTOOLPROG} --mode=finish"
Accepting request 828522 from home:polslinux:branches:devel:languages:misc - Update to 7.8: * Racket CS supports AArch32 and AArch64, including places and futures. * Racket CS supports an "incremental" garbage-collection mode that can eliminate long GC pauses for some applications, such as animations and interactive games. * Racket CS unboxes local floating-point arithmetic * DrRacket's spell check features lower overhead and has fewer bugs. * Web Server performance under high concurrency is better by up to an order of magnitude * The math library includes the Kronecker product. * The new prop:struct-field-info property provides static information about field names. * In `plot`, the legend font and the plot font can be controlled independently, and error-bars have an `#:invert?` option. * Racket CS uses a new HAMT implementation, dramatically reducing the memory required for immutable hash tables. * GC callbacks are reliably called on major collections in Racket CS. Also, Garbage collection is 10-20% faster. * DrRacket can recover much more quickly from errors involving large stack traces. * Call-with-current-language allows more reliable tests for language level code. * Use of the Cairo library can be multi-threaded. * DrRacket's scrolling has been made more responsive. * DrRacket's dark mode support is improved for Mac OS and Unix. * The Web Server provides fine-grained control over various aspects of handling client connections (timeouts, buffer sizes, maximum header counts, etc.) via the new "safety limits" construct. * The Web Server's handling of large files is improved, and its latency for long-running request handlers is reduced. OBS-URL: https://build.opensuse.org/request/show/828522 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=44
2020-10-09 22:40:45 +02:00
diff -ru old/src/cs/c/configure new/src/cs/c/configure
Accepting request 896608 from home:polslinux:branches:devel:languages:misc - Update to 8.1: * DrRacket tabs can be dragged, and have new close buttons. * Racket CS supports cross-compilation using raco exe. * Racket CS supports Android on 32-bit and 64-bit ARM processors. * The database library supports running queries in OS threads. * Check-Syntax arrows correctly identify the definition site of identifiers with contracts. * Racket CS performance has improved for structure predicates and accessors * Racket CS is faster at multiplying extremely large numbers and dividing large integers. * Racket CS allows callbacks to raise exceptions if they are annotated with #:callback-exns?. * New ephemeron hash tables simplify the implementation of tables where keys can refer to values. * Typed Racket supports for/foldr. * The stepper works for #lang htdp/*sl. * Struct signatures work for the ASL teaching language. - Update to 8.0: * Racket CS is the default implementation (except for ppc64le and s390x) * Racket CS has better parallel garbage collection, a 10%–30% reduction in the size of generated code, and various targeted optimizations. * A rewrite of the test-engine package allows the #lang versions of teaching languages to produce linked test-failure messages. * The release comes with a new mark-up DSL for composing text to appear in the REPL (simple-tree-text-markup). * Redex has an added define-overriding-judgment form and improved error source location reporting. * Windows scrolling speed reflects the system preference. * The db package uses the utf8mb4 charset for MySQL connections. - Rebase dont-strip.patch OBS-URL: https://build.opensuse.org/request/show/896608 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=47
2021-06-02 09:29:03 +02:00
--- old/src/cs/c/configure 2021-01-11 23:44:14.000000000 +0100
+++ new/src/cs/c/configure 2021-04-27 13:40:17.672984418 +0200
@@ -5570,7 +5570,7 @@
LTA="la"
STRIP_LIB_DEBUG=":"
LIBSFX=la
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
Accepting request 896608 from home:polslinux:branches:devel:languages:misc - Update to 8.1: * DrRacket tabs can be dragged, and have new close buttons. * Racket CS supports cross-compilation using raco exe. * Racket CS supports Android on 32-bit and 64-bit ARM processors. * The database library supports running queries in OS threads. * Check-Syntax arrows correctly identify the definition site of identifiers with contracts. * Racket CS performance has improved for structure predicates and accessors * Racket CS is faster at multiplying extremely large numbers and dividing large integers. * Racket CS allows callbacks to raise exceptions if they are annotated with #:callback-exns?. * New ephemeron hash tables simplify the implementation of tables where keys can refer to values. * Typed Racket supports for/foldr. * The stepper works for #lang htdp/*sl. * Struct signatures work for the ASL teaching language. - Update to 8.0: * Racket CS is the default implementation (except for ppc64le and s390x) * Racket CS has better parallel garbage collection, a 10%–30% reduction in the size of generated code, and various targeted optimizations. * A rewrite of the test-engine package allows the #lang versions of teaching languages to produce linked test-failure messages. * The release comes with a new mark-up DSL for composing text to appear in the REPL (simple-tree-text-markup). * Redex has an added define-overriding-judgment form and improved error source location reporting. * Windows scrolling speed reflects the system preference. * The db package uses the utf8mb4 charset for MySQL connections. - Rebase dont-strip.patch OBS-URL: https://build.opensuse.org/request/show/896608 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=47
2021-06-02 09:29:03 +02:00
CONFIGURE_RACKET_SO_COMPILE="env PLT_CS_MAKE_LINK_SHARED=y"
else
Accepting request 828522 from home:polslinux:branches:devel:languages:misc - Update to 7.8: * Racket CS supports AArch32 and AArch64, including places and futures. * Racket CS supports an "incremental" garbage-collection mode that can eliminate long GC pauses for some applications, such as animations and interactive games. * Racket CS unboxes local floating-point arithmetic * DrRacket's spell check features lower overhead and has fewer bugs. * Web Server performance under high concurrency is better by up to an order of magnitude * The math library includes the Kronecker product. * The new prop:struct-field-info property provides static information about field names. * In `plot`, the legend font and the plot font can be controlled independently, and error-bars have an `#:invert?` option. * Racket CS uses a new HAMT implementation, dramatically reducing the memory required for immutable hash tables. * GC callbacks are reliably called on major collections in Racket CS. Also, Garbage collection is 10-20% faster. * DrRacket can recover much more quickly from errors involving large stack traces. * Call-with-current-language allows more reliable tests for language level code. * Use of the Cairo library can be multi-threaded. * DrRacket's scrolling has been made more responsive. * DrRacket's dark mode support is improved for Mac OS and Unix. * The Web Server provides fine-grained control over various aspects of handling client connections (timeouts, buffer sizes, maximum header counts, etc.) via the new "safety limits" construct. * The Web Server's handling of large files is improved, and its latency for long-running request handlers is reduced. OBS-URL: https://build.opensuse.org/request/show/828522 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=44
2020-10-09 22:40:45 +02:00
diff -ru old/src/cs/c/configure.ac new/src/cs/c/configure.ac
Accepting request 896608 from home:polslinux:branches:devel:languages:misc - Update to 8.1: * DrRacket tabs can be dragged, and have new close buttons. * Racket CS supports cross-compilation using raco exe. * Racket CS supports Android on 32-bit and 64-bit ARM processors. * The database library supports running queries in OS threads. * Check-Syntax arrows correctly identify the definition site of identifiers with contracts. * Racket CS performance has improved for structure predicates and accessors * Racket CS is faster at multiplying extremely large numbers and dividing large integers. * Racket CS allows callbacks to raise exceptions if they are annotated with #:callback-exns?. * New ephemeron hash tables simplify the implementation of tables where keys can refer to values. * Typed Racket supports for/foldr. * The stepper works for #lang htdp/*sl. * Struct signatures work for the ASL teaching language. - Update to 8.0: * Racket CS is the default implementation (except for ppc64le and s390x) * Racket CS has better parallel garbage collection, a 10%–30% reduction in the size of generated code, and various targeted optimizations. * A rewrite of the test-engine package allows the #lang versions of teaching languages to produce linked test-failure messages. * The release comes with a new mark-up DSL for composing text to appear in the REPL (simple-tree-text-markup). * Redex has an added define-overriding-judgment form and improved error source location reporting. * Windows scrolling speed reflects the system preference. * The db package uses the utf8mb4 charset for MySQL connections. - Rebase dont-strip.patch OBS-URL: https://build.opensuse.org/request/show/896608 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=47
2021-06-02 09:29:03 +02:00
--- old/src/cs/c/configure.ac 2021-01-11 23:44:14.000000000 +0100
+++ new/src/cs/c/configure.ac 2021-04-27 13:39:05.168699229 +0200
@@ -688,7 +688,7 @@
LTA="la"
STRIP_LIB_DEBUG=":"
LIBSFX=la
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
Accepting request 896608 from home:polslinux:branches:devel:languages:misc - Update to 8.1: * DrRacket tabs can be dragged, and have new close buttons. * Racket CS supports cross-compilation using raco exe. * Racket CS supports Android on 32-bit and 64-bit ARM processors. * The database library supports running queries in OS threads. * Check-Syntax arrows correctly identify the definition site of identifiers with contracts. * Racket CS performance has improved for structure predicates and accessors * Racket CS is faster at multiplying extremely large numbers and dividing large integers. * Racket CS allows callbacks to raise exceptions if they are annotated with #:callback-exns?. * New ephemeron hash tables simplify the implementation of tables where keys can refer to values. * Typed Racket supports for/foldr. * The stepper works for #lang htdp/*sl. * Struct signatures work for the ASL teaching language. - Update to 8.0: * Racket CS is the default implementation (except for ppc64le and s390x) * Racket CS has better parallel garbage collection, a 10%–30% reduction in the size of generated code, and various targeted optimizations. * A rewrite of the test-engine package allows the #lang versions of teaching languages to produce linked test-failure messages. * The release comes with a new mark-up DSL for composing text to appear in the REPL (simple-tree-text-markup). * Redex has an added define-overriding-judgment form and improved error source location reporting. * Windows scrolling speed reflects the system preference. * The db package uses the utf8mb4 charset for MySQL connections. - Rebase dont-strip.patch OBS-URL: https://build.opensuse.org/request/show/896608 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=47
2021-06-02 09:29:03 +02:00
CONFIGURE_RACKET_SO_COMPILE="env PLT_CS_MAKE_LINK_SHARED=y"
else
Accepting request 828522 from home:polslinux:branches:devel:languages:misc - Update to 7.8: * Racket CS supports AArch32 and AArch64, including places and futures. * Racket CS supports an "incremental" garbage-collection mode that can eliminate long GC pauses for some applications, such as animations and interactive games. * Racket CS unboxes local floating-point arithmetic * DrRacket's spell check features lower overhead and has fewer bugs. * Web Server performance under high concurrency is better by up to an order of magnitude * The math library includes the Kronecker product. * The new prop:struct-field-info property provides static information about field names. * In `plot`, the legend font and the plot font can be controlled independently, and error-bars have an `#:invert?` option. * Racket CS uses a new HAMT implementation, dramatically reducing the memory required for immutable hash tables. * GC callbacks are reliably called on major collections in Racket CS. Also, Garbage collection is 10-20% faster. * DrRacket can recover much more quickly from errors involving large stack traces. * Call-with-current-language allows more reliable tests for language level code. * Use of the Cairo library can be multi-threaded. * DrRacket's scrolling has been made more responsive. * DrRacket's dark mode support is improved for Mac OS and Unix. * The Web Server provides fine-grained control over various aspects of handling client connections (timeouts, buffer sizes, maximum header counts, etc.) via the new "safety limits" construct. * The Web Server's handling of large files is improved, and its latency for long-running request handlers is reduced. OBS-URL: https://build.opensuse.org/request/show/828522 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=44
2020-10-09 22:40:45 +02:00
diff -ru old/src/rktio/configure new/src/rktio/configure
Accepting request 896608 from home:polslinux:branches:devel:languages:misc - Update to 8.1: * DrRacket tabs can be dragged, and have new close buttons. * Racket CS supports cross-compilation using raco exe. * Racket CS supports Android on 32-bit and 64-bit ARM processors. * The database library supports running queries in OS threads. * Check-Syntax arrows correctly identify the definition site of identifiers with contracts. * Racket CS performance has improved for structure predicates and accessors * Racket CS is faster at multiplying extremely large numbers and dividing large integers. * Racket CS allows callbacks to raise exceptions if they are annotated with #:callback-exns?. * New ephemeron hash tables simplify the implementation of tables where keys can refer to values. * Typed Racket supports for/foldr. * The stepper works for #lang htdp/*sl. * Struct signatures work for the ASL teaching language. - Update to 8.0: * Racket CS is the default implementation (except for ppc64le and s390x) * Racket CS has better parallel garbage collection, a 10%–30% reduction in the size of generated code, and various targeted optimizations. * A rewrite of the test-engine package allows the #lang versions of teaching languages to produce linked test-failure messages. * The release comes with a new mark-up DSL for composing text to appear in the REPL (simple-tree-text-markup). * Redex has an added define-overriding-judgment form and improved error source location reporting. * Windows scrolling speed reflects the system preference. * The db package uses the utf8mb4 charset for MySQL connections. - Rebase dont-strip.patch OBS-URL: https://build.opensuse.org/request/show/896608 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=47
2021-06-02 09:29:03 +02:00
--- old/src/rktio/configure 2021-01-11 23:44:18.000000000 +0100
+++ new/src/rktio/configure 2021-04-27 13:40:21.736998921 +0200
@@ -4624,7 +4624,7 @@
LTA="la"
STRIP_LIB_DEBUG=":"
LIBSFX=la
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
else
ICP=cp
LTO="o"
Accepting request 828522 from home:polslinux:branches:devel:languages:misc - Update to 7.8: * Racket CS supports AArch32 and AArch64, including places and futures. * Racket CS supports an "incremental" garbage-collection mode that can eliminate long GC pauses for some applications, such as animations and interactive games. * Racket CS unboxes local floating-point arithmetic * DrRacket's spell check features lower overhead and has fewer bugs. * Web Server performance under high concurrency is better by up to an order of magnitude * The math library includes the Kronecker product. * The new prop:struct-field-info property provides static information about field names. * In `plot`, the legend font and the plot font can be controlled independently, and error-bars have an `#:invert?` option. * Racket CS uses a new HAMT implementation, dramatically reducing the memory required for immutable hash tables. * GC callbacks are reliably called on major collections in Racket CS. Also, Garbage collection is 10-20% faster. * DrRacket can recover much more quickly from errors involving large stack traces. * Call-with-current-language allows more reliable tests for language level code. * Use of the Cairo library can be multi-threaded. * DrRacket's scrolling has been made more responsive. * DrRacket's dark mode support is improved for Mac OS and Unix. * The Web Server provides fine-grained control over various aspects of handling client connections (timeouts, buffer sizes, maximum header counts, etc.) via the new "safety limits" construct. * The Web Server's handling of large files is improved, and its latency for long-running request handlers is reduced. OBS-URL: https://build.opensuse.org/request/show/828522 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=44
2020-10-09 22:40:45 +02:00
diff -ru old/src/rktio/configure.ac new/src/rktio/configure.ac
Accepting request 896608 from home:polslinux:branches:devel:languages:misc - Update to 8.1: * DrRacket tabs can be dragged, and have new close buttons. * Racket CS supports cross-compilation using raco exe. * Racket CS supports Android on 32-bit and 64-bit ARM processors. * The database library supports running queries in OS threads. * Check-Syntax arrows correctly identify the definition site of identifiers with contracts. * Racket CS performance has improved for structure predicates and accessors * Racket CS is faster at multiplying extremely large numbers and dividing large integers. * Racket CS allows callbacks to raise exceptions if they are annotated with #:callback-exns?. * New ephemeron hash tables simplify the implementation of tables where keys can refer to values. * Typed Racket supports for/foldr. * The stepper works for #lang htdp/*sl. * Struct signatures work for the ASL teaching language. - Update to 8.0: * Racket CS is the default implementation (except for ppc64le and s390x) * Racket CS has better parallel garbage collection, a 10%–30% reduction in the size of generated code, and various targeted optimizations. * A rewrite of the test-engine package allows the #lang versions of teaching languages to produce linked test-failure messages. * The release comes with a new mark-up DSL for composing text to appear in the REPL (simple-tree-text-markup). * Redex has an added define-overriding-judgment form and improved error source location reporting. * Windows scrolling speed reflects the system preference. * The db package uses the utf8mb4 charset for MySQL connections. - Rebase dont-strip.patch OBS-URL: https://build.opensuse.org/request/show/896608 OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/racket?expand=0&rev=47
2021-06-02 09:29:03 +02:00
--- old/src/rktio/configure.ac 2021-01-11 23:44:18.000000000 +0100
+++ new/src/rktio/configure.ac 2021-04-27 13:40:22.965003300 +0200
@@ -425,7 +425,7 @@
LTA="la"
STRIP_LIB_DEBUG=":"
LIBSFX=la
- ICP_LIB="${LIBTOOLPROG} --mode=install install -s"
+ ICP_LIB="${LIBTOOLPROG} --mode=install install"
else
ICP=cp
LTO="o"