hwlock:first rel

This commit is contained in:
blue-devil
2020-05-23 01:08:46 +03:00
parent 8ce5e344ec
commit 5c48b15c26
3 changed files with 112 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
#!/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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
autotools.autoreconf("-vif")
# suppress compiler warnings
pisitools.cflags.add("-Wno-unused-result")
autotools.configure("--sbindir=/usr/bin \
--enable-plugins")
#pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
#pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
#pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING","README*")
+65
View File
@@ -0,0 +1,65 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>hwloc</Name>
<Homepage>https://www.open-mpi.org/projects/hwloc/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>harware.misc</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>Portable Hardware Locality (hwloc)</Summary>
<Description>The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs.</Description>
<Archive sha1sum="1b87ff3820b28e718dfdca626a1d27521ea613f6" type="tarbz2">https://download.open-mpi.org/release/hwloc/v2.2/hwloc-2.2.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>cairo-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>numactl-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>hwloc</Name>
<Summary>Portable Hardware Locality (hwloc)</Summary>
<RuntimeDependencies>
<Dependency>cairo</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>numactl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/hwloc</Path>
<Path fileType="data">/usr/share/applications</Path>
</Files>
</Package>
<Package>
<Name>hwloc-devel</Name>
<Summary>Development files for hwloc</Summary>
<RuntimeDependencies>
<Dependency release="current">hwloc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-05-22</Date>
<Version>2.2.0</Version>
<Comment>First Pisi Release</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>hwloc</Name>
<Summary xml:lang="tr">Hiyerarşik mimarilerin taşınabilir soyutlama kitaplığı</Summary>
<Description xml:lang="tr">hwlock, hiyerarşik mimarilerin taşınabilir soyutlama kitaplığı sunar.</Description>
</Source>
<Package>
<Name>hwloc-devel</Name>
<Summary xml:lang="tr">hwloc için geliştirme dosyaları</Summary>
<Description xml:lang="tr">hwloc-devel, hwloc için geliştirme dosyalarını içerir.</Description>
</Package>
</PISI>