Merge pull request #11110 from 4fury-c3440d8/b1

RawTherapee-5.9
This commit is contained in:
Rmys
2022-12-05 10:56:58 +03:00
committed by GitHub
6 changed files with 57 additions and 27 deletions
+14 -8
View File
@@ -1,18 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools
from pisi.actionsapi import get
from pisi.actionsapi import mesontools, cmaketools, get
j = ''.join([
' -DCMAKE_BUILD_TYPE=release',
' -DCREDITSDIR=/usr/share/doc/rawtherapee',
' -DLICENCEDIR=/usr/share/doc/rawtherapee',
' -B_build',
' -G Ninja -L '
])
def setup():
cmaketools.configure("-DCMAKE_BUILD_TYPE=release \
-DCREDITSDIR=/usr/share/doc/rawtherapee \
-DLICENCEDIR=/usr/share/doc/rawtherapee", installPrefix="/usr")
cmaketools.configure(j, installPrefix='/usr')
def build():
cmaketools.make()
mesontools.build("-C _build")
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
mesontools.install("-C _build")
+15 -7
View File
@@ -2,18 +2,19 @@
<PISI>
<Source>
<Name>rawtherapee</Name>
<Homepage>http://rawtherapee.com/</Homepage>
<Homepage>https://www.rawtherapee.com/</Homepage>
<Packager>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Packager>
<IsA>app:gui</IsA>
<License>GPLv3</License>
<License>GPL-3</License>
<Summary>RawTherapee is a powerful, cross-platform raw photo processing program</Summary>
<Description>RawTherapee is designed for developing raw files from a broad range of digital cameras, as well as HDR DNG files and non-raw image formats (JPEG, TIFF and PNG).</Description>
<Archive sha1sum="2d8b7104c2f8dad1925a3ee3ac52204d424278d8" type="tarxz">https://github.com/Beep6581/RawTherapee/releases/download/5.8/rawtherapee-5.8.tar.xz</Archive>
<Archive sha1sum="e99573efaeb83d4f6314fc11a73a411304c83d2b" type="tarxz">https://rawtherapee.com/shared/source/rawtherapee-5.9.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>tiff-devel</Dependency>
<Dependency>zlib-devel</Dependency>
@@ -35,7 +36,7 @@
<Dependency>libcanberra-gtk3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>rawtherapee</Name>
<RuntimeDependencies>
@@ -65,12 +66,19 @@
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc/rawtherapee</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2022-12-04</Date>
<Version>5.9</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2020-03-31</Date>
<Version>5.8</Version>
@@ -79,4 +87,4 @@
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -6,4 +6,3 @@
<Description xml:lang="pl">Zaawansowany program do wywoływania zdjęć.</Description>
</Source>
</PISI>
+13 -7
View File
@@ -2,19 +2,25 @@
# -*- 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 pisitools
from pisi.actionsapi import autotools, pisitools
i = ''.join([
' --disable-rpath',
' --disable-nls',
' --disable-static',
' PYTHON_VERSION=3',
' --enable-python '
])
def setup():
autotools.configure("--disable-static \
--with-libintl-prefix=/opt/local \
--with-libiconv-prefix=/opt/local")
autotools.configure(i)
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("ChangeLog", "AUTHORS", "COPYING", "NEWS")
pisitools.dodoc("AUTHORS")
+14 -3
View File
@@ -2,7 +2,7 @@
<PISI>
<Source>
<Name>libiptcdata</Name>
<Homepage>http://libiptcdata.sourceforge.net/</Homepage>
<Homepage>https://github.com/ianw/libiptcdata</Homepage>
<Packager>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
@@ -11,9 +11,12 @@
<IsA>library</IsA>
<Summary>A library for manipulating the International Press Telecommunications Council (IPTC)</Summary>
<Description>libiptcdata is a library for manipulating the International Press Telecommunications Council (IPTC) metadata stored within multimedia files such as images.</Description>
<Archive sha1sum="2e967be3aee9ae5393f208a3df2b52e08dcd98c8" type="targz">mirrors://sourceforge/libiptcdata/1.0.4/libiptcdata-1.0.4.tar.gz</Archive>
<Archive sha1sum="1b774f21921877d835b7c1b40bb69d7adb22a518" type="targz">
https://github.com/ianw/libiptcdata/releases/download/release_1_0_5/libiptcdata-1.0.5.tar.gz
</Archive>
<BuildDependencies>
<Dependency>glibc-devel</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
@@ -24,6 +27,7 @@
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/</Path>
<Path fileType="library">/usr/lib/python3.9</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
@@ -42,6 +46,13 @@
</Package>
<History>
<Update release="2">
<Date>2022-12-04</Date>
<Version>1.0.5</Version>
<Comment>Python3 rebuild.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2020-03-31</Date>
<Version>1.0.4</Version>
@@ -50,4 +61,4 @@
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
+1 -1
View File
@@ -3,7 +3,7 @@
<Source>
<Name>libiptcdata</Name>
<Summary xml:lang="tr">Uluslararası Basın Telekomünikasyon Konseyi meta verilerini işlemek için bir kütüphane</Summary>
<Description xml:lang="tr">libiptcdata, görüntüler gibi çeşitli veri dosyalarında bulunan Uluslararası Basın Telekomünikasyon Konseyi (IPTC) meta verilerini okumak ve yazmak için bağımsız bir C kütüphanesidir.</Description>
<Description xml:lang="tr">libiptcdata, görüntüler gibi çeşitli veri dosyalarında bulunan Uluslararası Basın Telekomünikasyon Konseyi (IPTC) meta verilerini okumak ve yazmak için bağımsız bir C kütüphanesidir.</Description>
</Source>
<Package>