-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for dtk6 and release 6.0.0 Log: add support for dtk6
- Loading branch information
Showing
5 changed files
with
37 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
qt6integration (6.0.0) unstable; urgency=medium | ||
|
||
* Release 6.0.0 | ||
|
||
-- Deepin Packages Builder <[email protected]> Fri, 27 Oct 2023 10:14:27 +0800 | ||
|
||
qt5integration (5.6.17) unstable; urgency=medium | ||
|
||
* release 5.6.17 | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,29 @@ | ||
Source: qt5integration | ||
Source: qt6integration | ||
Section: devel | ||
Priority: optional | ||
Maintainer: Deepin Packages Builder <[email protected]> | ||
Build-Depends: | ||
debhelper (>=9), | ||
debhelper-compat (= 12), | ||
cmake, | ||
qtbase5-dev, | ||
qtbase5-private-dev, | ||
libqt5xdg-dev, | ||
libdtkgui-dev (>=5.6.13), | ||
libdtkwidget-dev, | ||
qt6-base-dev, | ||
qt6-base-private-dev, | ||
libdtk6widget-dev, | ||
libdtkcommon-dev, | ||
pkg-config, | ||
libqt5x11extras5-dev, | ||
libfontconfig1-dev, | ||
libfreetype-dev, | ||
libglib2.0-dev, | ||
libqt5svg5-dev, | ||
libqt5xdgiconloader-dev, | ||
qt6-svg-dev, | ||
libmtdev-dev, | ||
libegl1-mesa-dev, | ||
libxrender-dev, | ||
libgtest-dev, | ||
libgmock-dev | ||
Standards-Version: 3.9.8 | ||
|
||
Package: dde-qt5integration | ||
Package: dde-qt6integration | ||
Architecture: any | ||
Provides: libqt5deepintheme-plugin | ||
Conflicts: libqt5deepintheme-plugin | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, dde-qt5xcb-plugin | ||
Provides: libqt6deepintheme-plugin | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, dde-qt6xcb-plugin | ||
Description: Qt platform theme integration plugins for DDE | ||
Multiple Qt plugins to provide better Qt5 integration for DDE is included. | ||
Multiple Qt plugins to provide better Qt6 integration for DDE is included. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: qt5integration | ||
Source: https://github.com/linuxdeepin/qt5integration | ||
Upstream-Name: qt6integration | ||
Source: https://github.com/linuxdeepin/qt6integration | ||
|
||
Files: * | ||
Copyright: 2017 Deepin.Inc <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,25 @@ | ||
#!/usr/bin/make -f | ||
DPKG_EXPORT_BUILDFLAGS = 1 | ||
include /usr/share/dpkg/default.mk | ||
|
||
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) | ||
|
||
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) | ||
|
||
VERSION = $(DEB_VERSION_UPSTREAM) | ||
_PACK_VER = $(shell echo $(VERSION) | awk -F'[+_~-]' '{print $$1}') | ||
_BUILD_VER = $(shell echo $(VERSION) | awk -F'[+_~-]' '{print $$2}' | sed 's/[^0-9]//g' | awk '{print int($$1)}') | ||
ifeq ($(_BUILD_VER),) | ||
CONFIG_VERSION = $(_PACK_VER) | ||
else | ||
CONFIG_VERSION = $(_PACK_VER).$(_BUILD_VER) | ||
endif | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_configure: | ||
dh_auto_configure -- -DDTK_VERSION=$(_PACK_VER) | ||
|
||
override_dh_shlibdeps: | ||
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info |