@@ -0,0 +1,18 @@
|
||||
#!/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 autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr --enable-gtk3")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gpicview</Name>
|
||||
<Homepage>https://github.com/lxde/gpicview</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Lightweight image viewer.</Summary>
|
||||
<Description>Lightweight image viewer written by LXDE project.</Description>
|
||||
<Archive sha1sum="8947b369dd32983f4cc4b19277223295b76b372f" type="tarxz">https://github.com/lxde/releases/raw/master/releases/gpicview-0.3.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gpicview</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2025-06-12</Date>
|
||||
<Version>0.3.1</Version>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -14,13 +14,14 @@ i = ''.join([
|
||||
])
|
||||
|
||||
def setup():
|
||||
pisitools.cflags.add("-Wno-deprecated-declarations -Wno-incompatible-pointer-types")
|
||||
autotools.configure(i)
|
||||
autotools.configure(i)
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O2,--as-needed -shared ")
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O2,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README", "TODO")
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
From a94ddc137bcdd88f088a462c488b89080fd6d01f Mon Sep 17 00:00:00 2001
|
||||
From: anteater <65555601+nt8r@users.noreply.github.com>
|
||||
Date: Sun, 23 Oct 2022 20:41:00 +0000
|
||||
Subject: [PATCH] Fix smooth scrolling
|
||||
|
||||
The first hunk is necessary to receive smooth scroll events.
|
||||
The second fixes a visual hang until scrolling ends.
|
||||
---
|
||||
src/gtk/exo/exo-icon-view.c | 5 +++--
|
||||
1 file changed, 3 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/gtk/exo/exo-icon-view.c b/src/gtk/exo/exo-icon-view.c
|
||||
index 3ce98099..9a432620 100644
|
||||
--- a/src/gtk/exo/exo-icon-view.c
|
||||
+++ b/src/gtk/exo/exo-icon-view.c
|
||||
@@ -1601,6 +1601,9 @@ exo_icon_view_realize (GtkWidget *widget)
|
||||
attributes.height = MAX (priv->height, allocation.height);
|
||||
attributes.event_mask = GDK_EXPOSURE_MASK
|
||||
| GDK_SCROLL_MASK
|
||||
+#if GTK_CHECK_VERSION(3, 4, 0)
|
||||
+ | GDK_SMOOTH_SCROLL_MASK
|
||||
+#endif
|
||||
| GDK_POINTER_MOTION_MASK
|
||||
| GDK_BUTTON_PRESS_MASK
|
||||
| GDK_BUTTON_RELEASE_MASK
|
||||
@@ -3413,8 +3416,6 @@ exo_icon_view_adjustment_changed (GtkAdjustment *adjustment,
|
||||
|
||||
if (G_UNLIKELY (icon_view->priv->doing_rubberband))
|
||||
exo_icon_view_update_rubberband (GTK_WIDGET (icon_view));
|
||||
-
|
||||
- gdk_window_process_updates (icon_view->priv->bin_window, TRUE);
|
||||
}
|
||||
}
|
||||
|
||||
+133
-129
@@ -1,138 +1,142 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libfm</Name>
|
||||
<Homepage>https://github.com/lxde/libfm</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Library for file management.</Summary>
|
||||
<Description>libfm is a LXDE library for file management.</Description>
|
||||
<Archive sha1sum="7c5c14dd0615b457687966ce4e55c2d054bf93e1" type="tarxz">
|
||||
mirrors://sourceforge/pcmanfm/libfm-1.3.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>udisks2-devel</Dependency>
|
||||
<Dependency>libexif-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>menu-cache-devel</Dependency>
|
||||
<Dependency>libfm-extra-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">Fix_smooth_scrolling.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>libfm</Name>
|
||||
<Homepage>https://github.com/lxde/libfm</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Library for file management.</Summary>
|
||||
<Description>libfm is a LXDE library for file management.</Description>
|
||||
<Archive sha1sum="8fdefe2f47452e6992c1cc51035e51297c9b96af" type="tarxz">https://github.com/lxde/releases/raw/master/releases/libfm-1.4.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>udisks2-devel</Dependency>
|
||||
<Dependency>libexif-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>menu-cache-devel</Dependency>
|
||||
<Dependency>libfm-extra-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libfm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>udisks2</Dependency>
|
||||
<Dependency>libexif</Dependency>
|
||||
<Dependency>dbus-glib</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>menu-cache</Dependency>
|
||||
<Dependency>libfm-extra</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libfm.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libfm-gtk3.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libfm/modules/</Path>
|
||||
<!-- <Path fileType="library">/usr/lib</Path> -->
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libfm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>udisks2</Dependency>
|
||||
<Dependency>libexif</Dependency>
|
||||
<Dependency>dbus-glib</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>menu-cache</Dependency>
|
||||
<Dependency>libfm-extra</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libfm.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libfm-gtk3.so*</Path>
|
||||
<Path fileType="library">/usr/lib/libfm/modules/</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libfm-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libfm</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libfm-1.0</Path>
|
||||
<Path fileType="header">/usr/include/libfm</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/libfm-gtk3.pc</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/libfm.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libfm-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libfm</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libfm-1.0</Path>
|
||||
<Path fileType="header">/usr/include/libfm</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/libfm-gtk3.pc</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/libfm.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libfm-extra</Name>
|
||||
<Summary>Core library of PCManFM file manager.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libfm-extra.so</Path>
|
||||
<Path fileType="library">/usr/lib/libfm-extra.so.4</Path>
|
||||
<Path fileType="library">/usr/lib/libfm-extra.so.4.1.3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libfm-extra</Name>
|
||||
<Summary>Core library of PCManFM file manager.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libfm-extra.so</Path>
|
||||
<Path fileType="library">/usr/lib/libfm-extra.so.4</Path>
|
||||
<Path fileType="library">/usr/lib/libfm-extra.so.4.1.3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libfm-extra-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency release="current">libfm-extra</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libfm/fm-extra.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm/fm-version.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm/fm-xml-file.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm-1.0/fm-extra.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm-1.0/fm-version.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm-1.0/fm-xml-file.h</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/libfm-extra.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>libfm-extra-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency release="current">libfm-extra</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/libfm/fm-extra.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm/fm-version.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm/fm-xml-file.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm-1.0/fm-extra.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm-1.0/fm-version.h</Path>
|
||||
<Path fileType="header">/usr/include/libfm-1.0/fm-xml-file.h</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/libfm-extra.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2022-11-05</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>Rebuild with gtk+3</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-04-26</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-04-06</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2025-06-12</Date>
|
||||
<Version>1.4.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2022-11-05</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>Rebuild with gtk+3</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2021-04-26</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>version bump.</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-04-06</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-dbus --enable-gtk3")
|
||||
autotools.configure("--enable-dbus --enable-gtk3")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS")
|
||||
pisitools.dodoc("AUTHORS")
|
||||
|
||||
|
||||
@@ -1,70 +1,70 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxappearance</Name>
|
||||
<Homepage>http://wiki.lxde.org/en/LXAppearance</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>A new feature-rich GTK+ theme switcher.</Summary>
|
||||
<Description>LXAppearance is a new GTK+ theme switcher developed for project LXDE.</Description>
|
||||
<Archive sha1sum="1c281756b240694d0262edd9d40041d5b127d552" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxappearance-0.6.3.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>lxappearance</Name>
|
||||
<Homepage>http://wiki.lxde.org/en/LXAppearance</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>A new feature-rich GTK+ theme switcher.</Summary>
|
||||
<Description>LXAppearance is a new GTK+ theme switcher developed for project LXDE.</Description>
|
||||
<Archive sha1sum="1c281756b240694d0262edd9d40041d5b127d552" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxappearance-0.6.3.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxappearance</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxappearance</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lxappearance-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency release="current">lxappearance</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxappearance-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency release="current">lxappearance</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.6.3</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.6.3</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog")
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog")
|
||||
|
||||
|
||||
@@ -1,55 +1,55 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxde-common</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>data</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE Session default configuration files.</Summary>
|
||||
<Description>lxde-common provides LXDE Session default configuration files and nuoveXT2 iconset.</Description>
|
||||
<Archive sha1sum="e54d80b64e6a89ff1f89ced7a826fa4e8bf453ec" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxde-common-0.99.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">config.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>lxde-common</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>data</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE Session default configuration files.</Summary>
|
||||
<Description>lxde-common provides LXDE Session default configuration files and nuoveXT2 iconset.</Description>
|
||||
<Archive sha1sum="e54d80b64e6a89ff1f89ced7a826fa4e8bf453ec" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxde-common-0.99.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">config.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxde-common</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>lxpanel</Dependency>
|
||||
<Dependency>pcmanfm</Dependency>
|
||||
<Dependency>openbox</Dependency>
|
||||
<Dependency>lxsession</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxde-common</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>lxpanel</Dependency>
|
||||
<Dependency>pcmanfm</Dependency>
|
||||
<Dependency>openbox</Dependency>
|
||||
<Dependency>lxsession</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-08-07</Date>
|
||||
<Version>0.99.2</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-08-07</Date>
|
||||
<Version>0.99.2</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/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 autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxde-icon-theme</Name>
|
||||
<Homepage>https://github.com/lxde/lxde-icon-theme</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3</License>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE standard icon theme.</Summary>
|
||||
<Description>LXDE standard icon theme.</Description>
|
||||
<Archive sha1sum="c6a12cb2e3814e200e3c6265e20265821e02696d" type="tarxz">https://github.com/lxde/releases/raw/master/releases/lxde-icon-theme-0.5.2.tar.xz</Archive>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxde-icon-theme</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2025-06-14</Date>
|
||||
<Version>0.5.2</Version>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -7,13 +7,13 @@
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-gtk3")
|
||||
autotools.configure("--enable-gtk3")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "README", "COPYING", "ChangeLog", "NEWS")
|
||||
pisitools.dodoc("AUTHORS", "README", "COPYING", "ChangeLog", "NEWS")
|
||||
|
||||
|
||||
@@ -1,52 +1,52 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxinput</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-3</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE keyboard and mouse configuration tool.</Summary>
|
||||
<Description>lxinput is tool for LXDE keyboard and mouse configuration.</Description>
|
||||
<Archive sha1sum="60db01f00c1ef6f060f7e58e2be0761659470c02" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxinput-0.3.5.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>lxinput</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-3</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE keyboard and mouse configuration tool.</Summary>
|
||||
<Description>lxinput is tool for LXDE keyboard and mouse configuration.</Description>
|
||||
<Archive sha1sum="60db01f00c1ef6f060f7e58e2be0761659470c02" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxinput-0.3.5.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxinput</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxinput</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.3.5</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.3.5</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -6,30 +6,16 @@
|
||||
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
t = ''.join([
|
||||
'netstatus ',
|
||||
'netstat ',
|
||||
'volume ',
|
||||
'deskno ',
|
||||
'kbled ',
|
||||
'batt ',
|
||||
'xkb ',
|
||||
'cpufreq ',
|
||||
'monitors ',
|
||||
'indicator'
|
||||
])
|
||||
|
||||
def setup():
|
||||
pisitools.cflags.add("-fcommon -Wno-deprecated-declarations")
|
||||
autotools.configure("--enable-gtk3 --with-plugins='%s'" % t)
|
||||
autotools.configure("--enable-gtk3")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O2,--as-needed -shared ")
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O2,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "README", "TODO")
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "TODO")
|
||||
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
From 8a408946dfd2e69ae2cb1066c7fa31f8b7ecc445 Mon Sep 17 00:00:00 2001
|
||||
From: Ben Walsh <b@wumpster.com>
|
||||
Date: Mon, 7 Feb 2022 07:02:05 +0000
|
||||
Subject: [PATCH] Correct icon-grid width under GTK3. Fixes Github #29.
|
||||
|
||||
---
|
||||
src/icon-grid.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/icon-grid.c b/src/icon-grid.c
|
||||
index 2177971e..5948fee6 100644
|
||||
--- a/src/icon-grid.c
|
||||
+++ b/src/icon-grid.c
|
||||
@@ -392,7 +392,7 @@ static void panel_icon_grid_get_preferred_width(GtkWidget *widget,
|
||||
}
|
||||
panel_icon_grid_size_request(widget, &requisition);
|
||||
if (minimal_width)
|
||||
- *minimal_width = requisition.width;
|
||||
+ *minimal_width = ig->constrain_width ? 2 : requisition.width;
|
||||
if (natural_width)
|
||||
*natural_width = requisition.width;
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
From 12576de7b83c634437217e23d74954070a1be2d5 Mon Sep 17 00:00:00 2001
|
||||
From: Ben Walsh <b@wumpster.com>
|
||||
Date: Sat, 6 Jun 2020 10:38:15 +0100
|
||||
Subject: [PATCH] Correct panel size under GTK3. Fixes Sourceforge #773.
|
||||
|
||||
---
|
||||
src/panel.c | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/src/panel.c b/src/panel.c
|
||||
index 45188dbe..2b5fc9be 100644
|
||||
--- a/src/panel.c
|
||||
+++ b/src/panel.c
|
||||
@@ -293,6 +293,12 @@ lxpanel_get_preferred_height (GtkWidget *widget,
|
||||
if (natural_height)
|
||||
*natural_height = requisition.height;
|
||||
}
|
||||
+
|
||||
+static GtkSizeRequestMode
|
||||
+lxpanel_get_request_mode (GtkWidget *widget)
|
||||
+{
|
||||
+ return GTK_SIZE_REQUEST_CONSTANT_SIZE;
|
||||
+}
|
||||
#endif
|
||||
|
||||
static void lxpanel_size_allocate(GtkWidget *widget, GtkAllocation *a)
|
||||
@@ -413,6 +419,7 @@ static void lxpanel_class_init(PanelToplevelClass *klass)
|
||||
#if GTK_CHECK_VERSION(3, 0, 0)
|
||||
widget_class->get_preferred_width = lxpanel_get_preferred_width;
|
||||
widget_class->get_preferred_height = lxpanel_get_preferred_height;
|
||||
+ widget_class->get_request_mode = lxpanel_get_request_mode;
|
||||
#else
|
||||
widget_class->size_request = lxpanel_size_request;
|
||||
#endif
|
||||
@@ -1,31 +0,0 @@
|
||||
diff -ru a/plugins/volumealsa/volumealsa.c b/plugins/volumealsa/volumealsa.c
|
||||
--- a/plugins/volumealsa/volumealsa.c 2021-01-29 23:33:27.000000000 +0100
|
||||
+++ b/plugins/volumealsa/volumealsa.c 2021-03-21 13:49:00.124807793 +0100
|
||||
@@ -794,10 +794,25 @@
|
||||
gdouble val = gtk_range_get_value(GTK_RANGE(vol->volume_scale));
|
||||
|
||||
/* Dispatch on scroll direction to update the value. */
|
||||
- if ((evt->direction == GDK_SCROLL_UP) || (evt->direction == GDK_SCROLL_LEFT))
|
||||
+ switch (evt->direction)
|
||||
+ {
|
||||
+ case GDK_SCROLL_UP: ;
|
||||
+ case GDK_SCROLL_LEFT: ;
|
||||
val += 2;
|
||||
- else
|
||||
+ break;
|
||||
+ case GDK_SCROLL_DOWN: ;
|
||||
+ case GDK_SCROLL_RIGHT: ;
|
||||
val -= 2;
|
||||
+ break;
|
||||
+ case GDK_SCROLL_SMOOTH: ;
|
||||
+ gdouble delta_x;
|
||||
+ gdouble delta_y;
|
||||
+ gdk_event_get_scroll_deltas(evt, &delta_x, &delta_y);
|
||||
+ if (delta_y > 0)
|
||||
+ val -= 2;
|
||||
+ else
|
||||
+ val += 2;
|
||||
+ }
|
||||
|
||||
/* Reset the state of the vertical scale. This provokes a "value_changed" event. */
|
||||
gtk_range_set_value(GTK_RANGE(vol->volume_scale), CLAMP((int)val, 0, 100));
|
||||
@@ -1,20 +0,0 @@
|
||||
--- lxpanel-0.10.1/plugins/task-button.c 2021-01-29 23:28:51.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/task-button.c.new 2022-09-08 12:08:46.579475426 +0200
|
||||
@@ -487,6 +487,9 @@ static void task_raise_window(TaskButton
|
||||
if ((tk->desktop != ALL_WORKSPACES) && (tk->desktop != tb->desktop))
|
||||
Xclimsgx(xscreen, RootWindowOfScreen(xscreen), a_NET_CURRENT_DESKTOP, tk->desktop, 0, 0, 0, 0);
|
||||
|
||||
+#if GTK_CHECK_VERSION(3, 0, 0)
|
||||
+ Xclimsgx(xscreen, tk->win, a_NET_ACTIVE_WINDOW, 2, time, 0, 0, 0);
|
||||
+#else
|
||||
/* Raise the window. We can use NET_ACTIVE_WINDOW if the window manager supports it.
|
||||
* Otherwise, do it the old way with XMapRaised and XSetInputFocus. */
|
||||
if (tb->flags.use_net_active)
|
||||
@@ -510,6 +513,7 @@ static void task_raise_window(TaskButton
|
||||
if (attr.map_state == IsViewable)
|
||||
XSetInputFocus(xdisplay, tk->win, RevertToNone, time);
|
||||
}
|
||||
+#endif
|
||||
|
||||
/* Change viewport if needed. */
|
||||
XWindowAttributes xwa;
|
||||
+18
-18
@@ -1,6 +1,6 @@
|
||||
diff -Naurp lxpanel-0.10.1.orig/plugins/batt/batt.c lxpanel-0.10.1/plugins/batt/batt.c
|
||||
--- lxpanel-0.10.1.orig/plugins/batt/batt.c 2019-03-01 00:31:41.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/batt/batt.c 2022-10-14 11:14:57.009987046 +0200
|
||||
--- lxpanel-0.10.1.orig/plugins/batt/batt.c 2019-03-01 00:31:41.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/batt/batt.c 2022-10-14 11:14:57.009987046 +0200
|
||||
@@ -446,6 +446,23 @@ static void updateSizes(lx_battery *b)
|
||||
b->width = b->length;
|
||||
}
|
||||
@@ -37,8 +37,8 @@ diff -Naurp lxpanel-0.10.1.orig/plugins/batt/batt.c lxpanel-0.10.1/plugins/batt/
|
||||
}
|
||||
|
||||
diff -Naurp lxpanel-0.10.1.orig/plugins/launch-button.c lxpanel-0.10.1/plugins/launch-button.c
|
||||
--- lxpanel-0.10.1.orig/plugins/launch-button.c 2019-01-13 22:35:07.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/launch-button.c 2022-10-14 11:14:57.009987046 +0200
|
||||
--- lxpanel-0.10.1.orig/plugins/launch-button.c 2019-01-13 22:35:07.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/launch-button.c 2022-10-14 11:14:57.009987046 +0200
|
||||
@@ -39,6 +39,24 @@ struct _LaunchButton
|
||||
};
|
||||
|
||||
@@ -75,8 +75,8 @@ diff -Naurp lxpanel-0.10.1.orig/plugins/launch-button.c lxpanel-0.10.1/plugins/l
|
||||
}
|
||||
|
||||
diff -Naurp lxpanel-0.10.1.orig/plugins/monitors/monitors.c lxpanel-0.10.1/plugins/monitors/monitors.c
|
||||
--- lxpanel-0.10.1.orig/plugins/monitors/monitors.c 2019-01-13 22:37:42.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/monitors/monitors.c 2022-10-14 11:14:57.010987046 +0200
|
||||
--- lxpanel-0.10.1.orig/plugins/monitors/monitors.c 2019-01-13 22:37:42.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/monitors/monitors.c 2022-10-14 11:14:57.010987046 +0200
|
||||
@@ -220,6 +220,24 @@ monitor_set_foreground_color(MonitorsPlu
|
||||
* End of monitor functions *
|
||||
******************************************************************************/
|
||||
@@ -123,8 +123,8 @@ diff -Naurp lxpanel-0.10.1.orig/plugins/monitors/monitors.c lxpanel-0.10.1/plugi
|
||||
}
|
||||
}
|
||||
diff -Naurp lxpanel-0.10.1.orig/plugins/netstat/statusicon.c lxpanel-0.10.1/plugins/netstat/statusicon.c
|
||||
--- lxpanel-0.10.1.orig/plugins/netstat/statusicon.c 2019-01-13 22:35:07.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/netstat/statusicon.c 2022-10-14 11:23:56.563275687 +0200
|
||||
--- lxpanel-0.10.1.orig/plugins/netstat/statusicon.c 2019-01-13 22:35:07.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/netstat/statusicon.c 2022-10-14 11:23:56.563275687 +0200
|
||||
@@ -26,6 +26,24 @@
|
||||
#include "statusicon.h"
|
||||
#include "misc.h"
|
||||
@@ -162,8 +162,8 @@ diff -Naurp lxpanel-0.10.1.orig/plugins/netstat/statusicon.c lxpanel-0.10.1/plug
|
||||
}
|
||||
|
||||
diff -Naurp lxpanel-0.10.1.orig/plugins/task-button.c lxpanel-0.10.1/plugins/task-button.c
|
||||
--- lxpanel-0.10.1.orig/plugins/task-button.c 2022-10-12 13:07:42.368701277 +0200
|
||||
+++ lxpanel-0.10.1/plugins/task-button.c 2022-10-14 11:17:37.905073119 +0200
|
||||
--- lxpanel-0.10.1.orig/plugins/task-button.c 2022-10-12 13:07:42.368701277 +0200
|
||||
+++ lxpanel-0.10.1/plugins/task-button.c 2022-10-14 11:17:37.905073119 +0200
|
||||
@@ -1135,6 +1135,24 @@ static void task_update_icon(TaskButton
|
||||
task, NULL);
|
||||
}
|
||||
@@ -212,8 +212,8 @@ diff -Naurp lxpanel-0.10.1.orig/plugins/task-button.c lxpanel-0.10.1/plugins/tas
|
||||
}
|
||||
|
||||
diff -Naurp lxpanel-0.10.1.orig/plugins/weather/weatherwidget.c lxpanel-0.10.1/plugins/weather/weatherwidget.c
|
||||
--- lxpanel-0.10.1.orig/plugins/weather/weatherwidget.c 2019-02-22 22:21:13.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/weather/weatherwidget.c 2022-10-14 11:14:57.011987047 +0200
|
||||
--- lxpanel-0.10.1.orig/plugins/weather/weatherwidget.c 2019-02-22 22:21:13.000000000 +0100
|
||||
+++ lxpanel-0.10.1/plugins/weather/weatherwidget.c 2022-10-14 11:14:57.011987047 +0200
|
||||
@@ -452,6 +452,24 @@ gtk_weather_size_allocate(GtkWidget * wi
|
||||
gtk_widget_size_allocate(GTK_WIDGET(priv->hbox), &box_allocation);
|
||||
}
|
||||
@@ -251,8 +251,8 @@ diff -Naurp lxpanel-0.10.1.orig/plugins/weather/weatherwidget.c lxpanel-0.10.1/p
|
||||
}
|
||||
|
||||
diff -Naurp lxpanel-0.10.1.orig/src/misc.c lxpanel-0.10.1/src/misc.c
|
||||
--- lxpanel-0.10.1.orig/src/misc.c 2019-01-13 22:35:07.000000000 +0100
|
||||
+++ lxpanel-0.10.1/src/misc.c 2022-10-14 11:55:44.518153250 +0200
|
||||
--- lxpanel-0.10.1.orig/src/misc.c 2019-01-13 22:35:07.000000000 +0100
|
||||
+++ lxpanel-0.10.1/src/misc.c 2022-10-14 11:55:44.518153250 +0200
|
||||
@@ -1258,6 +1258,11 @@ static gboolean fb_button_enter(GtkImage
|
||||
/* Handler for "leave-notify-event" signal on image that has highlighting requested. */
|
||||
static gboolean fb_button_leave(GtkImage * widget, GdkEventCrossing * event, gpointer user_data)
|
||||
@@ -266,8 +266,8 @@ diff -Naurp lxpanel-0.10.1.orig/src/misc.c lxpanel-0.10.1/src/misc.c
|
||||
{
|
||||
ImgData * data = (ImgData *) g_object_get_qdata(G_OBJECT(widget), img_data_id);
|
||||
diff -Naurp lxpanel-0.10.1.orig/src/panel.c lxpanel-0.10.1/src/panel.c
|
||||
--- lxpanel-0.10.1.orig/src/panel.c 2022-10-12 13:07:42.360701278 +0200
|
||||
+++ lxpanel-0.10.1/src/panel.c 2022-10-14 11:14:57.012987047 +0200
|
||||
--- lxpanel-0.10.1.orig/src/panel.c 2022-10-12 13:07:42.360701278 +0200
|
||||
+++ lxpanel-0.10.1/src/panel.c 2022-10-14 11:14:57.012987047 +0200
|
||||
@@ -401,6 +401,14 @@ static gboolean lxpanel_button_press(Gtk
|
||||
return FALSE;
|
||||
}
|
||||
@@ -292,8 +292,8 @@ diff -Naurp lxpanel-0.10.1.orig/src/panel.c lxpanel-0.10.1/src/panel.c
|
||||
signals[ICON_SIZE_CHANGED] =
|
||||
g_signal_new("icon-size-changed",
|
||||
diff -Naurp lxpanel-0.10.1.orig/src/plugin.c lxpanel-0.10.1/src/plugin.c
|
||||
--- lxpanel-0.10.1.orig/src/plugin.c 2021-01-29 23:28:51.000000000 +0100
|
||||
+++ lxpanel-0.10.1/src/plugin.c 2022-10-14 11:14:57.012987047 +0200
|
||||
--- lxpanel-0.10.1.orig/src/plugin.c 2021-01-29 23:28:51.000000000 +0100
|
||||
+++ lxpanel-0.10.1/src/plugin.c 2022-10-14 11:14:57.012987047 +0200
|
||||
@@ -499,6 +499,24 @@ static void on_size_allocate(GtkWidget *
|
||||
// _queue_panel_calculate_size(p);
|
||||
}
|
||||
@@ -1,104 +1,106 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxpanel</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Lightweight X11 desktop panel for LXDE.</Summary>
|
||||
<Description>lxpanel is a lightweight X11 desktop panel for LXDE.</Description>
|
||||
<Archive sha1sum="393b78dbbb76518a99549411131c35da5bfed0fa" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxpanel-0.10.1.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libwnck3-devel</Dependency>
|
||||
<Dependency>keybinder-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>menu-cache-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>wireless-tools-devel</Dependency>
|
||||
<Dependency>libfm-devel</Dependency>
|
||||
<Dependency>libfm-extra-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">Correct_panel_size_under_GTK3.patch</Patch>
|
||||
<Patch level="1">Correct_icon_grid_width_under_GTK3.patch</Patch>
|
||||
<Patch level="1">mageia/mga-fix-deiconify.patch</Patch>
|
||||
<Patch level="1">mageia/mga-partial-workaround-for-issue-41.patch</Patch>
|
||||
<Patch level="1">lxpanel-0.10.1-volume-plugin-fix-mouse-scrolling.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>lxpanel</Name>
|
||||
<Homepage>https://github.com/lxde/lxpanel</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Lightweight X11 desktop panel for LXDE.</Summary>
|
||||
<Description>lxpanel is a lightweight X11 desktop panel for LXDE.</Description>
|
||||
<Archive sha1sum="59d2eb0df9e4fedbf7e8e34f70fdcf34d750d17f" type="tarxz">https://github.com/lxde/releases/raw/master/releases/lxpanel-0.11.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libwnck3-devel</Dependency>
|
||||
<Dependency>keybinder-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>menu-cache-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>wireless-tools-devel</Dependency>
|
||||
<Dependency>libfm-devel</Dependency>
|
||||
<Dependency>libfm-extra-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
<Patch level="1">mga-partial-workaround-for-issue-41.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxpanel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libwnck3</Dependency>
|
||||
<Dependency>keybinder</Dependency>
|
||||
<Dependency>menu-cache</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>lxmenu-data</Dependency>
|
||||
<Dependency>wireless-tools</Dependency>
|
||||
<Dependency>libfm</Dependency>
|
||||
<Dependency>libfm-extra</Dependency>
|
||||
<Dependency>network-manager-applet</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg/lxpanel</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxpanel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libwnck3</Dependency>
|
||||
<Dependency>keybinder</Dependency>
|
||||
<Dependency>menu-cache</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>lxmenu-data</Dependency>
|
||||
<Dependency>wireless-tools</Dependency>
|
||||
<Dependency>libfm</Dependency>
|
||||
<Dependency>libfm-extra</Dependency>
|
||||
<Dependency>network-manager-applet</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg/lxpanel</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>lxpanel-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">lxpanel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libfm-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxpanel-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">lxpanel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libfm-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-11-16</Date>
|
||||
<Version>0.10.1</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2025-06-12</Date>
|
||||
<Version>0.11.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2022-11-16</Date>
|
||||
<Version>0.10.1</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-gtk3")
|
||||
autotools.configure("--enable-gtk3")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
|
||||
|
||||
@@ -1,51 +1,51 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxrandr</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE GUI interface to RandR extention.</Summary>
|
||||
<Description>lxrandr is a LXDE GUI interface to RandR extention.</Description>
|
||||
<Archive sha1sum="a76b3d79ab1d5aa974a2ad25b1882685159a2e98" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxrandr-0.3.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>lxrandr</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE GUI interface to RandR extention.</Summary>
|
||||
<Description>lxrandr is a LXDE GUI interface to RandR extention.</Description>
|
||||
<Archive sha1sum="a76b3d79ab1d5aa974a2ad25b1882685159a2e98" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxrandr-0.3.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxrandr</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxrandr</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.3.2</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.3.2</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -7,16 +7,13 @@
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
pisitools.cflags.add("-Wno-deprecated-declarations")
|
||||
pisitools.unlink("*.stamp")
|
||||
autotools.autoreconf("-fv")
|
||||
autotools.configure("--enable-gtk3 --disable-buildin-polkit --disable-buildin-clipboard")
|
||||
autotools.configure("--enable-gtk3")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
|
||||
|
||||
@@ -1,69 +0,0 @@
|
||||
From c398fd6db61bc084679759096bde5747e5616eca Mon Sep 17 00:00:00 2001
|
||||
From: Jann Horn <jann@thejh.net>
|
||||
Date: Sun, 18 Apr 2021 16:37:16 +0200
|
||||
Subject: [PATCH] lxsession-logout: Avoid costly lsb_release invocation
|
||||
|
||||
Having the name of the distribution in the LXDE prompt looks kinda nice,
|
||||
but `lsb_release -r -s` is fairly costly (or at least the version on
|
||||
Debian is): It spins up a python interpreter, then runs `apt-cache policy`
|
||||
(which in turn, among other things, runs
|
||||
`/usr/bin/dpkg --print-foreign-architectures` twice).
|
||||
|
||||
On a desktop machine with a proper Haswell CPU, `lsb_release -r -s` takes
|
||||
"only" around 105ms (around 79ms of that are for `apt-cache policy`);
|
||||
but on an old Intel NUC with a 5-years-old mobile Intel Pentium with a TDP
|
||||
of 6W, it takes roughly between 500ms and 1000ms.
|
||||
|
||||
As suggested by ZanderBrown, use glib's g_get_os_info() instead if
|
||||
available. If that doesn't exist, it's probably better to omit the OS name
|
||||
instead of potentially spending up to a second on figuring out what it is.
|
||||
---
|
||||
lxsession-logout/lxsession-logout.c | 33 ++++++-----------------------
|
||||
1 file changed, 6 insertions(+), 27 deletions(-)
|
||||
|
||||
diff --git a/lxsession-logout/lxsession-logout.c b/lxsession-logout/lxsession-logout.c
|
||||
index 489e6e3..f06e61d 100644
|
||||
--- a/lxsession-logout/lxsession-logout.c
|
||||
+++ b/lxsession-logout/lxsession-logout.c
|
||||
@@ -716,35 +716,14 @@ int main(int argc, char * argv[])
|
||||
if (session_name == NULL)
|
||||
session_name = "LXDE";
|
||||
|
||||
- gchar *output = NULL;
|
||||
-
|
||||
- if (g_find_program_in_path("lsb_release"))
|
||||
- {
|
||||
- const gchar *command_line = "lsb_release -r -s";
|
||||
- GError *error;
|
||||
- if (!g_spawn_command_line_sync( command_line,
|
||||
- &output,
|
||||
- NULL,
|
||||
- NULL,
|
||||
- &error))
|
||||
- {
|
||||
-
|
||||
- fprintf (stderr, "Error: %s\n", error->message);
|
||||
- g_error_free (error);
|
||||
-
|
||||
- }
|
||||
- }
|
||||
+ gchar *os_name = NULL;
|
||||
+#if GLIB_CHECK_VERSION(2, 64, 0)
|
||||
+ os_name = g_get_os_info(G_OS_INFO_KEY_PRETTY_NAME);
|
||||
+#endif
|
||||
|
||||
- if (output == NULL)
|
||||
- {
|
||||
- output = "";
|
||||
- }
|
||||
- else
|
||||
- {
|
||||
- output[strlen ( output ) - 1] = '\0';
|
||||
- }
|
||||
+ prompt = g_strdup_printf(_("<b><big>Logout %s %s session ?</big></b>"), session_name, os_name ? os_name : "");
|
||||
|
||||
- prompt = g_strdup_printf(_("<b><big>Logout %s %s session ?</big></b>"), session_name, output);
|
||||
+ g_free(os_name);
|
||||
}
|
||||
gtk_label_set_markup(GTK_LABEL(label), prompt);
|
||||
gtk_box_pack_start(GTK_BOX(controls), label, FALSE, FALSE, 4);
|
||||
@@ -1,68 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxsession</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE session manager.</Summary>
|
||||
<Description>lxsession is the default X11 session manager of LXDE.</Description>
|
||||
<Archive sha1sum="93f495f3afff0300de3c7b9aacce0ef29eb86bab" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxsession-0.5.5.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>polkit-devel</Dependency>
|
||||
<Dependency>elogind-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>libnotify-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">Avoid_costly_lsb_release_invocation.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>lxsession</Name>
|
||||
<Homepage>https://github.com/lxde/lxsession</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE session manager.</Summary>
|
||||
<Description>lxsession is the default X11 session manager of LXDE.</Description>
|
||||
<Archive sha1sum="93f495f3afff0300de3c7b9aacce0ef29eb86bab" type="tarxz">https://github.com/lxde/releases/raw/master/releases/lxsession-0.5.6.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>polkit-devel</Dependency>
|
||||
<Dependency>elogind-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>libnotify-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxsession</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>polkit</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxsession</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>polkit</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-08-20</Date>
|
||||
<Version>0.5.5</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2025-06-14</Date>
|
||||
<Version>0.5.6</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2022-08-20</Date>
|
||||
<Version>0.5.5</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -7,13 +7,13 @@
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-gtk3")
|
||||
autotools.configure("--enable-gtk3")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS")
|
||||
pisitools.dodoc("AUTHORS")
|
||||
|
||||
|
||||
@@ -1,61 +1,61 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lxterminal</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Lightweight terminal emulator.</Summary>
|
||||
<Description>Lxterminal is a Lightweight vte-based tabbed terminal emulator for LXDE.</Description>
|
||||
<Archive sha1sum="9f065280fae8b6ca0439699ce73dd661a4f21d43" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxterminal-0.4.0.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>vte-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>libpcre2-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">missing.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>lxterminal</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Lightweight terminal emulator.</Summary>
|
||||
<Description>Lxterminal is a Lightweight vte-based tabbed terminal emulator for LXDE.</Description>
|
||||
<Archive sha1sum="9f065280fae8b6ca0439699ce73dd661a4f21d43" type="tarxz">
|
||||
mirrors://sourceforge/lxde/lxterminal-0.4.0.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>vte-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>libpcre2-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">missing.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lxterminal</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>vte</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>lxterminal</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>vte</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/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 autotools, pisitools, get
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s prefix=/usr" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING")
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>parsellite</Name>
|
||||
<Homepage>https://github.com/rickyrockrat/parcellite</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>Lightweight GTK+ Clipboard Manager.</Summary>
|
||||
<Description>A stripped down, basic-features-only clipboard manager with a small memory footprint for those who like simplicity.</Description>
|
||||
<Archive sha1sum="03999d33b4f7186ef5c2d21b919e00b1a7c248a5" type="targz">https://github.com/rickyrockrat/parcellite/archive/1.2.5/parcellite-1.2.5.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1"></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>parcellite</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2025-06-12</Date>
|
||||
<Version>1.2.5</Version>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -7,14 +7,13 @@
|
||||
from pisi.actionsapi import autotools, pisitools, get
|
||||
|
||||
def setup():
|
||||
pisitools.cflags.add("-Wno-deprecated-declarations -Wno-incompatible-pointer-types")
|
||||
autotools.configure("--with-gtk=3")
|
||||
autotools.configure("--with-gtk=3")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS")
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "TODO")
|
||||
|
||||
|
||||
@@ -1,65 +1,68 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pcmanfm</Name>
|
||||
<Homepage>https://www.lxde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE default file manager.</Summary>
|
||||
<Description>PCMan File Manager is an extremly fast and lightweight file manager for LXDE.</Description>
|
||||
<Archive sha1sum="bc4e468b0ec3089aaf817eafed43ae06350961ee" type="tarxz">
|
||||
mirrors://sourceforge/pcmanfm/pcmanfm-1.3.2.tar.xz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libfm-devel</Dependency>
|
||||
<Dependency>libfm-extra-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
<Source>
|
||||
<Name>pcmanfm</Name>
|
||||
<Homepage>https://github.com/lxde/pcmanfm</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL-2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.lxde</PartOf>
|
||||
<Summary>LXDE default file manager.</Summary>
|
||||
<Description>PCMan File Manager is an extremly fast and lightweight file manager for LXDE.</Description>
|
||||
<Archive sha1sum="4768f0ad3799a2598694052316a1fb5bc2f67732" type="tarxz">https://github.com/lxde/releases/raw/master/releases/pcmanfm-1.4.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libfm-extra-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pcmanfm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libfm</Dependency>
|
||||
<Dependency>libfm-extra</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>pcmanfm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libfm-extra</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2025-06-12</Date>
|
||||
<Version>1.4.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2022-04-14</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user