Skip to content

Commit

Permalink
Update 2 packages
Browse files Browse the repository at this point in the history
mingw-w64-clang-aarch64-libpsl (0.21.2-4 -> 0.21.5-1)
mingw-w64-clang-aarch64-zlib (1.3-1 -> 1.3.1-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Jan 24, 2024
1 parent 6c554ba commit 0ccae81
Show file tree
Hide file tree
Showing 34 changed files with 33 additions and 39 deletions.
Binary file modified clangarm64/bin/libpsl-5.dll
Binary file not shown.
Binary file modified clangarm64/bin/psl.exe
Binary file not shown.
Binary file modified clangarm64/bin/zlib1.dll
Binary file not shown.
8 changes: 4 additions & 4 deletions clangarm64/include/libpsl.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright(c) 2014-2022 Tim Ruehsen
* Copyright(c) 2014-2024 Tim Ruehsen
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -34,11 +34,11 @@
#include <stdio.h>
#include <time.h>

#define PSL_VERSION "0.21.2"
#define PSL_VERSION "0.21.5"
#define PSL_VERSION_MAJOR 0
#define PSL_VERSION_MINOR 21
#define PSL_VERSION_PATCH 2
#define PSL_VERSION_NUMBER 0x001502
#define PSL_VERSION_PATCH 5
#define PSL_VERSION_NUMBER 0x001505

/* support clang's __has_declspec_attribute attribute */
#ifndef __has_declspec_attribute
Expand Down
10 changes: 1 addition & 9 deletions clangarm64/include/zconf.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler
* Copyright (C) 1995-2024 Jean-loup Gailly, Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/

Expand Down Expand Up @@ -300,14 +300,6 @@
# endif
#endif

#ifndef Z_ARG /* function prototypes for stdarg */
# if defined(STDC) || defined(Z_HAVE_STDARG_H)
# define Z_ARG(args) args
# else
# define Z_ARG(args) ()
# endif
#endif

/* The following definitions for FAR are needed only for MSDOS mixed
* model programming (small or medium model with some far allocations).
* This was tested only with MSC; for other MSDOS compilers you may have
Expand Down
22 changes: 11 additions & 11 deletions clangarm64/include/zlib.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.3, August 18th, 2023
version 1.3.1, January 22nd, 2024
Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
Expand Down Expand Up @@ -37,11 +37,11 @@
extern "C" {
#endif

#define ZLIB_VERSION "1.3"
#define ZLIB_VERNUM 0x1300
#define ZLIB_VERSION "1.3.1"
#define ZLIB_VERNUM 0x1310
#define ZLIB_VER_MAJOR 1
#define ZLIB_VER_MINOR 3
#define ZLIB_VER_REVISION 0
#define ZLIB_VER_REVISION 1
#define ZLIB_VER_SUBREVISION 0

/*
Expand Down Expand Up @@ -936,10 +936,10 @@ ZEXTERN int ZEXPORT inflateSync(z_streamp strm);
inflateSync returns Z_OK if a possible full flush point has been found,
Z_BUF_ERROR if no more input was provided, Z_DATA_ERROR if no flush point
has been found, or Z_STREAM_ERROR if the stream structure was inconsistent.
In the success case, the application may save the current current value of
total_in which indicates where valid compressed data was found. In the
error case, the application may repeatedly call inflateSync, providing more
input each time, until success or end of the input data.
In the success case, the application may save the current value of total_in
which indicates where valid compressed data was found. In the error case,
the application may repeatedly call inflateSync, providing more input each
time, until success or end of the input data.
*/

ZEXTERN int ZEXPORT inflateCopy(z_streamp dest,
Expand Down Expand Up @@ -1758,14 +1758,14 @@ ZEXTERN uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2);
seq1 and seq2 with lengths len1 and len2, CRC-32 check values were
calculated for each, crc1 and crc2. crc32_combine() returns the CRC-32
check value of seq1 and seq2 concatenated, requiring only crc1, crc2, and
len2.
len2. len2 must be non-negative.
*/

/*
ZEXTERN uLong ZEXPORT crc32_combine_gen(z_off_t len2);
Return the operator corresponding to length len2, to be used with
crc32_combine_op().
crc32_combine_op(). len2 must be non-negative.
*/

ZEXTERN uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op);
Expand Down
Binary file modified clangarm64/lib/libpsl.a
Binary file not shown.
Binary file modified clangarm64/lib/libpsl.dll.a
Binary file not shown.
Binary file modified clangarm64/lib/libz.a
Binary file not shown.
2 changes: 1 addition & 1 deletion clangarm64/lib/pkgconfig/libpsl.pc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ libdir=${prefix}/lib

Name: libpsl
Description: Public Suffix List C library
Version: 0.21.2
Version: 0.21.5
Requires.private: libidn2
Libs: -L${libdir} -lpsl
Libs.private: -lunistring -lws2_32 -liconv
Expand Down
2 changes: 1 addition & 1 deletion clangarm64/lib/pkgconfig/zlib.pc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ includedir=${prefix}/include

Name: zlib
Description: zlib compression library
Version: 1.3
Version: 1.3.1

Requires:
Libs: -L${libdir} -lz
Expand Down
2 changes: 1 addition & 1 deletion clangarm64/share/licenses/libpsl/COPYING
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2014-2022 Tim Rühsen
Copyright (C) 2014-2024 Tim Rühsen

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand Down
Binary file modified clangarm64/share/man/man3/zlib.3.gz
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ any
1682971880

%INSTALLDATE%
1705979755
1706066144

%PACKAGER%
Johannes Schindelin <[email protected]>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-clang-aarch64-libpsl

%VERSION%
0.21.2-4
0.21.5-1

%BASE%
mingw-w64-libpsl
Expand All @@ -11,22 +11,22 @@ mingw-w64-libpsl
Public Suffix List library (mingw-w64)

%URL%
https://github.com/rockdaboot/libpsl
https://rockdaboot.github.io/libpsl/

%ARCH%
any

%BUILDDATE%
1675676505
1705994121

%INSTALLDATE%
1675722698
1706066142

%PACKAGER%
CI (msys2-arm/msys2-autobuild/34a63008/4101161216)
CI (msys2-arm/msys2-autobuild/1c45f2ab/7622262916)

%SIZE%
258116
260832

%REASON%
1
Expand All @@ -35,6 +35,7 @@ CI (msys2-arm/msys2-autobuild/34a63008/4101161216)
spdx:MIT

%VALIDATION%
sha256
pgp

%DEPENDS%
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mingw-w64-clang-aarch64-zlib

%VERSION%
1.3-1
1.3.1-1

%BASE%
mingw-w64-zlib
Expand All @@ -17,16 +17,16 @@ https://www.zlib.net/
any

%BUILDDATE%
1692392922
1705996951

%INSTALLDATE%
1692501255
1706066142

%PACKAGER%
CI (msys2-arm/msys2-autobuild/1f1fabad/5907090259)
CI (msys2-arm/msys2-autobuild/1c45f2ab/7622655754)

%SIZE%
342884
342660

%REASON%
1
Expand All @@ -35,5 +35,6 @@ CI (msys2-arm/msys2-autobuild/1f1fabad/5907090259)
spdx:Zlib

%VALIDATION%
sha256
pgp

Binary file not shown.
Binary file modified var/lib/pacman/sync/clang32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clang64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/clangarm64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/clangarm64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw32.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/mingw64.db.sig
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db
Binary file not shown.
Binary file modified var/lib/pacman/sync/ucrt64.db.sig
Binary file not shown.

0 comments on commit 0ccae81

Please sign in to comment.