[arch-commits] Commit in steadyflow/repos/community-x86_64 (6 files)
Allan McRae
allan at gemini.archlinux.org
Mon Apr 25 04:20:34 UTC 2022
Date: Monday, April 25, 2022 @ 04:20:33
Author: allan
Revision: 1189906
archrelease: copy trunk to community-x86_64
Added:
steadyflow/repos/community-x86_64/PKGBUILD
(from rev 1189905, steadyflow/trunk/PKGBUILD)
steadyflow/repos/community-x86_64/fixes.patch
(from rev 1189905, steadyflow/trunk/fixes.patch)
steadyflow/repos/community-x86_64/steadyflow.appdata.xml
(from rev 1189905, steadyflow/trunk/steadyflow.appdata.xml)
Deleted:
steadyflow/repos/community-x86_64/PKGBUILD
steadyflow/repos/community-x86_64/fixes.patch
steadyflow/repos/community-x86_64/steadyflow.appdata.xml
------------------------+
PKGBUILD | 74 ++++++++--------
fixes.patch | 216 +++++++++++++++++++++++------------------------
steadyflow.appdata.xml | 42 ++++-----
3 files changed, 166 insertions(+), 166 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-04-25 04:20:07 UTC (rev 1189905)
+++ PKGBUILD 2022-04-25 04:20:33 UTC (rev 1189906)
@@ -1,37 +0,0 @@
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Contributor: M0Rf30
-# Contributor: Dan Serban
-# Contributor: zbito <ztokarczyk at gmail dot com
-
-pkgname=steadyflow
-pkgver=0.2.0
-pkgrel=9
-pkgdesc='Simple download manager for GNOME'
-arch=('x86_64')
-url='https://launchpad.net/steadyflow'
-license=('GPL3')
-depends=('gtk3' 'gvfs' 'libgee' 'libnotify')
-makedepends=('cmake' 'ninja' 'vala')
-source=("https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.xz"
- 'steadyflow.appdata.xml'
- 'fixes.patch')
-sha256sums=('ab1f23d52be78c952979ee0bb1778b8bf4664145c6fb28db219d516aae7dddb6'
- '928326b0559cdad5f181beaaeb5df21513d910ed1cbcb2ea7bac16de15fda678'
- 'cded29dcee677e515a80cda6aad234e35150c0424d9abc332cb2554ce45580bc')
-
-prepare() {
- cd $pkgname-$pkgver
- # Various fixes
- patch -Np1 -i ../fixes.patch
-}
-
-build() {
- cmake -S $pkgname-$pkgver -B build -G Ninja -DCMAKE_INSTALL_PREFIX='/usr' \
- -DCOMPILE_GSETTINGS_ON_INSTALL=OFF -DWANT_AYATANA=OFF
- cmake --build build
-}
-
-package() {
- DESTDIR="$pkgdir" cmake --install build
- install -Dm644 steadyflow.appdata.xml "$pkgdir/usr/share/metainfo/steadyflow.appdata.xml"
-}
Copied: steadyflow/repos/community-x86_64/PKGBUILD (from rev 1189905, steadyflow/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-04-25 04:20:33 UTC (rev 1189906)
@@ -0,0 +1,37 @@
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: M0Rf30
+# Contributor: Dan Serban
+# Contributor: zbito <ztokarczyk at gmail dot com
+
+pkgname=steadyflow
+pkgver=0.2.0
+pkgrel=10
+pkgdesc='Simple download manager for GNOME'
+arch=('x86_64')
+url='https://launchpad.net/steadyflow'
+license=('GPL3')
+depends=('gtk3' 'gvfs' 'libgee' 'libnotify')
+makedepends=('cmake' 'ninja' 'vala')
+source=("https://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.xz"
+ 'steadyflow.appdata.xml'
+ 'fixes.patch')
+sha256sums=('ab1f23d52be78c952979ee0bb1778b8bf4664145c6fb28db219d516aae7dddb6'
+ '928326b0559cdad5f181beaaeb5df21513d910ed1cbcb2ea7bac16de15fda678'
+ 'cded29dcee677e515a80cda6aad234e35150c0424d9abc332cb2554ce45580bc')
+
+prepare() {
+ cd $pkgname-$pkgver
+ # Various fixes
+ patch -Np1 -i ../fixes.patch
+}
+
+build() {
+ cmake -S $pkgname-$pkgver -B build -G Ninja -DCMAKE_INSTALL_PREFIX='/usr' \
+ -DCOMPILE_GSETTINGS_ON_INSTALL=OFF -DWANT_AYATANA=OFF
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+ install -Dm644 steadyflow.appdata.xml "$pkgdir/usr/share/metainfo/steadyflow.appdata.xml"
+}
Deleted: fixes.patch
===================================================================
--- fixes.patch 2022-04-25 04:20:07 UTC (rev 1189905)
+++ fixes.patch 2022-04-25 04:20:33 UTC (rev 1189906)
@@ -1,108 +0,0 @@
-diff -Naur steadyflow-0.2.0.orig/cmake/FindExtraDeps.cmake steadyflow-0.2.0/cmake/FindExtraDeps.cmake
---- steadyflow-0.2.0.orig/cmake/FindExtraDeps.cmake 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/cmake/FindExtraDeps.cmake 2017-07-16 09:54:03.871584093 +0200
-@@ -1,5 +1,5 @@
- message("-- Checking for libgee...")
--pkg_check_modules(GEE gee-1.0)
-+pkg_check_modules(GEE gee-0.8)
- message("-- Checking for libnotify >= 0.7...")
- pkg_check_modules(LIBNOTIFY libnotify>=0.7)
-
-diff -Naur steadyflow-0.2.0.orig/CMakeLists.txt steadyflow-0.2.0/CMakeLists.txt
---- steadyflow-0.2.0.orig/CMakeLists.txt 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/CMakeLists.txt 2017-07-16 09:54:03.871584093 +0200
-@@ -48,7 +48,7 @@
- )
-
- set(VALA_PACKAGES
-- gee-1.0
-+ gee-0.8
- gio-2.0
- glib-2.0
- gtk+-3.0
-diff -Naur steadyflow-0.2.0.orig/Steadyflow/FileListController.vala steadyflow-0.2.0/Steadyflow/FileListController.vala
---- steadyflow-0.2.0.orig/Steadyflow/FileListController.vala 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/Steadyflow/FileListController.vala 2017-07-16 09:53:53.937975668 +0200
-@@ -27,7 +27,7 @@
- private static const double REDRAW_SEC = 0.2;
-
- private TreeView tree;
-- private ListStore model;
-+ private Gtk.ListStore model;
- private string filter = "";
- private Timer redraw_timer;
-
-@@ -46,7 +46,7 @@
- column.pack_start (renderer, true);
- column.set_cell_data_func (renderer, set_cell_data);
-
-- model = new ListStore.newv ({ typeof (IDownloadFile) });
-+ model = new Gtk.ListStore.newv ({ typeof (IDownloadFile) });
- tree.set_model (model);
- tree.append_column (column);
-
-diff -Naur steadyflow-0.2.0.orig/Steadyflow/MainWindow.vala steadyflow-0.2.0/Steadyflow/MainWindow.vala
---- steadyflow-0.2.0.orig/Steadyflow/MainWindow.vala 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/Steadyflow/MainWindow.vala 2017-07-16 10:41:53.590124439 +0200
-@@ -230,6 +230,7 @@
- return;
- }
-
-+ file.pause ();
- Services.download.remove_file (file);
- }
-
-diff -Naur steadyflow-0.2.0.orig/Steadyflow/Services.vala steadyflow-0.2.0/Steadyflow/Services.vala
---- steadyflow-0.2.0.orig/Steadyflow/Services.vala 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/Steadyflow/Services.vala 2017-07-16 10:07:00.382761532 +0200
-@@ -61,7 +61,7 @@
- "information to the developer:\n\nError Code %d:\n\n%s").printf (e.code, message));
-
- md.run ();
-- exit(1);
-+ GLib.Process.exit(1);
- }
- }
-
-diff -Naur steadyflow-0.2.0.orig/Steadyflow.Core/GioDownloadFile.vala steadyflow-0.2.0/Steadyflow.Core/GioDownloadFile.vala
---- steadyflow-0.2.0.orig/Steadyflow.Core/GioDownloadFile.vala 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/Steadyflow.Core/GioDownloadFile.vala 2017-07-16 09:53:53.934642242 +0200
-@@ -160,7 +160,12 @@
- // Not mounted
- MountOperation mount_op;
- get_mount_operation (out mount_op);
-- yield remote.mount_enclosing_volume (MountMountFlags.NONE, mount_op);
-+ try {
-+ yield remote.mount_enclosing_volume (MountMountFlags.NONE, mount_op);
-+ }
-+ catch (Error e) {
-+ // The volume might already be mounted. Quietly continue.
-+ }
- }
-
- try {
-diff -Naur steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderDialog.vala steadyflow-0.2.0/Steadyflow.UI/GtkBuilderDialog.vala
---- steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderDialog.vala 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/Steadyflow.UI/GtkBuilderDialog.vala 2021-04-16 18:41:51.622494074 +0200
-@@ -24,7 +24,7 @@
- public abstract class GtkBuilderDialog : Dialog, IGtkBuilderContainer {
- private Builder builder;
-
-- public GtkBuilderDialog (string file_id, Window? parent, bool modal) {
-+ protected GtkBuilderDialog (string file_id, Window? parent, bool modal) {
- if (parent != null)
- set_transient_for (parent);
-
-diff -Naur steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderWindow.vala steadyflow-0.2.0/Steadyflow.UI/GtkBuilderWindow.vala
---- steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderWindow.vala 2012-06-30 14:39:35.000000000 +0200
-+++ steadyflow-0.2.0/Steadyflow.UI/GtkBuilderWindow.vala 2021-04-16 18:41:49.602450522 +0200
-@@ -24,7 +24,7 @@
- public abstract class GtkBuilderWindow : Window, IGtkBuilderContainer {
- private Builder builder;
-
-- public GtkBuilderWindow (string file_id) throws Error {
-+ protected GtkBuilderWindow (string file_id) throws Error {
- builder = init_builder (this, file_id);
- }
-
-
Copied: steadyflow/repos/community-x86_64/fixes.patch (from rev 1189905, steadyflow/trunk/fixes.patch)
===================================================================
--- fixes.patch (rev 0)
+++ fixes.patch 2022-04-25 04:20:33 UTC (rev 1189906)
@@ -0,0 +1,108 @@
+diff -Naur steadyflow-0.2.0.orig/cmake/FindExtraDeps.cmake steadyflow-0.2.0/cmake/FindExtraDeps.cmake
+--- steadyflow-0.2.0.orig/cmake/FindExtraDeps.cmake 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/cmake/FindExtraDeps.cmake 2017-07-16 09:54:03.871584093 +0200
+@@ -1,5 +1,5 @@
+ message("-- Checking for libgee...")
+-pkg_check_modules(GEE gee-1.0)
++pkg_check_modules(GEE gee-0.8)
+ message("-- Checking for libnotify >= 0.7...")
+ pkg_check_modules(LIBNOTIFY libnotify>=0.7)
+
+diff -Naur steadyflow-0.2.0.orig/CMakeLists.txt steadyflow-0.2.0/CMakeLists.txt
+--- steadyflow-0.2.0.orig/CMakeLists.txt 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/CMakeLists.txt 2017-07-16 09:54:03.871584093 +0200
+@@ -48,7 +48,7 @@
+ )
+
+ set(VALA_PACKAGES
+- gee-1.0
++ gee-0.8
+ gio-2.0
+ glib-2.0
+ gtk+-3.0
+diff -Naur steadyflow-0.2.0.orig/Steadyflow/FileListController.vala steadyflow-0.2.0/Steadyflow/FileListController.vala
+--- steadyflow-0.2.0.orig/Steadyflow/FileListController.vala 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/Steadyflow/FileListController.vala 2017-07-16 09:53:53.937975668 +0200
+@@ -27,7 +27,7 @@
+ private static const double REDRAW_SEC = 0.2;
+
+ private TreeView tree;
+- private ListStore model;
++ private Gtk.ListStore model;
+ private string filter = "";
+ private Timer redraw_timer;
+
+@@ -46,7 +46,7 @@
+ column.pack_start (renderer, true);
+ column.set_cell_data_func (renderer, set_cell_data);
+
+- model = new ListStore.newv ({ typeof (IDownloadFile) });
++ model = new Gtk.ListStore.newv ({ typeof (IDownloadFile) });
+ tree.set_model (model);
+ tree.append_column (column);
+
+diff -Naur steadyflow-0.2.0.orig/Steadyflow/MainWindow.vala steadyflow-0.2.0/Steadyflow/MainWindow.vala
+--- steadyflow-0.2.0.orig/Steadyflow/MainWindow.vala 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/Steadyflow/MainWindow.vala 2017-07-16 10:41:53.590124439 +0200
+@@ -230,6 +230,7 @@
+ return;
+ }
+
++ file.pause ();
+ Services.download.remove_file (file);
+ }
+
+diff -Naur steadyflow-0.2.0.orig/Steadyflow/Services.vala steadyflow-0.2.0/Steadyflow/Services.vala
+--- steadyflow-0.2.0.orig/Steadyflow/Services.vala 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/Steadyflow/Services.vala 2017-07-16 10:07:00.382761532 +0200
+@@ -61,7 +61,7 @@
+ "information to the developer:\n\nError Code %d:\n\n%s").printf (e.code, message));
+
+ md.run ();
+- exit(1);
++ GLib.Process.exit(1);
+ }
+ }
+
+diff -Naur steadyflow-0.2.0.orig/Steadyflow.Core/GioDownloadFile.vala steadyflow-0.2.0/Steadyflow.Core/GioDownloadFile.vala
+--- steadyflow-0.2.0.orig/Steadyflow.Core/GioDownloadFile.vala 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/Steadyflow.Core/GioDownloadFile.vala 2017-07-16 09:53:53.934642242 +0200
+@@ -160,7 +160,12 @@
+ // Not mounted
+ MountOperation mount_op;
+ get_mount_operation (out mount_op);
+- yield remote.mount_enclosing_volume (MountMountFlags.NONE, mount_op);
++ try {
++ yield remote.mount_enclosing_volume (MountMountFlags.NONE, mount_op);
++ }
++ catch (Error e) {
++ // The volume might already be mounted. Quietly continue.
++ }
+ }
+
+ try {
+diff -Naur steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderDialog.vala steadyflow-0.2.0/Steadyflow.UI/GtkBuilderDialog.vala
+--- steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderDialog.vala 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/Steadyflow.UI/GtkBuilderDialog.vala 2021-04-16 18:41:51.622494074 +0200
+@@ -24,7 +24,7 @@
+ public abstract class GtkBuilderDialog : Dialog, IGtkBuilderContainer {
+ private Builder builder;
+
+- public GtkBuilderDialog (string file_id, Window? parent, bool modal) {
++ protected GtkBuilderDialog (string file_id, Window? parent, bool modal) {
+ if (parent != null)
+ set_transient_for (parent);
+
+diff -Naur steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderWindow.vala steadyflow-0.2.0/Steadyflow.UI/GtkBuilderWindow.vala
+--- steadyflow-0.2.0.orig/Steadyflow.UI/GtkBuilderWindow.vala 2012-06-30 14:39:35.000000000 +0200
++++ steadyflow-0.2.0/Steadyflow.UI/GtkBuilderWindow.vala 2021-04-16 18:41:49.602450522 +0200
+@@ -24,7 +24,7 @@
+ public abstract class GtkBuilderWindow : Window, IGtkBuilderContainer {
+ private Builder builder;
+
+- public GtkBuilderWindow (string file_id) throws Error {
++ protected GtkBuilderWindow (string file_id) throws Error {
+ builder = init_builder (this, file_id);
+ }
+
+
Deleted: steadyflow.appdata.xml
===================================================================
--- steadyflow.appdata.xml 2022-04-25 04:20:07 UTC (rev 1189905)
+++ steadyflow.appdata.xml 2022-04-25 04:20:33 UTC (rev 1189906)
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<component type="desktop-application">
- <id>net.launchpad.steadyflow</id>
- <launchable type="desktop-id">steadyflow.desktop</launchable>
- <name>Steadyflow</name>
- <summary>Simple download manager</summary>
- <metadata_license>CC0-1.0</metadata_license>
- <project_license>GPL-3.0</project_license>
- <description>
- <p>Steadyflow is a download manager that aims for minimalism, ease of use, and a clean, malleable codebase. It should be easy to control, whether from the GUI, command line, or D-Bus.</p>
- </description>
- <screenshots>
- <screenshot type="default">
- <image>https://screenshots.debian.net/shrine/screenshot/8798/simage/large-4ce4a975816e6811d84433b4d82f8b85.png</image>
- </screenshot>
- </screenshots>
- <url type="bugtracker">https://bugs.launchpad.net/steadyflow</url>
- <url type="homepage">https://launchpad.net/steadyflow</url>
- <update_contact>steadyflow at googlegroups.com</update_contact>
- <translation type="gettext">steadyflow</translation>
-</component>
Copied: steadyflow/repos/community-x86_64/steadyflow.appdata.xml (from rev 1189905, steadyflow/trunk/steadyflow.appdata.xml)
===================================================================
--- steadyflow.appdata.xml (rev 0)
+++ steadyflow.appdata.xml 2022-04-25 04:20:33 UTC (rev 1189906)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<component type="desktop-application">
+ <id>net.launchpad.steadyflow</id>
+ <launchable type="desktop-id">steadyflow.desktop</launchable>
+ <name>Steadyflow</name>
+ <summary>Simple download manager</summary>
+ <metadata_license>CC0-1.0</metadata_license>
+ <project_license>GPL-3.0</project_license>
+ <description>
+ <p>Steadyflow is a download manager that aims for minimalism, ease of use, and a clean, malleable codebase. It should be easy to control, whether from the GUI, command line, or D-Bus.</p>
+ </description>
+ <screenshots>
+ <screenshot type="default">
+ <image>https://screenshots.debian.net/shrine/screenshot/8798/simage/large-4ce4a975816e6811d84433b4d82f8b85.png</image>
+ </screenshot>
+ </screenshots>
+ <url type="bugtracker">https://bugs.launchpad.net/steadyflow</url>
+ <url type="homepage">https://launchpad.net/steadyflow</url>
+ <update_contact>steadyflow at googlegroups.com</update_contact>
+ <translation type="gettext">steadyflow</translation>
+</component>
More information about the arch-commits
mailing list