Skip to content

Commit

Permalink
add debian packaging and v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DevAlien committed Aug 17, 2020
1 parent 7ffee56 commit 504b5bc
Show file tree
Hide file tree
Showing 9 changed files with 80 additions and 3 deletions.
10 changes: 9 additions & 1 deletion data/com.github.devalien.workspaces.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,15 @@
</content_rating>

<releases>
<release version="1.0.3" date="2020-08-17">
<release version="1.0.3" date="2020-08-17">
<description>
<p>Improvementes</p>
<ul>
<li>Add missing icons Icon</li>
</ul>
</description>
</release>
<release version="1.0.3" date="2020-08-17">
<description>
<p>Improvementes</p>
<ul>
Expand Down
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
com.github.devalien.workspaces (1.0.4) RELEASED; urgency=low

* Release for elementary OS. *

-- Goncalo Margalho <[email protected]> Mon, 17 Aug 2020 13:41:57 +0200

com.github.devalien.workspaces (1.0.0) UNRELEASED; urgency=low

* Initial Release. *

-- Goncalo Margalho <[email protected]> Mon, 17 Aug 2020 8:41:57 +0200
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9
17 changes: 17 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Source: com.github.devalien.workspaces
Section: x11
Priority: optional
Maintainer: Goncalo Margalho <[email protected]>
Build-Depends: cmake (>= 2.8),
debhelper (>= 9),
libgtk-3-dev,
valac (>= 0.40.0)
libgranite-dev,
libjson-glib-dev,
libgee-0.8-dev
Standards-Version: 3.9.3

Package: com.github.devalien.workspaces
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Workspaces to be always ready to work
25 changes: 25 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Format: https://dep.debian.net/deps/dep5
Upstream-Name: deb-packaging
Source: https://github.com/devalien/workspaces

Files: *
Copyright: 20 Goncalo Margalho <[email protected]>
License: GPL-3.0+

License: GPL-3.0+
This program 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 3 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 <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

14 changes: 14 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
dh $@

1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (native)
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
project (
'com.github.devalien.workspaces',
'vala', 'c',
version: '1.0.3'
version: '1.0.4'
)

# Translation module
Expand Down
2 changes: 1 addition & 1 deletion src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class Workspaces.Application : Gtk.Application {

public Workspaces.Controllers.WorkspacesController workspaces_controller;

public const string APP_VERSION = "1.0.3";
public const string APP_VERSION = "1.0.4";
public const string APP_ID = "com.github.devalien.workspaces";

private bool show_quick_launch = false;
Expand Down

0 comments on commit 504b5bc

Please sign in to comment.