forked from pool/qml-autoreqprov
Accepting request 1141034 from KDE:Qt5
OBS-URL: https://build.opensuse.org/request/show/1141034 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qml-autoreqprov?expand=0&rev=9
This commit is contained in:
commit
6b78a98126
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 22 14:18:20 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||||
|
|
||||||
|
- Bump version to 1.4.1
|
||||||
|
- qmldirreqprov.sh:
|
||||||
|
* Only generate unversioned URI provides for Qt 6+
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jan 21 12:11:19 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
Sun Jan 21 12:11:19 UTC 2024 - Fabian Vogt <fabian@ritter-vogt.de>
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: qml-autoreqprov
|
Name: qml-autoreqprov
|
||||||
Version: 1.4
|
Version: 1.4.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Automatic dependency generator for QML files and modules
|
Summary: Automatic dependency generator for QML files and modules
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
|
@ -101,7 +101,9 @@ while read file; do
|
|||||||
echo "Ignoring ${import}" >&2
|
echo "Ignoring ${import}" >&2
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
moduleExports["qt${qtver}qmlimport(${import%.*})"]="" # Provides for unversioned imports
|
if [[ $qtver -ge 6 ]]; then
|
||||||
|
moduleExports["qt${qtver}qmlimport(${import%.*})"]="" # Provides for unversioned imports
|
||||||
|
fi
|
||||||
foundModuleExport "qt${qtver}qmlimport(${import})" "$min"
|
foundModuleExport "qt${qtver}qmlimport(${import})" "$min"
|
||||||
done < <(qmlpluginexports-qt${qtver} "$plugin" "$module")
|
done < <(qmlpluginexports-qt${qtver} "$plugin" "$module")
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user