+237757
-237594
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
fec361d9cbd10ae509b9193024e3427d60c7db57
|
||||
f29ab3bc38e1b8a3ed673bec45680674e5426dd1
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
9a90c474cc340ea268459ac735383ce002bd2819
|
||||
8f7eaa2e02c222ba61d0a348b234e8851c7ad825
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import mesontools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
mesontools.configure()
|
||||
|
||||
def build():
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
mesontools.install()
|
||||
|
||||
#shelltools.cd("..")
|
||||
pisitools.dodoc("LICENSE", "NEWS", "README*")
|
||||
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libxmlb</Name>
|
||||
<Homepage>https://github.com/hughsie/libxmlb</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library to help create and query binary XML blobs</Summary>
|
||||
<Description>A library to help create and query binary XML blobs</Description>
|
||||
<Archive sha1sum="e5ee3779a5025d2130859015b12eead2b407a9e3" type="tarxz">https://people.freedesktop.org/~hughsient/releases/libxmlb-0.1.15.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>docbook-xsl</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>shared-mime-info</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libxmlb</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="library">/usr/libexec</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libxmlb-devel</Name>
|
||||
<Summary>Development files for libxmlb</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libxmlb</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-04-02</Date>
|
||||
<Version>0.1.15</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>libxmlb</Name>
|
||||
<Summary xml:lang="tr">A library to help create and query binary XML blobs</Summary>
|
||||
<Description xml:lang="tr">A library to help create and query binary XML blobs</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--with-tmpfilesdir=/usr/lib/tmpfiles.d \
|
||||
--enable-static=no \
|
||||
--with-udevrulesprefix=60- \
|
||||
--with-sysusersdir=/usr/lib/sysusers.d")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "CHANGELOG*", "LICENSE", "README*")
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>tpm2-tss</Name>
|
||||
<Homepage>https://github.com/tpm2-software/tpm2-tss</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Implementation of the TCG Trusted Platform Module 2.0 Software Stack (TSS2)</Summary>
|
||||
<Description>Implementation of the TCG Trusted Platform Module 2.0 Software Stack (TSS2)</Description>
|
||||
<Archive sha1sum="15eb2f328950c72846f00be9d766f7755645ad25" type="targz">https://github.com/tpm2-software/tpm2-tss/releases/download/2.4.0/tpm2-tss-2.4.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>iproute2</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>json-c-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>tpm2-tss</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>json-c</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>tpm2-tss-devel</Name>
|
||||
<Summary>Development files for tpm2-tss</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">tpm2-tss</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>json-c-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-04-02</Date>
|
||||
<Version>2.4.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>tpm2-tss</Name>
|
||||
<Summary xml:lang="tr">Implementation of the TCG Trusted Platform Module 2.0 Software Stack (TSS2)</Summary>
|
||||
<Description xml:lang="tr">Implementation of the TCG Trusted Platform Module 2.0 Software Stack (TSS2)</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user