mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
af861917c5
to suppress OpenSSL 3.0 deprecation warnings (until a proper solution is deployed): ``` ../src/shared/creds-util.c: In function ‘sha256_hash_host_and_tpm2_key’: ../src/shared/creds-util.c:412:9: error: ‘SHA256_Init’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 412 | if (SHA256_Init(&sha256_context) != 1) | ^~ In file included from /usr/include/openssl/x509.h:41, from ../src/shared/openssl-util.h:8, from ../src/shared/creds-util.c:21: /usr/include/openssl/sha.h:73:27: note: declared here 73 | OSSL_DEPRECATEDIN_3_0 int SHA256_Init(SHA256_CTX *c); | ^~~~~~~~~~~ ../src/shared/creds-util.c:415:9: error: ‘SHA256_Update’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 415 | if (host_key && SHA256_Update(&sha256_context, host_key, host_key_size) != 1) | ^~ In file included from /usr/include/openssl/x509.h:41, from ../src/shared/openssl-util.h:8, from ../src/shared/creds-util.c:21: /usr/include/openssl/sha.h:74:27: note: declared here 74 | OSSL_DEPRECATEDIN_3_0 int SHA256_Update(SHA256_CTX *c, | ^~~~~~~~~~~~~ ../src/shared/creds-util.c:418:9: error: ‘SHA256_Update’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 418 | if (tpm2_key && SHA256_Update(&sha256_context, tpm2_key, tpm2_key_size) != 1) | ^~ In file included from /usr/include/openssl/x509.h:41, from ../src/shared/openssl-util.h:8, from ../src/shared/creds-util.c:21: /usr/include/openssl/sha.h:74:27: note: declared here 74 | OSSL_DEPRECATEDIN_3_0 int SHA256_Update(SHA256_CTX *c, | ^~~~~~~~~~~~~ ../src/shared/creds-util.c:421:9: error: ‘SHA256_Final’ is deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations] 421 | if (SHA256_Final(ret, &sha256_context) != 1) | ^~ In file included from /usr/include/openssl/x509.h:41, from ../src/shared/openssl-util.h:8, from ../src/shared/creds-util.c:21: /usr/include/openssl/sha.h:76:27: note: declared here 76 | OSSL_DEPRECATEDIN_3_0 int SHA256_Final(unsigned char *md, SHA256_CTX *c); | ^~~~~~~~~~~~ cc1: all warnings being treated as errors ```
47 lines
1.8 KiB
YAML
47 lines
1.8 KiB
YAML
---
|
|
# vi:ts=2 sw=2 et:
|
|
#
|
|
# Docs: https://packit.dev/docs/
|
|
|
|
specfile_path: .packit_rpm/systemd.spec
|
|
synced_files:
|
|
- .packit.yaml
|
|
- src: .packit_rpm/systemd.spec
|
|
dest: systemd.spec
|
|
upstream_package_name: systemd
|
|
downstream_package_name: systemd
|
|
# `git describe` returns in systemd's case 'v245-xxx' which breaks RPM version
|
|
# detection (that expects 245-xxxx'). Let's tweak the version string accordingly
|
|
upstream_tag_template: "v{version}"
|
|
|
|
actions:
|
|
post-upstream-clone:
|
|
# Use the Fedora Rawhide specfile
|
|
- "git clone https://src.fedoraproject.org/rpms/systemd .packit_rpm --depth=1"
|
|
# Drop the "sources" file so rebase-helper doesn't think we're a dist-git
|
|
- "rm -fv .packit_rpm/sources"
|
|
# Drop backported patches from the specfile, but keep the downstream-only ones
|
|
# - Patch0000-0499: backported patches from upstream
|
|
# - Patch0500-9999: downstream-only patches
|
|
- "sed -ri '/^Patch0[0-4]?[0-9]{0,2}\\:.+\\.patch/d' .packit_rpm/systemd.spec"
|
|
# Build the RPM with --werror. Even though --werror doesn't work in all
|
|
# cases (see [0]), we can't use -Dc_args=/-Dcpp_args= here because of the
|
|
# RPM hardening macros, that use $CFLAGS/$CPPFLAGS (see [1]).
|
|
#
|
|
# [0] https://github.com/mesonbuild/meson/issues/7360
|
|
# [1] https://github.com/systemd/systemd/pull/18908#issuecomment-792250110
|
|
- 'sed -i "/^CONFIGURE_OPTS=(/a--werror" .packit_rpm/systemd.spec'
|
|
# FIXME: temporarily disable the deprecated-declarations check to suppress
|
|
# OpenSSL 3.0 warnings in Rawhide
|
|
- 'sed -i "1 i %global optflags %{optflags} -Wno-deprecated-declarations" .packit_rpm/systemd.spec'
|
|
|
|
jobs:
|
|
- job: copr_build
|
|
trigger: pull_request
|
|
metadata:
|
|
targets:
|
|
- fedora-rawhide-aarch64
|
|
- fedora-rawhide-i386
|
|
- fedora-rawhide-ppc64le
|
|
- fedora-rawhide-x86_64
|