commit palaura for openSUSE:Factory

2020-05-08 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2020-05-08 23:07:09

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new.2738 (New)


Package is "palaura"

Fri May  8 23:07:09 2020 rev:9 rq:801368 version:1.2.2

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2020-02-21 
16:41:53.845977830 +0100
+++ /work/SRC/openSUSE:Factory/.palaura.new.2738/palaura.changes
2020-05-08 23:07:12.246089296 +0200
@@ -1,0 +2,9 @@
+Thu Apr 30 07:35:52 UTC 2020 - Alexei Podvalsky 
+
+- Update to 1.2.2:
+  * Merge pull request #47 from binotaliu/bugfix/text-category
+  * fix text category parse
+  * Merge pull request #46 from ryonakano/use-gtk-application
+  * Use Gtk.Application instead of deprecated Granite.Application
+
+---

Old:

  palaura-1.2.1.tar.gz

New:

  palaura-1.2.2.tar.gz



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.qJSzoj/_old  2020-05-08 23:07:13.314091478 +0200
+++ /var/tmp/diff_new_pack.qJSzoj/_new  2020-05-08 23:07:13.318091486 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   palaura
-Version:1.2.1
+Version:1.2.2
 Release:0
 Summary:A dictionary with word definitions
 License:GPL-3.0-or-later
@@ -33,7 +33,7 @@
 BuildRequires:  pkgconfig(gee-0.8)
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gobject-2.0)
-BuildRequires:  pkgconfig(granite) >= 0.5
+BuildRequires:  pkgconfig(granite) >= 5.1.0
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(gtksourceview-3.0)
 BuildRequires:  pkgconfig(json-glib-1.0)

++ palaura-1.2.1.tar.gz -> palaura-1.2.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.2.1/.travis.yml 
new/palaura-1.2.2/.travis.yml
--- old/palaura-1.2.1/.travis.yml   2020-02-03 13:19:11.0 +0100
+++ new/palaura-1.2.2/.travis.yml   2020-04-19 00:15:09.0 +0200
@@ -3,7 +3,7 @@
 language: node_js
 
 node_js:
-  - 10/*
+  - 10.17.0
 
 sudo: required
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/palaura-1.2.1/data/com.github.lainsce.palaura.appdata.xml.in 
new/palaura-1.2.2/data/com.github.lainsce.palaura.appdata.xml.in
--- old/palaura-1.2.1/data/com.github.lainsce.palaura.appdata.xml.in
2020-02-03 13:19:11.0 +0100
+++ new/palaura-1.2.2/data/com.github.lainsce.palaura.appdata.xml.in
2020-04-19 00:15:09.0 +0200
@@ -53,6 +53,14 @@
 
 
 
+  
+
+  Release: Dark Space
+  
+Added: Dark mode.
+  
+
+  
   
 
   Release: Hot Revival
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/palaura-1.2.1/data/com.github.lainsce.palaura.gschema.xml 
new/palaura-1.2.2/data/com.github.lainsce.palaura.gschema.xml
--- old/palaura-1.2.1/data/com.github.lainsce.palaura.gschema.xml   
2020-02-03 13:19:11.0 +0100
+++ new/palaura-1.2.2/data/com.github.lainsce.palaura.gschema.xml   
2020-04-19 00:15:09.0 +0200
@@ -10,6 +10,11 @@
Window position
The y axis of window position

+   
+   false
+   Dark mode
+   Whether dark mode is enabled or 
not
+   

'en-us'
Dictionary language
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.2.1/data/stylesheet.css 
new/palaura-1.2.2/data/stylesheet.css
--- old/palaura-1.2.1/data/stylesheet.css   2020-02-03 13:19:11.0 
+0100
+++ new/palaura-1.2.2/data/stylesheet.css   2020-04-19 00:15:09.0 
+0200
@@ -6,6 +6,11 @@
 background-color: @colorPrimary;
 }
 
+.palaura-window-dark {
+background-color: shade(@colorPrimary, 1.2);
+color: #333;
+}
+
 .palaura-view {
 background-color: #FDF6E3;
 color: #586E75;
@@ -18,4 +23,18 @@
 .palaura-view:selected {
 background-color: #586E75;
 color: @textColorPrimary;
+}
+
+.palaura-view-dark {
+background-color: #002B36;
+color: #93A1A1;
+}
+
+.palaura-view-dark image {
+color: #93A1A1;
+}
+
+.palaura-view-dark:selected {
+background-color: #93A1A1;
+color: #002B36;
 }
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.2.1/meson.build 
new/palaura-1.2.2/meson.build
--- old/palaura-1.2.1/meson.build  

commit palaura for openSUSE:Factory

2020-02-21 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2020-02-21 16:41:46

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new.26092 (New)


Package is "palaura"

Fri Feb 21 16:41:46 2020 rev:8 rq:60 version:1.2.1

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2019-07-15 
22:44:29.923895406 +0200
+++ /work/SRC/openSUSE:Factory/.palaura.new.26092/palaura.changes   
2020-02-21 16:41:53.845977830 +0100
@@ -1,0 +2,13 @@
+Wed Feb 19 19:09:15 UTC 2020 - Alexei Podvalsky 
+
+- Update to 1.2.1:
+  * fix showing list of results
+  * Merge branch 'master' of https://github.com/lainsce/palaura
+palaura.changes palaura.spec
+  * RISE FROM YOUR GRAVE!
+  * Merge pull request #40 from meisenzahl/master
+  * Update README.md
+  * Update meson.build
+  * Update com.github.lainsce.palaura.appdata.xml.in
+
+---

Old:

  palaura-1.0.8.tar.gz

New:

  palaura-1.2.1.tar.gz



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.2VLwKD/_old  2020-02-21 16:41:54.485979109 +0100
+++ /var/tmp/diff_new_pack.2VLwKD/_new  2020-02-21 16:41:54.505979150 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   palaura
-Version:1.0.8
+Version:1.2.1
 Release:0
 Summary:A dictionary with word definitions
 License:GPL-3.0-or-later
@@ -35,6 +35,7 @@
 BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(granite) >= 0.5
 BuildRequires:  pkgconfig(gtk+-3.0)
+BuildRequires:  pkgconfig(gtksourceview-3.0)
 BuildRequires:  pkgconfig(json-glib-1.0)
 BuildRequires:  pkgconfig(libsoup-2.4)
 
@@ -54,7 +55,20 @@
 %suse_update_desktop_file -r com.github.lainsce.palaura GTK Office Dictionary
 %fdupes %{buildroot}/%{_datadir}
 
-%files
+# dirlist HiDPI icons (see: hicolor/index.theme)
+touch $PWD/dir.lst
+_dirlist=$PWD/dir.lst
+pushd %{buildroot}
+find ./ | while read _list; do
+echo $_list | grep '[0-9]\@[0-9]' || continue
+_path=$(echo $_list | sed 's/[^/]//')
+if ! ls ${_path%/*}; then
+grep -xqs "\%dir\ ${_path%/*}" $_dirlist || echo "%dir ${_path%/*}" >> 
$_dirlist
+fi
+done
+popd
+
+%files -f dir.lst
 %license LICENSE
 %doc AUTHORS README.md
 %{_bindir}/com.github.lainsce.palaura

++ palaura-1.0.8.tar.gz -> palaura-1.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.0.8/.travis.yml 
new/palaura-1.2.1/.travis.yml
--- old/palaura-1.0.8/.travis.yml   2019-06-29 22:05:57.0 +0200
+++ new/palaura-1.2.1/.travis.yml   2020-02-03 13:19:11.0 +0100
@@ -3,7 +3,7 @@
 language: node_js
 
 node_js:
-  - lts/*
+  - 10/*
 
 sudo: required
 
@@ -17,22 +17,8 @@
 packages:
   - libstdc++-5-dev
 
-cache:
-  directories:
-- /tmp/liftoff
-
-matrix:
-  include:
-- env: DIST=loki
-- env: DIST=juno
-
 install:
-  - npm install @elementaryos/houston
+  - npm i -g @elementaryos/houston
 
 script:
   - houston ci
---distribution $DIST
-
-branches:
-  only:
-- master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.0.8/README.md new/palaura-1.2.1/README.md
--- old/palaura-1.0.8/README.md 2019-06-29 22:05:57.0 +0200
+++ new/palaura-1.2.1/README.md 2020-02-03 13:19:11.0 +0100
@@ -22,6 +22,7 @@
 ```bash
 granite
 gtk+-3.0
+gtksourceview-3.0
 meson
 libsoup2.4
 libjson-glib
@@ -36,7 +37,3 @@
 meson configure -Dprefix=/usr
 sudo ninja install
 ```
-
-## Miscellanea
-
-Uses the Oxford API for definitions and lookups.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/palaura-1.0.8/data/com.github.lainsce.palaura.appdata.xml.in 
new/palaura-1.2.1/data/com.github.lainsce.palaura.appdata.xml.in
--- old/palaura-1.0.8/data/com.github.lainsce.palaura.appdata.xml.in
2019-06-29 22:05:57.0 +0200
+++ new/palaura-1.2.1/data/com.github.lainsce.palaura.appdata.xml.in
2020-02-03 13:19:11.0 +0100
@@ -53,6 +53,16 @@
 
 
 
+  
+
+  Release: Hot Revival
+  
+Update: In the lack of a better API that is free of charge, I 
decided to continue using the one in-app.
+As such, the new pricing will help accomodate the costs.
+Minor fixes.
+  
+
+  
   
 
   Release: Temporary Pause
@@ -118,6 +128,6 @@
 
 #ddbdbd
 #33
-5
+8
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/palaura-1.0.8/data/com.github.lainsce.palaura.gschema.xml 

commit palaura for openSUSE:Factory

2019-07-15 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2019-07-15 22:44:27

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new.1887 (New)


Package is "palaura"

Mon Jul 15 22:44:27 2019 rev:7 rq:714698 version:1.0.8

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2019-06-12 
13:12:08.360952567 +0200
+++ /work/SRC/openSUSE:Factory/.palaura.new.1887/palaura.changes
2019-07-15 22:44:29.923895406 +0200
@@ -1,0 +2,11 @@
+Thu Jul  4 17:49:19 UTC 2019 - Alexei Podvalsky 
+
+- Update to 1.0.8:
+  * Create FUNDING.yml
+  * Add README.md
+  * Add other languages + Update build
+  * Fix build
+  * Merge pull request #32 from Vistaus/master
+  * Add nl_NL
+
+---

Old:

  palaura-1.0.5.tar.gz

New:

  palaura-1.0.8.tar.gz



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.3cVNI2/_old  2019-07-15 22:44:30.427895286 +0200
+++ /var/tmp/diff_new_pack.3cVNI2/_new  2019-07-15 22:44:30.431895286 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   palaura
-Version:1.0.5
+Version:1.0.8
 Release:0
 Summary:A dictionary with word definitions
 License:GPL-3.0-or-later

++ palaura-1.0.5.tar.gz -> palaura-1.0.8.tar.gz ++
 23296 lines of diff (skipped)




commit palaura for openSUSE:Factory

2019-06-12 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2019-06-12 13:12:04

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new.4811 (New)


Package is "palaura"

Wed Jun 12 13:12:04 2019 rev:6 rq:705946 version:1.0.5

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2019-02-27 
15:07:18.922425702 +0100
+++ /work/SRC/openSUSE:Factory/.palaura.new.4811/palaura.changes
2019-06-12 13:12:08.360952567 +0200
@@ -1,0 +2,6 @@
+Mon Mar 11 18:13:33 UTC 2019 - Alexei Podvalsky 
+
+- Update to 1.0.5:
+  * Merge pull request #28 from NathanBnm/master
+
+---

Old:

  palaura-1.0.4.tar.gz

New:

  palaura-1.0.5.tar.gz



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.rr0aJ1/_old  2019-06-12 13:12:08.828952076 +0200
+++ /var/tmp/diff_new_pack.rr0aJ1/_new  2019-06-12 13:12:08.832952072 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   palaura
-Version:1.0.4
+Version:1.0.5
 Release:0
 Summary:A dictionary with word definitions
 License:GPL-3.0-or-later

++ palaura-1.0.4.tar.gz -> palaura-1.0.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/palaura-1.0.4/data/com.github.lainsce.palaura.appdata.xml 
new/palaura-1.0.5/data/com.github.lainsce.palaura.appdata.xml
--- old/palaura-1.0.4/data/com.github.lainsce.palaura.appdata.xml   
2018-12-14 16:05:06.0 +0100
+++ new/palaura-1.0.5/data/com.github.lainsce.palaura.appdata.xml   
2019-03-10 04:13:41.0 +0100
@@ -9,6 +9,7 @@
 Find any word's definition, and details about it, with this handy 
dictionary by your side
 
 Quit anytime with the shortcut Ctrl + Q
+Available in English and Spanish
 
 
 
@@ -52,6 +53,14 @@
 
 
 
+
+
+  Release: Minimal et al
+  
+French translation and some fixes.
+  
+
+  
 
 
   Release: Hello Juno!
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.0.4/po/POTFILES 
new/palaura-1.0.5/po/POTFILES
--- old/palaura-1.0.4/po/POTFILES   2018-12-14 16:05:06.0 +0100
+++ new/palaura-1.0.5/po/POTFILES   2019-03-10 04:13:41.0 +0100
@@ -1,4 +1,3 @@
-src/Constants/Stylesheet.vala
 src/Core/Definition.vala
 src/Core/DictCore.vala
 src/Views/View.vala
@@ -8,4 +7,6 @@
 src/Views/DefinitionView.vala
 src/Widgets/WordListRow.vala
 src/Application.vala
-src/MainWindow.vala
\ No newline at end of file
+src/MainWindow.vala
+data/com.github.lainsce.palaura.appdata.xml
+data/com.github.lainsce.palaura.desktop
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.0.4/po/com.github.lainsce.palaura.pot 
new/palaura-1.0.5/po/com.github.lainsce.palaura.pot
--- old/palaura-1.0.4/po/com.github.lainsce.palaura.pot 2018-12-14 
16:05:06.0 +0100
+++ new/palaura-1.0.5/po/com.github.lainsce.palaura.pot 2019-03-10 
04:13:41.0 +0100
@@ -1,5 +1,5 @@
 # SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# Copyright (C) YEAR THE com.github.lainsce.palaura'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the 
com.github.lainsce.palaura package.
 # FIRST AUTHOR , YEAR.
 #
@@ -17,10 +17,92 @@
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: src/MainWindow.vala:38
+#: data/com.github.lainsce.palaura.appdata.xml:6
+#: data/com.github.lainsce.palaura.desktop:2
+#: src/Application.vala:10
+#: src/MainWindow.vala:17
+#: src/MainWindow.vala:72
 msgid "Palaura"
 msgstr ""
 
-#: src/MainWindow.vala:124
-msgid ""
+#: data/com.github.lainsce.palaura.appdata.xml:7
+msgid "Find any word's definition with this handy dictionary"
+msgstr ""
+
+#: data/com.github.lainsce.palaura.appdata.xml:9
+msgid "Find any word's definition, and details about it, with this handy 
dictionary by your side"
+msgstr ""
+
+#: data/com.github.lainsce.palaura.appdata.xml:11
+msgid "Quit anytime with the shortcut Ctrl + Q"
+msgstr ""
+
+#: data/com.github.lainsce.palaura.appdata.xml:12
+msgid "Available in English and Spanish"
+msgstr ""
+
+#: data/com.github.lainsce.palaura.desktop:3
+msgid "Find any word definition with this handy dictionary"
+msgstr ""
+
+#: data/com.github.lainsce.palaura.desktop:6
+msgid "Words;Dictionary;Search;"
+msgstr ""
+
+#: src/MainWindow.vala:52
+msgid "Search words"
+msgstr ""
+
+#: src/MainWindow.vala:55
+#: src/MainWindow.vala:141
+#: 

commit palaura for openSUSE:Factory

2019-02-27 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2019-02-27 15:07:16

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new.28833 (New)


Package is "palaura"

Wed Feb 27 15:07:16 2019 rev:5 rq:679481 version:1.0.4

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2018-09-25 
15:43:39.849210938 +0200
+++ /work/SRC/openSUSE:Factory/.palaura.new.28833/palaura.changes   
2019-02-27 15:07:18.922425702 +0100
@@ -1,0 +2,8 @@
+Tue Dec 18 11:54:41 UTC 2018 - Alexei Podvalsky 
+
+- Update to 1.0.4:
+  * moderate "social info" OARS due to sending data
+  * Update meson.build
+  * Update com.github.lainsce.palaura.appdata.xml
+
+---

Old:

  palaura-1.0.3.tar.gz

New:

  palaura-1.0.4.tar.gz



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.PliDtT/_old  2019-02-27 15:07:19.702425465 +0100
+++ /var/tmp/diff_new_pack.PliDtT/_new  2019-02-27 15:07:19.702425465 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   palaura
-Version:1.0.3
+Version:1.0.4
 Release:0
 Summary:A dictionary with word definitions
 License:GPL-3.0-or-later

++ palaura-1.0.3.tar.gz -> palaura-1.0.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/palaura-1.0.3/data/com.github.lainsce.palaura.appdata.xml 
new/palaura-1.0.4/data/com.github.lainsce.palaura.appdata.xml
--- old/palaura-1.0.3/data/com.github.lainsce.palaura.appdata.xml   
2018-07-16 20:12:19.0 +0200
+++ new/palaura-1.0.4/data/com.github.lainsce.palaura.appdata.xml   
2018-12-14 16:05:06.0 +0100
@@ -39,7 +39,7 @@
 none
 none
 none
-none
+moderate
 none
 none
 none
@@ -98,5 +98,6 @@
 
 #ddbdbd
 #33
+5
 
 




commit palaura for openSUSE:Factory

2018-09-25 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2018-09-25 15:43:37

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new (New)


Package is "palaura"

Tue Sep 25 15:43:37 2018 rev:4 rq:637751 version:1.0.3

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2018-08-18 
00:05:28.963323078 +0200
+++ /work/SRC/openSUSE:Factory/.palaura.new/palaura.changes 2018-09-25 
15:43:39.849210938 +0200
@@ -1,0 +2,6 @@
+Mon Sep 17 18:01:31 UTC 2018 - Alexei Podvalsky 
+
+- Update to 1.0.3:
+  * Clean the deb-packaging branch
+
+---

Old:

  palaura-1.0.2.tar.gz

New:

  palaura-1.0.3.tar.gz



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.ddkRAg/_old  2018-09-25 15:43:40.273210484 +0200
+++ /var/tmp/diff_new_pack.ddkRAg/_new  2018-09-25 15:43:40.273210484 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   palaura
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:A dictionary with word definitions
 License:GPL-3.0-or-later

++ palaura-1.0.2.tar.gz -> palaura-1.0.3.tar.gz ++




commit palaura for openSUSE:Factory

2018-08-17 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2018-08-18 00:05:26

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new (New)


Package is "palaura"

Sat Aug 18 00:05:26 2018 rev:3 rq:629645 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2018-08-10 
09:51:11.994407531 +0200
+++ /work/SRC/openSUSE:Factory/.palaura.new/palaura.changes 2018-08-18 
00:05:28.963323078 +0200
@@ -1,0 +2,5 @@
+Thu Aug 16 09:34:36 UTC 2018 - jeng...@inai.de
+
+- Use noun phrasing.
+
+---



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.eFADZI/_old  2018-08-18 00:05:30.215326825 +0200
+++ /var/tmp/diff_new_pack.eFADZI/_new  2018-08-18 00:05:30.239326897 +0200
@@ -19,7 +19,7 @@
 Name:   palaura
 Version:1.0.2
 Release:0
-Summary:Find any word's definition with dictionary
+Summary:A dictionary with word definitions
 License:GPL-3.0-or-later
 Group:  Productivity/Office/Other
 URL:https://lainsce.us/
@@ -39,8 +39,8 @@
 BuildRequires:  pkgconfig(libsoup-2.4)
 
 %description
-Find any word's definition, and details about it, with this handy
-dictionary by your side.
+palaura is a dictionary application featuring word definitions.
+It uses the Oxford Dictionaries API for lookups.
 
 %prep
 %setup -q




commit palaura for openSUSE:Factory

2018-08-10 Thread root
Hello community,

here is the log from the commit of package palaura for openSUSE:Factory checked 
in at 2018-08-10 09:51:08

Comparing /work/SRC/openSUSE:Factory/palaura (Old)
 and  /work/SRC/openSUSE:Factory/.palaura.new (New)


Package is "palaura"

Fri Aug 10 09:51:08 2018 rev:2 rq:628295 version:1.0.2

Changes:

--- /work/SRC/openSUSE:Factory/palaura/palaura.changes  2018-01-10 
23:32:13.508309089 +0100
+++ /work/SRC/openSUSE:Factory/.palaura.new/palaura.changes 2018-08-10 
09:51:11.994407531 +0200
@@ -1,0 +2,9 @@
+Wed Aug  1 21:31:10 UTC 2018 - avvi...@yandex.by
+
+- Update to 1.0.2:
+  * Juno initial release.
+- Build with granite >= 0.5
+- Switch to metainfo from appdata
+- Remove obsolete macros
+
+---

Old:

  palaura-1.0.1.tar.gz

New:

  palaura-1.0.2.tar.gz



Other differences:
--
++ palaura.spec ++
--- /var/tmp/diff_new_pack.LYSwa4/_old  2018-08-10 09:51:12.582408480 +0200
+++ /var/tmp/diff_new_pack.LYSwa4/_new  2018-08-10 09:51:12.582408480 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package palaura
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,10 +17,10 @@
 
 
 Name:   palaura
-Version:1.0.1
+Version:1.0.2
 Release:0
 Summary:Find any word's definition with dictionary
-License:GPL-3.0+
+License:GPL-3.0-or-later
 Group:  Productivity/Office/Other
 URL:https://lainsce.us/
 Source: 
https://github.com/lainsce/palaura/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
@@ -33,11 +33,10 @@
 BuildRequires:  pkgconfig(gee-0.8)
 BuildRequires:  pkgconfig(gio-2.0)
 BuildRequires:  pkgconfig(gobject-2.0)
-BuildRequires:  pkgconfig(granite)
+BuildRequires:  pkgconfig(granite) >= 0.5
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(json-glib-1.0)
 BuildRequires:  pkgconfig(libsoup-2.4)
-%glib2_gsettings_schema_requires
 
 %description
 Find any word's definition, and details about it, with this handy
@@ -52,30 +51,16 @@
 
 %install
 %meson_install
-
-mkdir -p %{buildroot}%{_datadir}/appdata
-mv 
%{buildroot}%{_datadir}/{metainfo,appdata}/com.github.lainsce.palaura.appdata.xml
-
 %suse_update_desktop_file -r com.github.lainsce.palaura GTK Office Dictionary
 %fdupes %{buildroot}/%{_datadir}
 
-%post
-%desktop_database_post
-%icon_theme_cache_post
-%glib2_gsettings_schema_post
-
-%postun
-%desktop_database_postun
-%icon_theme_cache_postun
-%glib2_gsettings_schema_postun
-
 %files
-%doc AUTHORS LICENSE README.md
+%license LICENSE
+%doc AUTHORS README.md
 %{_bindir}/com.github.lainsce.palaura
-%dir %{_datadir}/appdata/
-%{_datadir}/appdata/com.github.lainsce.palaura.appdata.xml
 %{_datadir}/applications/com.github.lainsce.palaura.desktop
 %{_datadir}/glib-2.0/schemas/com.github.lainsce.palaura.gschema.xml
-%{_datadir}/icons/hicolor/*/apps/com.github.lainsce.palaura.svg
+%{_datadir}/icons/hicolor/*/apps/com.github.lainsce.palaura.??g
+%{_datadir}/metainfo/com.github.lainsce.palaura.appdata.xml
 
 %changelog

++ palaura-1.0.1.tar.gz -> palaura-1.0.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.0.1/.travis.yml 
new/palaura-1.0.2/.travis.yml
--- old/palaura-1.0.1/.travis.yml   2017-11-13 05:52:54.0 +0100
+++ new/palaura-1.0.2/.travis.yml   2018-07-16 20:12:19.0 +0200
@@ -1,12 +1,38 @@
-sudo: required
-language: generic
+---
 
-services:
-- docker
+language: node_js
 
-script:
-- wget -O- 
https://raw.githubusercontent.com/harisvsulaiman/element-build/master/script.sh 
| sh -
+node_js:
+  - lts/*
 
-branches:
-except:
-- /^debian\/\d/
\ No newline at end of file
+sudo: required
+
+services:
+  - docker
+
+addons:
+  apt:
+sources:
+  - ubuntu-toolchain-r-test
+packages:
+  - libstdc++-5-dev
+
+cache:
+  directories:
+- /tmp/liftoff
+
+matrix:
+  include:
+- env: DIST=loki
+- env: DIST=juno
+
+install:
+  - npm install @elementaryos/houston
+
+script:
+  - houston ci
+--distribution $DIST
+
+branches:
+  only:
+- master
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/palaura-1.0.1/COPYING new/palaura-1.0.2/COPYING
--- old/palaura-1.0.1/COPYING   2018-08-10 09:51:12.630408557 +0200
+++ new/palaura-1.0.2/COPYING   1970-01-01 01:00:00.0 +0100
@@ -1 +0,0 @@
-symbolic link to LICENSE
diff -urN '--exclude=CVS' '--exclude=.cvsignore'