@@ -51,6 +51,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2023-01-04</Date>
|
||||
<Version>4.1.5</Version>
|
||||
<Comment>Rebuild libgsl.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2020-10-29</Date>
|
||||
<Version>4.1.5</Version>
|
||||
|
||||
@@ -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")
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libpano13</Name>
|
||||
<Homepage>http://sourceforge.net/projects/panotools</Homepage>
|
||||
<Homepage>https://sourceforge.net/projects/panotools/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -13,8 +13,9 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Library for manipulating panoramic images</Summary>
|
||||
<Description>libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs.</Description>
|
||||
<Archive sha1sum="85d8d94c96780fa5b6df2c2e4929f8d20557f128" type="targz">mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz</Archive>
|
||||
<Archive sha1sum="00a4ba15f602ad5e63bc3dd6d38a6a42b26f1d25" type="targz">mirrors://sourceforge/panotools/libpano13-2.9.21.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
@@ -32,7 +33,7 @@
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/pano13/doc</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
@@ -50,6 +51,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2023-01-02</Date>
|
||||
<Version>2.9.21</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2020-03-05</Date>
|
||||
<Version>2.9.19</Version>
|
||||
|
||||
@@ -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")
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>svt-av1</Name>
|
||||
@@ -10,11 +10,13 @@
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Scalable Video Technology AV1 encoder and decoder</Summary>
|
||||
<Description>Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü</Description>
|
||||
<Archive sha1sum="4b6be282036ba27bd88ea81d60f9bfb5e261dbb7" type="tarbz2">https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v0.8.7/SVT-AV1-v0.8.7.tar.bz2</Archive>
|
||||
<Summary>Scalable Video Technology AV1 encoder and decoder.</Summary>
|
||||
<Description>The Scalable Video Technology for AV1 (SVT-AV1 Encoder and Decoder) is an AV1-compliant software encoder/decoder library.</Description>
|
||||
<Archive sha1sum="1b4b6688595f866fb4fa6d62b9e4bbdaa25128bd" type="tarbz2">
|
||||
https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v0.9.1/SVT-AV1-v0.9.1.tar.bz2
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>nasm</Dependency>
|
||||
<Dependency>yasm</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
@@ -47,6 +49,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2023-01-03</Date>
|
||||
<Version>0.9.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-11-02</Date>
|
||||
<Version>0.8.7</Version>
|
||||
|
||||
@@ -125,9 +125,9 @@
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2022-11-10</Date>
|
||||
<Date>2023-01-04</Date>
|
||||
<Version>4.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
|
||||
Reference in New Issue
Block a user