@@ -4,8 +4,7 @@
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import pythonmodules, pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
@@ -13,4 +12,4 @@ def build():
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
pisitools.dodoc("AUTHORS.txt", "COPYING.txt", "NEWS.md")
|
||||
pisitools.dodoc("AUTHORS.txt", "NEWS.md")
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>picard</Name>
|
||||
<Homepage>http://musicbrainz.org/doc/MusicBrainz_Picard</Homepage>
|
||||
<Homepage>https://picard.musicbrainz.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
@@ -12,15 +12,10 @@
|
||||
<IsA>app:gui</IsA>
|
||||
<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>
|
||||
<Archive sha1sum="c17dd5990baa0a8b73b1d979c8de836efe809570" type="targz">http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-2.10.tar.gz</Archive>
|
||||
<Archive sha1sum="189ab4d5b31c824cf56abe26e1c05801aad425a3" type="targz">https://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-2.12.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-mutagen</Dependency>
|
||||
<Dependency>libdiscid-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>musicbrainz5-devel</Dependency>
|
||||
<Dependency>python3-qt5-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -32,21 +27,33 @@
|
||||
<Dependency>python3-qt5</Dependency>
|
||||
<Dependency>musicbrainz5</Dependency>
|
||||
<Dependency>python-discid</Dependency>
|
||||
<Dependency>python3-pyjwt</Dependency>
|
||||
<Dependency>libchromaprint</Dependency>
|
||||
<Dependency>python3-mutagen</Dependency>
|
||||
<Dependency>python3-dateutil</Dependency>
|
||||
<Dependency>python3-markdown</Dependency>
|
||||
<Dependency>python3-fasteners</Dependency>
|
||||
<Dependency>python3-charset-normalizer</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="icons">/usr/share/icons/highcolor</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="icons">/usr/share/icons</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2024-11-25</Date>
|
||||
<Version>2.12.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2023-11-03</Date>
|
||||
<Version>2.10</Version>
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
#!/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 python3modules
|
||||
|
||||
def build():
|
||||
python3modules.compile()
|
||||
|
||||
def install():
|
||||
python3modules.install()
|
||||
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-fasteners</Name>
|
||||
<Homepage>https://github.com/harlowja/fasteners</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache2.0</License>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<Summary>A python package that provides useful locks.</Summary>
|
||||
<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>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-wheel</Dependency>
|
||||
<Dependency>python3-build</Dependency>
|
||||
<Dependency>python3-installer</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-fasteners</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2024-11-25</Date>
|
||||
<Version>0.19</Version>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
#!/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 python3modules
|
||||
|
||||
def build():
|
||||
python3modules.compile()
|
||||
|
||||
def install():
|
||||
python3modules.install()
|
||||
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-pyjwt</Name>
|
||||
<Homepage>https://github.com/jpadilla/pyjwt</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<Summary>JSON Web Token implementation in Python.</Summary>
|
||||
<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>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-wheel</Dependency>
|
||||
<Dependency>python3-build</Dependency>
|
||||
<Dependency>python3-installer</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-pyjwt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-cryptography</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2024-11-25</Date>
|
||||
<Version>2.10.0</Version>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user