Skip to content

Commit

Permalink
Release version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
meisenzahl committed Nov 3, 2019
1 parent 7f89830 commit c12f690
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 2 deletions.
8 changes: 7 additions & 1 deletion data/com.github.manexim.news.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@
<provides>
<binary>com.github.manexim.news</binary>
</provides>
​<releases></releases>
<releases>
<release date="2019-11-03" version="0.1.0">
<description>
<p>Initial release</p>
</description>
</release>
</releases>
<screenshots>
<screenshot type="default">
<caption></caption>
Expand Down
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
com.github.manexim.news (0.1.0) bionic; urgency=medium

* Initial release

-- Marius Meisenzahl <[email protected]> Sun, 03 Nov 2019 13:13:11 +0100
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9
20 changes: 20 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Source: com.github.manexim.news
Section: x11
Priority: optional
Maintainer: Marius Meisenzahl <[email protected]>
Build-Depends: meson,
debhelper (>= 9),
libgtk-3-dev,
libgee-0.8-dev,
libgranite-dev,
libsoup2.4-dev,
libxml2-dev,
libwebkit2gtk-4.0-dev,
valac
Standards-Version: 3.9.3

Package: com.github.manexim.news
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: News
The best news sources, all in one place
7 changes: 7 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Format: http://dep.debian.net/deps/dep5
Upstream-Name: com.github.manexim.news
Source: https://github.com/manexim/news

Files: src/* data/* debian/*
Copyright: 2019 Marius Meisenzahl <[email protected]>
License: GPL-3.0+
29 changes: 29 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/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 $@

override_dh_auto_clean:
rm -rf debian/build

override_dh_auto_configure:
mkdir -p debian/build
cd debian/build && meson --prefix=/usr ../..

override_dh_auto_build:
cd debian/build && ninja -v

override_dh_auto_test:
cd debian/build && ninja test

override_dh_auto_install:
cd debian/build && DESTDIR=${CURDIR}/debian/com.github.manexim.news ninja install
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 src/Config/Constants.vala
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ namespace Config {
public const string APP_ID = "com.github.manexim.news";
public const string APP_AUTHOR = "Manexim";
public const string APP_NAME = "News";
public const string APP_VERSION = "0.0.0";
public const string APP_VERSION = "0.1.0";
public const string APP_STYLES = "com/github/manexim/news/styles/application.css";
}

0 comments on commit c12f690

Please sign in to comment.