Merge pull request #8919 from 4fury-c3440d8/newapp

add missing dependencies.
This commit is contained in:
Kamil ATLI
2021-01-03 17:11:35 +03:00
committed by GitHub
5 changed files with 141 additions and 0 deletions
@@ -0,0 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import pythonmodules
def setup():
pass
def build():
pass
def install():
pythonmodules.install(pyVer = '3')
@@ -0,0 +1,48 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-pyserial</Name>
<Homepage>https://pyserial.readthedocs.io/en/latest/shortintro.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>BSD-3-Clause</License>
<IsA>library</IsA>
<PartOf>programming.language.python3</PartOf>
<Summary>This module encapsulates the access for the serial port.</Summary>
<Description>This module encapsulates the access for the serial port. It provides backends for Python running on Windows, OSX, Linux, BSD (possibly any POSIX compliant system) and IronPython. The module named “serial” automatically selects the appropriate backend.</Description>
<Archive sha1sum="8709dd72730f6d097fc2e039bc0e264dc1c9341a" type="targz">
https://files.pythonhosted.org/packages/source/p/pyserial/pyserial-3.5.tar.gz
</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-pyserial</Name>
<RuntimeDependencies>
<Dependency>python3</Dependency>
<Dependency>python3-urllib3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-01-03</Date>
<Version>3.5</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</PISI>
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import cmaketools, pisitools, get
def setup():
cmaketools.configure()
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("CONTRIBUTORS", "README.md")
+55
View File
@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libsocket</Name>
<Homepage>https://github.com/dermesser/libsocket</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<PartOf>programming.library</PartOf>
<Summary>libsocket is a library written in C for the purpose of simplifying the usage of AF_INET/AF_INET6 (internet domain) and AF_UNIX (unix domain) sockets.</Summary>
<Description>libsocket is a library written in C for the purpose of simplifying the usage of AF_INET/AF_INET6 (internet domain) and AF_UNIX (unix domain) sockets. libsocket++ is an object-oriented wrapper around libsocket.</Description>
<Archive sha1sum="3dc272e01830357c64af888bb084be87493ef795" type="targz">
https://github.com/dermesser/libsocket/archive/v2.5.0.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libsocket</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libsocket-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libsocket</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-12-22</Date>
<Version>2.5.0</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</PISI>
+2
View File
@@ -27,6 +27,7 @@
<Dependency>libxslt-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>libsocket-devel</Dependency>
<Dependency>bluez-libs-devel</Dependency>
<Dependency>python3-pyserial</Dependency>
</BuildDependencies>
@@ -43,6 +44,7 @@
<Dependency>libgcc</Dependency>
<Dependency>libusb</Dependency>
<Dependency>ncurses</Dependency>
<Dependency>libsocket</Dependency>
<Dependency>bluez-libs</Dependency>
<Dependency>python3-pyserial</Dependency>
</RuntimeDependencies>