From 51bdb3694a48e31b2dbb17cbcf35ca7616c6c7f1 Mon Sep 17 00:00:00 2001 From: n-kawauchi Date: Fri, 29 Aug 2025 11:05:48 +0900 Subject: [PATCH] Supported lowercase whl filename. --- packages/deb/debian/rules | 2 +- packages/deb/dpkg_build.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/deb/debian/rules b/packages/deb/debian/rules index 3eefb485..d1d63a33 100644 --- a/packages/deb/debian/rules +++ b/packages/deb/debian/rules @@ -48,7 +48,7 @@ install: build (cp $(CURDIR)/bin/rtc*2_python $(TARGET)/bin) (mkdir -p $(TARGET)/lib/python3/dist-packages) (cp -r $(CURDIR)/OpenRTM_aist $(TARGET)/lib/python3/dist-packages) - (cp -r $(CURDIR)/OpenRTM_aist*.dist-info $(TARGET)/lib/python3/dist-packages) + (cp -r $(CURDIR)/openrtm_aist*.dist-info $(TARGET)/lib/python3/dist-packages) (cp $(CURDIR)/OpenRTM-aist.pth $(TARGET)/lib/python3/dist-packages) # for openrtm2-python3-example package diff --git a/packages/deb/dpkg_build.sh b/packages/deb/dpkg_build.sh index eba49ecc..b956599c 100644 --- a/packages/deb/dpkg_build.sh +++ b/packages/deb/dpkg_build.sh @@ -117,6 +117,7 @@ extract_source() mkdir ${BUILD_ROOT} cp -r ../../examples ${BUILD_ROOT}/ cp -r ../../OpenRTM_aist* ${BUILD_ROOT}/ + cp -r ../../openrtm_aist* ${BUILD_ROOT}/ cp ../../OpenRTM-aist.pth ${BUILD_ROOT}/ find ${BUILD_ROOT}/examples | grep -E "(/__pycache__$|\.pyc$|\.pyo$)" | xargs rm -rf find ${BUILD_ROOT}/examples -name "*.bat" | xargs rm -f