From 1edc761ef20d3056b44ca2b333fb753f2896252a Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Mon, 25 Jul 2022 13:51:52 +0530 Subject: [PATCH] cleanup remaining references for esp-cryptoauthlib --- .flake8 | 1 - .gitlab/ci/rules.yml | 1 - docs/en/COPYRIGHT.rst | 3 --- tools/ci/check_readme_links.py | 6 ------ tools/ci/static-analysis-rules.yml | 1 - 5 files changed, 12 deletions(-) diff --git a/.flake8 b/.flake8 index 0a4be0a0f7..7fe9791683 100644 --- a/.flake8 +++ b/.flake8 @@ -149,7 +149,6 @@ exclude = components/tinyusb, components/unity/unity, components/spiffs/spiffs, - examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib, # autogenerated scripts components/protocomm/python/constants_pb2.py, components/protocomm/python/sec0_pb2.py, diff --git a/.gitlab/ci/rules.yml b/.gitlab/ci/rules.yml index 2e4eff95e6..cdc84ea7fa 100644 --- a/.gitlab/ci/rules.yml +++ b/.gitlab/ci/rules.yml @@ -173,7 +173,6 @@ - "components/tinyusb/tinyusb" - "components/unity/unity" - "components/heap/tlsf" - - "examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib" - ".gitmodules" # for jobs: example_test*flash_encryption_wifi_high_traffic diff --git a/docs/en/COPYRIGHT.rst b/docs/en/COPYRIGHT.rst index 1ce90ddd22..f36b7fda61 100644 --- a/docs/en/COPYRIGHT.rst +++ b/docs/en/COPYRIGHT.rst @@ -55,8 +55,6 @@ These third party libraries can be included into the application (firmware) prod * `mynewt-nimble`_ Apache Mynewt NimBLE, Copyright 2015-2018, The Apache Software Foundation, is licensed under Apache License 2.0 as described in :component_file:`LICENSE file`. -* `cryptoauthlib`_ Microchip CryptoAuthentication Library - Copyright (c) 2015 - 2018 Microchip Technology Inc, is licensed under common Microchip software License as described in :example_file:`LICENSE file ` - * `TLSF allocator ` Two Level Segregated Fit memory allocator, Copyright (c) 2006-2016, Matthew Conte, and licensed under the BSD 3-clause license. * `qrcode`_ QR Code generator library Copyright (c) Project Nayuki, is licensed under MIT license. @@ -167,7 +165,6 @@ Copyright (C) 2011, ChaN, all right reserved. .. _ESP-IDF Programming Guide: https://docs.espressif.com/projects/esp-idf/en/latest/ .. _sphinx_idf_theme: https://github.com/espressif/sphinx_idf_theme .. _sphinx_rtd_theme: https://github.com/readthedocs/sphinx_rtd_theme -.. _cryptoauthlib: https://github.com/MicrochipTech/cryptoauthlib .. _qrcode: https://github.com/nayuki/QR-Code-generator .. _freemodbus: https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32 .. _SEGGER SystemView: https://www.segger.com/downloads/systemview/ diff --git a/tools/ci/check_readme_links.py b/tools/ci/check_readme_links.py index 80ed216d54..bf33b4a06f 100755 --- a/tools/ci/check_readme_links.py +++ b/tools/ci/check_readme_links.py @@ -18,8 +18,6 @@ from collections import defaultdict, namedtuple from pathlib import Path from typing import List -EXCLUDE_DOCS_LIST = ['examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib/cryptoauthlib/**'] - # The apple apps links are not accessible from the company network for some reason EXCLUDE_URL_LIST = ['https://apps.apple.com/in/app/esp-ble-provisioning/id1473590141', 'https://apps.apple.com/in/app/esp-softap-provisioning/id1474040630'] @@ -98,10 +96,6 @@ def get_md_links(folder: str) -> List: links = [] for path in (idf_path / folder).rglob('*.md'): - if any([path.relative_to(idf_path).match(exclude_doc) for exclude_doc in EXCLUDE_DOCS_LIST]): - print('{} - excluded'.format(path)) - continue - with path.open(encoding='utf8') as f: content = f.read() diff --git a/tools/ci/static-analysis-rules.yml b/tools/ci/static-analysis-rules.yml index f729329f02..d67022c636 100644 --- a/tools/ci/static-analysis-rules.yml +++ b/tools/ci/static-analysis-rules.yml @@ -30,7 +30,6 @@ skip: - "components/tinyusb/tinyusb" - "components/unity/unity" - "components/heap/tlsf" - - "examples/peripherals/secure_element/atecc608_ecdsa/components/esp-cryptoauthlib" # disabled temporarily to pass the CI - "components/bt/common/btc/core/btc_task.c"