diff --git a/desktop/lookandfeel/adwaita-qt/pspec.xml b/desktop/lookandfeel/adwaita-qt/pspec.xml index 3f4eb0ba4c..9f30dadb6e 100644 --- a/desktop/lookandfeel/adwaita-qt/pspec.xml +++ b/desktop/lookandfeel/adwaita-qt/pspec.xml @@ -14,8 +14,8 @@ desktop.lookandfeel A style to bend Qt applications to look like they belong into GNOME Shell. A native style to bend Qt4 and Qt5 applications to look like they belong into GNOME Shell. - - https://github.com/FedoraQt/adwaita-qt/archive/refs/tags/1.4.1.tar.gz + + https://github.com/FedoraQt/adwaita-qt/archive/refs/tags/1.4.2.tar.gz cmake @@ -52,6 +52,13 @@ + + 2022-09-24 + 1.4.2 + Version bump + fury + uglyside@yandex.ru + 2022-01-18 1.4.1 diff --git a/multimedia/converter/flacon/pspec.xml b/multimedia/converter/flacon/pspec.xml index 7387733485..7abf0fecb4 100644 --- a/multimedia/converter/flacon/pspec.xml +++ b/multimedia/converter/flacon/pspec.xml @@ -12,7 +12,7 @@ app:gui Flacon is a open source audio file encoder. You can split a single large audio file containing the entire album into the separate audio tracks. - https://github.com/flacon/flacon/archive/refs/tags/v9.1.0.tar.gz + https://github.com/flacon/flacon/archive/refs/tags/v9.3.0.tar.gz cmake taglib-devel @@ -21,7 +21,7 @@ uchardet-devel - Tooltips_of_sidebar_button.patch + @@ -44,6 +44,13 @@ + + 2022-09-24 + 9.3.0 + Version bump. + fury + uglyside@yandex.ru + 2022-08-13 9.1.0 diff --git a/multimedia/sound/ymuse/actions.py b/multimedia/sound/ymuse/actions.py index d98cd21daa..8ba28742ea 100644 --- a/multimedia/sound/ymuse/actions.py +++ b/multimedia/sound/ymuse/actions.py @@ -4,21 +4,16 @@ # 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 shelltools -from pisi.actionsapi import pisitools -from pisi.actionsapi import get +from pisi.actionsapi import shelltools, pisitools, get def setup(): - shelltools.system("go generate -v") + shelltools.system("go generate") def build(): - shelltools.system("go build -v") + shelltools.system("go build") def install(): pisitools.dobin("ymuse") - pisitools.insinto("/usr/share/applications", "resources/ymuse.desktop", "ymuse.desktop") - shelltools.copy("resources/icons", "%s/%s/icons" % (get.installDIR(), get.dataDIR())) - shelltools.copy("resources/i18n/generated", "%s/%s/locale" % (get.installDIR(), get.dataDIR())) - - pisitools.dodoc("COPYING", "README.md") - + pisitools.insinto("/usr/share/applications", "resources/*.desktop") + shelltools.copytree("resources/icons", "%s/%s/icons" % (get.installDIR(), get.dataDIR())) + shelltools.copytree("resources/i18n/generated", "%s/%s/locale" % (get.installDIR(), get.dataDIR())) diff --git a/multimedia/sound/ymuse/pspec.xml b/multimedia/sound/ymuse/pspec.xml index 48b5d7034d..6b58125e6d 100644 --- a/multimedia/sound/ymuse/pspec.xml +++ b/multimedia/sound/ymuse/pspec.xml @@ -15,8 +15,8 @@ Ymuse is an easy, functional, and snappy GTK front-end (client) for Music Player Daemon written in Go. - - https://github.com/yktoo/ymuse/archive/v0.17.tar.gz + + https://github.com/yktoo/ymuse/archive/v0.21.tar.gz golang @@ -46,6 +46,13 @@ + + 2022-09-24 + 0.21 + Version bump + fury + uglyside@yandex.ru + 2021-10-13 0.17 diff --git a/office/cherrytree/actions.py b/office/cherrytree/actions.py index 131e435acd..9ec8da3b5d 100644 --- a/office/cherrytree/actions.py +++ b/office/cherrytree/actions.py @@ -7,14 +7,18 @@ from pisi.actionsapi import shelltools, cmaketools, get j = ''.join([ + ' -B_build', ' -DAUTO_RUN_TESTING=OFF', + ' -DBUILD_GMOCK=OFF', + ' -DBUILD_TESTING=OFF', ' -DINSTALL_GTEST=OFF', - ' -DCMAKE_BUILD_TYPE=None ' + ' -DCMAKE_BUILD_TYPE=None', + ' -L ' ]) def setup(): - shelltools.move("src/ct/icons.gresource.cc.tmp", "src/ct/icons.gresource.cc") - cmaketools.configure("-B_build %s -LA" % j) +# shelltools.move("src/ct/icons.gresource.cc.tmp", "src/ct/icons.gresource.cc") + cmaketools.configure(j) def build(): shelltools.cd("_build") diff --git a/office/cherrytree/pspec.xml b/office/cherrytree/pspec.xml index c2549db1e6..1088836fdb 100644 --- a/office/cherrytree/pspec.xml +++ b/office/cherrytree/pspec.xml @@ -13,8 +13,8 @@ office Cherrytree A hierarchical note taking application. A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file. - - https://github.com/giuspen/cherrytree/releases/download/0.99.44/cherrytree_0.99.44.tar.xz + + https://github.com/giuspen/cherrytree/releases/download/0.99.49/cherrytree_0.99.49.tar.xz cmake @@ -47,6 +47,7 @@ gtkmm3 libgcc sqlite + fribidi cairomm libxml2 pangomm @@ -65,6 +66,13 @@ + + 2022-09-24 + 0.99.49 + Version bump. + fury + uglyside@yandex.ru + 2021-12-18 0.99.44 diff --git a/office/misc/zathura/actions.py b/office/misc/zathura/actions.py index 2b06f8d209..2f314176ee 100644 --- a/office/misc/zathura/actions.py +++ b/office/misc/zathura/actions.py @@ -7,7 +7,7 @@ from pisi.actionsapi import mesontools, pisitools def setup(): - mesontools.configure("-Dmagic=enabled -Dmanpages=enabled") + mesontools.configure("-Dmanpages=enabled") def build(): mesontools.build() diff --git a/office/misc/zathura/pspec.xml b/office/misc/zathura/pspec.xml index d93a72798d..9868c16ce4 100644 --- a/office/misc/zathura/pspec.xml +++ b/office/misc/zathura/pspec.xml @@ -13,19 +13,25 @@ office.misc A document viewer. zathura is a highly customizable and functional document viewer. It provides a minimalistic and space saving interface as well as an easy usage that mainly focuses on keyboard interaction. - - https://pwmt.org/projects/zathura/download/zathura-0.4.9.tar.xz + + https://pwmt.org/projects/zathura/download/zathura-0.5.1.tar.xz git file meson cmake + doxygen + librsvg gtk3-devel + check-devel glib2-devel sqlite-devel + appstream-glib python3-sphinx + json-glib-devel libseccomp-devel + desktop-file-utils @@ -38,11 +44,8 @@ glib2 pango sqlite + json-glib libseccomp - - - - /usr/bin/zathura @@ -60,6 +63,7 @@ glib2-devel cairo-devel pango-devel + json-glib-devel /usr/lib/pkgconfig @@ -69,6 +73,13 @@ + + 2022-09-24 + 0.5.1 + Version bump. + fury + uglyside@yandex.ru + 2022-06-11 0.4.9 diff --git a/programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml b/programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml index 51f258409d..4efc8b6599 100644 --- a/programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml +++ b/programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml @@ -13,8 +13,8 @@ programming.language.perl RSA encoding and decoding, using the openSSL libraries. Crypt::OpenSSL::RSA provides the ability to RSA encrypt strings which are somewhat shorter than the block size of a key. - - https://cpan.metacpan.org/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.32.tar.gz + + https://cpan.metacpan.org/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.33.tar.gz openssl-devel @@ -37,6 +37,13 @@ + + 2022-09-17 + 0.33 + Version bump + fury + uglyside@yandex.ru + 2021-09-18 0.32 diff --git a/programming/language/perl/perl-Mail-DKIM/pspec.xml b/programming/language/perl/perl-Mail-DKIM/pspec.xml index dfaa47e3f0..aad06e5b26 100644 --- a/programming/language/perl/perl-Mail-DKIM/pspec.xml +++ b/programming/language/perl/perl-Mail-DKIM/pspec.xml @@ -13,8 +13,8 @@ programming.language.perl Signs/verifies Internet mail with DKIM/DomainKey signatures. This module implements the various components of the DKIM and DomainKeys message-signing and verifying standards for Internet mail. - - https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-1.20220408.tar.gz + + https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-1.20220520.tar.gz perl @@ -44,6 +44,13 @@ + + 2022-09-17 + 1.20220520 + Version bump. + fury + uglyside@yandex.ru + 2022-04-14 1.20220408 diff --git a/programming/language/perl/perl-YAML-LibYAML/pspec.xml b/programming/language/perl/perl-YAML-LibYAML/pspec.xml index d55f38a520..1b1575e363 100644 --- a/programming/language/perl/perl-YAML-LibYAML/pspec.xml +++ b/programming/language/perl/perl-YAML-LibYAML/pspec.xml @@ -13,8 +13,8 @@ programming.language.perl Perl Binding to libyaml. Perl YAML Serialization using XS and libyaml. - - https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-0.83.tar.gz + + https://cpan.metacpan.org/authors/id/I/IN/INGY/YAML-LibYAML-0.85.tar.gz perl @@ -33,6 +33,13 @@ + + 2022-09-17 + 0.85 + Version bump + fury + uglyside@yandex.ru + 2021-09-18 0.83 diff --git a/programming/library/spdlog/actions.py b/programming/library/spdlog/actions.py index 6896603802..9eff7dafb2 100644 --- a/programming/library/spdlog/actions.py +++ b/programming/library/spdlog/actions.py @@ -9,6 +9,7 @@ from pisi.actionsapi import shelltools, cmaketools, pisitools, get i = "%s" % get.installDIR() j = ''.join([ + ' -B_build', ' -DSPDLOG_BUILD_SHARED=ON', ' -DSPDLOG_FMT_EXTERNAL=ON', ' -DCMAKE_BUILD_TYPE=None', @@ -18,9 +19,7 @@ j = ''.join([ t = "#define SPDLOG_FMT_EXTERNAL" def setup(): - shelltools.makedirs("_build") - shelltools.cd("_build") - cmaketools.configure(j, sourceDir = "..") + cmaketools.configure(j) def build(): shelltools.cd("_build") diff --git a/programming/library/spdlog/pspec.xml b/programming/library/spdlog/pspec.xml index 47ddd57a02..22d6838b65 100644 --- a/programming/library/spdlog/pspec.xml +++ b/programming/library/spdlog/pspec.xml @@ -13,8 +13,8 @@ programming.library Fast C++ logging library. Very fast, header-only/compiled, C++ logging library. - - https://github.com/gabime/spdlog/archive/refs/tags/v1.9.2.tar.gz + + https://github.com/gabime/spdlog/archive/refs/tags/v1.10.0.tar.gz cmake @@ -47,6 +47,13 @@ + + 2022-09-24 + 1.10.0 + Version bump. + fury + uglyside@yandex.ru + 2021-12-14 1.9.2