Merge pull request #18169 from 4fury-c3440d8-2/upwork

picard editor and some deps. update
This commit is contained in:
Rmys
2026-02-16 14:06:00 +03:00
committed by GitHub
8 changed files with 134 additions and 101 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # 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 pythonmodules, pisitools from pisi.actionsapi import pythonmodules, pisitools
@@ -12,4 +12,4 @@ def build():
def install(): def install():
pythonmodules.install(pyVer="3") pythonmodules.install(pyVer="3")
pisitools.dodoc("AUTHORS.txt", "NEWS.md") pisitools.dodoc("AUTHORS.txt", "COPYING.txt")
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>app:gui</IsA> <IsA>app:gui</IsA>
<Summary>MusicBrainz Picard is the official MusicBrainz tagger.</Summary> <Summary>MusicBrainz Picard is the official MusicBrainz tagger.</Summary>
<Description>Picard supports the majority of audio file formats, is capable of using audio fingerprints (AcoustIDs), performing CD lookups and disc ID submissions, and it has excellent Unicode support. Additionally, there are several plugins available that extend Picard's features.</Description> <Description>Picard supports the majority of audio file formats, is capable of using audio fingerprints (AcoustIDs), performing CD lookups and disc ID submissions, and it has excellent Unicode support. Additionally, there are several plugins available that extend Picard's features.</Description>
<Archive sha1sum="189ab4d5b31c824cf56abe26e1c05801aad425a3" type="targz">https://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-2.12.3.tar.gz</Archive> <Archive sha1sum="0ad9e199342a01913d1c432b04c6c64f101ff011" type="targz">https://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-2.13.3.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python3-devel</Dependency> <Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency> <Dependency>python3-setuptools</Dependency>
@@ -47,6 +47,13 @@
</Package> </Package>
<History> <History>
<Update release="4">
<Date>2026-02-15</Date>
<Version>2.13.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3"> <Update release="3">
<Date>2024-11-25</Date> <Date>2024-11-25</Date>
<Version>2.12.3</Version> <Version>2.12.3</Version>
+7 -7
View File
@@ -1,20 +1,20 @@
#!/usr/bin/python #!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3. # 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 cmaketools
from pisi.actionsapi import get from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
def setup(): def setup():
cmaketools.configure("-DCMAKE_BUILD_TYPE=release", installPrefix="/usr") cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr -G Ninja -L")
def build(): def build():
cmaketools.make() mesontools.build()
def install(): def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) mesontools.install()
pisitools.dodoc("*txt") pisitools.dodoc("LICENSE.md")
+14 -6
View File
@@ -13,40 +13,48 @@
<IsA>app:console</IsA> <IsA>app:console</IsA>
<Summary>Chromaprint is the core component of the Acoustid project.</Summary> <Summary>Chromaprint is the core component of the Acoustid project.</Summary>
<Description>Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source.</Description> <Description>Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source.</Description>
<Archive sha1sum="f54d8b58ff514ab65851d524237b38d8965cba57" type="targz">https://github.com/acoustid/chromaprint/releases/download/v1.5.1/chromaprint-1.5.1.tar.gz</Archive> <Archive sha1sum="34cc6188bdaa898f6e014757960c272754039a84" type="targz">https://github.com/acoustid/chromaprint/releases/download/v1.6.0/chromaprint-1.6.0.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>boost-devel</Dependency> <Dependency>boost-devel</Dependency>
<Dependency>fftw3-devel</Dependency> <Dependency>fftw3-devel</Dependency>
<Dependency>ffmpeg-devel</Dependency> <Dependency>ffmpeg-devel</Dependency>
<Dependency>cmake</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
<Package> <Package>
<Name>libchromaprint</Name> <Name>libchromaprint</Name>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>ffmpeg</Dependency>
<Dependency>libgcc</Dependency> <Dependency>libgcc</Dependency>
<Dependency>ffmpeg</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>libchromaprint-devel</Name> <Name>libchromaprint-devel</Name>
<summary>libchromaprint için geliştirme dosyaları</summary> <summary>libchromaprint için geliştirme dosyaları</summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency releaseTo="current">libchromaprint</Dependency> <Dependency releaseTo="current">libchromaprint</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/pkgconfig</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="13">
<Date>2026-02-15</Date>
<Version>1.6.0</Version>
<Comment>Version bump.</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="12"> <Update release="12">
<Date>2024-08-10</Date> <Date>2024-08-10</Date>
<Version>1.5.1</Version> <Version>1.5.1</Version>
@@ -4,10 +4,12 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import python3modules from pisi.actionsapi import python3modules, pisitools
def build(): def build():
python3modules.compile() python3modules.compile()
def install(): def install():
python3modules.install() python3modules.install()
pisitools.dodoc("LICENSE")
@@ -1,46 +1,54 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>python3-fasteners</Name> <Name>python3-fasteners</Name>
<Homepage>https://github.com/harlowja/fasteners</Homepage> <Homepage>https://github.com/harlowja/fasteners</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admin@pisilinux.org</Email> <Email>admin@pisilinux.org</Email>
</Packager> </Packager>
<License>Apache2.0</License> <License>Apache2.0</License>
<PartOf>programming.language.python3</PartOf> <PartOf>programming.language.python3</PartOf>
<Summary>A python package that provides useful locks.</Summary> <Summary>A python package that provides useful locks.</Summary>
<Description>Cross-platform locks for threads and processes.</Description> <Description>Cross-platform locks for threads and processes.</Description>
<Archive sha1sum="79516ab8ec401b85ad2be1b5180093ca24cacabb" type="targz">https://files.pythonhosted.org/packages/source/f/fasteners/fasteners-0.19.tar.gz</Archive> <Archive sha1sum="1de34f5003f1500628c7895d91f60eb70324f7ae" type="targz">https://files.pythonhosted.org/packages/source/f/fasteners/fasteners-0.20.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python3-wheel</Dependency> <Dependency>python3-wheel</Dependency>
<Dependency>python3-build</Dependency> <Dependency>python3-build</Dependency>
<Dependency>python3-installer</Dependency> <Dependency>python3-installer</Dependency>
<Dependency>python3-setuptools</Dependency> <Dependency>python3-setuptools</Dependency>
</BuildDependencies> </BuildDependencies>
<Patches> <Patches>
<!-- <Patch level="1"></Patch> --> <!-- <Patch level="1"></Patch> -->
</Patches> </Patches>
</Source> </Source>
<Package> <Package>
<Name>python3-fasteners</Name> <Name>python3-fasteners</Name>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>python3</Dependency> <Dependency>python3</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path> <Path fileType="data">/usr/share</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="1"> <Update release="2">
<Date>2024-11-25</Date> <Date>2026-02-15</Date>
<Version>0.19</Version> <Version>0.20</Version>
<Name>fury</Name> <Comment>Version bump.</Comment>
<Email>uglyside@yandex.ru</Email> <Name>PisiLinux Community</Name>
</Update> <Email>admin@pisilinux.org</Email>
</History> </Update>
<Update release="1">
<Date>2024-11-25</Date>
<Version>0.19</Version>
<Comment>First release.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI> </PISI>
@@ -7,7 +7,7 @@
from pisi.actionsapi import python3modules from pisi.actionsapi import python3modules
def build(): def build():
python3modules.compile() python3modules.compile()
def install(): def install():
python3modules.install() python3modules.install()
@@ -1,46 +1,54 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>python3-pyjwt</Name> <Name>python3-pyjwt</Name>
<Homepage>https://github.com/jpadilla/pyjwt</Homepage> <Homepage>https://github.com/jpadilla/pyjwt</Homepage>
<Packager> <Packager>
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admin@pisilinux.org</Email> <Email>admin@pisilinux.org</Email>
</Packager> </Packager>
<License>MIT</License> <License>MIT</License>
<PartOf>programming.language.python3</PartOf> <PartOf>programming.language.python3</PartOf>
<Summary>JSON Web Token implementation in Python.</Summary> <Summary>JSON Web Token implementation in Python.</Summary>
<Description>A Python library which allows you to encode and decode JWT (RFC 7519).</Description> <Description>A Python library which allows you to encode and decode JWT (RFC 7519).</Description>
<Archive sha1sum="5839d4d124208ba706b11b663c93661064b38854" type="targz">https://files.pythonhosted.org/packages/source/p/pyjwt/pyjwt-2.10.0.tar.gz</Archive> <Archive sha1sum="d2b7daf1135f3ef40af1cf86688309a09045b19f" type="targz">https://files.pythonhosted.org/packages/source/p/pyjwt/pyjwt-2.11.0.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python3-wheel</Dependency> <Dependency>python3-wheel</Dependency>
<Dependency>python3-build</Dependency> <Dependency>python3-build</Dependency>
<Dependency>python3-installer</Dependency> <Dependency>python3-installer</Dependency>
<Dependency>python3-setuptools</Dependency> <Dependency>python3-setuptools</Dependency>
</BuildDependencies> </BuildDependencies>
<Patches> <Patches>
<!-- <Patch level="1"></Patch> --> <!-- <Patch level="1"></Patch> -->
</Patches> </Patches>
</Source> </Source>
<Package> <Package>
<Name>python3-pyjwt</Name> <Name>python3-pyjwt</Name>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>python3-cryptography</Dependency> <Dependency>python3-cryptography</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path> <Path fileType="data">/usr/share</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="1"> <Update release="2">
<Date>2024-11-25</Date> <Date>2026-02-15</Date>
<Version>2.10.0</Version> <Version>2.11.0</Version>
<Name>fury</Name> <Comment>Version bump.</Comment>
<Email>uglyside@yandex.ru</Email> <Name>PisiLinux Community</Name>
</Update> <Email>admin@pisilinux.org</Email>
</History> </Update>
<Update release="1">
<Date>2024-11-25</Date>
<Version>2.10.0</Version>
<Comment>First release.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI> </PISI>