Skip to content

Commit 564e99c

Browse files
committed
Merge branch 'master' into deb-packaging
2 parents 8f79ecd + 2f93cb3 commit 564e99c

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ script:
3535

3636
branches:
3737
only:
38-
- master
38+
- deb-packaging

data/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ endforeach
1111
install_data('icons/writeas-bright-dark.png',
1212
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', '16x16', 'actions'))
1313

14-
install_data('com.github.writeas.writeas-gtk.desktop',
14+
install_data('writeas-gtk.desktop',
1515
install_dir: join_paths(get_option('datadir'), 'applications'))
16-
install_data('com.github.writeas.writeas-gtk.appdata.xml',
16+
install_data('writeas-gtk.appdata.xml',
1717
install_dir: join_paths(get_option('datadir'), 'metainfo'))

data/com.github.writeas.writeas-gtk.appdata.xml renamed to data/writeas-gtk.appdata.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<component type="desktop-application">
3-
<id>com.github.writeas.writeas-gtk</id>
3+
<id>writeas-gtk</id>
44
<project_license>GPL-3.0+</project_license>
55
<metadata_license>CC0</metadata_license>
66
<name>Write.as</name>
@@ -28,7 +28,7 @@
2828
<update_contact>hello@write.as</update_contact>
2929

3030
<provides>
31-
<binary>com.github.writeas.writeas-gtk</binary>
31+
<binary>writeas-gtk</binary>
3232
</provides>
3333

3434
<screenshots>
File renamed without changes.

debian/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Source: com.github.writeas.writeas-gtk
1+
Source: writeas-gtk
22
Section: x11
33
Priority: extra
44
Maintainer: Write.as <hello@write.as>
@@ -9,7 +9,7 @@ Build-Depends: meson,
99
valac (>= 0.36)
1010
Standards-Version: 3.9.3
1111

12-
Package: com.github.writeas.writeas-gtk
12+
Package: writeas-gtk
1313
Architecture: any
1414
Depends: ${misc:Depends}, ${shlibs:Depends}, writeas-cli
1515
Recommends: fonts-lora, fonts-open-sans, fonts-hack

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Format: http://dep.debian.net/deps/dep5
2-
Upstream-Name: com.github.writeas.writeas-gtk
2+
Upstream-Name: writeas-gtk
33
Source: https://code.as/writeas/writeas-gtk/
44

55
Files: *

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ override_dh_auto_test:
2828
cd debian/build && ninja test
2929

3030
override_dh_auto_install:
31-
cd debian/build && DESTDIR=${CURDIR}/debian/com.github.writeas.writeas-gtk ninja install
31+
cd debian/build && DESTDIR=${CURDIR}/debian/writeas-gtk ninja install

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('com.github.writeas.writeas-gtk', ['vala', 'c'],
1+
project('writeas-gtk', ['vala', 'c'],
22
version: '1.0.0',
33
license: 'GPL',
44
meson_version: '>=0.40.1')

src/application.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class WriteAs.Application : Gtk.Application {
2222
Intl.setlocale(LocaleCategory.ALL, "");
2323
Intl.textdomain("write.as");
2424

25-
application_id = "com.github.writeas.writeas-gtk.desktop";
25+
application_id = "writeas-gtk.desktop";
2626
}
2727

2828
public override void activate() {

src/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
executable('com.github.writeas.writeas-gtk',
1+
executable('writeas-gtk',
22
'application.vala',
33
'window.vala',
44

0 commit comments

Comments
 (0)