From 504b5bc88d78954657292bd22ac4ca51bf0fbe60 Mon Sep 17 00:00:00 2001 From: Goncalo Margalho Date: Mon, 17 Aug 2020 13:54:59 +0200 Subject: [PATCH] add debian packaging and v1.0.4 --- ....github.devalien.workspaces.appdata.xml.in | 10 +++++++- debian/changelog | 11 ++++++++ debian/compat | 1 + debian/control | 17 +++++++++++++ debian/copyright | 25 +++++++++++++++++++ debian/rules | 14 +++++++++++ debian/source/format | 1 + meson.build | 2 +- src/Application.vala | 2 +- 9 files changed, 80 insertions(+), 3 deletions(-) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/data/com.github.devalien.workspaces.appdata.xml.in b/data/com.github.devalien.workspaces.appdata.xml.in index 8e90a91..a31b6f2 100644 --- a/data/com.github.devalien.workspaces.appdata.xml.in +++ b/data/com.github.devalien.workspaces.appdata.xml.in @@ -67,7 +67,15 @@ - + + +

Improvementes

+
    +
  • Add missing icons Icon
  • +
+
+
+

Improvementes

    diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..85949d1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,11 @@ +com.github.devalien.workspaces (1.0.4) RELEASED; urgency=low + + * Release for elementary OS. * + + -- Goncalo Margalho Mon, 17 Aug 2020 13:41:57 +0200 + +com.github.devalien.workspaces (1.0.0) UNRELEASED; urgency=low + + * Initial Release. * + + -- Goncalo Margalho Mon, 17 Aug 2020 8:41:57 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..bc944cf --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: com.github.devalien.workspaces +Section: x11 +Priority: optional +Maintainer: Goncalo Margalho +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 diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d644d8d --- /dev/null +++ b/debian/copyright @@ -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 +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 . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e50e7cd --- /dev/null +++ b/debian/rules @@ -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 $@ + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) diff --git a/meson.build b/meson.build index 0cd0df7..4349a4a 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project ( 'com.github.devalien.workspaces', 'vala', 'c', - version: '1.0.3' + version: '1.0.4' ) # Translation module diff --git a/src/Application.vala b/src/Application.vala index 657422b..693b81a 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -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;