Merge pull request #11637 from Rmys/master
python3-setuptools-rust new package
This commit is contained in:
@@ -308777,6 +308777,7 @@ components such as the Settings and gnome-shell.</Description>
|
|||||||
<Dependency>python3-setuptools</Dependency>
|
<Dependency>python3-setuptools</Dependency>
|
||||||
<Dependency>python3-sphinx</Dependency>
|
<Dependency>python3-sphinx</Dependency>
|
||||||
<Dependency>python3-sphinx_rtd_theme</Dependency>
|
<Dependency>python3-sphinx_rtd_theme</Dependency>
|
||||||
|
<Dependency>python3-setuptools-rust</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
<SourceURI>programming/language/python3/python3-cryptography/pspec.xml</SourceURI>
|
<SourceURI>programming/language/python3/python3-cryptography/pspec.xml</SourceURI>
|
||||||
</Source>
|
</Source>
|
||||||
@@ -310931,7 +310932,10 @@ components such as the Settings and gnome-shell.</Description>
|
|||||||
<Package>
|
<Package>
|
||||||
<Name>python3-setuptools-rust</Name>
|
<Name>python3-setuptools-rust</Name>
|
||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
|
<Dependency>rust</Dependency>
|
||||||
<Dependency>python3</Dependency>
|
<Dependency>python3</Dependency>
|
||||||
|
<Dependency>python3-semanticversion</Dependency>
|
||||||
|
<Dependency>python3-typing_extensions</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="library">/usr/lib</Path>
|
<Path fileType="library">/usr/lib</Path>
|
||||||
@@ -315845,6 +315849,49 @@ components such as the Settings and gnome-shell.</Description>
|
|||||||
</Update>
|
</Update>
|
||||||
</History>
|
</History>
|
||||||
</SpecFile>
|
</SpecFile>
|
||||||
|
<SpecFile>
|
||||||
|
<Source>
|
||||||
|
<Name>python3-semanticversion</Name>
|
||||||
|
<Homepage>https://github.com/rbarrois/python-semanticversion</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>BSD</License>
|
||||||
|
<IsA>app</IsA>
|
||||||
|
<PartOf>programming.language.python3</PartOf>
|
||||||
|
<Summary xml:lang="en">A library implementing the 'SemVer' scheme.</Summary>
|
||||||
|
<Summary xml:lang="tr">A library implementing the 'SemVer' scheme.</Summary>
|
||||||
|
<Description xml:lang="en">A library implementing the 'SemVer' scheme.</Description>
|
||||||
|
<Description xml:lang="tr">A library implementing the 'SemVer' scheme.</Description>
|
||||||
|
<Icon>python3-semanticversion</Icon>
|
||||||
|
<Archive type="targz" sha1sum="ab1c55dead22473b0beaa76d3eb790f1abdb4381" name="2.10.0.tar.gz">https://github.com/rbarrois/python-semanticversion/archive/refs/tags/2.10.0.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>python3-devel</Dependency>
|
||||||
|
<Dependency>python3-setuptools</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<SourceURI>programming/language/python3/python3-semanticversion/pspec.xml</SourceURI>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>python3-semanticversion</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>python3</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2022-12-13</Date>
|
||||||
|
<Version>2.10.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</SpecFile>
|
||||||
<SpecFile>
|
<SpecFile>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>python3-PLY</Name>
|
<Name>python3-PLY</Name>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
6ec356d53f4cc7e4b4167c038d8fa029fe0baa1f
|
8e8f796ea071a75804a645bea1590a54c1691f50
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
966d30f1ea3551be5f6ea41290f38d232212a7f6
|
5bc75ea4bb22105252b3444db14c74de2d572d9b
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env 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("AUTHORS", "BUGS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>python3-semanticversion</Name>
|
||||||
|
<Homepage>https://github.com/rbarrois/python-semanticversion</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>BSD</License>
|
||||||
|
<IsA>app</IsA>
|
||||||
|
<Summary>A library implementing the 'SemVer' scheme.</Summary>
|
||||||
|
<Icon>python3-semanticversion</Icon>
|
||||||
|
<Description>A library implementing the 'SemVer' scheme.</Description>
|
||||||
|
<Archive sha1sum="ab1c55dead22473b0beaa76d3eb790f1abdb4381" type="targz">https://github.com/rbarrois/python-semanticversion/archive/refs/tags/2.10.0.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>python3-devel</Dependency>
|
||||||
|
<Dependency>python3-setuptools</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<!--
|
||||||
|
<Patches>
|
||||||
|
<Patch>python3-semanticversion.patch</Patch>
|
||||||
|
<Patch level="1">python3-semanticversion.patch</Patch>
|
||||||
|
</Patches>
|
||||||
|
-->
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>python3-semanticversion</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>python3</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2022-12-13</Date>
|
||||||
|
<Version>2.10.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>python3-semanticversion</Name>
|
||||||
|
<Summary xml:lang="tr">A library implementing the 'SemVer' scheme.</Summary>
|
||||||
|
<Description xml:lang="tr">A library implementing the 'SemVer' scheme.</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user