From 356c72de913ffc3f952e266eadf85267cebb3d72 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 13 Aug 2022 18:55:02 +0300 Subject: [PATCH 1/3] flacon rebuild. --- .../files/Tooltips_of_sidebar_button.patch | 22 +++++++++++++++++++ multimedia/converter/flacon/pspec.xml | 5 ++++- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 multimedia/converter/flacon/files/Tooltips_of_sidebar_button.patch diff --git a/multimedia/converter/flacon/files/Tooltips_of_sidebar_button.patch b/multimedia/converter/flacon/files/Tooltips_of_sidebar_button.patch new file mode 100644 index 0000000000..74d97deb04 --- /dev/null +++ b/multimedia/converter/flacon/files/Tooltips_of_sidebar_button.patch @@ -0,0 +1,22 @@ +From 5bf672b373c93a8ebd4040d934875969e697a470 Mon Sep 17 00:00:00 2001 +From: Alexander Sokolov +Date: Wed, 3 Aug 2022 17:43:29 +0300 +Subject: [PATCH] Close issue #131: Tooltips of sidebar button. + +--- + gui/controls.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gui/controls.cpp b/gui/controls.cpp +index 4caaf6e..5d70140 100644 +--- a/gui/controls.cpp ++++ b/gui/controls.cpp +@@ -53,7 +53,7 @@ ToolButton::ToolButton(const QIcon &icon, QWidget *parent) : + QToolButton(parent) + { + setAutoRaise(true); +- setStyleSheet("border: none;"); ++ setStyleSheet("QToolButton{ border: none; }"); + setFixedWidth(ToolButton::sizeHint().width()); + setIcon(icon); + setPopupMode(QToolButton::InstantPopup); diff --git a/multimedia/converter/flacon/pspec.xml b/multimedia/converter/flacon/pspec.xml index bb8daa3cfb..7387733485 100644 --- a/multimedia/converter/flacon/pspec.xml +++ b/multimedia/converter/flacon/pspec.xml @@ -20,6 +20,9 @@ qt5-base-devel uchardet-devel + + Tooltips_of_sidebar_button.patch + @@ -42,7 +45,7 @@ - 2022-07-08 + 2022-08-13 9.1.0 Version bump. fury From 17eaa299c839512465e521f5caaca92d96ccb4cb Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 13 Aug 2022 18:57:11 +0300 Subject: [PATCH 2/3] geeqie major version bump. --- multimedia/graphics/geeqie/actions.py | 25 ++++--------------------- multimedia/graphics/geeqie/pspec.xml | 20 ++++++++++++++------ 2 files changed, 18 insertions(+), 27 deletions(-) diff --git a/multimedia/graphics/geeqie/actions.py b/multimedia/graphics/geeqie/actions.py index 05cafcdabb..8296ee46c5 100644 --- a/multimedia/graphics/geeqie/actions.py +++ b/multimedia/graphics/geeqie/actions.py @@ -4,32 +4,15 @@ # Licensed under the GNU General Public License, version 3. # See the file https://www.gnu.org/licenses/gpl-3.0.txt -from pisi.actionsapi import autotools -from pisi.actionsapi import pisitools -from pisi.actionsapi import shelltools -from pisi.actionsapi import get - -j = ''.join([ - ' --disable-map', - ' --disable-pdf', - ' --disable-djvu', - ' --disable-gtk3', - ' --disable-gpu-accel', - ' --disable-debug-log ' - ]) +from pisi.actionsapi import mesontools, pisitools def setup(): - pisitools.cflags.add("-Wno-deprecated-declarations") - shelltools.system("NOCONFIGURE=1 ./autogen.sh") - - autotools.autoreconf("-vif") - autotools.configure(j) + mesontools.configure() def build(): - autotools.make() + mesontools.build() def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + mesontools.install() pisitools.dodoc("AUTHORS", "NEWS") - pisitools.removeDir("/usr/share/doc/geeqie-%s" % get.srcVERSION()) diff --git a/multimedia/graphics/geeqie/pspec.xml b/multimedia/graphics/geeqie/pspec.xml index fc456a703a..247cd4b50f 100644 --- a/multimedia/graphics/geeqie/pspec.xml +++ b/multimedia/graphics/geeqie/pspec.xml @@ -15,14 +15,15 @@ Geeqie can be used as a simple, fast, database-free image viewer, but equally it can be used to manage large collections of images. - - https://github.com/BestImageViewer/geeqie/releases/download/v1.7.2/geeqie-1.7.2.tar.xz + + https://github.com/BestImageViewer/geeqie/releases/download/v2.0.1/geeqie-2.0.1.tar.xz + vim + meson doxygen - intltool lua-devel - gtk2-devel + gtk3-devel tiff-devel webp-devel lirc-devel @@ -38,7 +39,7 @@ ffmpegthumbnailer-devel - Open_archive_not_working.patch + @@ -46,7 +47,7 @@ geeqie lua - gtk2 + gtk3 tiff webp lirc @@ -81,6 +82,13 @@ + + 2022-08-13 + 2.0.1 + Version bump. + fury + uglyside@yandex.ru + 2022-02-04 1.7.2 From 15b6dce743e185f0d7e1d25e67b828b7d9659cd3 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 13 Aug 2022 19:32:31 +0300 Subject: [PATCH 3/3] add viewnior. --- multimedia/graphics/viewnior/actions.py | 16 ++++++++ multimedia/graphics/viewnior/pspec.xml | 53 +++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 multimedia/graphics/viewnior/actions.py create mode 100644 multimedia/graphics/viewnior/pspec.xml diff --git a/multimedia/graphics/viewnior/actions.py b/multimedia/graphics/viewnior/actions.py new file mode 100644 index 0000000000..cf82ccc706 --- /dev/null +++ b/multimedia/graphics/viewnior/actions.py @@ -0,0 +1,16 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import mesontools + +def setup(): + mesontools.configure() + +def build(): + mesontools.build() + +def install(): + mesontools.install() diff --git a/multimedia/graphics/viewnior/pspec.xml b/multimedia/graphics/viewnior/pspec.xml new file mode 100644 index 0000000000..40a7afe309 --- /dev/null +++ b/multimedia/graphics/viewnior/pspec.xml @@ -0,0 +1,53 @@ + + + + + vienior + https://github.com/hellosiyan/Viewnior + + fury + uglyside@yandex.ru + + GPL-3 + app:gui + multimedia.graphics + Elegant Image Viewer. + This is Viewnior, an image viewer program. Created to be simple, fast and elegant. Its minimalistic interface provides more screenspace for your images. + + https://github.com/hellosiyan/Viewnior/archive/refs/tags/viewnior-1.8.tar.gz + + + cmake + meson + gtk2-devel + exiv2-devel + gdk-pixbuf-devel + + + + + viewnior + + gtk2 + glib2 + libgcc + exiv2-libs + gdk-pixbuf + + + /usr/bin + /usr/share + /usr/share/viewnior + + + + + + 2022-08-13 + 1.8 + First build. + fury + uglyside@yandex.ru + + +