-
Notifications
You must be signed in to change notification settings - Fork 0
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 #3 from tudo75/0.1.0
added bedian package support
- Loading branch information
Showing
11 changed files
with
89 additions
and
2 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,7 @@ | ||
#/bin/bash | ||
sudo dh clean | ||
sudo dh binary | ||
|
||
# when run in the docker container | ||
# fakeroot dh clean | ||
# fakeroot dh binary |
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,5 @@ | ||
xed-sessionsaver-plugin (0.1.0) una; urgency=medium | ||
|
||
* Initial release. | ||
|
||
-- tudo75 <tudo75@hotmail.com> Tue, 16 Aug 2022 00:20:41 +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 @@ | ||
9 |
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,21 @@ | ||
Source: xed-sessionsaver-plugin | ||
Section: x11 | ||
Priority: optional | ||
Maintainer: Nicola tudo75 Tudino <tudo75@hotmail.com> | ||
Build-Depends: debhelper (>= 9), | ||
meson, | ||
dh-python, | ||
gnome-common, | ||
gnome-pkg-tools, | ||
gobject-introspection (>= 0.9.12-4~), | ||
intltool (>= 0.40.0), | ||
libgirepository1.0-dev (>= 0.10.7-1~), | ||
libglib2.0-dev (>= 2.30.0) | ||
Standards-Version: 3.9.5 | ||
X-Python3-Version: >= 3.1 | ||
|
||
Package: xed-sessionsaver-plugin | ||
Architecture: any | ||
Depends: ${misc:Depends}, ${shlibs:Depends} | ||
Description: SessionSaver Plugin for Xed written in Vala. | ||
|
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,18 @@ | ||
Files: * | ||
Copyright 2022 Nicola Tudino | ||
|
||
This file is part of xed-sessionsaver-plugin. | ||
|
||
xed-sessionsaver-plugin 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, version 3 of the License. | ||
|
||
xed-sessionsaver-plugin 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 xed-sessionsaver-plugin. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
SPDX-License-Identifier: GPL-3.0-only |
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,25 @@ | ||
#!/usr/bin/make -f | ||
|
||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed | ||
|
||
%: | ||
dh $@ --parallel | ||
|
||
override_dh_missing: | ||
dh_missing --list-missing | ||
dh_missing --fail-missing | ||
|
||
override_dh_auto_configure: | ||
meson debian/build \ | ||
--prefix=/usr \ | ||
--buildtype=plain | ||
|
||
override_dh_auto_clean: | ||
-dh_auto_clean | ||
|
||
override_dh_auto_install: | ||
DESTDIR=${CURDIR}/debian/tmp \ | ||
ninja -v -C debian/build install | ||
|
||
override_dh_auto_build: | ||
ninja -v -C debian/build |
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) |
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/ |
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