]> git.notmuchmail.org Git - notmuch/commitdiff
build: remove handling for legacy python bindings version
authorDavid Bremner <david@tethera.net>
Sat, 15 Feb 2025 19:41:29 +0000 (15:41 -0400)
committerDavid Bremner <david@tethera.net>
Sat, 22 Feb 2025 11:07:46 +0000 (07:07 -0400)
The legacy python bindings are no longer built.

Makefile.global
Makefile.local
devel/release-checks.sh

index 7a7a3c6d09ab687e6899cadd8055f83e6dbba07a..258c379c73daec8dba7bff1210a6cf8fc320ffd6 100644 (file)
@@ -47,8 +47,6 @@ DEB_TAR_FILE=$(PACKAGE)_$(VERSION).orig.tar.xz
 SHA256_FILE=$(TAR_FILE).sha256.asc
 DETACHED_SIG_FILE=$(TAR_FILE).asc
 
-PV_FILE=bindings/python/notmuch/version.py
-
 # Smash together user's values with our extra values
 FINAL_CFLAGS = -DNOTMUCH_VERSION=$(VERSION) $(WARN_CFLAGS) $(extra_cflags) $(CPPFLAGS) $(CONFIGURE_CFLAGS) $(CFLAGS)
 FINAL_CXXFLAGS = $(WARN_CXXFLAGS) $(extra_cflags) $(extra_cxxflags) $(CPPFLAGS) $(CONFIGURE_CXXFLAGS) $(CXXFLAGS)
index 7699c208bb8eca696a35ae7ea0951a6fd8c44487..2cc9bd29a2f40c14b3e1a8973d6969b20a6ddfac 100644 (file)
@@ -60,9 +60,7 @@ dist: $(TAR_FILE)
 .PHONY: update-versions
 
 update-versions:
-       sed -i -e "s/^__VERSION__[[:blank:]]*=.*$$/__VERSION__ = \'${VERSION}\'/" \
-           -e "s/^SOVERSION[[:blank:]]*=.*$$/SOVERSION = \'${LIBNOTMUCH_VERSION_MAJOR}\'/" \
-           ${PV_FILE}
+       @echo nothing to do
 
 # We invoke make recursively only to force ordering of our phony
 # targets in the case of parallel invocation of make (-j).
index c0accf78bf1fa3ae86ac2586c122dab9c1663499..4f81722bb85a2f4cc869ec2256d616423d877521 100755 (executable)
@@ -18,8 +18,6 @@ readonly DEFAULT_IFS="$IFS" # Note: In this particular case quotes are needed.
 # Avoid locale-specific differences in output of executed commands
 LANG=C LC_ALL=C; export LANG LC_ALL
 
-readonly PV_FILE='bindings/python/notmuch/version.py'
-
 # Using array here turned out to be unnecessarily complicated
 emsgs=''
 emsg_count=0
@@ -29,7 +27,7 @@ append_emsg ()
        emsgs="${emsgs:+$emsgs\n}  $1"
 }
 
-for f in ./version.txt debian/changelog NEWS "$PV_FILE"
+for f in ./version.txt debian/changelog NEWS
 do
        if   [ ! -f "$f" ]; then append_emsg "File '$f' is missing"
        elif [ ! -r "$f" ]; then append_emsg "File '$f' is unreadable"
@@ -108,16 +106,6 @@ else
        append_emsg "Version '$deb_version' is not '($VERSION-1)' in debian/changelog"
 fi
 
-printf %s "Checking that python bindings version is $VERSION... "
-py_version=`python3 -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"`
-if [ "$py_version" = "$VERSION" ]
-then
-       echo Yes.
-else
-       echo No.
-       append_emsg "Version '$py_version' is not '$VERSION' in $PV_FILE"
-fi
-
 printf %s "Checking that NEWS header is tidy... "
 if [ "`exec sed 's/./=/g; 1q' NEWS`" = "`exec sed '1d; 2q' NEWS`" ]
 then