dspy, libpanel new package
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 shelltools
|
||||
from pisi.actionsapi import mesontools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
mesontools.configure()
|
||||
|
||||
def build():
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
mesontools.install()
|
||||
|
||||
pisitools.dodoc("COPYING*", "NEWS")
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dspy</Name>
|
||||
<Homepage>https://gitlab.gnome.org/GNOME/d-spy</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>It's like d-feet, but written in C and blisteringly fast. Also comes with a library for IDE integration.</Summary>
|
||||
<Icon>dspy</Icon>
|
||||
<Description>D-feet gibi ama C ile yazılmış ve inanılmaz hızlı. Ayrıca IDE entegrasyonu için bir kütüphane ile birlikte gelir.</Description>
|
||||
<Archive sha1sum="f493201cd6ffb92e39c550218a70bb659e454131" type="tarbz2">https://gitlab.gnome.org/GNOME/d-spy/-/archive/1.4.0/d-spy-1.4.0.tar.bz2</Archive>
|
||||
<!-- <Archive sha1sum="d6dc12bc1ca40fa3940ce253dd44731c966fcf02" type="tarxz">https://download.gnome.org/sources/dspy/1.2/dspy-1.2.1.tar.xz</Archive> -->
|
||||
<BuildDependencies>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>gtk4-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libadwaita-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>dspy.patch</Patch>
|
||||
<Patch level="1">dspy.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>dspy</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk4</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libadwaita</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="icons">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/appdata</Path>
|
||||
<Path fileType="data">/usr/share/glib-2.0</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>dspy-devel</Name>
|
||||
<Summary>Development files for dspy</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk4-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libadwaita-devel</Dependency>
|
||||
<Dependency release="current">dspy</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-09-22</Date>
|
||||
<Version>1.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>dspy</Name>
|
||||
<Summary xml:lang="tr">It's like d-feet, but written in C and blisteringly fast. Also comes with a library for IDE integration.</Summary>
|
||||
<Description xml:lang="tr">D-feet gibi ama C ile yazılmış ve inanılmaz hızlı. Ayrıca IDE entegrasyonu için bir kütüphane ile birlikte gelir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -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 shelltools
|
||||
from pisi.actionsapi import mesontools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
mesontools.configure()
|
||||
|
||||
def build():
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
mesontools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README*")
|
||||
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libpanel</Name>
|
||||
<Homepage>https://gitlab.gnome.org/GNOME/libpanel</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Libpanel helps you create IDE-like applications using GTK 4 and libadwaita.</Summary>
|
||||
<Icon>libpanel</Icon>
|
||||
<Description>Libpanel helps you create IDE-like applications using GTK 4 and libadwaita.</Description>
|
||||
<Archive sha1sum="3b7bedb249c8e4a6ceba7f86c75213b9c7b1cb87" type="tarxz">https://download.gnome.org/sources/libpanel/1.0/libpanel-1.0.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>gtk4-devel</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>graphene-devel</Dependency>
|
||||
<Dependency>libadwaita-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>libpanel.patch</Patch>
|
||||
<Patch level="1">libpanel.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libpanel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk4</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>graphene</Dependency>
|
||||
<Dependency>libadwaita</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/vala</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="icons">/usr/share/icons</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libpanel-devel</Name>
|
||||
<Summary>Development files for libpanel</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libpanel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libpanel-docs</Name>
|
||||
<Summary>Development files for libpanel</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk4-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency release="current">libpanel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/doc/panel-1.0</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-09-22</Date>
|
||||
<Version>1.0.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>libpanel</Name>
|
||||
<Summary xml:lang="tr">Libpanel helps you create IDE-like applications using GTK 4 and libadwaita.</Summary>
|
||||
<Description xml:lang="tr">Libpanel helps you create IDE-like applications using GTK 4 and libadwaita.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user