1
0
mirror of https://github.com/obgm/libcoap.git synced 2025-05-08 23:01:52 +08:00
libcoap/scripts/api-version-bump.sh
Olaf Bergmann 7791897e8f api-version-bump.sh: Added missing changes for win32
This change adds replacements for additional files in the win32
subdirectory tree according to commit 166ef51e (see [1]).

[1] https://github.com/obgm/libcoap/pull/763
2021-10-18 09:48:56 +02:00

61 lines
2.3 KiB
Bash
Executable File

#! /bin/bash
if ! test -f configure.ac; then
>&2 echo "$(basename $0): script must be called from the package's top directory"
exit 1
fi
declare $(sed -ne '/^LIBCOAP_API_VERSION=[0-9]\+/{p; q}' configure.ac)
NEW_VERSION=${1:-$LIBCOAP_API_VERSION}
if test "x$NEW_VERSION" = "x$LIBCOAP_API_VERSION"; then
>&2 echo "no version change requested, exiting (current version is $LIBCOAP_API_VERSION)"
exit 1
fi
echo $(basename $0): increase version $LIBCOAP_API_VERSION to $NEW_VERSION
# command for move operations on version-controlled files and directories
MV="git mv"
move() {
source=$1
dest=$2
test -e "$1" && $MV "$1" "$2"
}
move include/coap$LIBCOAP_API_VERSION include/coap$NEW_VERSION
move libcoap-$LIBCOAP_API_VERSION.pc.in libcoap-$NEW_VERSION.pc.in
move libcoap-$LIBCOAP_API_VERSION.map libcoap-$NEW_VERSION.map
move libcoap-$LIBCOAP_API_VERSION.sym libcoap-$NEW_VERSION.sym
# sed pattern for include path prefix substitution
pat='\(#\s*include ["<]coap\)'$LIBCOAP_API_VERSION/
find \( -name \*.h -o -name \*.c \) \
-exec grep -q "^$pat" {} \; -print | \
(while read fn ; do test -f ${fn}.in || sed -i "s,^$pat,\1$NEW_VERSION/," $fn ; done )
# examples-code-check.c generates new files with include statements
sed -i "s,$pat,\1$NEW_VERSION/," man/examples-code-check.c
pathpat='\(include/coap\)'$LIBCOAP_API_VERSION
# autogen.sh
for fn in autogen.sh .gitignore build-env/Dockerfile.* ; do
sed -i "s,$pathpat,\1$NEW_VERSION,g" $fn
done
# Adjust LIBCOAP_API_VERSION in CMakeLists.txt
sed -i "s/^\(set(LIBCOAP_API_VERSION \+\)$LIBCOAP_API_VERSION\( *)\)/\1$NEW_VERSION\2/" CMakeLists.txt
# Adjust LibCoAPIncludeDir in win32/libcoap.props
sed -i "s/\(<LibCoAPIncludeDir>include\\\coap\)$LIBCOAP_API_VERSION/\1$NEW_VERSION/" win32/libcoap.props
# Adjust API version in in win32/libcoap.vcxproj
sed -i "s/\(<CustomBuild Include=\"\.\.\\\libcoap-\)$LIBCOAP_API_VERSION/\1$NEW_VERSION/" win32/libcoap.vcxproj win32/libcoap.vcxproj.filters
sed -i "s/\(<TargetName>\$(ProjectName)-\)$LIBCOAP_API_VERSION/\1$NEW_VERSION/" win32/libcoap.vcxproj
sed -i "s/\(libcoap-\)$LIBCOAP_API_VERSION/\1$NEW_VERSION/g" win32/install/install.vcxproj
# Finally, increase LIBCOAP_API_VERSION in configure.ac and re-run autoconf
sed -i "s/^\(LIBCOAP_API_VERSION=\)$LIBCOAP_API_VERSION/\1$NEW_VERSION/" configure.ac && autoreconf