-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[package] Add build debian package Closed #83
- Loading branch information
Showing
8 changed files
with
88 additions
and
9 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 |
---|---|---|
|
@@ -11,12 +11,21 @@ install: | |
- sudo apt-get install -qq qtdeclarative5-dev build-essential | ||
|
||
script: | ||
- qmake -v | ||
- qmake -r | ||
- make | ||
- cd test/test_cpp/ | ||
- ./rheda-test-cpp | ||
- export QT_QPA_PLATFORM='offscreen' | ||
- cd ../test_qml/ | ||
- ./rheda-test-qml | ||
- chmod +x init_build.sh | ||
- ./init_build.sh | ||
- export DEBEMAIL="[email protected]" | ||
- export DEBFULLNAME="Aleksey Tatarov" | ||
# - git status | ||
# - sudo gbp dch --since 0.0.1 --ignore-branch | ||
# - VERSION=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
#- sed -i "s/.*(unknown).*/rheda-messenger (${VERSION}) UNRELEASED; urgency=medium/" debian/changelog | ||
- sudo dpkg-buildpackage -us -uc | ||
# - qmake -v | ||
# - qmake -r | ||
# - make | ||
# - cd test/test_cpp/ | ||
# - ./rheda-test-cpp | ||
# - export QT_QPA_PLATFORM='offscreen' | ||
# - cd ../test_qml/ | ||
# - ./rheda-test-qml | ||
|
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
Empty file.
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 @@ | ||
rheda-messenger (0.0.1) UNRELEASED; urgency=medium | ||
|
||
* | ||
|
||
-- Aleksey Tatarov <[email protected]> Sun, 05 Jul 2020 19:56:54 +0300 |
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,13 @@ | ||
Source: rheda-messenger | ||
Section: misc | ||
Priority: optional | ||
Maintainer: Aleksey Tatarov <[email protected]> | ||
Build-Depends: debhelper-compat (= 12) | ||
Standards-Version: 4.4.1 | ||
Homepage: https://github.com/omarcompany/rheda-messenger | ||
|
||
Package: rheda-messenger | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: <The simple messenger to send messages> | ||
<The simple messenger to send messages and get messages> |
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,27 @@ | ||
Upstream-Name: rheda-messenger | ||
Upstream-Contact: <Aleksey Tatarov [email protected]> | ||
Source: <url://github.com/omarcompany/rheda-messenger> | ||
|
||
Files: * | ||
Copyright: <2020> <Danil Rostovcev [email protected]> | ||
<2020> <Sergey Samohin [email protected]> | ||
<2020> <Valentin Veremchuk [email protected]> | ||
License: GPL-2+ | ||
Files: debian/* | ||
Copyright: 2020 Aleksey <[email protected]> | ||
License: GPL-2+ | ||
This package is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
. | ||
This package is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/> | ||
. | ||
On Debian systems, the complete text of the GNU General | ||
Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". |
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,10 @@ | ||
#!/usr/bin/make -f | ||
#export DH_VERBOSE=1 | ||
#export DH_OPTIONS=-v | ||
# This is the debhelper compatability version to use. | ||
|
||
#export DH_COMPAT=3 | ||
override_dh_auto_configure: | ||
qmake application/application.pro | ||
%: | ||
dh $@ |
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 @@ | ||
#! /bin/bash | ||
|
||
sudo apt-get install -y dpkg debconf debhelper lintian git-buildpackage fakeroot | ||
|
||
#make distclean | ||
|
||
#export DEBEMAIL="[email protected]" | ||
#export DEBFULLNAME="Aleksey Tatarov" | ||
|
||
#gbp dch --since 0.0.1 --ignore-branch | ||
#echo "----------------------create changelog------------------------------" | ||
#VERSION=$(git describe --tags $(git rev-list --tags --max-count=1)) | ||
#sed -i "s/.*(unknown).*/rheda-messenger (${VERSION}) UNRELEASED; urgency=medium/" debian/changelog | ||
|
||
#dpkg-buildpackage -us -uc |