diff --git a/desktop/misc/conky/pspec.xml b/desktop/misc/conky/pspec.xml
index bdf25bbd79..3a11e0ebd3 100644
--- a/desktop/misc/conky/pspec.xml
+++ b/desktop/misc/conky/pspec.xml
@@ -13,11 +13,11 @@
desktop.misc
Lightweight system monitor for X.
Conky is a free, light-weight system monitor for X, that displays any kind of information on your desktop.
-
- https://github.com/brndnmtthws/conky/archive/refs/tags/v1.15.0.tar.gz
+
+ https://github.com/brndnmtthws/conky/archive/refs/tags/v1.17.0.tar.gz
-
- https://github.com/brndnmtthws/conky/releases/download/v1.15.0/conky.1.gz
+
+ https://github.com/brndnmtthws/conky/releases/download/v1.17.0/conky.1.gz
git
@@ -63,6 +63,13 @@
+
+ 2023-01-03
+ 1.17.0
+ Version bump.
+ fury
+ uglyside@yandex.ru
+
2022-12-18
1.15.0
diff --git a/editor/scite/pspec.xml b/editor/scite/pspec.xml
index 0bf69a99b7..ea0450b0cc 100644
--- a/editor/scite/pspec.xml
+++ b/editor/scite/pspec.xml
@@ -13,8 +13,8 @@
editor
SCIntilla based Text Editor.
Scintilla is a free source code editing component which includes useful features such as syntax styling, error indicators, folding, code completion and call tips.
-
- mirrors://sourceforge/project/scintilla/SciTE/5.3.1/scite531.tgz
+
+ mirrors://sourceforge/project/scintilla/SciTE/5.3.2/scite532.tgz
lua-devel
@@ -43,6 +43,13 @@
+
+ 2023-01-03
+ 5.3.2
+ Version bump.
+ fury
+ uglyside@yandex.ru
+
2022-11-23
5.3.1
diff --git a/multimedia/graphics/enblend/pspec.xml b/multimedia/graphics/enblend/pspec.xml
index 49e0fec2cf..c46f72f706 100644
--- a/multimedia/graphics/enblend/pspec.xml
+++ b/multimedia/graphics/enblend/pspec.xml
@@ -51,6 +51,13 @@
+
+ 2023-01-04
+ 4.1.5
+ Rebuild libgsl.
+ Pisi Linux Community
+ admin@pisilinux.org
+
2020-10-29
4.1.5
diff --git a/multimedia/misc/libpano13/actions.py b/multimedia/misc/libpano13/actions.py
index 0bc5f7edde..595a6c0ed7 100644
--- a/multimedia/misc/libpano13/actions.py
+++ b/multimedia/misc/libpano13/actions.py
@@ -2,21 +2,23 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
-# See the file http://www.gnu.org/licenses/gpl.txt
+# See the file https://www.gnu.org/licenses/gpl-3.0.txt
-from pisi.actionsapi import autotools
+from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
+j = ''.join([
+ ' -DCMAKE_BUILD_TYPE=Release',
+ ' -DSUPPORT_JAVA_PROGRAMS=OFF',
+ ' -DUSE_SPARSE_LEVMAR=OFF',
+ ' -B_build -L '
+ ])
+
def setup():
- autotools.configure("--disable-static \
- --without-java")
-
- pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+ cmaketools.configure(j)
def build():
- autotools.make()
+ cmaketools.make("-C _build")
def install():
- autotools.install()
-
- pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "README", "doc/*.txt")
+ cmaketools.install("-C _build")
diff --git a/multimedia/misc/libpano13/pspec.xml b/multimedia/misc/libpano13/pspec.xml
index 31ce59a8ad..1e8bc25ea6 100644
--- a/multimedia/misc/libpano13/pspec.xml
+++ b/multimedia/misc/libpano13/pspec.xml
@@ -1,9 +1,9 @@
-
+
libpano13
- http://sourceforge.net/projects/panotools
+ https://sourceforge.net/projects/panotools/
PisiLinux Community
admins@pisilinux.org
@@ -13,8 +13,9 @@
app:console
Library for manipulating panoramic images
libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs.
- mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz
+ mirrors://sourceforge/panotools/libpano13-2.9.21.tar.gz
+ cmake
zlib-devel
tiff-devel
libpng-devel
@@ -32,7 +33,7 @@
/usr/bin
/usr/lib
- /usr/share/doc
+ /usr/share/pano13/doc
/usr/share/man/man1
@@ -50,6 +51,13 @@
+
+ 2023-01-02
+ 2.9.21
+ Version bump.
+ fury
+ uglyside@yandex.ru
+
2020-03-05
2.9.19
diff --git a/multimedia/misc/svt-av1/actions.py b/multimedia/misc/svt-av1/actions.py
index 4003a7e1aa..d45cc09f4e 100644
--- a/multimedia/misc/svt-av1/actions.py
+++ b/multimedia/misc/svt-av1/actions.py
@@ -1,16 +1,23 @@
-#!/usr/bin/env python
+#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
-# See the file http://www.gnu.org/licenses/gpl.txt
+# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
+j = ''.join([
+ ' -DCMAKE_BUILD_TYPE=Release',
+ ' -DSVT_AV1_LTO=OFF',
+ ' -DSVT_AV1_PGO=OFF',
+ ' -DBUILD_TESTING=OFF -L '
+ ])
+
def setup():
pisitools.ldflags.add("-Wl,-z,noexecstack")
- cmaketools.configure("-DBUILD_TESTING=OFF")
+ cmaketools.configure(j)
def build():
cmaketools.make()
@@ -18,4 +25,4 @@ def build():
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
- pisitools.dodoc("CHANGELOG*", "LICENSE*", "README*")
+ pisitools.dodoc("CHANGELOG.md")
diff --git a/multimedia/misc/svt-av1/pspec.xml b/multimedia/misc/svt-av1/pspec.xml
index 2fc7a46d28..7d6e22cd2e 100644
--- a/multimedia/misc/svt-av1/pspec.xml
+++ b/multimedia/misc/svt-av1/pspec.xml
@@ -1,5 +1,5 @@
-
+
svt-av1
@@ -10,11 +10,13 @@
custom
library
- Scalable Video Technology AV1 encoder and decoder
- Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü
- https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v0.8.7/SVT-AV1-v0.8.7.tar.bz2
+ Scalable Video Technology AV1 encoder and decoder.
+ The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) is an AV1-compliant software encoder/decoder library.
+
+ https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v0.9.1/SVT-AV1-v0.9.1.tar.bz2
+
- nasm
+ yasm
cmake