Skip to content

Commit 2770614

Browse files
author
Alain M
committed
Add debian files
1 parent 1c8a4b9 commit 2770614

File tree

8 files changed

+77
-4
lines changed

8 files changed

+77
-4
lines changed

data/com.github.alainm23.planner.appdata.xml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<binary>com.github.alainm23.planner</binary>
2121
</provides>
2222
​<releases>
23-
<release version="1.0" date="2018-12-31">
23+
<release version="1.0" date="2019-01-01">
2424
<description>
2525
<p>Initial release</p>
2626
</description>

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
com.github.alainm23.planner (0.1ubuntu1) UNRELEASED; urgency=low
2+
3+
* Initial Release.
4+
5+
-- Alain M. <[email protected]> Tue, 01 Jan 2019 21:33:25 -0500

debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

debian/control

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Source: com.github.alainm23.planner
2+
Section: x11
3+
Priority: extra
4+
Maintainer: Alain M. <[email protected]>
5+
Build-Depends: appstream,
6+
debhelper (>= 9),
7+
desktop-file-utils,
8+
libgtk-3-dev,
9+
libunity-dev.
10+
libecal1.2-dev,
11+
libedataserver1.2-dev,
12+
libedataserverui1.2-dev,
13+
libical-dev,
14+
libgee-0.8-dev,
15+
libjson-glib-dev,
16+
libgeoclue-2-dev,
17+
libsqlite3-dev,
18+
libsoup2.4-dev,
19+
libgranite-dev (>=0.5),
20+
libnotify-dev,
21+
meson,
22+
valac >= 0.40.3
23+
Standards-Version: 3.9.3
24+
25+
Package: com.github.alainm23.planner
26+
Architecture: any
27+
Depends: ${misc:Depends}, ${shlibs:Depends}
28+
Description: Hey young world
29+
This is a Hello World written in Vala using Meson build system.

debian/copyright

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Format: http://dep.debian.net/deps/dep5
2+
Upstream-Name: cmake-hello-world
3+
Source: https://github.com/alainm23/planner
4+
5+
Files: src/* data/* debian/*
6+
Copyright: 2019 Alain M. <[email protected]>
7+
License: GPL-3.0+
8+
9+
License: GPL-3.0+
10+
This program is free software: you can redistribute it and/or modify
11+
it under the terms of the GNU General Public License as published by
12+
the Free Software Foundation, either version 3 of the License, or
13+
(at your option) any later version.
14+
.
15+
This package is distributed in the hope that it will be useful,
16+
but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
GNU General Public License for more details.
19+
.
20+
You should have received a copy of the GNU General Public License
21+
along with this program. If not, see <http://www.gnu.org/licenses/>.
22+
.
23+
On Debian systems, the complete text of the GNU General
24+
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

debian/rules

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/make -f
2+
# -*- makefile -*-
3+
# Sample debian/rules that uses debhelper.
4+
# This file was originally written by Joey Hess and Craig Small.
5+
# As a special exception, when this file is copied by dh-make into a
6+
# dh-make output file, you may use that output file without restriction.
7+
# This special exception was added by Craig Small in version 0.37 of dh-make.
8+
9+
# Uncomment this to turn on verbose mode.
10+
#export DH_VERBOSE=1
11+
12+
%:
13+
dh $@
14+

debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (native)

meson.build

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('com.github.alainm23.planner',
22
'vala', 'c',
3-
version: '0.2.1')
3+
version: '1.0')
44

55
gnome = import('gnome')
66
i18n = import('i18n')
@@ -14,7 +14,6 @@ c_args = [
1414
'-include', 'config.h'
1515
]
1616

17-
#add_global_arguments('-DGETTEXT_PACKAGE="' + meson.project_name() + '"', language:'c')
1817
add_project_arguments('-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()), language: 'c')
1918
add_project_arguments(['--vapidir', join_paths(meson.current_source_dir(), 'vapi')], language: 'vala')
2019

@@ -73,7 +72,7 @@ executable(
7372
'src/Widgets/SourceItem.vala',
7473
'src/Widgets/QuickFind.vala',
7574
'src/Widgets/NoteChild.vala',
76-
75+
7776
'src/Widgets/Calendar/Calendar.vala',
7877
'src/Widgets/Calendar/CalendarHeader.vala',
7978
'src/Widgets/Calendar/CalendarView.vala',

0 commit comments

Comments
 (0)