Merge pull request #18170 from 4fury-c3440d8-2/upwork
picard rebuild discid.
This commit is contained in:
@@ -26,8 +26,8 @@
|
|||||||
<Dependency>libdiscid</Dependency>
|
<Dependency>libdiscid</Dependency>
|
||||||
<Dependency>python3-qt5</Dependency>
|
<Dependency>python3-qt5</Dependency>
|
||||||
<Dependency>musicbrainz5</Dependency>
|
<Dependency>musicbrainz5</Dependency>
|
||||||
<Dependency>python-discid</Dependency>
|
|
||||||
<Dependency>python3-pyjwt</Dependency>
|
<Dependency>python3-pyjwt</Dependency>
|
||||||
|
<Dependency>python3-discid</Dependency>
|
||||||
<Dependency>libchromaprint</Dependency>
|
<Dependency>libchromaprint</Dependency>
|
||||||
<Dependency>python3-mutagen</Dependency>
|
<Dependency>python3-mutagen</Dependency>
|
||||||
<Dependency>python3-dateutil</Dependency>
|
<Dependency>python3-dateutil</Dependency>
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
#!/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
|
|
||||||
|
|
||||||
from pisi.actionsapi import pythonmodules
|
|
||||||
from pisi.actionsapi import pisitools
|
|
||||||
|
|
||||||
def build():
|
|
||||||
pythonmodules.compile(pyVer="3")
|
|
||||||
|
|
||||||
def install():
|
|
||||||
pythonmodules.install(pyVer="3")
|
|
||||||
pisitools.dodoc("README.rst", "COPYING")
|
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
#!/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
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def build():
|
||||||
|
python3modules.compile()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
python3modules.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING", "COPYING.LESSER")
|
||||||
+20
-24
@@ -2,7 +2,7 @@
|
|||||||
<!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>python-discid</Name>
|
<Name>python3-discid</Name>
|
||||||
<Homepage>https://python-discid.readthedocs.org/</Homepage>
|
<Homepage>https://python-discid.readthedocs.org/</Homepage>
|
||||||
<Packager>
|
<Packager>
|
||||||
<Name>Kamil Atlı</Name>
|
<Name>Kamil Atlı</Name>
|
||||||
@@ -13,44 +13,40 @@
|
|||||||
<IsA>library</IsA>
|
<IsA>library</IsA>
|
||||||
<Summary>Python binding of MusicBrainz libdiscid</Summary>
|
<Summary>Python binding of MusicBrainz libdiscid</Summary>
|
||||||
<Description>The main purpose is the calculation of an identifier for audio discs (Disc ID) to use for the MusicBrainz database. Additionally the disc MCN and track ISRCs can be extracted.</Description>
|
<Description>The main purpose is the calculation of an identifier for audio discs (Disc ID) to use for the MusicBrainz database. Additionally the disc MCN and track ISRCs can be extracted.</Description>
|
||||||
<Archive sha1sum="bbfc38aa8da74314127c952fb1cae63a539ab891" type="targz">https://github.com/JonnyJD/python-discid/archive/v1.2.0.tar.gz</Archive>
|
<Archive sha1sum="e40775afb32053cbc934598f7ebd77c04e5b94eb" type="targz">https://files.pythonhosted.org/packages/source/d/discid/discid-1.3.0.tar.gz</Archive>
|
||||||
<BuildDependencies>
|
<BuildDependencies>
|
||||||
<Dependency>libdiscid-devel</Dependency>
|
|
||||||
<Dependency>python3-devel</Dependency>
|
<Dependency>python3-devel</Dependency>
|
||||||
|
<Dependency>python3-build</Dependency>
|
||||||
|
<Dependency>python3-wheel</Dependency>
|
||||||
|
<Dependency>libdiscid-devel</Dependency>
|
||||||
|
<Dependency>python3-installer</Dependency>
|
||||||
|
<Dependency>python3-setuptools</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
</Source>
|
</Source>
|
||||||
|
|
||||||
<Package>
|
<Package>
|
||||||
<Name>python-discid</Name>
|
<Name>python3-discid</Name>
|
||||||
<Summary>Python Classes Without Boilerplate</Summary>
|
|
||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency>python3</Dependency>
|
<Dependency>python3</Dependency>
|
||||||
|
<Dependency>libdiscid</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="library">/usr/lib/python3*</Path>
|
<Path fileType="library">/usr/lib</Path>
|
||||||
<Path fileType="doc">/usr/share/doc/python-discid</Path>
|
<Path fileType="data">/usr/share</Path>
|
||||||
</Files>
|
</Files>
|
||||||
|
<Conflicts>
|
||||||
|
<Package>python-discid</Package>
|
||||||
|
</Conflicts>
|
||||||
|
<Replaces>
|
||||||
|
<Package>python-discid</Package>
|
||||||
|
</Replaces>
|
||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<History>
|
<History>
|
||||||
<Update release="3">
|
|
||||||
<Date>2023-10-17</Date>
|
|
||||||
<Version>1.2.0</Version>
|
|
||||||
<Comment>Rebuild</Comment>
|
|
||||||
<Name>Mustafa Cinasal</Name>
|
|
||||||
<Email>muscnsl@gmail.com</Email>
|
|
||||||
</Update>
|
|
||||||
<Update release="2">
|
|
||||||
<Date>2021-10-24</Date>
|
|
||||||
<Version>1.2.0</Version>
|
|
||||||
<Comment>Rebuild</Comment>
|
|
||||||
<Name>Mustafa Cinasal</Name>
|
|
||||||
<Email>muscnsl@gmail.com</Email>
|
|
||||||
</Update>
|
|
||||||
<Update release="1">
|
<Update release="1">
|
||||||
<Date>2020-05-11</Date>
|
<Date>2026-02-15</Date>
|
||||||
<Version>1.2.0</Version>
|
<Version>1.3.0</Version>
|
||||||
<Comment>First release</Comment>
|
<Comment>First release.</Comment>
|
||||||
<Name>Kamil Atlı</Name>
|
<Name>Kamil Atlı</Name>
|
||||||
<Email>suvari@pisilinux.org</Email>
|
<Email>suvari@pisilinux.org</Email>
|
||||||
</Update>
|
</Update>
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
<PISI>
|
<PISI>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>python-discid</Name>
|
<Name>python3-discid</Name>
|
||||||
<Summary xml:lang="tr">MusicBrainz libdiscid'in Python bağlanması</Summary>
|
<Summary xml:lang="tr">MusicBrainz libdiscid'in Python bağlanması</Summary>
|
||||||
<Description xml:lang="tr">Temel amaç, MusicBrainz veritabanı için kullanılacak ses diskleri (Disk Kimliği) için bir tanımlayıcının hesaplanmasıdır. Ek olarak, disk MCN ve iz ISRC'leri çıkarılabilir.</Description>
|
<Description xml:lang="tr">Temel amaç, MusicBrainz veritabanı için kullanılacak ses diskleri (Disk Kimliği) için bir tanımlayıcının hesaplanmasıdır. Ek olarak, disk MCN ve iz ISRC'leri çıkarılabilir.</Description>
|
||||||
</Source>
|
</Source>
|
||||||
Reference in New Issue
Block a user