Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package aws-c-compression for
openSUSE:Factory checked in at 2025-02-06 22:05:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aws-c-compression (Old)
and /work/SRC/openSUSE:Factory/.aws-c-compression.new.2316 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "aws-c-compression"
Thu Feb 6 22:05:23 2025 rev:4 rq:1243451 version:0.3.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/aws-c-compression/aws-c-compression.changes
2024-10-27 11:25:23.706703142 +0100
+++
/work/SRC/openSUSE:Factory/.aws-c-compression.new.2316/aws-c-compression.changes
2025-02-06 22:06:56.985885932 +0100
@@ -1,0 +2,10 @@
+Thu Jan 30 12:25:28 UTC 2025 - John Paul Adrian Glaubitz
<[email protected]>
+
+- Update to version 0.3.1
+ * chore: Modified bug issue template to add checkbox to
+ report potential regression. by @ashishdhingra in (#69)
+ * Switch CI to use roles by @DmitriyMusatkin in #71
+ * A bunch of CMake fixes by @graebm in #72
+- Drop acc_fix-cmake-modules-path.patch, fixed upstream
+
+-------------------------------------------------------------------
Old:
----
acc_fix-cmake-modules-path.patch
v0.3.0.tar.gz
New:
----
v0.3.1.tar.gz
BETA DEBUG BEGIN:
Old: * A bunch of CMake fixes by @graebm in #72
- Drop acc_fix-cmake-modules-path.patch, fixed upstream
BETA DEBUG END:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ aws-c-compression.spec ++++++
--- /var/tmp/diff_new_pack.fYoTKf/_old 2025-02-06 22:06:57.685914779 +0100
+++ /var/tmp/diff_new_pack.fYoTKf/_new 2025-02-06 22:06:57.685914779 +0100
@@ -19,14 +19,13 @@
%define library_version 1.0.0
%define library_soversion 1_0_0
Name: aws-c-compression
-Version: 0.3.0
+Version: 0.3.1
Release: 0
Summary: C99 implementation of Huffman encoding/decoding
License: Apache-2.0
Group: Development/Libraries/C and C++
URL: https://github.com/awslabs/aws-c-compression
Source0: https://github.com/awslabs/%{name}/archive/v%{version}.tar.gz
-Patch0: acc_fix-cmake-modules-path.patch
BuildRequires: cmake
BuildRequires: fdupes
BuildRequires: cmake(aws-c-common)
++++++ v0.3.0.tar.gz -> v0.3.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/aws-c-compression-0.3.0/.github/ISSUE_TEMPLATE/bug-report.yml
new/aws-c-compression-0.3.1/.github/ISSUE_TEMPLATE/bug-report.yml
--- old/aws-c-compression-0.3.0/.github/ISSUE_TEMPLATE/bug-report.yml
2024-10-23 19:03:04.000000000 +0200
+++ new/aws-c-compression-0.3.1/.github/ISSUE_TEMPLATE/bug-report.yml
2025-01-29 00:10:38.000000000 +0100
@@ -12,6 +12,14 @@
description: What is the problem? A clear and concise description of the
bug.
validations:
required: true
+ - type: checkboxes
+ id: regression
+ attributes:
+ label: Regression Issue
+ description: What is a regression? If it worked in a previous version
but doesn't in the latest version, it's considered a regression. In this case,
please provide specific version number in the report.
+ options:
+ - label: Select this option if this issue appears to be a regression.
+ required: false
- type: textarea
id: expected
attributes:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/aws-c-compression-0.3.0/.github/workflows/ci.yml
new/aws-c-compression-0.3.1/.github/workflows/ci.yml
--- old/aws-c-compression-0.3.0/.github/workflows/ci.yml 2024-10-23
19:03:04.000000000 +0200
+++ new/aws-c-compression-0.3.1/.github/workflows/ci.yml 2025-01-29
00:10:38.000000000 +0100
@@ -6,19 +6,21 @@
- 'main'
env:
- BUILDER_VERSION: v0.9.62
+ BUILDER_VERSION: v0.9.72
BUILDER_SOURCE: releases
BUILDER_HOST: https://d19elf31gohf1l.cloudfront.net
PACKAGE_NAME: aws-c-compression
LINUX_BASE_IMAGE: ubuntu-18-x64
RUN: ${{ github.run_id }}-${{ github.run_number }}
- AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
- AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- AWS_REGION: us-east-1
+ CRT_CI_ROLE: ${{ secrets.CRT_CI_ROLE_ARN }}
+ AWS_DEFAULT_REGION: us-east-1
+
+permissions:
+ id-token: write # This is required for requesting the JWT
jobs:
linux-compat:
- runs-on: ubuntu-20.04 # latest
+ runs-on: ubuntu-24.04 # latest
strategy:
fail-fast: false
matrix:
@@ -32,14 +34,18 @@
- rhel8-x64
- al2-x64
steps:
- # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
+ # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
- name: Build ${{ env.PACKAGE_NAME }}
run: |
aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{
matrix.image }} build -p ${{ env.PACKAGE_NAME }}
linux-compiler-compat:
- runs-on: ubuntu-20.04 # latest
+ runs-on: ubuntu-24.04 # latest
strategy:
matrix:
compiler:
@@ -49,34 +55,50 @@
- clang-9
- clang-10
- clang-11
+ - clang-15
+ - clang-17
- gcc-4.8
- gcc-5
- gcc-6
- gcc-7
- gcc-8
+ - gcc-11
+ - gcc-13
steps:
- # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
- - name: Build ${{ env.PACKAGE_NAME }}
- run: |
- aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
- ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{
env.LINUX_BASE_IMAGE }} build -p ${{ env.PACKAGE_NAME }} --compiler=${{
matrix.compiler }}
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
+ # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
+ - name: Build ${{ env.PACKAGE_NAME }}
+ run: |
+ aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
+ ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{
env.LINUX_BASE_IMAGE }} build -p ${{ env.PACKAGE_NAME }} --compiler=${{
matrix.compiler }}
clang-sanitizers:
- runs-on: ubuntu-20.04 # latest
+ runs-on: ubuntu-24.04 # latest
strategy:
matrix:
sanitizers: [",thread", ",address,undefined"]
steps:
- # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
- - name: Build ${{ env.PACKAGE_NAME }}
- run: |
- aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
- ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{
env.LINUX_BASE_IMAGE }} build -p ${{ env.PACKAGE_NAME }} --compiler=clang-11
--cmake-extra=-DENABLE_SANITIZERS=ON --cmake-extra=-DSANITIZERS="${{
matrix.sanitizers }}"
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
+ # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
+ - name: Build ${{ env.PACKAGE_NAME }}
+ run: |
+ aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
+ ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{
env.LINUX_BASE_IMAGE }} build -p ${{ env.PACKAGE_NAME }} --compiler=clang-11
--cmake-extra=-DENABLE_SANITIZERS=ON --cmake-extra=-DSANITIZERS="${{
matrix.sanitizers }}"
linux-shared-libs:
- runs-on: ubuntu-20.04 # latest
+ runs-on: ubuntu-24.04 # latest
steps:
- # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
+ # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
- name: Build ${{ env.PACKAGE_NAME }}
run: |
aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
@@ -85,6 +107,10 @@
windows:
runs-on: windows-2022 # latest
steps:
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
python -c "from urllib.request import urlretrieve; urlretrieve('${{
env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION
}}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
@@ -96,6 +122,10 @@
matrix:
arch: [x86, x64]
steps:
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
python -c "from urllib.request import urlretrieve; urlretrieve('${{
env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION
}}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
@@ -104,6 +134,10 @@
windows-shared-libs:
runs-on: windows-2022 # latest
steps:
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
python -c "from urllib.request import urlretrieve; urlretrieve('${{
env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION
}}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
@@ -112,6 +146,10 @@
windows-app-verifier:
runs-on: windows-2022 # latest
steps:
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
python -c "from urllib.request import urlretrieve; urlretrieve('${{
env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION
}}/builder.pyz?run=${{ env.RUN }}', 'builder.pyz')"
@@ -123,6 +161,10 @@
macos:
runs-on: macos-14 # latest
steps:
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{
env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION
}}/builder.pyz?run=${{ env.RUN }}', 'builder')"
@@ -132,6 +174,10 @@
macos-x64:
runs-on: macos-14-large # latest
steps:
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Build ${{ env.PACKAGE_NAME }} + consumers
run: |
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{
env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION
}}/builder.pyz?run=${{ env.RUN }}', 'builder')"
@@ -141,10 +187,14 @@
# Test downstream repos.
# This should not be required because we can run into a chicken and egg
problem if there is a change that needs some fix in a downstream repo.
downstream:
- runs-on: ubuntu-20.04 # latest
+ runs-on: ubuntu-24.04 # latest
steps:
- # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
- - name: Build ${{ env.PACKAGE_NAME }}
- run: |
- aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
- ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{
env.LINUX_BASE_IMAGE }} build downstream -p ${{ env.PACKAGE_NAME }}
+ - uses: aws-actions/configure-aws-credentials@v4
+ with:
+ role-to-assume: ${{ env.CRT_CI_ROLE }}
+ aws-region: ${{ env.AWS_DEFAULT_REGION }}
+ # We can't use the `uses: docker://image` version yet, GitHub lacks
authentication for actions -> packages
+ - name: Build ${{ env.PACKAGE_NAME }}
+ run: |
+ aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION
}}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x
./linux-container-ci.sh
+ ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{
env.LINUX_BASE_IMAGE }} build downstream -p ${{ env.PACKAGE_NAME }}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/aws-c-compression-0.3.0/.github/workflows/issue-regression-labeler.yml
new/aws-c-compression-0.3.1/.github/workflows/issue-regression-labeler.yml
--- old/aws-c-compression-0.3.0/.github/workflows/issue-regression-labeler.yml
1970-01-01 01:00:00.000000000 +0100
+++ new/aws-c-compression-0.3.1/.github/workflows/issue-regression-labeler.yml
2025-01-29 00:10:38.000000000 +0100
@@ -0,0 +1,32 @@
+# Apply potential regression label on issues
+name: issue-regression-label
+on:
+ issues:
+ types: [opened, edited]
+jobs:
+ add-regression-label:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ steps:
+ - name: Fetch template body
+ id: check_regression
+ uses: actions/github-script@v7
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ TEMPLATE_BODY: ${{ github.event.issue.body }}
+ with:
+ script: |
+ const regressionPattern = /\[x\] Select this option if this issue
appears to be a regression\./i;
+ const template = `${process.env.TEMPLATE_BODY}`
+ const match = regressionPattern.test(template);
+ core.setOutput('is_regression', match);
+ - name: Manage regression label
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ if [ "${{ steps.check_regression.outputs.is_regression }}" == "true"
]; then
+ gh issue edit ${{ github.event.issue.number }} --add-label
"potential-regression" -R ${{ github.repository }}
+ else
+ gh issue edit ${{ github.event.issue.number }} --remove-label
"potential-regression" -R ${{ github.repository }}
+ fi
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/aws-c-compression-0.3.0/CMakeLists.txt
new/aws-c-compression-0.3.1/CMakeLists.txt
--- old/aws-c-compression-0.3.0/CMakeLists.txt 2024-10-23 19:03:04.000000000
+0200
+++ new/aws-c-compression-0.3.1/CMakeLists.txt 2025-01-29 00:10:38.000000000
+0100
@@ -1,32 +1,18 @@
-cmake_minimum_required(VERSION 3.9)
+cmake_minimum_required(VERSION 3.9...3.31)
project(aws-c-compression C)
-if (DEFINED CMAKE_PREFIX_PATH)
- file(TO_CMAKE_PATH "${CMAKE_PREFIX_PATH}" CMAKE_PREFIX_PATH)
+if (NOT IN_SOURCE_BUILD)
+ # this is required so we can use aws-c-common's CMake modules
+ find_package(aws-c-common REQUIRED)
endif()
-if (DEFINED CMAKE_INSTALL_PREFIX)
- file(TO_CMAKE_PATH "${CMAKE_INSTALL_PREFIX}" CMAKE_INSTALL_PREFIX)
-endif()
-
-if (UNIX AND NOT APPLE)
- include(GNUInstallDirs)
-elseif(NOT DEFINED CMAKE_INSTALL_LIBDIR)
- set(CMAKE_INSTALL_LIBDIR "lib")
-endif()
-
-# This is required in order to append /lib/cmake to each element in
CMAKE_PREFIX_PATH
-set(AWS_MODULE_DIR "/${CMAKE_INSTALL_LIBDIR}/cmake")
-string(REPLACE ";" "${AWS_MODULE_DIR};" AWS_MODULE_PATH
"${CMAKE_PREFIX_PATH}${AWS_MODULE_DIR}")
-# Append that generated list to the module search path
-list(APPEND CMAKE_MODULE_PATH ${AWS_MODULE_PATH})
-
include(AwsCFlags)
include(AwsCheckHeaders)
include(AwsSharedLibSetup)
include(AwsSanitizers)
include(CheckCCompilerFlag)
include(AwsFindPackage)
+include(GNUInstallDirs)
file(GLOB AWS_COMPRESSION_HEADERS
"include/aws/compression/*.h"
@@ -74,8 +60,8 @@
aws_prepare_shared_lib_exports(${PROJECT_NAME})
aws_check_headers(${PROJECT_NAME} ${AWS_COMPRESSION_HEADERS})
-install(FILES ${AWS_COMPRESSION_HEADERS} DESTINATION "include/aws/compression")
-install(FILES ${AWS_COMPRESSION_TESTING_HEADERS} DESTINATION
"include/aws/testing/compression")
+install(FILES ${AWS_COMPRESSION_HEADERS} DESTINATION
"${CMAKE_INSTALL_INCLUDEDIR}/aws/compression")
+install(FILES ${AWS_COMPRESSION_TESTING_HEADERS} DESTINATION
"${CMAKE_INSTALL_INCLUDEDIR}/aws/testing/compression")
if (BUILD_SHARED_LIBS)
set (TARGET_DIR "shared")
@@ -84,7 +70,7 @@
endif()
install(EXPORT "${PROJECT_NAME}-targets"
- DESTINATION "${LIBRARY_DIRECTORY}/${PROJECT_NAME}/cmake/${TARGET_DIR}"
+ DESTINATION
"${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}/${TARGET_DIR}"
NAMESPACE AWS::
COMPONENT Development)
@@ -93,7 +79,7 @@
@ONLY)
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}-config.cmake"
- DESTINATION "${LIBRARY_DIRECTORY}/${PROJECT_NAME}/cmake/"
+ DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}/"
COMPONENT Development)
option(BUILD_HUFFMAN_GENERATOR "Whether or not to build the
aws-c-common-huffman-generator tool" OFF)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/aws-c-compression-0.3.0/source/huffman_generator/CMakeLists.txt
new/aws-c-compression-0.3.1/source/huffman_generator/CMakeLists.txt
--- old/aws-c-compression-0.3.0/source/huffman_generator/CMakeLists.txt
2024-10-23 19:03:04.000000000 +0200
+++ new/aws-c-compression-0.3.1/source/huffman_generator/CMakeLists.txt
2025-01-29 00:10:38.000000000 +0100
@@ -16,5 +16,5 @@
install(
TARGETS ${GENERATOR_BINARY_NAME}
- RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/aws-c-compression-0.3.0/source/huffman_generator/generator.c
new/aws-c-compression-0.3.1/source/huffman_generator/generator.c
--- old/aws-c-compression-0.3.0/source/huffman_generator/generator.c
2024-10-23 19:03:04.000000000 +0200
+++ new/aws-c-compression-0.3.1/source/huffman_generator/generator.c
2025-01-29 00:10:38.000000000 +0100
@@ -4,7 +4,6 @@
*/
#include <assert.h> /* NOLINT(fuchsia-restrict-system-includes) */
-#include <aws/common/file.h>
#include <ctype.h>
#include <stdint.h> /* NOLINT(fuchsia-restrict-system-includes) */
#include <stdio.h>
@@ -43,7 +42,7 @@
int read_code_points(const char *input_path) {
memset(code_points, 0, sizeof(code_points));
- FILE *file = aws_fopen(input_path, "r");
+ FILE *file = fopen(input_path, "r");
if (!file) {
printf("Failed to open file '%s' for read.", input_path);
return 1;
@@ -279,7 +278,7 @@
}
/* Open the file */
- FILE *file = aws_fopen(output_file, "w");
+ FILE *file = fopen(output_file, "w");
if (!file) {
printf("Failed to open file '%s' for write.", output_file);
return 1;