latte-dock:First release

This commit is contained in:
Rmys
2018-11-03 12:57:27 +03:00
parent 69af12d9b3
commit a9acc66299
13 changed files with 426 additions and 140 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/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 get
#def setup():
#autotools.configure()
def build():
shelltools.system("cargo build --release")
def check():
shelltools.system("cargo test --release")
def install():
pisitools.dobin("target/release/cbindgen")
pisitools.dodoc("README*")
+42
View File
@@ -0,0 +1,42 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cbindgen</Name>
<Homepage>https://github.com/eqrion/cbindgen</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MPL2</License>
<IsA>library</IsA>
<Summary>A tool for generating C bindings to Rust code</Summary>
<Description>Rust koduna C bağlamaları oluşturmak için bir araç</Description>
<Archive sha1sum="90c1d29ede3a464085bd0d1d8ca142095c4886b7" type="targz">https://github.com/eqrion/cbindgen/archive/v0.6.6.tar.gz</Archive>
<BuildDependencies>
<Dependency>rust</Dependency>
<Dependency>llvm</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>cbindgen</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-10-29</Date>
<Version>0.6.6</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>cbindgen</Name>
<Summary xml:lang="tr">A tool for generating C bindings to Rust code</Summary>
<Description xml:lang="tr">Rust koduna C bağlamaları oluşturmak için bir araç</Description>
</Source>
</PISI>
+17
View File
@@ -0,0 +1,17 @@
#!/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 build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s prefix=/usr" % get.installDIR())
pisitools.dodoc("AUTHORS", "CONT*", "README")
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>re2</Name>
<Homepage>https://github.com/google/re2</Homepage>
<Packager>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>Fast, safe, thread-friendly regular expression engine</Summary>
<Description>Fast, safe, thread-friendly regular expression engine</Description>
<Archive sha1sum="a32402a70750d2da04fa772504e0180bdd9d6708" type="targz">https://github.com/google/re2/archive/2018-08-01.tar.gz</Archive>
<BuildDependencies>
</BuildDependencies>
</Source>
<Package>
<Name>re2</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>re2-devel</Name>
<Summary>Development files for re2</Summary>
<RuntimeDependencies>
<Dependency release="current">re2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-09-19</Date>
<Version>20180801</Version>
<Comment>First release</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-05-21</Date>
<Version>20180401</Version>
<Comment>First release</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>re2</Name>
<Summary xml:lang="tr">Fast, safe, thread-friendly regular expression engine</Summary>
<Description xml:lang="tr">Fast, safe, thread-friendly regular expression engine</Description>
</Source>
</PISI>