Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/r/racket/abi_symbols
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,7 @@ gracket:rktio_system_fd
gracket:rktio_system_fd_is_terminal
gracket:rktio_system_language_country
gracket:rktio_system_path
gracket:rktio_tcp_keepalive
gracket:rktio_tcp_nodelay
gracket:rktio_udp_bind
gracket:rktio_udp_change_multicast_group
Expand Down Expand Up @@ -1432,6 +1433,7 @@ racket:rktio_system_fd
racket:rktio_system_fd_is_terminal
racket:rktio_system_language_country
racket:rktio_system_path
racket:rktio_tcp_keepalive
racket:rktio_tcp_nodelay
racket:rktio_udp_bind
racket:rktio_udp_change_multicast_group
Expand Down
6 changes: 5 additions & 1 deletion packages/r/racket/abi_used_symbols
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
libc.so.6:__environ
libc.so.6:__errno_location
libc.so.6:__fprintf_chk
libc.so.6:__isoc23_strtol
libc.so.6:__libc_start_main
libc.so.6:__longjmp_chk
libc.so.6:__printf_chk
libc.so.6:__pthread_register_cancel
libc.so.6:__pthread_unregister_cancel
libc.so.6:__read_chk
libc.so.6:__sigsetjmp
libc.so.6:__snprintf_chk
libc.so.6:__sprintf_chk
Expand Down Expand Up @@ -175,7 +177,6 @@ libc.so.6:strdup
libc.so.6:strerror
libc.so.6:strlen
libc.so.6:strspn
libc.so.6:strtol
libc.so.6:symlink
libc.so.6:sysconf
libc.so.6:system
Expand Down Expand Up @@ -213,9 +214,11 @@ libm.so.6:asinh
libm.so.6:atan
libm.so.6:atan2
libm.so.6:atanh
libm.so.6:ceil
libm.so.6:cos
libm.so.6:cosh
libm.so.6:exp
libm.so.6:floor
libm.so.6:fmod
libm.so.6:hypot
libm.so.6:log
Expand All @@ -225,6 +228,7 @@ libm.so.6:sinh
libm.so.6:sqrt
libm.so.6:tan
libm.so.6:tanh
libm.so.6:trunc
libncursesw.so.6:cur_term
libncursesw.so.6:setupterm
libncursesw.so.6:tputs
Expand Down
8 changes: 4 additions & 4 deletions packages/r/racket/package.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name : racket
version : '8.16'
release : 21
version : '8.18'
release : 22
source :
- https://mirror.racket-lang.org/installers/8.16/racket-8.16-src-builtpkgs.tgz : 44d7c1ab34b52588f90dc22b15d96110e104d0c88ed1869f85b6f03c99843078
- https://mirror.racket-lang.org/installers/8.18/racket-8.18-src-builtpkgs.tgz : 59036cdc218ade49f1890349345f3cb470425d9edc0c677ea28690ce12d6cf2b
homepage : https://racket-lang.org/
license :
- Apache-2.0
Expand All @@ -24,7 +24,7 @@ setup : |
# upstream recommends against building shared libraries (--enable-shared)
mkdir -p src/build
pushd src/build
../%configure_no_runstatedir \
../configure $(sed 's|--sbindir=/usr/sbin||g; s|--runstatedir=/run||g' <<< "%CONFOPTS%") \
--enable-libz \
--enable-liblz4
popd
Expand Down
Loading