From 401454dadf0a025b653e0255d1ab29a45e94b69a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=AE=D1=80=D1=8C?= =?UTF-8?q?=D0=B5=D0=B2=20=28Leonid=20Yuriev=29?= Date: Mon, 3 Feb 2025 18:46:01 +0300 Subject: [PATCH] =?UTF-8?q?mdbx-conan:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D0=BF=D0=B5=D1=87?= =?UTF-8?q?=D0=B0=D1=82=D0=BA=D0=B8=20=D0=B2=20=D0=B8=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=20=D0=BF=D0=B5=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BD=D0=BE?= =?UTF-8?q?=D0=B9=20`version=5Fjson=5Fpathname`=20=D0=B2=20verbose-=D0=B2?= =?UTF-8?q?=D1=8B=D0=B2=D0=BE=D0=B4=D0=B5.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Спасибо Виктору Логунову (https://t.me/vl_username) за сообщение о проблеме. --- ChangeLog.md | 1 + conanfile.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 27d3d853..95e2ad76 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -13,6 +13,7 @@ and [by Yandex](https://translated.turbopages.org/proxy_u/ru-en.en/https/libmdbx - [Erigon](https://docs.erigon.tech/) за спонсорство. - [Alain Picard](https://github.com/castortech) for support [Java bindings](https://github.com/castortech/mdbxjni) and MacOS universal binaries patch for CMake build scenario. - [Alex Sharov](https://github.com/AskAlexSharov) за сообщение об ошибках и тестирование. + - [Виктору Логунову](https://t.me/vl_username) за сообщение об опечатки в имени переменной в Conan-рецепте. Новое: diff --git a/conanfile.py b/conanfile.py index 79241260..b36e7b44 100644 --- a/conanfile.py +++ b/conanfile.py @@ -228,7 +228,7 @@ class libmdbx(ConanFile): if os.path.exists(version_json_pathname): self.version = json.load( open(version_json_pathname, encoding='utf-8'))['semver'] - version_from = "'" + version_jsonpath_name + "'" + version_from = "'" + version_json_pathname + "'" else: self.version = self.fetch_versioninfo_from_git()['semver'] version_from = 'Git'