forked from pool/crypto-policies
4ac1e9ad7b
- Update the update-crypto-policies(8) man pages and README.SUSE to mention the supported back-end policies. [bsc#1209998] * Add crypto-policies-supported.patch - Update to version 20230420.3d08ae7: * openssl, alg_lists: add brainpool support * openssl: set Groups explicitly * codespell: ignore aNULL * rpm-sequoia: allow 1024 bit DSA and SHA-1 per FeSCO decision 2960 * sequoia: add separate rpm-sequoia backend * crypto-policies.7: state upfront that FUTURE is not so interoperable * Makefile: update for asciidoc 10 * Skip the LibreswanGenerator and SequoiaGenerator: - Add crypto-policies-policygenerators.patch * Remove crypto-policies-test_supported_modules_only.patch * Rebase crypto-policies-no-build-manpages.patch - Update to version 20221214.a4c31a3: * bind: expand the list of disableable algorithms * libssh: Add support for openssh fido keys * .gitlab-ci.yml: install krb5-devel for krb5-config * sequoia: check using sequoia-policy-config-check * sequoia: introduce new back-end * Makefile: support overriding asciidoc executable name * openssh: make none and auto explicit and different * openssh: autodetect and allow forcing RequiredRSASize presence/name * openssh: remove _pre_8_5_ssh * pylintrc: update * Revert "disable SHA-1 further for a Fedora 38 Rawhide "jump scare"..." * disable SHA-1 further for a Fedora 38 Rawhide "jump scare"... OBS-URL: https://build.opensuse.org/request/show/1086482 OBS-URL: https://build.opensuse.org/package/show/security:tls/crypto-policies?expand=0&rev=15
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
Index: fedora-crypto-policies-20230420.3d08ae7/Makefile
|
|
===================================================================
|
|
--- fedora-crypto-policies-20230420.3d08ae7.orig/Makefile
|
|
+++ fedora-crypto-policies-20230420.3d08ae7/Makefile
|
|
@@ -28,9 +28,9 @@ install: $(MANPAGES)
|
|
mkdir -p $(DESTDIR)$(MANDIR)/man7
|
|
mkdir -p $(DESTDIR)$(MANDIR)/man8
|
|
mkdir -p $(DESTDIR)$(BINDIR)
|
|
- install -p -m 644 $(MAN7PAGES) $(DESTDIR)$(MANDIR)/man7
|
|
- install -p -m 644 $(MAN8PAGES) $(DESTDIR)$(MANDIR)/man8
|
|
- install -p -m 755 $(SCRIPTS) $(DESTDIR)$(BINDIR)
|
|
+ # install -p -m 644 $(MAN7PAGES) $(DESTDIR)$(MANDIR)/man7
|
|
+ # install -p -m 644 $(MAN8PAGES) $(DESTDIR)$(MANDIR)/man8
|
|
+ # install -p -m 755 $(SCRIPTS) $(DESTDIR)$(BINDIR)
|
|
mkdir -p $(DESTDIR)$(DIR)/
|
|
install -p -m 644 default-config $(DESTDIR)$(DIR)
|
|
install -p -m 644 output/reload-cmds.sh $(DESTDIR)$(DIR)
|
|
@@ -114,8 +114,8 @@ clean:
|
|
rm -rf output
|
|
|
|
%: %.txt
|
|
- $(ASCIIDOC) -v -d manpage -b docbook $<
|
|
- xsltproc --nonet -o $@ ${MANPAGEXSL} $@.xml
|
|
+ #$(ASCIIDOC) -v -d manpage -b docbook $<
|
|
+ #xsltproc --nonet -o $@ ${MANPAGEXSL} $@.xml
|
|
|
|
dist:
|
|
rm -rf crypto-policies && git clone . crypto-policies && rm -rf crypto-policies/.git/ && tar -czf crypto-policies-git$(VERSION).tar.gz crypto-policies && rm -rf crypto-policies
|