wayfire bew package

This commit is contained in:
Rmys
2025-12-27 17:20:26 +03:00
parent 62726fab3f
commit 043b4d129a
11 changed files with 679 additions and 86 deletions
+430 -84
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
b248d793f8821bfd3a77e28ced8c9aeb58cac703
f23413e23ce2dce7bbca7f5b54138598aee15338
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
01e3689f0df124c0b78c2cf545016a8201d68ad1
83df9a566b5d220a16bc745256a87b263fc0b90b
+23
View File
@@ -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("--auto-features=disabled")
def build():
mesontools.build()
def install():
mesontools.install()
#shelltools.cd("..")
pisitools.dodoc("LICENSE")
+68
View File
@@ -0,0 +1,68 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>wf-config</Name>
<Homepage>https://github.com/WayfireWM/wf-config</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>A library for managing configuration files, written for wayfire</Summary>
<Description>A library for managing configuration files, written for wayfire</Description>
<Archive sha1sum="d65d52d2093eeab72c1c88dba8321db2a72802fe" type="tarxz">https://github.com/WayfireWM/wf-config/releases/download/v0.10.0/wf-config-0.10.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>glm-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libevdev-devel</Dependency>
<Dependency>wayland-protocols-devel</Dependency>
</BuildDependencies>
-->
<!--
<Patches>
<Patch>wf-config.patch</Patch>
<Patch level="1">wf-config.patch</Patch>
</Patches>
-->
</Source>
<Package>
<Name>wf-config</Name>
<RuntimeDependencies>
<Dependency>glm</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libevdev</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>wf-config-devel</Name>
<Summary>Development files for wf-config</Summary>
<RuntimeDependencies>
<Dependency release="current">wf-config</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2025-12-26</Date>
<Version>0.10.0</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>wf-config</Name>
<Summary xml:lang="tr">A library for managing configuration files, written for wayfire</Summary>
<Description xml:lang="tr">A library for managing configuration files, written for wayfire</Description>
</Source>
</PISI>
+28
View File
@@ -0,0 +1,28 @@
#!/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("-Duse_system_wfconfig=enabled \
-Duse_system_wlroots=enabled \
-Dxwayland=enabled \
--auto-features=disabled")
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.insinto("/usr/share/doc/wayfire/examples", "wayfire.ini")
#shelltools.cd("..")
pisitools.dodoc("LICENSE", "README*")
+12
View File
@@ -0,0 +1,12 @@
diff '--color=auto' -rub a/src/api/wayfire/util.hpp b/src/api/wayfire/util.hpp
--- a/src/api/wayfire/util.hpp 2023-10-07 16:09:32.000000000 +0600
+++ b/src/api/wayfire/util.hpp 2023-10-09 10:43:13.404407663 +0600
@@ -2,7 +2,7 @@
#define WF_UTIL_HPP
#include <algorithm>
-#include <wayland-server.h>
+#include <wayland/wayland-server.h>
#include <functional>
namespace wf
+100
View File
@@ -0,0 +1,100 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>wayfire</Name>
<Homepage>https://github.com/WayfireWM/wayfire</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>3D wayland compositor</Summary>
<Description>3D wayland compositor</Description>
<Archive sha1sum="7df81d5ee4ea67067921f9b4fcffcf2890f8fc6d" type="tarxz">https://github.com/WayfireWM/wayfire/releases/download/v0.10.1/wayfire-0.10.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>libgomp</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>eudev-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>pixman-devel</Dependency>
<Dependency>wayland-devel</Dependency>
<Dependency>wlroots-devel</Dependency>
<Dependency>libevdev-devel</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency>wayland-server</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>nlohmann-json</Dependency>
<Dependency>wf-config-devel</Dependency>
<Dependency>libinput-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>xorg-xwayland-devel</Dependency>
<Dependency>wayland-protocols-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1">wayland.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>wayfire</Name>
<RuntimeDependencies>
<Dependency>cairo</Dependency>
<Dependency>eudev</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libpng</Dependency>
<Dependency>pixman</Dependency>
<Dependency>libgomp</Dependency>
<Dependency>wayland</Dependency>
<Dependency>wlroots</Dependency>
<Dependency>libevdev</Dependency>
<Dependency>libglvnd</Dependency>
<Dependency>wf-config</Dependency>
<Dependency>libinput</Dependency>
<Dependency>libxkbcommon</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>xorg-xwayland</Dependency>
<Dependency>wayland-server</Dependency>
<Dependency>nlohmann-json</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-protocols</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/wayfire</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>wayfire-devel</Name>
<Summary>Development files for wayfire</Summary>
<RuntimeDependencies>
<Dependency release="current">wayfire</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2025-12-26</Date>
<Version>0.10.1</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>wayfire</Name>
<Summary xml:lang="tr">3D wayland compositor</Summary>
<Description xml:lang="tr">3D wayland compositor</Description>
</Source>
</PISI>