Skip to content

Commit d8d53fb

Browse files
author
Matthias Koefferlein
committed
Merge remote-tracking branch 'origin/devel'
2 parents 282f450 + 45947aa commit d8d53fb

File tree

263 files changed

+80930
-623
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

263 files changed

+80930
-623
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,7 @@ py.typed
7474
*.dmg.md5
7575
.DS_Store
7676

77+
# temp files
78+
.tmp*
79+
.venv
80+

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393

9494
- script: |
9595
# setuptools 67.0.0 is not working as of now (pypa/setuptools#4885)
96-
python -m pip install --upgrade pip "setuptools<76.0.0" wheel
96+
python -m pip install --upgrade pip "setuptools<76.0.0" wheel tomli
9797
displayName: 'Update pip, setuptools and wheel'
9898
9999
- script: |

build.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ HAVE_PNG=0
4040
HAVE_CURL=0
4141
HAVE_EXPAT=0
4242
HAVE_GIT2=1
43+
HAVE_LSTREAM=1
4344

4445
RUBYINCLUDE=""
4546
RUBYINCLUDE2=""
@@ -213,6 +214,9 @@ while [ "$*" != "" ]; do
213214
-nolibgit2)
214215
HAVE_GIT2=0
215216
;;
217+
-nolstream)
218+
HAVE_LSTREAM=0
219+
;;
216220
-qt5)
217221
echo "*** WARNING: -qt5 option is ignored - Qt version is auto-detected now."
218222
;;
@@ -270,6 +274,7 @@ while [ "$*" != "" ]; do
270274
echo " -libexpat Use libexpat instead of QtXml"
271275
echo " -libpng Use libpng instead of Qt for PNG generation"
272276
echo " -nolibgit2 Do not include libgit2 for Git package support"
277+
echo " -nolstream Do not include the LStream plugin"
273278
echo ""
274279
echo "Environment Variables:"
275280
echo ""
@@ -503,6 +508,9 @@ fi
503508
if [ $HAVE_GIT2 != 0 ]; then
504509
echo " Uses libgit2 for Git access"
505510
fi
511+
if [ $HAVE_LSTREAM != 0 ]; then
512+
echo " Includes LStream plugin"
513+
fi
506514
if [ "$RPATH" = "" ]; then
507515
RPATH="$BIN"
508516
fi
@@ -587,6 +595,7 @@ echo " HAVE_CURL=$HAVE_CURL"
587595
echo " HAVE_PNG=$HAVE_PNG"
588596
echo " HAVE_EXPAT=$HAVE_EXPAT"
589597
echo " HAVE_GIT2=$HAVE_GIT2"
598+
echo " HAVE_LSTREAM=$HAVE_LSTREAM"
590599
echo " RPATH=$RPATH"
591600

592601
mkdir -p $BUILD
@@ -660,6 +669,7 @@ qmake_options=(
660669
HAVE_EXPAT="$HAVE_EXPAT"
661670
HAVE_PNG="$HAVE_PNG"
662671
HAVE_GIT2="$HAVE_GIT2"
672+
HAVE_LSTREAM="$HAVE_LSTREAM"
663673
PREFIX="$BIN"
664674
RPATH="$RPATH"
665675
KLAYOUT_VERSION="$KLAYOUT_VERSION"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools"]
2+
requires = ["setuptools", "tomli"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.cibuildwheel]

0 commit comments

Comments
 (0)