Compare commits
No commits in common. "a10s" and "c9" have entirely different histories.
18
.gitignore
vendored
18
.gitignore
vendored
@ -1,17 +1 @@
|
|||||||
/awscrt-0.16.13.tar.gz
|
SOURCES/awscrt-0.20.2.tar.gz
|
||||||
/awscrt-0.16.16.tar.gz
|
|
||||||
/awscrt-0.16.17.tar.gz
|
|
||||||
/awscrt-0.16.18.tar.gz
|
|
||||||
/awscrt-0.16.19.tar.gz
|
|
||||||
/awscrt-0.16.21.tar.gz
|
|
||||||
/awscrt-0.16.24.tar.gz
|
|
||||||
/awscrt-0.16.25.tar.gz
|
|
||||||
/awscrt-0.17.0.tar.gz
|
|
||||||
/awscrt-0.18.0.tar.gz
|
|
||||||
/awscrt-0.19.1.tar.gz
|
|
||||||
/awscrt-0.19.2.tar.gz
|
|
||||||
/awscrt-0.19.3.tar.gz
|
|
||||||
/awscrt-0.19.6.tar.gz
|
|
||||||
/awscrt-0.19.13.tar.gz
|
|
||||||
/awscrt-0.19.19.tar.gz
|
|
||||||
/awscrt-0.20.2.tar.gz
|
|
||||||
|
29
.packit.yaml
29
.packit.yaml
@ -1,29 +0,0 @@
|
|||||||
upstream_package_name: awscrt
|
|
||||||
downstream_package_name: python-awscrt
|
|
||||||
|
|
||||||
upstream_project_url: https://github.com/awslabs/aws-crt-python
|
|
||||||
|
|
||||||
upstream_tag_template: v{version}
|
|
||||||
|
|
||||||
specfile_path: python-awscrt.spec
|
|
||||||
|
|
||||||
copy_upstream_release_description: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
- job: pull_from_upstream
|
|
||||||
trigger: release
|
|
||||||
dist_git_branches:
|
|
||||||
- fedora-all
|
|
||||||
- epel9
|
|
||||||
|
|
||||||
- job: koji_build
|
|
||||||
trigger: commit
|
|
||||||
dist_git_branches:
|
|
||||||
- fedora-all
|
|
||||||
- epel9
|
|
||||||
|
|
||||||
- job: bodhi_update
|
|
||||||
trigger: commit
|
|
||||||
dist_git_branches:
|
|
||||||
- fedora-branched # rawhide updates are created automatically
|
|
||||||
- epel9
|
|
1
.python-awscrt.metadata
Normal file
1
.python-awscrt.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
3b76a63f106d4ddb6a27198f935405aa82c43585 SOURCES/awscrt-0.20.2.tar.gz
|
@ -1,3 +0,0 @@
|
|||||||
This repository is maintained by packit.
|
|
||||||
https://packit.dev/
|
|
||||||
The file was generated using packit 0.87.1.post1.dev11+gd1f7091b.
|
|
1750
SOURCES/pkcs11.h
Normal file
1750
SOURCES/pkcs11.h
Normal file
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@ Python bindings for the AWS Common Runtime}
|
|||||||
|
|
||||||
Name: python-awscrt
|
Name: python-awscrt
|
||||||
Version: 0.20.2
|
Version: 0.20.2
|
||||||
Release: %autorelease
|
Release: 3%{dist}
|
||||||
|
|
||||||
Summary: Python bindings for the AWS Common Runtime
|
Summary: Python bindings for the AWS Common Runtime
|
||||||
# All files are licensed under Apache-2.0, except:
|
# All files are licensed under Apache-2.0, except:
|
||||||
@ -16,11 +16,14 @@ URL: https://github.com/awslabs/aws-crt-python
|
|||||||
|
|
||||||
Source0: %{pypi_source awscrt}
|
Source0: %{pypi_source awscrt}
|
||||||
|
|
||||||
|
# Get an open source version of the pkcs11 header file from Simo's repository.
|
||||||
|
# https://github.com/latchset/pkcs11-headers
|
||||||
|
Source1: https://raw.githubusercontent.com/latchset/pkcs11-headers/main/public-domain/2.40/pkcs11.h
|
||||||
|
|
||||||
# one test requires internet connection, skip it
|
# one test requires internet connection, skip it
|
||||||
Patch0: skip-test-requiring-network.patch
|
Patch0: skip-test-requiring-network.patch
|
||||||
|
|
||||||
BuildRequires: python%{python3_pkgversion}-devel
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
BuildRequires: python%{python3_pkgversion}-wheel
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -48,6 +51,14 @@ Summary: %{summary}
|
|||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n awscrt-%{version}
|
%autosetup -p1 -n awscrt-%{version}
|
||||||
|
|
||||||
|
# Bring in the pkcs11 header file from Simo's repository.
|
||||||
|
rm -fv crt/aws-c-io/source/pkcs11/v2.40/*
|
||||||
|
cp %{SOURCE1} crt/aws-c-io/source/pkcs11/v2.40/
|
||||||
|
|
||||||
|
# Remove the third party license that goes along with
|
||||||
|
# the removed pkcs11.h header file.
|
||||||
|
rm -rf crt/aws-c-io/THIRD-PARTY-LICENSES.txt
|
||||||
|
|
||||||
|
|
||||||
%generate_buildrequires
|
%generate_buildrequires
|
||||||
%pyproject_buildrequires
|
%pyproject_buildrequires
|
||||||
@ -77,4 +88,36 @@ PYTHONPATH="%{buildroot}%{python3_sitearch}:%{buildroot}%{python3_sitelib}" %{py
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
%autochangelog
|
* Tue Feb 13 2024 Major Hayden <major@redhat.com> - 0.20.2-3
|
||||||
|
- Remove the third party license file from excluded pkcs11.h
|
||||||
|
|
||||||
|
* Mon Feb 12 2024 Major Hayden <major@redhat.com> - 0.20.2-2
|
||||||
|
- Replacing upstream's pkcs11.h with Simo's public domain version.
|
||||||
|
|
||||||
|
* Tue Jan 02 2024 Packit <hello@packit.dev> - 0.20.2-1
|
||||||
|
- [packit] 0.20.2 upstream release
|
||||||
|
- Resolves rhbz#2254450
|
||||||
|
|
||||||
|
* Wed Dec 06 2023 Nikola Forró <nforro@redhat.com> - 0.19.19-2
|
||||||
|
- Add Packit config
|
||||||
|
|
||||||
|
* Thu Nov 30 2023 Packit <hello@packit.dev> - 0.19.19-1
|
||||||
|
- [packit] 0.19.19 upstream release
|
||||||
|
- Resolves rhbz#2250726
|
||||||
|
|
||||||
|
* Fri Nov 17 2023 Packit <hello@packit.dev> - 0.19.13-1
|
||||||
|
- [packit] 0.19.13 upstream release
|
||||||
|
- Resolves rhbz#2247105
|
||||||
|
|
||||||
|
* Wed Oct 25 2023 Packit <hello@packit.dev> - 0.19.6-1
|
||||||
|
- [packit] 0.19.6 upstream release
|
||||||
|
- Resolves rhbz#2211521 Upstream tag: v0.19.6 Upstream commit: b83949d0
|
||||||
|
|
||||||
|
* Mon Oct 16 2023 Packit <hello@packit.dev> - 0.19.3-1
|
||||||
|
- [packit] 0.19.3 upstream release
|
||||||
|
|
||||||
|
* Mon Oct 02 2023 Packit <hello@packit.dev> - 0.19.2-1
|
||||||
|
- [packit] 0.19.2 upstream release
|
||||||
|
|
||||||
|
* Fri Aug 25 2023 Nikola Forró <nforro@redhat.com> - 0.18.0-1
|
||||||
|
- Initial import for EPEL 9
|
@ -1,8 +0,0 @@
|
|||||||
* Wed Apr 26 2023 Nikola Forró <nforro@redhat.com> - 0.16.16-1
|
|
||||||
- New upstream release 0.16.16
|
|
||||||
|
|
||||||
* Wed Mar 22 2023 Nikola Forró <nforro@redhat.com> - 0.16.13-2
|
|
||||||
- Workaround a crash on %%ix86
|
|
||||||
|
|
||||||
* Thu Mar 16 2023 Nikola Forró <nforro@redhat.com> - 0.16.13-1
|
|
||||||
- Initial package
|
|
Loading…
Reference in New Issue
Block a user