Lines Matching +full:packchk +full:- +full:version
2 # Version: 3.0
3 # Date: 2024-01-09
4 # This bash script generates a CMSIS-NN Software Pack:
7 set -o pipefail
9 # Set version of gen pack library
10 # For available versions see https://github.com/Open-CMSIS-Pack/gen-pack/tags.
15 DEFAULT_ARGS=(-c "v")
17 # Pack warehouse directory - destination
58 # Specify addition argument to packchk
63 # Specify additional dependencies for packchk
73 # - full Tag annotations, release descriptions, or commit messages (in order)
74 # - release Tag annotations, or release descriptions (in order)
75 # - tag Tag annotations only
78 # custom pre-processing steps
89 # custom post-processing steps
95 # Set component version to match pack version
96 VERSION=$(git_describe "${CHANGELOG}" | sed -e "s/+g.*$//")
97 …sed -i -e "s/Cgroup=\"NN Lib\" Cversion=\"[^\"]*\"/Cgroup=\"NN Lib\" Cversion=\"${VERSION}\"/" ${P…
102 # Set GEN_PACK_LIB_PATH to use a specific gen-pack library root
104 if [[ -f "${GEN_PACK_LIB_PATH}/gen-pack" ]]; then
105 . "${GEN_PACK_LIB}/gen-pack"
107 . <(curl -sL "https://raw.githubusercontent.com/Open-CMSIS-Pack/gen-pack/main/bootstrap")