add intel-tbb Intel Threading Building Blocks Library version bump and check
This commit is contained in:
@@ -6074,6 +6074,89 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>intel-tbb</Name>
|
||||
<Homepage>http://www.threadingbuildingblocks.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>programming.misc</PartOf>
|
||||
<Summary xml:lang="en">Intel Threading Building Blocks Library</Summary>
|
||||
<Summary xml:lang="tr">Intel Threading kitaplığı</Summary>
|
||||
<Description xml:lang="en">Threading Building Blocks (TBB) is a C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance.</Description>
|
||||
<Archive type="targz" sha1sum="5841b61b9c80c23e2f06944c37332e79f0506cec">https://www.threadingbuildingblocks.org/sites/default/files/software_releases/linux/tbb44_20160128oss_lin.tgz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="install.sh" permission="0755" owner="root">install.sh</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<SourceURI>programming/misc/intel-tbb/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>intel-tbb</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>intel-tbb-devel</Name>
|
||||
<Summary xml:lang="en">Development files for intel-tbb</Summary>
|
||||
<Summary xml:lang="tr">intel-tbb için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="6">intel-tbb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2016-03-08</Date>
|
||||
<Version>44_20160128</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-02-20</Date>
|
||||
<Version>4.4_20151115</Version>
|
||||
<Comment>rebuild for buildhost</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-02-20</Date>
|
||||
<Version>4.1_20130613</Version>
|
||||
<Comment>rebuild for buildhost</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-07-06</Date>
|
||||
<Version>4.1_20130613</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-05-01</Date>
|
||||
<Version>3.0_20101215</Version>
|
||||
<Comment>Fixed</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-02-08</Date>
|
||||
<Version>3.0_20101215</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libical</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
de5bc7441b784b2d9445e182cfd222d40f429060
|
||||
f48bdb0eeae754c70f7dd9bdd66d0702ce0c9607
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
3e8f457291fcefae826abea86b08e197bc15718a
|
||||
2ecd2586f846358a7fb0d2d8d3452eed83eb0843
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/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
|
||||
|
||||
WorkDir="tbb%soss" % (get.srcVERSION().replace(".", ""))
|
||||
|
||||
|
||||
def install():
|
||||
shelltools.system("./install.sh %s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("README", "COPYING")
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
DESTDIR=$1
|
||||
|
||||
mkdir -p $DESTDIR/usr/{lib,include}
|
||||
|
||||
pushd build/obj_release
|
||||
for file in libtbb{,malloc}; do
|
||||
install -p -D -m 755 ${file}.so.2 $DESTDIR/usr/lib/
|
||||
ln -s $file.so.2 $DESTDIR/usr/lib/$file.so
|
||||
done
|
||||
popd
|
||||
|
||||
pushd include
|
||||
find tbb -type f -name \*.h -exec \
|
||||
install -p -D -m 644 {} $DESTDIR/usr/include/{} \
|
||||
\;
|
||||
popd
|
||||
|
||||
@@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>intel-tbb</Name>
|
||||
<Homepage>http://www.threadingbuildingblocks.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Intel Threading Building Blocks Library</Summary>
|
||||
<Description>Threading Building Blocks (TBB) is a C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance.</Description>
|
||||
<Archive sha1sum="5841b61b9c80c23e2f06944c37332e79f0506cec" type="targz">https://www.threadingbuildingblocks.org/sites/default/files/software_releases/linux/tbb44_20160128oss_lin.tgz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0755" target="install.sh">install.sh</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>intel-tbb</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>intel-tbb-devel</Name>
|
||||
<Summary>Development files for intel-tbb</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">intel-tbb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2016-03-08</Date>
|
||||
<Version>44_20160128</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-02-20</Date>
|
||||
<Version>4.4_20151115</Version>
|
||||
<Comment>rebuild for buildhost</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-02-20</Date>
|
||||
<Version>4.1_20130613</Version>
|
||||
<Comment>rebuild for buildhost</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-07-06</Date>
|
||||
<Version>4.1_20130613</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-05-01</Date>
|
||||
<Version>3.0_20101215</Version>
|
||||
<Comment>Fixed</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-02-08</Date>
|
||||
<Version>3.0_20101215</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>intel-tbb</Name>
|
||||
<Summary xml:lang="tr">Intel Threading kitaplığı</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>intel-tbb-devel</Name>
|
||||
<Summary xml:lang="tr">intel-tbb için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user