pyparted:ver.bump

This commit is contained in:
blue-devil
2020-02-13 00:19:13 +03:00
parent 84db9b6e1f
commit 8cd5f5b256
3 changed files with 23 additions and 11 deletions
@@ -4,12 +4,16 @@
# 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 http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools from pisi.actionsapi import pythonmodules
from pisi.actionsapi import get from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def build(): def build():
# fix unused direct dependency analysis
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
autotools.make() autotools.make()
pythonmodules.compile()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) pythonmodules.install()
+14 -6
View File
@@ -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>pyparted</Name> <Name>pyparted</Name>
@@ -8,32 +8,40 @@
<Name>PisiLinux Community</Name> <Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email> <Email>admins@pisilinux.org</Email>
</Packager> </Packager>
<PartOf>programming.language.python</PartOf>
<License>GPLv2+</License> <License>GPLv2+</License>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Python bindings for parted</Summary> <Summary>Python bindings for parted</Summary>
<Description>pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them.</Description> <Description>pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them.</Description>
<Archive sha1sum="02dd30e8d34dbabd6e39d44cd1ae60a60dd6657a" type="targz">https://github.com/rhinstaller/pyparted/archive/v3.11.2.tar.gz</Archive> <Archive sha1sum="4d2d5e0a765422f3b74548e5efb9d62a9259aacc" type="targz">https://github.com/dcantrell/pyparted/archive/v3.11.4.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency versionFrom="3.2">parted-devel</Dependency>
<Dependency>python-decorator</Dependency> <Dependency>python-decorator</Dependency>
<Dependency>python-devel</Dependency> <Dependency>python-devel</Dependency>
<Dependency versionFrom="3.2">parted-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
<Package> <Package>
<Name>pyparted</Name> <Name>pyparted</Name>
<Summary>Python bindings for parted</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>python-decorator</Dependency> <Dependency>python-decorator</Dependency>
<Dependency>parted</Dependency> <Dependency>parted</Dependency>
<Dependency>python</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/pyparted</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="8">
<Date>2020-02-12</Date>
<Version>3.11.4</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="7"> <Update release="7">
<Date>2019-10-17</Date> <Date>2019-10-17</Date>
<Version>3.11.2</Version> <Version>3.11.2</Version>