-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #343 from yurtpage/debian
Debian package
- Loading branch information
Showing
8 changed files
with
79 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
qt-mvvm (0.2.0) stable; urgency=medium | ||
|
||
* This release contains mostly API refactoring and bug fixing. | ||
* New features | ||
* Undo/redo macro commands | ||
* GraphItem improvements: errors, line style and width | ||
* New widget: combo property editor with multiple selections | ||
* New widget: collapsible list widget | ||
* Update for Qt 5.15 | ||
|
||
-- Gennady Pospelov <[email protected]> Thu, 10 Dec 2020 00:00:00 +0000 | ||
|
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Source: qt-mvvm | ||
Maintainer: Gennady Pospelov <[email protected]> | ||
Section: libs | ||
Priority: optional | ||
Build-Depends: debhelper-compat (= 11), debhelper (>= 11), libstdc++6, cmake, qtbase5-dev, qttools5-dev, pkgconf | ||
Rules-Requires-Root: no | ||
Standards-Version: 4.1.4 | ||
Vcs-Browser: https://github.com/gpospelov/qt-mvvm | ||
Vcs-Git: https://github.com/gpospelov/qt-mvvm.git | ||
Homepage: https://github.com/gpospelov/qt-mvvm | ||
Bugs: https://github.com/gpospelov/qt-mvvm/issues | ||
|
||
Package: qt-mvvm | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, | ||
${misc:Depends} | ||
Description: Model-View-ViewModel framework for Qt based applications written in C++ | ||
Main features of the framework are | ||
* Application model to store arbitrary data of GUI session. | ||
* Serialization of application models to json. | ||
* Undo/redo based on command pattern. | ||
* View model to show parts of application model in Qt widgets. Depends on Qt. | ||
* Scientific plotting based on qcustomplot. | ||
* Automatic generation of widgets from model content. | ||
* Property editors. | ||
* Flexible layout of Qt's trees and tables. | ||
|
||
Package: qt-mvvm-dev | ||
Architecture: any | ||
Section: libdevel | ||
Depends: ${shlibs:Depends}, | ||
${misc:Depends} | ||
Description: Development files for libmvvm-qt5 | ||
Model-View-ViewModel framework for Qt based applications written in C++ |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
|
||
Files: * | ||
Copyright: 2020-2024 Gennady Pospelov <[email protected]> | ||
License: GPL-3+ |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
usr/include/mvvm/ | ||
usr/lib/*/cmake/mvvm/ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/*/libmvvm* |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/make -f | ||
export DH_VERBOSE=1 | ||
export QT_SELECT=qt5 | ||
|
||
%: | ||
dh $@ | ||
|
||
override_dh_auto_configure: | ||
dh_auto_configure -- \ | ||
-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \ | ||
-DBUILD_TESTING=OFF \ | ||
-DMVVM_DISCOVER_TESTS=OFF \ | ||
-DMVVM_ENABLE_FILESYSTEM=OFF \ | ||
-DMVVM_BUILD_EXAMPLES=OFF | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |