Merge pull request #11891 from suvari/master
new packages: gtkspellmm, gimagereader-qt, python-typing_extensions, …
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#!/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("--disable-static")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gtkspellmm</Name>
|
||||
<Homepage>http://gtkspell.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Icon>gtkspellmm</Icon>
|
||||
<Summary>C++ binding for gtkspell</Summary>
|
||||
<Description>C++ binding for gtkspell</Description>
|
||||
<Archive sha1sum="a4e0dea595575ad428ae051df4587a13bfc9eba4" type="tarxz">mirrors://sourceforge/gtkspell/gtkspellmm/gtkspellmm-3.0.5.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>glibmm-devel</Dependency>
|
||||
<Dependency>gtkmm3-devel</Dependency>
|
||||
<Dependency>gtkspell3-devel</Dependency>
|
||||
<Dependency>libsigc++-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gtkspellmm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>glibmm</Dependency>
|
||||
<Dependency>gtkmm3</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>gtkspell3</Dependency>
|
||||
<Dependency>libsigc++</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libgtkspellmm-3.0.so*</Path>
|
||||
<Path fileType="config">/usr/lib/gtkspellmm-3.0</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/devhelp</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>gtkspellmm-devel</Name>
|
||||
<Summary>Development files for gtkspellmm</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glibmm-devel</Dependency>
|
||||
<Dependency>gtkmm3-devel</Dependency>
|
||||
<Dependency>gtkspell3-devel</Dependency>
|
||||
<Dependency release="current">gtkspellmm</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-05-18</Date>
|
||||
<Version>3.0.5</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gtkspellmm</Name>
|
||||
<Summary xml:lang="tr">C++ binding for gtkspell</Summary>
|
||||
<Description xml:lang="tr">C++ binding for gtkspell</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file https://gnu.org/licenses/gpl-3.0.txt.
|
||||
|
||||
from pisi.actionsapi import cmaketools, pisitools, shelltools, get
|
||||
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/usr/lib ", sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
@@ -0,0 +1,97 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gimagereader-qt</Name>
|
||||
<Homepage>https://github.com/manisandro/gImageReader</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>gimagereader</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>A Gtk/Qt front-end to tesseract-ocr.</Summary>
|
||||
<Description>gImageReader is a simple Gtk/Qt front-end to tesseract-ocr.</Description>
|
||||
<Archive sha1sum="fe3594f7d167f31d6cf9f092cdbac4b9abeddbfb" type="tarxz">https://github.com/manisandro/gImageReader/releases/download/v3.4.1/gimagereader-3.4.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>ninja</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>qtspell</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>djvu-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>podofo-devel</Dependency>
|
||||
<Dependency>libzip-devel</Dependency>
|
||||
<Dependency>quazip-devel</Dependency>
|
||||
<Dependency>gtkmm3-devel</Dependency>
|
||||
<Dependency>hunspell-devel</Dependency>
|
||||
<Dependency>enchant2-devel</Dependency>
|
||||
<Dependency>libxmlpp-devel</Dependency>
|
||||
<Dependency>gtkspell3-devel</Dependency>
|
||||
<Dependency>tesseract-devel</Dependency>
|
||||
<Dependency>qt5-imageformats</Dependency>
|
||||
<Dependency>gtkspellmm-devel</Dependency>
|
||||
<Dependency>poppler-qt5-devel</Dependency>
|
||||
<Dependency>poppler-glib-devel</Dependency>
|
||||
<Dependency>sane-backends-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>gtksourceviewmm3-devel</Dependency>
|
||||
<Dependency>python3-pygobject3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--
|
||||
<Patch></Patch>
|
||||
-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gimagereader-qt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>djvu</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>podofo</Dependency>
|
||||
<Dependency>libzip</Dependency>
|
||||
<Dependency>quazip</Dependency>
|
||||
<Dependency>gtkmm3</Dependency>
|
||||
<Dependency>qtspell</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>enchant2</Dependency>
|
||||
<Dependency>libxmlpp</Dependency>
|
||||
<Dependency>hunspell</Dependency>
|
||||
<Dependency>gtkspell3</Dependency>
|
||||
<Dependency>tesseract</Dependency>
|
||||
<Dependency>gtkspellmm</Dependency>
|
||||
<Dependency>poppler-qt5</Dependency>
|
||||
<Dependency>poppler-glib</Dependency>
|
||||
<Dependency>sane-backends</Dependency>
|
||||
<Dependency>hunspell-dict-tr</Dependency>
|
||||
<Dependency>hunspell-dict-en</Dependency>
|
||||
<Dependency>qt5-imageformats</Dependency>
|
||||
<Dependency>gtksourceviewmm3</Dependency>
|
||||
<Dependency>python3-pygobject3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localdata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-05-18</Date>
|
||||
<Version>3.4.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gimagereader</Name>
|
||||
<Summary xml:lang="tr">Tesseract-ocr için bir Gtk/Qt ön ucu.</Summary>
|
||||
<Description xml:lang="tr">gImageReader, tesseract-ocr için basit bir Gtk/Qt ön ucudur.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/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, libtools
|
||||
|
||||
def setup():
|
||||
libtools.gnuconfig_update()
|
||||
autotools.autoreconf("-if")
|
||||
shelltools.system("./autogen.sh")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc("COPYING", "README.md")
|
||||
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>stress</Name>
|
||||
<Homepage>https://github.com/resurrecting-open-source-projects/stress</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<icon>stress</icon>
|
||||
<PartOf>hardware.disk</PartOf>
|
||||
<Summary>Tool to impose load on and stress test a computer system</Summary>
|
||||
<Description>stress is a tool that imposes a configurable amount of CPU, memory, I/O, or disk stress on a POSIX-compliant operating system and reports any errors it detects.</Description>
|
||||
<Archive sha1sum="a095f3800d77a359e14affef98a6f48cc2155af4" type="targz">https://github.com/resurrecting-open-source-projects/stress/releases/download/1.0.7/stress-1.0.7.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>m4</Dependency>
|
||||
<Dependency>gcc</Dependency>
|
||||
<Dependency>make</Dependency>
|
||||
<Dependency>gawk</Dependency>
|
||||
<Dependency>keyutils</Dependency>
|
||||
<Dependency>autoconf</Dependency>
|
||||
<Dependency>automake</Dependency>
|
||||
<Dependency>mpfr-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>stress</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-05-18</Date>
|
||||
<Version>1.0.7</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>stress</Name>
|
||||
<Summary xml:lang="tr">Bir bilgisayar sistemine yük uygulamak ve stres testi yapmak için araç</Summary>
|
||||
<Description xml:lang="tr">stress, POSIX uyumlu bir işletim sistemine yapılandırılabilir miktarda CPU, bellek, G/Ç veya disk stresi uygulayan ve tespit ettiği hataları bildiren bir araçtır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,25 @@
|
||||
#!/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 pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
shelltools.system("python3 setup.py build")
|
||||
|
||||
def check():
|
||||
pass
|
||||
#pythonmodules.run("setup.py test", pyVer="3")
|
||||
#pythonmodules.run("test/run_all_unittests.py",pyVer="3")
|
||||
#pythonmodules.run("test/run_examples_test.py",pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>s-tui</Name>
|
||||
<Homepage>https://github.com/resurrecting-open-source-projects/s-tui</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<icon>s-tui</icon>
|
||||
<PartOf>hardware.disk</PartOf>
|
||||
<Summary>Terminal UI stress test and monitoring tool</Summary>
|
||||
<Description>Stress-Terminal UI, s-tui, monitors CPU temperature, frequency, power and utilization in a graphical way from the terminal.</Description>
|
||||
<Archive sha1sum="4a7354730948af9aade9b4a933991726243c709a" type="targz">https://github.com/amanusk/s-tui/archive/refs/tags/v1.1.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>stress</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-psutil</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>s-tui</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>stress</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>python3-psutil</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/python3.9/site-packages</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-05-17</Date>
|
||||
<Version>1.1.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>s-tui</Name>
|
||||
<Summary xml:lang="tr">Terminal UI stres testi ve izleme aracı</Summary>
|
||||
<Description xml:lang="tr">Stress-Terminal UI, s-tui, CPU sıcaklığını, frekansını, gücünü ve kullanımını terminalden grafiksel olarak izler.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+388351
-388431
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
83505cc6ee53eecee1e57f1acdb64b4339e07cd7
|
||||
746b381f4bfdeddb0d2ffa06a7f857ef94c2130e
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
b064dbc56eb10dfc7e79a4a4bb9ebf12610c2513
|
||||
e4e02d63792977d287b132461ff6bb6e7f9d4662
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/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 pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def build():
|
||||
shelltools.system("python3 -m build --wheel --skip-dependency-check --no-isolation")
|
||||
|
||||
def install():
|
||||
# pythonmodules.install(pyVer="3")
|
||||
shelltools.system("PIP_CONFIG_FILE=/dev/null pip3 install --isolated --root=%s --ignore-installed --no-deps dist/*.whl" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-typing_extensions</Name>
|
||||
<Homepage>http://excess.org/urwid/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Icon>python-typing_extensions</Icon>
|
||||
<Summary>Console user interface library for Python</Summary>
|
||||
<Description>Console user interface library for Python, with many features like UTF-8 support and HTML screenshot.</Description>
|
||||
<Archive sha1sum="aa47bd744fda150a8c407c0572d4d4648f57239c" type="targz">https://github.com/python/typing_extensions/archive/refs/tags/4.5.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>pip3</Dependency>
|
||||
<Dependency>python3-build</Dependency>
|
||||
<Dependency>python3-wheel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-tomli</Dependency>
|
||||
<Dependency>python3-installer</Dependency>
|
||||
<Dependency>python3-flit-core</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-typing_extensions</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-05-18</Date>
|
||||
<Version>4.5.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-urwid</Name>
|
||||
<Summary xml:lang="tr">Konsol kullanıcı arabirimleri için Python kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">UTF-8 desteği ve HTML ekran görüntüsü yakalama gibi ilginç özelliklere sahip, konsol kullanıcı arabirimleri için kullanılan PYthon kütüphanesi.</Description>
|
||||
<Description xml:lang="es">Librería Python para interfaces de usuario en consola, con muchas facilidades como soporte UTF-8 y captura de pantalla HTML.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -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 pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer = "3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer = "3")
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-urwid</Name>
|
||||
<Homepage>http://excess.org/urwid/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<icon>python-urwid</icon>
|
||||
<Summary>Console user interface library for Python</Summary>
|
||||
<Description>Console user interface library for Python, with many features like UTF-8 support and HTML screenshot.</Description>
|
||||
<Archive sha1sum="56f840896e47c753d91acb5f0b267c51cc0eb8bd" type="targz">https://github.com/urwid/urwid/archive/ffbfa07533809a523938d5e342ff7482a12dd5d0/release-ffbfa07533809a523938d5e342ff7482a12dd5d0.2.1.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-wheel</Dependency>
|
||||
<Dependency>python3-build</Dependency>
|
||||
<Dependency>python3-installer</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-urwid</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>python3-wheel</Dependency>
|
||||
<Dependency>python-typing_extensions</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-05-18</Date>
|
||||
<Version>2.1.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-urwid</Name>
|
||||
<Summary xml:lang="tr">Konsol kullanıcı arabirimleri için Python kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">UTF-8 desteği ve HTML ekran görüntüsü yakalama gibi ilginç özelliklere sahip, konsol kullanıcı arabirimleri için kullanılan PYthon kütüphanesi.</Description>
|
||||
<Description xml:lang="es">Librería Python para interfaces de usuario en consola, con muchas facilidades como soporte UTF-8 y captura de pantalla HTML.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user