Skip to content

Commit

Permalink
Update 7 packages
Browse files Browse the repository at this point in the history
libguile (3.0.9-2 -> 3.0.10-1)
libiconv (1.17-1 -> 1.18-1)
libiconv-devel (1.17-1 -> 1.18-1)
perl-HTTP-Message (6.46-1 -> 7.00-1)
perl-MailTools (2.21-2 -> 2.22-1)
perl-URI (5.29-1 -> 5.31-1)
python (3.12.7-1 -> 3.12.8-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Dec 19, 2024
1 parent dd03460 commit a7c12b9
Show file tree
Hide file tree
Showing 906 changed files with 15,068 additions and 7,435 deletions.
Binary file modified usr/bin/iconv.exe
Binary file not shown.
Binary file modified usr/bin/msys-charset-1.dll
Binary file not shown.
Binary file modified usr/bin/msys-guile-3.0-1.dll
Binary file not shown.
Binary file modified usr/bin/msys-iconv-2.dll
Binary file not shown.
Binary file modified usr/bin/msys-python3.12.dll
Binary file not shown.
Binary file modified usr/bin/python.exe
Binary file not shown.
Binary file modified usr/bin/python3.12.exe
Binary file not shown.
Binary file modified usr/bin/python3.exe
Binary file not shown.
72 changes: 37 additions & 35 deletions usr/include/iconv.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1999-2022 Free Software Foundation, Inc.
/* Copyright (C) 1999-2024 Free Software Foundation, Inc.
This file is part of the GNU LIBICONV Library.
The GNU LIBICONV Library is free software; you can redistribute it
Expand All @@ -20,25 +20,28 @@
#ifndef _LIBICONV_H
#define _LIBICONV_H

#define _LIBICONV_VERSION 0x0111 /* version number: (major<<8) + minor */
#ifdef __cplusplus
extern "C" {
#endif

#define _LIBICONV_VERSION 0x0112 /* version number: (major<<8) + minor */
extern __declspec (dllimport) int _libiconv_version; /* Likewise */

#ifdef __cplusplus
}
#endif

/* We would like to #include any system header file which could define
iconv_t, 1. in order to eliminate the risk that the user gets compilation
iconv_t, in order to eliminate the risk that the user gets compilation
errors because some other system header file includes /usr/include/iconv.h
which defines iconv_t or declares iconv after this file, 2. when compiling
for LIBICONV_PLUG, we need the proper iconv_t type in order to produce
binary compatible code.
which defines iconv_t or declares iconv after this file.
But gcc's #include_next is not portable. Thus, once libiconv's iconv.h
has been installed in /usr/local/include, there is no way any more to
include the original /usr/include/iconv.h. We simply have to get away
without it.
Ad 1. The risk that a system header file does
The risk that a system header file does
#include "iconv.h" or #include_next "iconv.h"
is small. They all do #include <iconv.h>.
Ad 2. The iconv_t type is a pointer type in all cases I have seen. (It
has to be a scalar type because (iconv_t)(-1) is a possible return value
from iconv_open().) */
is small. They all do #include <iconv.h>. */

/* Define iconv_t ourselves. */
#undef iconv_t
Expand Down Expand Up @@ -66,25 +69,19 @@ extern "C" {

/* Allocates descriptor for code conversion from encoding ‘fromcode’ to
encoding ‘tocode’. */
#ifndef LIBICONV_PLUG
#define iconv_open libiconv_open
#endif
extern iconv_t iconv_open (const char* tocode, const char* fromcode);

/* Converts, using conversion descriptor ‘cd’, at most ‘*inbytesleft’ bytes
starting at ‘*inbuf’, writing at most ‘*outbytesleft’ bytes starting at
‘*outbuf’.
Decrements ‘*inbytesleft’ and increments ‘*inbuf’ by the same amount.
Decrements ‘*outbytesleft’ and increments ‘*outbuf’ by the same amount. */
#ifndef LIBICONV_PLUG
#define iconv libiconv
#endif
extern size_t iconv (iconv_t cd, char* * inbuf, size_t *inbytesleft, char* * outbuf, size_t *outbytesleft);

/* Frees resources allocated for conversion descriptor ‘cd’. */
#ifndef LIBICONV_PLUG
#define iconv_close libiconv_close
#endif
extern int iconv_close (iconv_t cd);


Expand All @@ -93,8 +90,6 @@ extern int iconv_close (iconv_t cd);
#endif


#ifndef LIBICONV_PLUG

/* Nonstandard extensions. */

#if 1
Expand Down Expand Up @@ -165,7 +160,6 @@ typedef void (*iconv_unicode_uc_to_mb_fallback)
void* callback_arg),
void* callback_arg,
void* data);
#if 1
/* Fallback function. Invoked when a number of bytes could not be converted to
a wide character. This function should process all bytes from inbuf and may
produce replacement wide characters by calling the write_replacement
Expand All @@ -186,12 +180,6 @@ typedef void (*iconv_wchar_wc_to_mb_fallback)
void* callback_arg),
void* callback_arg,
void* data);
#else
/* If the wchar_t type does not exist, these two fallback functions are never
invoked. Their argument list therefore does not matter. */
typedef void (*iconv_wchar_mb_to_wc_fallback) ();
typedef void (*iconv_wchar_wc_to_mb_fallback) ();
#endif
/* Set of fallbacks. */
struct iconv_fallbacks {
iconv_unicode_mb_to_uc_fallback mb_to_uc_fallback;
Expand All @@ -201,14 +189,30 @@ struct iconv_fallbacks {
void* data;
};

/* Surfaces.
The concept of surfaces is described in the 'recode' manual. */
#define ICONV_SURFACE_NONE 0
/* In EBCDIC encodings, 0x15 (which encodes the "newline function", see the
Unicode standard, chapter 5) maps to U+000A instead of U+0085. This is
for interoperability with C programs and Unix environments on z/OS. */
#define ICONV_SURFACE_EBCDIC_ZOS_UNIX 1

/* Requests for iconvctl. */
#define ICONV_TRIVIALP 0 /* int *argument */
#define ICONV_GET_TRANSLITERATE 1 /* int *argument */
#define ICONV_SET_TRANSLITERATE 2 /* const int *argument */
#define ICONV_GET_DISCARD_ILSEQ 3 /* int *argument */
#define ICONV_SET_DISCARD_ILSEQ 4 /* const int *argument */
#define ICONV_SET_HOOKS 5 /* const struct iconv_hooks *argument */
#define ICONV_SET_FALLBACKS 6 /* const struct iconv_fallbacks *argument */
#define ICONV_TRIVIALP 0 /* int *argument */
#define ICONV_GET_TRANSLITERATE 1 /* int *argument */
#define ICONV_SET_TRANSLITERATE 2 /* const int *argument */
#define ICONV_GET_DISCARD_ILSEQ 3 /* int *argument */
#define ICONV_SET_DISCARD_ILSEQ 4 /* const int *argument */
#define ICONV_SET_HOOKS 5 /* const struct iconv_hooks *argument */
#define ICONV_SET_FALLBACKS 6 /* const struct iconv_fallbacks *argument */
#define ICONV_GET_FROM_SURFACE 7 /* unsigned int *argument */
#define ICONV_SET_FROM_SURFACE 8 /* const unsigned int *argument */
#define ICONV_GET_TO_SURFACE 9 /* unsigned int *argument */
#define ICONV_SET_TO_SURFACE 10 /* const unsigned int *argument */
#define ICONV_GET_DISCARD_INVALID 11 /* int *argument */
#define ICONV_SET_DISCARD_INVALID 12 /* const int *argument */
#define ICONV_GET_DISCARD_NON_IDENTICAL 13 /* int *argument */
#define ICONV_SET_DISCARD_NON_IDENTICAL 14 /* const int *argument */

/* Listing of locale independent encodings. */
#define iconvlist libiconvlist
Expand All @@ -235,7 +239,5 @@ extern void libiconv_set_relocation_prefix (const char *orig_prefix,
}
#endif

#endif


#endif /* _LIBICONV_H */
8 changes: 7 additions & 1 deletion usr/include/python3.12/internal/pycore_object_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ struct _py_object_state {
* together via the _ob_prev and _ob_next members of a PyObject, which
* exist only in a Py_TRACE_REFS build.
*/
PyObject refchain;
PyObject *refchain;
/* In most cases, refchain points to _refchain_obj.
* In sub-interpreters that share objmalloc state with the main interp,
* refchain points to the main interpreter's _refchain_obj, and their own
* _refchain_obj is unused.
*/
PyObject _refchain_obj;
#endif
int _not_used;
};
Expand Down
7 changes: 0 additions & 7 deletions usr/include/python3.12/internal/pycore_runtime_init.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,8 @@ extern PyTypeObject _PyExc_MemoryError;
.context_ver = 1, \
}

#ifdef Py_TRACE_REFS
# define _py_object_state_INIT(INTERP) \
{ \
.refchain = {&INTERP.object_state.refchain, &INTERP.object_state.refchain}, \
}
#else
# define _py_object_state_INIT(INTERP) \
{ 0 }
#endif


// global objects
Expand Down
2 changes: 2 additions & 0 deletions usr/include/python3.12/internal/pycore_typeobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ PyAPI_DATA(PyTypeObject) _PyBufferWrapper_Type;
PyObject *
_PySuper_Lookup(PyTypeObject *su_type, PyObject *su_obj, PyObject *name, int *meth_found);

extern int _PyType_AddMethod(PyTypeObject *, PyMethodDef *);

#ifdef __cplusplus
}
#endif
Expand Down
3 changes: 3 additions & 0 deletions usr/include/python3.12/internal/pycore_unicodeobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ struct _Py_unicode_state {

extern void _PyUnicode_ClearInterned(PyInterpreterState *interp);

// Like PyUnicode_AsUTF8(), but check for embedded null characters.
extern const char* _PyUnicode_AsUTF8NoNUL(PyObject *);


#ifdef __cplusplus
}
Expand Down
4 changes: 2 additions & 2 deletions usr/include/python3.12/patchlevel.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
/*--start constants--*/
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 12
#define PY_MICRO_VERSION 7
#define PY_MICRO_VERSION 8
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
#define PY_RELEASE_SERIAL 0

/* Version as a string */
#define PY_VERSION "3.12.7"
#define PY_VERSION "3.12.8"
/*--end constants--*/

/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Expand Down
4 changes: 0 additions & 4 deletions usr/include/python3.12/pyconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@
/* Define if --enable-ipv6 is specified */
#define ENABLE_IPV6 1

/* Define to 1 if your system stores words within floats with the most
significant word first */
/* #undef FLOAT_WORDS_BIGENDIAN */

/* Define if getpgrp() must be called as getpgrp(0). */
/* #undef GETPGRP_HAVE_ARG */

Expand Down
Binary file modified usr/lib/guile/3.0/ccache/ice-9/and-let-star.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/arrays.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/atomic.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/binary-ports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/boot-9.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/buffered-input.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/calling.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/command-line.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/common-list.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/control.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/copy-tree.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/curried-definitions.go
Binary file not shown.
Binary file added usr/lib/guile/3.0/ccache/ice-9/custom-ports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/deprecated.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/documentation.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/eval-string.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/eval.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/exceptions.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/expect.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/fdes-finalizers.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/format.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/ftw.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/futures.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/gap-buffer.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/getopt-long.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/hash-table.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/hcons.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/history.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/i18n.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/iconv.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/lineio.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/list.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/local-eval.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/ls.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/match.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/networking.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/null.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/occam-channel.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/optargs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/peg.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/peg/cache.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/peg/codegen.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/peg/simplify-tree.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/peg/string-peg.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/peg/using-parsers.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/poe.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/poll.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/popen.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/ports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/posix.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/pretty-print.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/psyntax-pp.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/q.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/r5rs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/rdelim.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/readline.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/receive.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/regex.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/runq.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/rw.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/safe-r5rs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/safe.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/sandbox.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/save-stack.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/scm-style-repl.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/serialize.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/session.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/slib.go
Binary file not shown.
Binary file added usr/lib/guile/3.0/ccache/ice-9/soft-ports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/stack-catch.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/streams.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/string-fun.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/suspendable-ports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/textual-ports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/threads.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/time.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/top-repl.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/unicode.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/vlist.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/ice-9/weak-vector.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/brainfuck/compile-scheme.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/brainfuck/compile-tree-il.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/brainfuck/parse.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/brainfuck/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/bytecode.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/bytecode/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/closure-conversion.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/compile-bytecode.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/contification.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/cse.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/dce.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/devirtualize-integers.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/dump.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/effects-analysis.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/elide-arity-checks.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/graphs.go
Binary file not shown.
Binary file added usr/lib/guile/3.0/ccache/language/cps/guile-vm.go
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/intmap.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/intset.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/licm.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/optimize.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/peel-loops.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/prune-top-level-scopes.go
Binary file not shown.
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/renumber.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/return-types.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/rotate-loops.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/self-references.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/simplify.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/slot-allocation.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/specialize-numbers.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/specialize-primcalls.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/split-rec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/switch.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/type-checks.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/type-fold.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/types.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/utils.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/verify.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/cps/with-cps.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/array.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/base.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/compile-tree-il.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/function.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/impl.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/parse.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/ecmascript/tokenize.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/bindings.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/boot.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/compile-tree-il.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/falias.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/lexer.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/parser.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/runtime.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/runtime/function-slot.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/runtime/value-slot.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/elisp/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/scheme/compile-tree-il.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/scheme/decompile-tree-il.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/scheme/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/analyze.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/compile-bytecode.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/compile-cps.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/cps-primitives.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/debug.go
Binary file not shown.
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/effects.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/eta-expand.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/fix-letrec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/inlinable-exports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/letrectify.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/optimize.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/peval.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/primitives.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/resolve-free-vars.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/tree-il/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/language/value/spec.go
Binary file not shown.
Binary file added usr/lib/guile/3.0/ccache/language/wisp.go
Binary file not shown.
Binary file added usr/lib/guile/3.0/ccache/language/wisp/spec.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/accessors.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/active-slot.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/composite-slot.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/describe.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/internal.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/save.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/simple.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/oop/goops/stklos.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/arithmetic/bitwise.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/arithmetic/fixnums.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/arithmetic/flonums.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/base.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/bytevectors.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/bytevectors/gnu.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/conditions.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/control.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/enums.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/eval.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/exceptions.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/files.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/hashtables.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/io/ports.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/io/simple.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/lists.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/mutable-pairs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/mutable-strings.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/programs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/r5rs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/records/inspection.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/records/procedural.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/records/syntactic.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/sorting.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/syntax-case.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/rnrs/unicode.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/base.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/case-lambda.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/char.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/complex.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/cxr.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/eval.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/file.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/inexact.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/lazy.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/load.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/process-context.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/r5rs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/read.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/repl.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/time.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scheme/write.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/api-diff.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/autofrisk.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/compile.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/disassemble.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/display-commentary.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/doc-snarf.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/frisk.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/generate-autoload.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/help.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/lint.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/list.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/punify.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/read-rfc822.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/read-scheme-source.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/read-text-outline.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/scan-api.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/snarf-check-and-output-texi.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/snarf-guile-m4-docs.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/summarize-guile-TODO.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/scripts/use2dot.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-1.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-10.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-11.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-111.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-13.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-14.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-16.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-17.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-171.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-171/gnu.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-171/meta.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-18.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-19.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-2.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-26.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-27.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-28.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-31.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-34.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-35.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-37.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-38.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-39.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-4.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-4/gnu.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-41.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-42.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-43.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-45.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-6.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-60.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-64.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-67.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-69.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-71.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-8.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-88.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-9.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-9/gnu.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/srfi/srfi-98.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/statprof.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/sxml/apply-templates.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/sxml/fold.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/sxml/match.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/sxml/simple.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/sxml/ssax.go
Binary file not shown.
Binary file modified usr/lib/guile/3.0/ccache/sxml/ssax/input-parse.go
Binary file not shown.
Loading

0 comments on commit a7c12b9

Please sign in to comment.