python3-PyYAML:version bump
This commit is contained in:
@@ -5,15 +5,21 @@
|
|||||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
from pisi.actionsapi import pythonmodules
|
from pisi.actionsapi import pythonmodules
|
||||||
|
from pisi.actionsapi import shelltools
|
||||||
from pisi.actionsapi import pisitools
|
from pisi.actionsapi import pisitools
|
||||||
from pisi.actionsapi import get
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
WorkDir = "PyYAML-%s" % get.srcVERSION()
|
WorkDir = "PyYAML-%s" % get.srcVERSION()
|
||||||
|
|
||||||
def build():
|
def build():
|
||||||
|
pisitools.cflags.add("-Wno-pointer-sign -Wno-incompatible-pointer-types -Wno-sign-compare -Wno-discarded-qualifiers")
|
||||||
|
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread -Wl,-O1 -Wl,-z,relro -Wl,--hash-style=gnu -Wl,--as-needed -Wl,--sort-common")
|
||||||
pythonmodules.compile()
|
pythonmodules.compile()
|
||||||
|
|
||||||
|
def check():
|
||||||
|
pythonmodules.compile("test")
|
||||||
|
|
||||||
def install():
|
def install():
|
||||||
pythonmodules.install()
|
pythonmodules.install()
|
||||||
|
|
||||||
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "examples")
|
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "examples")
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
<PISI>
|
<PISI>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>python-PyYAML</Name>
|
<Name>python-PyYAML</Name>
|
||||||
@@ -8,11 +8,12 @@
|
|||||||
<Name>PisiLinux Community</Name>
|
<Name>PisiLinux Community</Name>
|
||||||
<Email>admins@pisilinux.org</Email>
|
<Email>admins@pisilinux.org</Email>
|
||||||
</Packager>
|
</Packager>
|
||||||
<License>GPLv2</License>
|
<License>MIT</License>
|
||||||
|
<PartOf>programming.language.python</PartOf>
|
||||||
<IsA>library</IsA>
|
<IsA>library</IsA>
|
||||||
<Summary>The next generation YAML parser and emitter for Python</Summary>
|
<Summary>The next generation YAML parser and emitter for Python</Summary>
|
||||||
<Description>python-pyyaml is the next generation YAML parser and emitter for Python.</Description>
|
<Description>python-pyyaml is the next generation YAML parser and emitter for Python.</Description>
|
||||||
<Archive sha1sum="2ffa797e9ae37c7d10ef9bf5dd708d2b2a953de3" type="targz">http://pyyaml.org/download/pyyaml/PyYAML-5.1.2.tar.gz</Archive>
|
<Archive sha1sum="d578323401abc8b3b47ff9d6257e5eef31798836" type="targz">https://pyyaml.org/download/pyyaml/PyYAML-5.3.tar.gz</Archive>
|
||||||
<BuildDependencies>
|
<BuildDependencies>
|
||||||
<Dependency versionFrom="0.2.2">libyaml-devel</Dependency>
|
<Dependency versionFrom="0.2.2">libyaml-devel</Dependency>
|
||||||
<Dependency>python-devel</Dependency>
|
<Dependency>python-devel</Dependency>
|
||||||
@@ -21,17 +22,31 @@
|
|||||||
|
|
||||||
<Package>
|
<Package>
|
||||||
<Name>python-PyYAML</Name>
|
<Name>python-PyYAML</Name>
|
||||||
|
<Summary>The next generation YAML parser and emitter for Python</Summary>
|
||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency>python</Dependency>
|
|
||||||
<Dependency>libyaml</Dependency>
|
<Dependency>libyaml</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="library">/usr/lib</Path>
|
<Path fileType="library">/usr/lib/python2*</Path>
|
||||||
<Path fileType="doc">/usr/share/doc</Path>
|
<Path fileType="doc">/usr/share/doc/python-PyYAML</Path>
|
||||||
</Files>
|
</Files>
|
||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<History>
|
<History>
|
||||||
|
<Update release="6">
|
||||||
|
<Date>2020-01-11</Date>
|
||||||
|
<Version>5.3</Version>
|
||||||
|
<Comment>Version bump</Comment>
|
||||||
|
<Name>Blue Devil</Name>
|
||||||
|
<Email>bluedevil@sctzine.com</Email>
|
||||||
|
</Update>
|
||||||
|
<Update release="5">
|
||||||
|
<Date>2019-01-02</Date>
|
||||||
|
<Version>5.2</Version>
|
||||||
|
<Comment>Version bump and rebuilt w/ gcc9.</Comment>
|
||||||
|
<Name>Blue Devil</Name>
|
||||||
|
<Email>bluedevil@sctzine.com</Email>
|
||||||
|
</Update>
|
||||||
<Update release="6">
|
<Update release="6">
|
||||||
<Date>2019-10-03</Date>
|
<Date>2019-10-03</Date>
|
||||||
<Version>5.1.2</Version>
|
<Version>5.1.2</Version>
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
<?xml version="1.0" ?>
|
<?xml version="1.0" ?>
|
||||||
<PISI>
|
<PISI>
|
||||||
<Source>
|
<Source>
|
||||||
<Name>python-pyyaml</Name>
|
<Name>python-PyYAML</Name>
|
||||||
<Summary xml:lang="tr">Python için yeni nesil YAML ayrıştırıcısı</Summary>
|
<Summary xml:lang="tr">Python için yeni nesil YAML ayrıştırıcısı</Summary>
|
||||||
<Description xml:lang="tr">python-pyyaml python için yeni nesil YAML ayrıştırıcısıdır.</Description>
|
<Description xml:lang="tr">python-pyyaml python için yeni nesil YAML ayrıştırıcısıdır.</Description>
|
||||||
</Source>
|
</Source>
|
||||||
</PISI>
|
</PISI>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user