Skip to content

Commit

Permalink
alvistack/42.0.7
Browse files Browse the repository at this point in the history
    git clean -xdf
    mkdir -p .cargo
    cargo vendor --manifest-path ./src/rust/Cargo.toml > .cargo/config.toml
    tar zcvf ../python-cryptography_42.0.7.orig.tar.gz --exclude=.git .
    debuild -uc -us
    cp python-cryptography.spec ../python-cryptography_42.0.7-1.spec
    cp ../python*-cryptography*42.0.7*.{gz,xz,spec,dsc} /osc/home\:alvistack/pyca-cryptography-42.0.7/
    rm -rf ../python*-cryptography*42.0.7*.*

See pyca#10462

Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
  • Loading branch information
hswong3i committed Jun 13, 2024
1 parent 0cc7fc3 commit d61a384
Show file tree
Hide file tree
Showing 13 changed files with 335 additions and 66 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,7 @@ htmlcov/
*.py[cdo]
.hypothesis/
target/
.rust-cov/
.rust-cov/
.cargo/
.pybuild/
vendor/
6 changes: 6 additions & 0 deletions debian/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.substvars
*debhelper*
.debhelper
files
python3-cryptography
tmp
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python-cryptography (100:42.0.7-1) UNRELEASED; urgency=medium

* https://github.com/pyca/cryptography/releases/tag/42.0.7

-- Wong Hoi Sing Edison <hswong3i@pantarei-design.com> Tue, 07 May 2024 21:16:55 +0800
40 changes: 40 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
Source: python-cryptography
Section: python
Priority: optional
Standards-Version: 4.5.0
Maintainer: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
Homepage: https://github.com/pyca/cryptography/tags
Vcs-Browser: https://github.com/alvistack/pyca-cryptography
Vcs-Git: https://github.com/alvistack/pyca-cryptography.git
Build-Depends:
debhelper,
debhelper-compat (= 10),
dh-python,
cargo,
cython3,
fdupes,
libffi-dev,
libssl-dev,
openssl,
pkg-config,
python3-cffi (>= 1.12),
python3-dev,
python3-pycparser,
python3-setuptools (>= 61.0.0),
python3-setuptools-rust (>= 1.7.0),
python3-wheel,
rustc,

Package: python3-cryptography
Architecture: amd64
Description: Python library which exposes cryptographic recipes and primitives
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers.
Depends:
${misc:Depends},
${shlibs:Depends},
${python3:Depends},
python3,
python3-cffi (>= 1.12),
Conflicts:
python3-openssl (<< 22.0.0),
21 changes: 21 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Files: debian/*
Copyright: 2024 Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
License: Apache-2.0

License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
The complete text of the Apache version 2.0 license
can be found in "/usr/share/common-licenses/Apache-2.0".
1 change: 1 addition & 0 deletions debian/python3-cryptography.install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
usr/lib/python*/*-packages/*
4 changes: 4 additions & 0 deletions debian/python3-cryptography.lintian-overrides
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
python3-cryptography: copyright-without-copyright-notice
python3-cryptography: initial-upload-closes-no-bugs
python3-cryptography: no-manual-page
python3-cryptography: zero-byte-file-in-doc-directory
15 changes: 15 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/make -f

SHELL := /bin/bash

override_dh_auto_install:
dh_auto_install --destdir=debian/tmp
find debian/tmp/usr/lib/python*/*-packages -type f -name '*.pyc' -exec rm -rf {} \;
fdupes -qnrps debian/tmp/usr/lib/python*/*-packages

override_dh_auto_test:

override_dh_auto_clean:

%:
dh $@ --buildsystem=pybuild --with python3
1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (quilt)
6 changes: 6 additions & 0 deletions debian/source/lintian-overrides
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
python-cryptography source: file-without-copyright-information
python-cryptography source: no-debian-changes
python-cryptography source: source-contains-prebuilt-windows-binary
python-cryptography source: source-is-missing
python-cryptography source: source-package-encodes-python-version
python-cryptography source: unpack-message-for-orig
167 changes: 167 additions & 0 deletions python-cryptography.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
# Copyright 2024 Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

%global debug_package %{nil}

%global source_date_epoch_from_changelog 0

Name: python-cryptography
Epoch: 100
Version: 42.0.7
Release: 1%{?dist}
Summary: Python library which exposes cryptographic recipes and primitives
License: Apache-2.0
URL: https://github.com/pyca/cryptography/tags
Source0: %{name}_%{version}.orig.tar.gz
%if 0%{?rhel} == 7
BuildRequires: openssl11
BuildRequires: openssl11-devel
%else
BuildRequires: openssl
BuildRequires: openssl-devel
%endif
BuildRequires: cargo
BuildRequires: fdupes
BuildRequires: gcc
BuildRequires: libffi-devel
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: python3-cffi >= 1.12
BuildRequires: python3-Cython3
BuildRequires: python3-devel
BuildRequires: python3-pycparser
BuildRequires: python3-setuptools >= 61.0.0
BuildRequires: python3-setuptools-rust >= 1.7.0
BuildRequires: python3-wheel
BuildRequires: rust

%description
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers.

%prep
%autosetup -T -c -n %{name}_%{version}-%{release}
tar -zx -f %{S:0} --strip-components=1 -C .

%build
set -ex && \
%if 0%{?rhel} == 7
export LDFLAGS="-L%{_libdir}/openssl11" && \
export CFLAGS="-I%{_includedir}/openssl11" && \
export OPENSSL_DIR="%{_libdir}/openssl11" && \
export OPENSSL_LIB_DIR="%{_libdir}/openssl11" && \
export OPENSSL_INCLUDE_DIR="%{_includedir}/openssl11" && \
%endif
%py3_build

%install
%py3_install
find %{buildroot}%{python3_sitearch} -type f -name '*.pyc' -exec rm -rf {} \;
fdupes -qnrps %{buildroot}%{python3_sitearch}

%check

%if 0%{?suse_version} > 1500
%package -n python%{python3_version_nodots}-cryptography
Summary: Python library which exposes cryptographic recipes and primitives
Requires: openssl
Requires: python3
Requires: python3-cffi >= 1.12
Provides: python3-cryptography = %{epoch}:%{version}-%{release}
Provides: python3dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}-cryptography = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}-cryptography = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}dist(cryptography) = %{epoch}:%{version}-%{release}
Conflicts: python3-pyOpenSSL < 22.0.0

%description -n python%{python3_version_nodots}-cryptography
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers.

%files -n python%{python3_version_nodots}-cryptography
%license LICENSE
%{python3_sitearch}/*
%endif

%if 0%{?sle_version} > 150000
%package -n python3-cryptography
Summary: Python library which exposes cryptographic recipes and primitives
Requires: openssl
Requires: python3
Requires: python3-cffi >= 1.12
Provides: python3-cryptography = %{epoch}:%{version}-%{release}
Provides: python3dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}-cryptography = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python3-cryptography = %{epoch}:%{version}-%{release}
Provides: python3dist(cryptography) = %{epoch}:%{version}-%{release}
Conflicts: python3-pyOpenSSL < 22.0.0

%description -n python3-cryptography
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers.

%files -n python3-cryptography
%license LICENSE
%{python3_sitearch}/*
%endif

%if 0%{?rhel} == 7
%package -n python%{python3_version_nodots}-cryptography
Summary: Python library which exposes cryptographic recipes and primitives
Requires: openssl11-libs
Requires: python3
Requires: python3-cffi >= 1.12
Provides: python3-cryptography = %{epoch}:%{version}-%{release}
Provides: python3dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}-cryptography = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}-cryptography = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}dist(cryptography) = %{epoch}:%{version}-%{release}
Conflicts: python3-pyOpenSSL < 22.0.0

%description -n python%{python3_version_nodots}-cryptography
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers.

%files -n python%{python3_version_nodots}-cryptography
%license LICENSE
%{python3_sitearch}/*
%endif

%if !(0%{?suse_version} > 1500) && !(0%{?sle_version} > 150000) && !(0%{?rhel} == 7)
%package -n python3-cryptography
Summary: Python library which exposes cryptographic recipes and primitives
Requires: openssl-libs
Requires: python3
Requires: python3-cffi >= 1.12
Provides: python3-cryptography = %{epoch}:%{version}-%{release}
Provides: python3dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}-cryptography = %{epoch}:%{version}-%{release}
Provides: python%{python3_version}dist(cryptography) = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}-cryptography = %{epoch}:%{version}-%{release}
Provides: python%{python3_version_nodots}dist(cryptography) = %{epoch}:%{version}-%{release}
Conflicts: python3-pyOpenSSL < 22.0.0

%description -n python3-cryptography
cryptography is a package designed to expose cryptographic primitives
and recipes to Python developers.

%files -n python3-cryptography
%license LICENSE
%{python3_sitearch}/*
%endif

%changelog
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from setuptools import setup
setup()
Loading

0 comments on commit d61a384

Please sign in to comment.