From 51ac3af8c25c3812af2d31246a19c331825acc5b Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 11 Jun 2022 09:47:10 +0300 Subject: [PATCH 1/7] diodon rebuild. --- desktop/misc/diodon/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/misc/diodon/pspec.xml b/desktop/misc/diodon/pspec.xml index 54aa1e0793..e0d4878d23 100644 --- a/desktop/misc/diodon/pspec.xml +++ b/desktop/misc/diodon/pspec.xml @@ -69,7 +69,7 @@ - 2022-02-04 + 2022-06-10 1.12.0 Version bump. fury From 329a18f91c52706836339eb30e529e3fa532def3 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 11 Jun 2022 09:48:13 +0300 Subject: [PATCH 2/7] pekwm rebuild. --- x11/wm/pekwm/pspec.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x11/wm/pekwm/pspec.xml b/x11/wm/pekwm/pspec.xml index 3b2b7b8dd1..b7bf705bdf 100644 --- a/x11/wm/pekwm/pspec.xml +++ b/x11/wm/pekwm/pspec.xml @@ -15,8 +15,8 @@ The Pekwm Window Manager is written by Claes Nästén. The code is based on the aewm++ window manager, but it has evolved enough that it no longer resembles aewm++ at all. It also has an expanded feature-set, including window grouping (similar to ion, pwm, or fluxbox), auto properties, xinerama and keygrabber that supports keychains, and much more. - - https://github.com/pekwm/pekwm/archive/ac6a6378867c84148bf5f5d77eabb3bfcdea7a81.zip + + https://github.com/pekwm/pekwm/archive/3ad1dc8e71dffbe7a74d64fd19b8e591818869bb.zip cmake @@ -61,7 +61,7 @@ - 2022-04-14 + 2022-06-10 0.2.1 First build. fury From abca3623158178c90b24d875385b631bf6e7a7bf Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 11 Jun 2022 09:49:50 +0300 Subject: [PATCH 3/7] fix email. --- programming/library/uthash/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programming/library/uthash/pspec.xml b/programming/library/uthash/pspec.xml index 77b6753582..a8166c106f 100644 --- a/programming/library/uthash/pspec.xml +++ b/programming/library/uthash/pspec.xml @@ -37,7 +37,7 @@ 2.3.0 First build. fury - uglyside@tuta.io + uglyside@yandex.ru From 6a8344d53d77a018e9faadaed853635bd2ce77a4 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 11 Jun 2022 09:52:47 +0300 Subject: [PATCH 4/7] new applications: add zathura. --- office/misc/zathura-comicbook/actions.py | 18 +++++ office/misc/zathura-comicbook/pspec.xml | 50 ++++++++++++++ office/misc/zathura-djvu/actions.py | 18 +++++ office/misc/zathura-djvu/pspec.xml | 48 +++++++++++++ office/misc/zathura-pdf-poppler/actions.py | 18 +++++ office/misc/zathura-pdf-poppler/pspec.xml | 48 +++++++++++++ office/misc/zathura/actions.py | 18 +++++ office/misc/zathura/pspec.xml | 79 ++++++++++++++++++++++ 8 files changed, 297 insertions(+) create mode 100644 office/misc/zathura-comicbook/actions.py create mode 100644 office/misc/zathura-comicbook/pspec.xml create mode 100644 office/misc/zathura-djvu/actions.py create mode 100644 office/misc/zathura-djvu/pspec.xml create mode 100644 office/misc/zathura-pdf-poppler/actions.py create mode 100644 office/misc/zathura-pdf-poppler/pspec.xml create mode 100644 office/misc/zathura/actions.py create mode 100644 office/misc/zathura/pspec.xml diff --git a/office/misc/zathura-comicbook/actions.py b/office/misc/zathura-comicbook/actions.py new file mode 100644 index 0000000000..cf8b59a015 --- /dev/null +++ b/office/misc/zathura-comicbook/actions.py @@ -0,0 +1,18 @@ +#!/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, pisitools + +def setup(): + mesontools.configure() + +def build(): + mesontools.build() + +def install(): + mesontools.install() + + pisitools.dodoc("AUTHORS") diff --git a/office/misc/zathura-comicbook/pspec.xml b/office/misc/zathura-comicbook/pspec.xml new file mode 100644 index 0000000000..cbac3b37f1 --- /dev/null +++ b/office/misc/zathura-comicbook/pspec.xml @@ -0,0 +1,50 @@ + + + + + zathura-comicbook + https://git.pwmt.org/pwmt/zathura-cb + + fury + uglyside@yandex.ru + + ZLib + library + office.misc + Comic book support for zathura. + The zathura-comicbook plugin adds comic book support to zathura. + + https://git.pwmt.org/pwmt/zathura-cb/-/archive/0.1.10/zathura-cb-0.1.10.tar.bz2 + + + meson + zathura-devel + libarchive-devel + + + + + zathura-comicbook + + gtk3 + cairo + zathura + gdk-pixbuf + libarchive + + + /usr/lib/zathura + /usr/share + + + + + + 2022-06-11 + 0.1.10 + First build. + fury + uglyside@yandex.ru + + + diff --git a/office/misc/zathura-djvu/actions.py b/office/misc/zathura-djvu/actions.py new file mode 100644 index 0000000000..cf8b59a015 --- /dev/null +++ b/office/misc/zathura-djvu/actions.py @@ -0,0 +1,18 @@ +#!/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, pisitools + +def setup(): + mesontools.configure() + +def build(): + mesontools.build() + +def install(): + mesontools.install() + + pisitools.dodoc("AUTHORS") diff --git a/office/misc/zathura-djvu/pspec.xml b/office/misc/zathura-djvu/pspec.xml new file mode 100644 index 0000000000..6dce2b97b6 --- /dev/null +++ b/office/misc/zathura-djvu/pspec.xml @@ -0,0 +1,48 @@ + + + + + zathura-djvu + https://git.pwmt.org/pwmt/zathura-djvu + + fury + uglyside@yandex.ru + + ZLib + library + office.misc + DjVu support for zathura. + pass + + https://git.pwmt.org/pwmt/zathura-djvu/-/archive/0.2.9/zathura-djvu-0.2.9.tar.bz2 + + + meson + djvu-devel + zathura-devel + + + + + zathura-djvu + + djvu + cairo + zathura + + + /usr/lib/zathura + /usr/share + + + + + + 2022-06-11 + 0.2.9 + First build. + fury + uglyside@yandex.ru + + + diff --git a/office/misc/zathura-pdf-poppler/actions.py b/office/misc/zathura-pdf-poppler/actions.py new file mode 100644 index 0000000000..cf8b59a015 --- /dev/null +++ b/office/misc/zathura-pdf-poppler/actions.py @@ -0,0 +1,18 @@ +#!/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, pisitools + +def setup(): + mesontools.configure() + +def build(): + mesontools.build() + +def install(): + mesontools.install() + + pisitools.dodoc("AUTHORS") diff --git a/office/misc/zathura-pdf-poppler/pspec.xml b/office/misc/zathura-pdf-poppler/pspec.xml new file mode 100644 index 0000000000..f5c90d85f8 --- /dev/null +++ b/office/misc/zathura-pdf-poppler/pspec.xml @@ -0,0 +1,48 @@ + + + + + zathura-pdf-poppler + https://git.pwmt.org/pwmt/zathura-cb + + fury + uglyside@yandex.ru + + ZLib + library + office.misc + PDF support (poppler backend) for zathura. + The zathura-pdf-poppler plugin adds PDF support to zathura by using the poppler rendering library. + + https://git.pwmt.org/pwmt/zathura-pdf-poppler/-/archive/0.3.0/zathura-pdf-poppler-0.3.0.tar.bz2 + + + meson + zathura-devel + poppler-glib-devel + + + + + zathura-pdf-poppler + + cairo + zathura + poppler-glib + + + /usr/lib/zathura + /usr/share + + + + + + 2022-06-11 + 0.3.0 + First build. + fury + uglyside@yandex.ru + + + diff --git a/office/misc/zathura/actions.py b/office/misc/zathura/actions.py new file mode 100644 index 0000000000..2b06f8d209 --- /dev/null +++ b/office/misc/zathura/actions.py @@ -0,0 +1,18 @@ +#!/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, pisitools + +def setup(): + mesontools.configure("-Dmagic=enabled -Dmanpages=enabled") + +def build(): + mesontools.build() + +def install(): + mesontools.install() + + pisitools.dodoc("AUTHORS") diff --git a/office/misc/zathura/pspec.xml b/office/misc/zathura/pspec.xml new file mode 100644 index 0000000000..1d234a1f7b --- /dev/null +++ b/office/misc/zathura/pspec.xml @@ -0,0 +1,79 @@ + + + + + zathura + https://pwmt.org/projects/zathura/ + + fury + uglyside@yandex.ru + + ZLib + app:gui + 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 + + + git + file + meson + cmake + gtk3-devel + glib2-devel + sqlite-devel + python3-sphinx + libseccomp-devel + + + + + zathura + + file + gtk3 + cairo + glib2 + pango + sqlite + libseccomp + zathura-djvu + zathura-comicbook + zathura-pdf-poppler + + + /usr/bin/zathura + /usr/lib + /usr/share + /usr/share/locale + + + + + zathura-devel + + zathura + gtk3-devel + glib2-devel + cairo-devel + pango-devel + + + /usr/lib/pkgconfig + /usr/include/girara + /usr/include/zathura + + + + + + 2022-06-11 + 0.4.9 + First build. + fury + uglyside@yandex.ru + + + From 9ea8b207f10f7985a1ba6e88c8d73c0d099b0c80 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 11 Jun 2022 10:12:46 +0300 Subject: [PATCH 5/7] homepage. --- office/misc/zathura-pdf-poppler/pspec.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/office/misc/zathura-pdf-poppler/pspec.xml b/office/misc/zathura-pdf-poppler/pspec.xml index f5c90d85f8..c7c441184f 100644 --- a/office/misc/zathura-pdf-poppler/pspec.xml +++ b/office/misc/zathura-pdf-poppler/pspec.xml @@ -3,7 +3,7 @@ zathura-pdf-poppler - https://git.pwmt.org/pwmt/zathura-cb + https://git.pwmt.org/pwmt/zathura-pdf-poppler fury uglyside@yandex.ru From 0c0f953e7d924e8f44db6f753d4192ef82af98ef Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 11 Jun 2022 13:19:05 +0300 Subject: [PATCH 6/7] zathura-postscript. --- office/misc/zathura-postscript/actions.py | 18 +++++++++ office/misc/zathura-postscript/pspec.xml | 48 +++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 office/misc/zathura-postscript/actions.py create mode 100644 office/misc/zathura-postscript/pspec.xml diff --git a/office/misc/zathura-postscript/actions.py b/office/misc/zathura-postscript/actions.py new file mode 100644 index 0000000000..cf8b59a015 --- /dev/null +++ b/office/misc/zathura-postscript/actions.py @@ -0,0 +1,18 @@ +#!/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, pisitools + +def setup(): + mesontools.configure() + +def build(): + mesontools.build() + +def install(): + mesontools.install() + + pisitools.dodoc("AUTHORS") diff --git a/office/misc/zathura-postscript/pspec.xml b/office/misc/zathura-postscript/pspec.xml new file mode 100644 index 0000000000..9b5cc13aaf --- /dev/null +++ b/office/misc/zathura-postscript/pspec.xml @@ -0,0 +1,48 @@ + + + + + zathura-postscript + https://git.pwmt.org/pwmt/zathura-ps + + fury + uglyside@yandex.ru + + ZLib + library + office.misc + PostScript support for zathura. + pass + + https://git.pwmt.org/pwmt/zathura-ps/-/archive/0.2.7/zathura-ps-0.2.7.tar.bz2 + + + meson + zathura-devel + libspectre-devel + + + + + zathura-postscript + + djvu + zathura + libspectre + + + /usr/lib/zathura + /usr/share + + + + + + 2022-06-11 + 0.2.7 + First build. + fury + uglyside@yandex.ru + + + From a05ecabfceded19a21c839c4e4f6de579d1e23ee Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 11 Jun 2022 14:10:01 +0300 Subject: [PATCH 7/7] zathura. --- office/misc/zathura-postscript/pspec.xml | 2 +- office/misc/zathura/pspec.xml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/office/misc/zathura-postscript/pspec.xml b/office/misc/zathura-postscript/pspec.xml index 9b5cc13aaf..73af055159 100644 --- a/office/misc/zathura-postscript/pspec.xml +++ b/office/misc/zathura-postscript/pspec.xml @@ -26,7 +26,7 @@ zathura-postscript - djvu + cairo zathura libspectre diff --git a/office/misc/zathura/pspec.xml b/office/misc/zathura/pspec.xml index 1d234a1f7b..719a878046 100644 --- a/office/misc/zathura/pspec.xml +++ b/office/misc/zathura/pspec.xml @@ -40,7 +40,8 @@ sqlite libseccomp zathura-djvu - zathura-comicbook + + zathura-pdf-poppler