forked from pool/crypto-policies
- Remove the scripts and documentation regarding fips-finish-install and test-fips-setup * Add crypto-policies-FIPS.patch - Update to version 20210917.c9d86d1: * openssl: fix disabling ChaCha20 * pacify pylint 2.11: use format strings * pacify pylint 2.11: specify explicit encoding * fix minor things found by new pylint * update-crypto-policies: --check against regenerated * update-crypto-policies: fix --check's walking order * policygenerators/gnutls: revert disabling DTLS0.9... * policygenerators/java: add javasystem backend * LEGACY: bump 1023 key size to 1024 * cryptopolicies: fix 'and' in deprecation warnings * *ssh: condition ecdh-sha2-nistp384 on SECP384R1 * nss: hopefully the last fix for nss sigalgs check * cryptopolicies: Python 3.10 compatibility * nss: postponing check + testing at least something * Rename 'policy modules' to 'subpolicies' * validation.rules: fix a missing word in error * cryptopolicies: raise errors right after warnings * update-crypto-policies: capitalize warnings * cryptopolicies: syntax-precheck scope errors * .gitlab-ci.yml, Makefile: enable codespell * all: fix several typos * docs: don't leave zero TLS/DTLS protocols on * openssl: separate TLS/DTLS MinProtocol/MaxProtocol * alg_lists: order protocols new-to-old for consistency * alg_lists: max_{d,}tls_version OBS-URL: https://build.opensuse.org/request/show/921336 OBS-URL: https://build.opensuse.org/package/show/security:tls/crypto-policies?expand=0&rev=14
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
Index: fedora-crypto-policies/Makefile
|
|
===================================================================
|
|
--- fedora-crypto-policies.orig/Makefile
|
|
+++ fedora-crypto-policies/Makefile
|
|
@@ -22,9 +22,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)
|
|
@@ -106,8 +106,8 @@ clean:
|
|
rm -rf output
|
|
|
|
%: %.txt
|
|
- asciidoc.py -v -d manpage -b docbook $<
|
|
- xsltproc --nonet -o $@ /usr/share/asciidoc/docbook-xsl/manpage.xsl $@.xml
|
|
+ # asciidoc -v -d manpage -b docbook $<
|
|
+ # xsltproc --nonet -o $@ /etc/asciidoc/docbook-xsl/manpage.xsl $@.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
|