diff --git a/desktop/misc/diodon/pspec.xml b/desktop/misc/diodon/pspec.xml
index 3b12a04355..743e251625 100644
--- a/desktop/misc/diodon/pspec.xml
+++ b/desktop/misc/diodon/pspec.xml
@@ -13,8 +13,8 @@
desktop.misc
Clipboard manager.
Aiming to be the best integrated clipboard manager for the Unity desktop.
-
- https://launchpad.net/diodon/trunk/1.11.1/+download/diodon-1.11.1.tar.xz
+
+ https://launchpad.net/diodon/trunk/1.12.0/+download/diodon-1.12.0.tar.xz
cmake
@@ -68,6 +68,13 @@
+
+ 2022-02-02
+ 1.12.0
+ Version bump.
+ fury
+ uglyside@yandex.ru
+
2021-10-13
1.11.1
diff --git a/hardware/optical/brasero/actions.py b/hardware/optical/brasero/actions.py
new file mode 100644
index 0000000000..e88acbcfc6
--- /dev/null
+++ b/hardware/optical/brasero/actions.py
@@ -0,0 +1,24 @@
+#!/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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ pisitools.cflags.add("-Wno-deprecated-declarations")
+ autotools.configure("--disable-caches --disable-schemas-compile --disable-nautilus")
+
+ # for fix unused dependency
+ pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("AUTHORS", "NEWS")
diff --git a/hardware/optical/brasero/pspec.xml b/hardware/optical/brasero/pspec.xml
new file mode 100644
index 0000000000..4edb9b65cf
--- /dev/null
+++ b/hardware/optical/brasero/pspec.xml
@@ -0,0 +1,111 @@
+
+
+
+
+ brasero
+ https://wiki.gnome.org/Apps/Brasero
+
+ Pisilinux Community
+ admins@pisilinux.org
+
+ GPL
+ app:gui
+ hardware.optical
+ A disc burning application.
+ Brasero is yet another CD / DVD writing application. It is designed to be as simple as possible and has some unique features to enable users to create their discs easily.
+
+ mirrors://gnome/brasero/3.12/brasero-3.12.3.tar.xz
+
+
+ cdrkit
+ cdrdao
+ itstool
+ gtk-doc
+ intltool
+ gtk3-devel
+ python-six
+ docbook-xsl
+ libSM-devel
+ libICE-devel
+ dvd+rw-tools
+ libxml2-devel
+ libburn-devel
+ libisofs-devel
+ gstreamer-devel
+ libnotify-devel
+ libisoburn-devel
+ gdk-pixbuf-devel
+ shared-mime-info
+ libcanberra-devel
+ libcanberra-gtk-devel
+ libcanberra-gtk3-devel
+ gst-plugins-base-devel
+ gobject-introspection-devel
+
+
+
+
+ brasero
+
+ gtk3
+ glib2
+ pango
+ cairo
+ libSM
+ cdrkit
+ cdrdao
+ libICE
+ libxml2
+ libburn
+ libisofs
+ gstreamer
+ dvdauthor
+ libnotify
+ gdk-pixbuf
+ dvd+rw-tools
+
+ gst-plugins-base
+ libcanberra-gtk3
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share
+ /usr/share/locale
+ /usr/share/man
+ /usr/share/doc
+
+
+
+
+ brasero-devel
+
+ gtk3-devel
+ brasero
+
+
+ /usr/include/brasero3
+ /usr/lib/pkgconfig
+
+
+
+
+ brasero-docs
+
+ brasero
+
+
+ /usr/share/gtk-doc/html
+
+
+
+
+
+ 2022-02-02
+ 3.12.3
+ First release
+ Pisilinux Community
+ admins@pisilinux.org
+
+
+
diff --git a/multimedia/editor/puddletag/actions.py b/multimedia/editor/puddletag/actions.py
new file mode 100644
index 0000000000..02f7e59a09
--- /dev/null
+++ b/multimedia/editor/puddletag/actions.py
@@ -0,0 +1,17 @@
+#!/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 pythonmodules
+from pisi.actionsapi import get
+
+def setup():
+ pass
+
+def build():
+ pythonmodules.compile(pyVer = '3')
+
+def install():
+ pythonmodules.run("setup.py install --root=%s --no-compile -O0" % get.installDIR(), pyVer = '3')
diff --git a/multimedia/editor/puddletag/pspec.xml b/multimedia/editor/puddletag/pspec.xml
new file mode 100644
index 0000000000..a6abc552d7
--- /dev/null
+++ b/multimedia/editor/puddletag/pspec.xml
@@ -0,0 +1,53 @@
+
+
+
+
+ puddletag
+ https://docs.puddletag.net/
+
+ Pisilinux Community
+ admins@pisilinux.org
+
+ GPL-3
+ app:gui
+ multimedia.editor
+ Puddletag is an audio tag editor (primarily created) for GNU/Linux.
+ Supported formats: ID3v1, ID3v2 (mp3), MP4 (mp4, m4a, etc.), VorbisComments (ogg, flac), Musepack (mpc), Monkey’s Audio (.ape) and WavPack (wv).
+
+ https://github.com/puddletag/puddletag/archive/refs/tags/2.1.0.tar.gz
+
+
+ python3-qt5
+ python3-devel
+ python3-setuptools
+
+
+
+
+ puddletag
+
+ python3-qt5
+ libchromaprint
+ python3-mutagen
+ python3-configobj
+ python3-pyparsing
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share
+ /usr/share/man
+ /usr/share/doc
+
+
+
+
+
+ 2022-02-02
+ 2.1.0
+ First build.
+ fury
+ uglyside@yandex.ru
+
+
+
diff --git a/multimedia/editor/puddletag/translations.xml b/multimedia/editor/puddletag/translations.xml
new file mode 100644
index 0000000000..04f8be8c5f
--- /dev/null
+++ b/multimedia/editor/puddletag/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ puddletag
+ Linux üzerinde mp3 etiketlerini düzenlemenizi sağlayan bir araç
+ Puddletag programı, kolay görünümü sayesinde mp3 etiketlerinde rahatça değişiklik yapabilmenizi sağlar. ID3v1, ID3v2, mp4, ogg, flac,mps, ape, wv formatlarını destekler.
+
+
diff --git a/multimedia/graphics/geeqie/actions.py b/multimedia/graphics/geeqie/actions.py
index e5bcbceff6..b638710013 100644
--- a/multimedia/graphics/geeqie/actions.py
+++ b/multimedia/graphics/geeqie/actions.py
@@ -6,7 +6,6 @@
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
-from pisi.actionsapi import shelltools
from pisi.actionsapi import get
j = ''.join([
@@ -20,14 +19,7 @@ j = ''.join([
def setup():
pisitools.cflags.add("-Wno-deprecated-declarations")
- # Fix instalation step
- pisitools.dosed("Makefile.am", "\ ChangeLog\ ", " ")
- pisitools.dosed("Makefile.am", "\ ChangeLog.html$", "")
- # Fix version
- pisitools.dosed("configure.ac", "\+git", "1.7.1")
-
- shelltools.system("NOCONFIGURE=1 ./autogen.sh")
autotools.autoreconf("-vif")
autotools.configure(j)
@@ -37,5 +29,5 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.removeDir("/usr/share/doc/")
pisitools.dodoc("AUTHORS", "NEWS")
+ pisitools.removeDir("/usr/share/doc/geeqie-%s" % get.srcVERSION())
diff --git a/multimedia/graphics/geeqie/files/Open_archive_not_working.patch b/multimedia/graphics/geeqie/files/Open_archive_not_working.patch
new file mode 100644
index 0000000000..d5d3b17cf8
--- /dev/null
+++ b/multimedia/graphics/geeqie/files/Open_archive_not_working.patch
@@ -0,0 +1,23 @@
+From d3d59ed1080795af43b892d7b49f160f358c6be7 Mon Sep 17 00:00:00 2001
+From: Colin Clark
+Date: Fri, 28 Jan 2022 10:17:04 +0000
+Subject: [PATCH] Bug fix: Open archive not working
+
+Open archive does not work if a default layout has not been set.
+---
+ src/layout.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/layout.c b/src/layout.c
+index 5b08d51b..d72421f0 100644
+--- a/src/layout.c
++++ b/src/layout.c
+@@ -3090,7 +3090,7 @@ LayoutWindow *layout_new_from_default()
+ }
+ else
+ {
+- layout_new_from_config(NULL, NULL, TRUE);
++ lw = layout_new_from_config(NULL, NULL, TRUE);
+ }
+ return lw;
+ }
diff --git a/multimedia/graphics/geeqie/pspec.xml b/multimedia/graphics/geeqie/pspec.xml
index 7919bc8a60..699baa6a24 100644
--- a/multimedia/graphics/geeqie/pspec.xml
+++ b/multimedia/graphics/geeqie/pspec.xml
@@ -15,8 +15,8 @@
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/archive/refs/tags/v1.7.1.tar.gz
+
+ https://github.com/BestImageViewer/geeqie/releases/download/v1.7.2/geeqie-1.7.2.tar.xz
doxygen
@@ -37,6 +37,9 @@
libjpeg-turbo-devel
ffmpegthumbnailer-devel
+
+ Open_archive_not_working.patch
+
@@ -78,10 +81,17 @@
+
+ 2022-02-02
+ 1.7.2
+ Version bump.
+ fury
+ uglyside@yandex.ru
+
- 2022-01-22
+ 2022-01-18
1.7.1
- Version bump
+ Version bump.
fury
uglyside@yandex.ru
diff --git a/util/misc/strace/actions.py b/util/misc/strace/actions.py
index e9426d7ee2..45e5f9eb5c 100644
--- a/util/misc/strace/actions.py
+++ b/util/misc/strace/actions.py
@@ -21,4 +21,4 @@ def check():
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dodoc("CREDITS", "NEWS", "README*",)
+ pisitools.dodoc("CREDITS", "NEWS", "README*")
diff --git a/util/misc/strace/pspec.xml b/util/misc/strace/pspec.xml
index 7f99a07593..a494451078 100644
--- a/util/misc/strace/pspec.xml
+++ b/util/misc/strace/pspec.xml
@@ -12,7 +12,7 @@
app:console
Tracks and displays system calls associated with a running process
strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value.
- https://strace.io/files/5.14/strace-5.14.tar.xz
+ https://strace.io/files/5.15/strace-5.15.tar.xz
libunwind-devel
@@ -34,6 +34,13 @@
+
+ 2022-02-02
+ 5.15
+ Version bump.
+ Pisilinux Community
+ admins@pisilinux.org
+
2021-11-11
5.14
diff --git a/x11/misc/rofi/pspec.xml b/x11/misc/rofi/pspec.xml
index c128c194ff..e9fea429b2 100644
--- a/x11/misc/rofi/pspec.xml
+++ b/x11/misc/rofi/pspec.xml
@@ -12,8 +12,8 @@
app
rofi
A window switcher, application launcher and dmenu replacement.
-
- https://github.com/davatorium/rofi/releases/download/1.7.1/rofi-1.7.1.tar.xz
+
+ https://github.com/davatorium/rofi/releases/download/1.7.3/rofi-1.7.3.tar.xz
pango-devel
@@ -71,6 +71,13 @@
+
+ 2022-02-02
+ 1.7.3
+ Version bump.
+ fury
+ uglyside@yandex.ru
+
2021-11-27
1.7.1