diff --git a/desktop/gnome/base/gsettings-desktop-schemas/actions.py b/desktop/gnome/base/gsettings-desktop-schemas/actions.py index f4154582fd..56521d15ea 100644 --- a/desktop/gnome/base/gsettings-desktop-schemas/actions.py +++ b/desktop/gnome/base/gsettings-desktop-schemas/actions.py @@ -1,26 +1,21 @@ #!/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 +# Licensed under the GNU General Public License, version 2 +# See the file http://www.gnu.org/copyleft/gpl.txt +from pisi.actionsapi import get from pisi.actionsapi import autotools from pisi.actionsapi import pisitools from pisi.actionsapi import shelltools -from pisi.actionsapi import get +from pisi.actionsapi import mesontools def setup(): - shelltools.makedirs("build") - shelltools.cd("build") - shelltools.system("meson .. --prefix=/usr") - + mesontools.configure() + def build(): - shelltools.cd("build") - shelltools.system("ninja") - + mesontools.build + def install(): - shelltools.cd("build") - shelltools.system("DESTDIR=%s ninja install" % get.installDIR()) - - shelltools.cd("..") - pisitools.dodoc("COPYING", "NEWS", "README") + mesontools.install() + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "MAINTAINERS") diff --git a/desktop/gnome/base/gsettings-desktop-schemas/pspec.xml b/desktop/gnome/base/gsettings-desktop-schemas/pspec.xml index 67714f8d44..594aed222d 100644 --- a/desktop/gnome/base/gsettings-desktop-schemas/pspec.xml +++ b/desktop/gnome/base/gsettings-desktop-schemas/pspec.xml @@ -5,36 +5,38 @@ gsettings-desktop-schemas https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas - PisiLinux Community - admin@pisilinux.org + Berk Çakar + berk2238@hotmail.com - GPLv2 - data - Collection of GSettings schemas for GNOME desktop - Gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. - ftp://ftp.gnome.org/pub/gnome/sources/gsettings-desktop-schemas/3.34/gsettings-desktop-schemas-3.34.0.tar.xz + LGPLv2.1 + desktop.gnome + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. + gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. meson - intltool - glib2-devel - gobject-introspection-devel + glib2-devel + gobject-introspection-devel + https://download.gnome.org/sources/gsettings-desktop-schemas/3.38/gsettings-desktop-schemas-3.38.0.tar.xz - gsettings-desktop-schemas + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. - /usr/share/doc - /usr/share/locale - /usr/share/GConf/ - /usr/share/gir-1.0 /usr/lib/girepository-1.0 + /usr/share/GConf/ + /usr/share/doc + /usr/share/gir-1.0 /usr/share/glib-2.0/schemas + /usr/share/locale - gsettings-desktop-schemas-devel + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. gsettings-desktop-schemas @@ -43,35 +45,41 @@ /usr/share/pkgconfig/ - - - 2020-01-31 - 3.34.0 + + 2021-04-06 + 3.38.0 Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-23 - 3.34.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-13 - 3.33.1 - version bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-12-03 - 3.10.1 - First Release - Kamil Atlı - suvari@pisilinux.org + Berk Çakar + berk2238@hotmail.com + + 2020-01-31 + 3.34.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-23 + 3.34.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-13 + 3.33.1 + version bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-12-03 + 3.10.1 + First Release + Kamil Atlı + suvari@pisilinux.org + diff --git a/desktop/kde/plasma/plasma-workspace-wallpapers/actions.py b/desktop/kde/plasma/plasma-workspace-wallpapers/actions.py index 387186c7ee..e142f2d7d6 100755 --- a/desktop/kde/plasma/plasma-workspace-wallpapers/actions.py +++ b/desktop/kde/plasma/plasma-workspace-wallpapers/actions.py @@ -20,5 +20,6 @@ def install(): pisitools.insinto("/usr/share/wallpapers/pisilinux-blue", "blue/*") pisitools.insinto("/usr/share/wallpapers/sweet-cat", "../Sweet-cat/*") + pisitools.insinto("/usr/share/wallpapers/pisi-crocus-ancyrensis", "../pisi-crocus-ancyrensis/*") pisitools.dodoc("COPYING", "AUTHORS") diff --git a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml index a4bf48b826..e33fe23aac 100755 --- a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml +++ b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml @@ -17,6 +17,7 @@ mirrors://kde/stable/plasma/5.21.3/plasma-workspace-wallpapers-5.21.3.tar.xz https://sourceforge.net/projects/pisilinux/files/source/blue.tar.gz https://sourceforge.net/projects/pisilinux/files/source/Sweet-cat.tar.gz + https://github.com/prdsmehmetstc/pisi-crocus-ancyrensis/releases/download/v1.0/pisi-crocus-ancyrensis.tar.gz qt5-base-devel extra-cmake-modules diff --git a/desktop/lumina/lumina-desktop/pspec.xml b/desktop/lumina/lumina-desktop/pspec.xml index 21ab76b33c..a329d06015 100644 --- a/desktop/lumina/lumina-desktop/pspec.xml +++ b/desktop/lumina/lumina-desktop/pspec.xml @@ -308,7 +308,7 @@ 2020-011-20 1.6.0 - Version bump. + Version bump Erkan IŞIK erkanisik@pisilinux.org diff --git a/desktop/xfce/addon/xfce4-docklike-plugin/actions.py b/desktop/xfce/addon/xfce4-docklike-plugin/actions.py new file mode 100644 index 0000000000..6335ce1a17 --- /dev/null +++ b/desktop/xfce/addon/xfce4-docklike-plugin/actions.py @@ -0,0 +1,25 @@ +#!/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 shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): +# shelltools.system("NOCONFIGURE=1 ./autogen.sh") + autotools.configure() + + pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS") + diff --git a/desktop/xfce/addon/xfce4-docklike-plugin/pspec.xml b/desktop/xfce/addon/xfce4-docklike-plugin/pspec.xml new file mode 100644 index 0000000000..34792cfbeb --- /dev/null +++ b/desktop/xfce/addon/xfce4-docklike-plugin/pspec.xml @@ -0,0 +1,68 @@ + + + + + xfce4-docklike-plugin + https://github.com/nsz32/docklike-plugin + + fury + wascheme@tuta.io + + GPLv3 + library + desktop.xfce.addon + A Dock-like Taskbar Plugin for XFCE. + + A modern, docklike, minimalist taskbar for XFCE. + + + https://github.com/davekeogh/xfce4-docklike-plugin/releases/download/v0.2.0/xfce4-docklike-plugin-0.2.0.tar.xz + + + intltool + gtk3-devel + cairo-devel + libX11-devel + libwnck3-devel + xfce4-dev-tools + libxfce4ui-devel + xfce4-panel-devel + + + + + xfce4-docklike-plugin + + atk + gtk3 + cairo + glib2 + pango + libX11 + libgcc + harfbuzz + libwnck3 + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + + 2021-04-02 + 0.2.0 + First release from David Keogh. + wascheme@tuta.io + fury + + + + diff --git a/desktop/xfce/addon/xfce4-mixer/actions.py b/desktop/xfce/addon/xfce4-mixer/actions.py new file mode 100644 index 0000000000..3e6e137d67 --- /dev/null +++ b/desktop/xfce/addon/xfce4-mixer/actions.py @@ -0,0 +1,26 @@ +#!/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 shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + shelltools.system("NOCONFIGURE=1 ./autogen.sh") + autotools.configure("--prefix=/usr --enable-debug=yes --disable-static") + + # for fix unused dependency + pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") + diff --git a/desktop/xfce/addon/xfce4-mixer/files/Fix_obvious_build_errors.patch b/desktop/xfce/addon/xfce4-mixer/files/Fix_obvious_build_errors.patch new file mode 100644 index 0000000000..1903c301a3 --- /dev/null +++ b/desktop/xfce/addon/xfce4-mixer/files/Fix_obvious_build_errors.patch @@ -0,0 +1,166 @@ +From 2ce5d0624689411d06fd723e317a951de739ee1c Mon Sep 17 00:00:00 2001 +From: Alexander Molodtsov +Date: Wed, 17 Feb 2021 15:16:18 +0300 +Subject: [PATCH] Fix obvious build errors + +--- + libxfce4mixer/Makefile.am | 8 +++--- + libxfce4mixer/alsa/alsa-options.h | 2 +- + libxfce4mixer/libxfce4mixer.c | 8 ++++-- + libxfce4mixer/sndio/.dirstamp | 0 + panel-plugin/xfce-volume-button.c | 41 ++++++++++++++++++++----------- + 5 files changed, 37 insertions(+), 22 deletions(-) + delete mode 100644 libxfce4mixer/sndio/.dirstamp + +diff --git a/libxfce4mixer/Makefile.am b/libxfce4mixer/Makefile.am +index 625f99f..0426746 100644 +--- a/libxfce4mixer/Makefile.am ++++ b/libxfce4mixer/Makefile.am +@@ -85,24 +85,24 @@ libxfce4mixer_la_CFLAGS = \ + + if ALSA_BACKEND + libxfce4mixer_la_CFLAGS += \ +- -Ialsa \ ++ -I$(srcdir)/alsa \ + $(ALSA_CFLAGS) + endif + + if PULSE_BACKEND + libxfce4mixer_la_CFLAGS += \ +- -Ipulse \ ++ -I$(srcdir)/pulse \ + $(PULSE_CFLAGS) + endif + + if OSS_BACKEND + libxfce4mixer_la_CFLAGS += \ +- -Ioss ++ -I$(srcdir)/oss + endif + + if SNDIO_BACKEND + libxfce4mixer_la_CFLAGS += \ +- -Isndio ++ -I$(srcdir)/sndio + endif + libxfce4mixer_la_LDFLAGS = \ + -no-undefined +diff --git a/libxfce4mixer/alsa/alsa-options.h b/libxfce4mixer/alsa/alsa-options.h +index 083ab5e..5f836f8 100644 +--- a/libxfce4mixer/alsa/alsa-options.h ++++ b/libxfce4mixer/alsa/alsa-options.h +@@ -38,7 +38,7 @@ struct _GstMixerAlsaOptions + + struct _GstMixerAlsaOptionsClass + { +- GstMixerAlsaTrack parent; ++ GstMixerAlsaTrackClass parent; + }; + + GType gst_mixer_alsa_options_get_type (void); +diff --git a/libxfce4mixer/libxfce4mixer.c b/libxfce4mixer/libxfce4mixer.c +index f73ef95..3589ddb 100644 +--- a/libxfce4mixer/libxfce4mixer.c ++++ b/libxfce4mixer/libxfce4mixer.c +@@ -52,7 +52,8 @@ + + static void _xfce_mixer_init_mixer (gpointer data, + gpointer user_data); +-static void _xfce_mixer_destroy_mixer (GstMixer *mixer); ++static void _xfce_mixer_destroy_mixer (gpointer data, ++ gpointer user_data); + + + +@@ -451,8 +452,11 @@ _xfce_mixer_init_mixer (gpointer data, + + + static void +-_xfce_mixer_destroy_mixer (GstMixer *mixer) ++_xfce_mixer_destroy_mixer (gpointer data, ++ gpointer user_data) + { ++ GstMixer *mixer = GST_MIXER (data); ++ + gst_element_set_state (GST_ELEMENT (mixer), GST_STATE_NULL); + gst_object_unref (GST_OBJECT (mixer)); + } +diff --git a/libxfce4mixer/sndio/.dirstamp b/libxfce4mixer/sndio/.dirstamp +deleted file mode 100644 +index e69de29..0000000 +diff --git a/panel-plugin/xfce-volume-button.c b/panel-plugin/xfce-volume-button.c +index 0481a66..daee4d5 100644 +--- a/panel-plugin/xfce-volume-button.c ++++ b/panel-plugin/xfce-volume-button.c +@@ -624,9 +624,14 @@ xfce_volume_button_popup_dock (XfceVolumeButton *button) + GtkWidget *button_widget = GTK_WIDGET (button); + GtkOrientation orientation; + GtkRequisition dock_requisition; ++#if GTK_CHECK_VERSION(3, 22, 0) ++ GdkDisplay *display; ++ GdkMonitor *monitor; ++#else + GdkScreen *screen; +- GdkRectangle monitor; +- gint monitor_num; ++ gint monitor; ++#endif ++ GdkRectangle monitor_rect; + gint window_x; + gint window_y; + GdkWindow *window; +@@ -669,10 +674,16 @@ xfce_volume_button_popup_dock (XfceVolumeButton *button) + y += button_allocation.y; + + /* Determine the geometry of the monitor containing the window containing the button */ +- screen = gtk_widget_get_screen (button_widget); + window = gtk_widget_get_window (GTK_WIDGET (button)); +- monitor_num = gdk_screen_get_monitor_at_window (screen, window); +- gdk_screen_get_monitor_geometry (screen, monitor_num, &monitor); ++#if GTK_CHECK_VERSION(3, 22, 0) ++ display = gtk_widget_get_display (button_widget); ++ monitor = gdk_display_get_monitor_at_window (display, window); ++ gdk_monitor_get_geometry (monitor, &monitor_rect); ++#else ++ screen = gtk_widget_get_screen (button_widget); ++ monitor = gdk_screen_get_monitor_at_window (screen, window); ++ gdk_screen_get_monitor_geometry (screen, monitor, &monitor_rect); ++#endif + + /* Determine the position of the window containing the button */ + if (xfce_screen_position_is_top (button->screen_position)) +@@ -692,9 +703,9 @@ xfce_volume_button_popup_dock (XfceVolumeButton *button) + gdk_window_get_root_origin (window, &window_x, &window_y); + + if (button->screen_position == XFCE_SCREEN_POSITION_FLOATING_V) +- position = (window_x < (monitor.x + monitor.width / 2)) ? GTK_POS_RIGHT : GTK_POS_LEFT; ++ position = (window_x < (monitor_rect.x + monitor_rect.width / 2)) ? GTK_POS_RIGHT : GTK_POS_LEFT; + else +- position = (window_y < (monitor.y + monitor.height / 2)) ? GTK_POS_BOTTOM : GTK_POS_TOP; ++ position = (window_y < (monitor_rect.y + monitor_rect.height / 2)) ? GTK_POS_BOTTOM : GTK_POS_TOP; + } + + /* Place the dock centered on the correct edge of the button */ +@@ -721,14 +732,14 @@ xfce_volume_button_popup_dock (XfceVolumeButton *button) + } + + /* Ensure the dock remains on the monitor */ +- if (x > monitor.x + monitor.width - dock_requisition.width) +- x = monitor.x + monitor.width - dock_requisition.width; +- if (x < monitor.x) +- x = monitor.x; +- if (y > monitor.y + monitor.height - dock_requisition.height) +- y = monitor.y + monitor.height - dock_requisition.height; +- if (y < monitor.y) +- y = monitor.y; ++ if (x > monitor_rect.x + monitor_rect.width - dock_requisition.width) ++ x = monitor_rect.x + monitor_rect.width - dock_requisition.width; ++ if (x < monitor_rect.x) ++ x = monitor_rect.x; ++ if (y > monitor_rect.y + monitor_rect.height - dock_requisition.height) ++ y = monitor_rect.y + monitor_rect.height - dock_requisition.height; ++ if (y < monitor_rect.y) ++ y = monitor_rect.y; + + /* Position the dock */ + gtk_window_move (GTK_WINDOW (button->dock), x, y); diff --git a/desktop/xfce/addon/xfce4-mixer/pspec.xml b/desktop/xfce/addon/xfce4-mixer/pspec.xml new file mode 100644 index 0000000000..5a9e0bb70b --- /dev/null +++ b/desktop/xfce/addon/xfce4-mixer/pspec.xml @@ -0,0 +1,79 @@ + + + + + xfce4-mixer + http://git.xfce.org/apps/xfce4-mixer + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL-2 + app:gui + Xfce sound mixer application. + Xfce4-mixer is a volume control application for the Xfce Desktop Environment. It provides both a volume control plugin for the Xfce Panel and a standalone mixer application. It supports all audio systems supported by GStreamer project. + + https://git.xfce.org/apps/xfce4-mixer/snapshot/xfce4-mixer-30f3baf8b08985b9f6ee0ccc1c96b328e64ea7f5.tar.gz + + + intltool + gtk3-devel + cairo-devel + xfconf-devel + gettext-devel + alsa-lib-devel + libunique-devel + keybinder-devel + gstreamer-devel + xfce4-dev-tools + gdk-pixbuf-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + pulseaudio-libs-devel + gst-plugins-base-devel + + + Fix_obvious_build_errors.patch + + + + + xfce4-mixer + + gtk3 + cairo + glib2 + xfconf + alsa-lib + gstreamer + keybinder + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + pulseaudio-libs + + + /usr/bin + /usr/lib/xfce4/panel/plugins + /usr/share/locale + /usr/share/pixmaps + /usr/share/applications + /usr/share/xfce4 + /usr/share/doc + /usr/share/man + + + + + + 2021-03-31 + 4.15.0 + First Beta release. + fury + uglyside@yandex.ru + + + + diff --git a/desktop/xfce/addon/xfce4-mixer/translations.xml b/desktop/xfce/addon/xfce4-mixer/translations.xml new file mode 100644 index 0000000000..3c45f65671 --- /dev/null +++ b/desktop/xfce/addon/xfce4-mixer/translations.xml @@ -0,0 +1,10 @@ + + + + xfce4-mixer + Xfce ses ayar uygulaması + Mikser dźwięku dla Xfce + Xfce4-mixer, Xfce Masaüstü Ortamı için yazılmış bir ses ayar uygulamasıdır. Hem panel eklentisi olarak, hem de kendi penceresinde bağımsız olarak kullanılabilen bir uygulamadır. GStreamer projesinin desteklediği tüm ses sistemlerini destekler. + Jest to nakładka na ustawienia miksera, dostarczana ze środowiskiem graficznym Xfce. Spełnia to samo zadanie, co inne nakładki ale jest zintegrowana z Xfce4 jako wtyczka dla panelu Xfce + + diff --git a/desktop/xfce/addon/xfce4-verve-plugin/actions.py b/desktop/xfce/addon/xfce4-verve-plugin/actions.py new file mode 100644 index 0000000000..0e058c1bc2 --- /dev/null +++ b/desktop/xfce/addon/xfce4-verve-plugin/actions.py @@ -0,0 +1,23 @@ +#!/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 +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + autotools.configure() + + pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "THANKS") + diff --git a/desktop/xfce/addon/xfce4-verve-plugin/pspec.xml b/desktop/xfce/addon/xfce4-verve-plugin/pspec.xml new file mode 100644 index 0000000000..d2688f04e4 --- /dev/null +++ b/desktop/xfce/addon/xfce4-verve-plugin/pspec.xml @@ -0,0 +1,61 @@ + + + + + xfce4-verve-plugin + https://docs.xfce.org/panel-plugins/xfce4-verve-plugin + + fury + wascheme@tuta.io + + GPLv2 + desktop.xfce.addon + library + Command line for Xfce panel. + The Verve panel plugin is a comfortable command line plugin for the Xfce panel. + + https://archive.xfce.org/src/panel-plugins/xfce4-verve-plugin/2.0/xfce4-verve-plugin-2.0.1.tar.bz2 + + + intltool + exo-devel + gtk3-devel + glib2-devel + xfconf-devel + libpcre-devel + libxfce4ui-devel + xfce4-panel-devel + + + + + xfce4-verve-plugin + + gtk3 + glib2 + xfconf + libX11 + libpcre + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + + 2021-04-10 + 2.0.1 + First Beta build. + fury + uglyside@yandex.ru + + + + diff --git a/desktop/xfce/base/exo/pspec.xml b/desktop/xfce/base/exo/pspec.xml index ab388c3865..29142d266e 100644 --- a/desktop/xfce/base/exo/pspec.xml +++ b/desktop/xfce/base/exo/pspec.xml @@ -16,7 +16,7 @@ exo is an extension library to Xfce, developed by os-cillation. While Xfce comes with quite a few libraries that are targeted at desktop development, exo is targeted at application development. - https://archive.xfce.org/src/xfce/exo/4.16/exo-4.16.1.tar.bz2 + https://archive.xfce.org/src/xfce/exo/4.16/exo-4.16.2.tar.bz2 intltool perl-URI @@ -82,6 +82,13 @@ + + 2021-04-17 + 4.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-03-28 4.16.1 diff --git a/desktop/xfce/base/xfce4-settings/pspec.xml b/desktop/xfce/base/xfce4-settings/pspec.xml index 14a2a39115..af0811f18f 100644 --- a/desktop/xfce/base/xfce4-settings/pspec.xml +++ b/desktop/xfce/base/xfce4-settings/pspec.xml @@ -14,7 +14,7 @@ Xfce4-settings is a configuration manager for Xfce desktop environment - https://archive.xfce.org/xfce/4.16/src/xfce4-settings-4.16.0.tar.bz2 + https://archive.xfce.org/src/xfce/xfce4-settings/4.16/xfce4-settings-4.16.1.tar.bz2 intltool exo-devel @@ -95,6 +95,13 @@ + + 2021-04-17 + 4.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-12-24 4.16.0 diff --git a/desktop/xfce/base/xfdesktop/pspec.xml b/desktop/xfce/base/xfdesktop/pspec.xml index a7fc4fd9eb..38cd1bbd44 100644 --- a/desktop/xfce/base/xfdesktop/pspec.xml +++ b/desktop/xfce/base/xfdesktop/pspec.xml @@ -20,7 +20,6 @@ intltool exo-devel dbus-devel - gtk3-devel pango-devel cairo-devel @@ -29,6 +28,7 @@ thunar-devel garcon-devel xfconf-devel + tumbler-devel libX11-devel libglade-devel diff --git a/hardware/disk/squashfs-tools/actions.py b/hardware/disk/squashfs-tools/actions.py index 8465a75354..94b4103260 100644 --- a/hardware/disk/squashfs-tools/actions.py +++ b/hardware/disk/squashfs-tools/actions.py @@ -16,9 +16,12 @@ def build(): cmd1='sed -i -e "s/BUFFER_DEFAULT [0-9]*/BUFFER_DEFAULT 32/" unsquashfs.h' cmd2="sed -i 's|^#XZ_SUPPORT = 1|XZ_SUPPORT = 1|' Makefile" cmd3="sed -i 's|^#LZO_SUPPORT = 1|LZO_SUPPORT = 1|' Makefile" - cmd4="sed -i 's|^#ZSTD_SUPPORT = 1|ZSTD_SUPPORT = 1|' Makefile" - cmd5="sed -i 's|^COMP_DEFAULT = gzip|COMP_DEFAULT = xz|' Makefile" - cmds=[cmd1,cmd2,cmd3,cmd4,cmd5] + cmd4="sed -i 's|^#LZ4_SUPPORT = 1|LZ4_SUPPORT = 1|' Makefile" + cmd5="sed -i 's|^#XATTR_SUPPORT = 1|XATTR_SUPPORT = 1|' Makefile" + cmd6="sed -i 's|^#ZSTD_SUPPORT = 1|ZSTD_SUPPORT = 1|' Makefile" + cmd7="sed -i 's|^#LZMA_XZ_SUPPORT = 1|LZMA_XZ_SUPPORT = 1|' Makefile" + cmd8="sed -i 's|^COMP_DEFAULT = gzip|COMP_DEFAULT = xz|' Makefile" + cmds=[cmd1,cmd2,cmd3,cmd4,cmd5,cmd6,cmd7,cmd8] for cmd in cmds: shelltools.system(cmd) diff --git a/hardware/disk/squashfs-tools/pspec.xml b/hardware/disk/squashfs-tools/pspec.xml index 7730f56fb2..7b3e410232 100644 --- a/hardware/disk/squashfs-tools/pspec.xml +++ b/hardware/disk/squashfs-tools/pspec.xml @@ -12,16 +12,17 @@ app:console Userspace tools to create squashfs compressed filesystem Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. - https://sourceforge.net/projects/squashfs/files/squashfs/squashfs4.4/squashfs4.4.tar.gz + https://github.com/plougher/squashfs-tools/archive/refs/tags/4.4-git.1.tar.gz lzo-devel + lz4-devel zstd-devel xz-devel zlib-devel - 0001-squashfs-tools-fix-build-failure-against-gcc-10.patch + @@ -29,6 +30,7 @@ squashfs-tools lzo + lz4 zstd zlib @@ -41,7 +43,14 @@ - + + 2021-04-11 + 4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + 2020-12-26 4.4 Rebuild. diff --git a/kernel/drivers/module-nvidia-current/pspec.xml b/kernel/drivers/module-nvidia-current/pspec.xml index f035e7a5ca..baa725b422 100644 --- a/kernel/drivers/module-nvidia-current/pspec.xml +++ b/kernel/drivers/module-nvidia-current/pspec.xml @@ -17,7 +17,7 @@ mageia/NVIDIA-Linux-x86_64-430.64-work-around-mga-bug-25890.patch - kernel-module-headers + kernel-module-headers libX11-devel gtk2-devel gtk3-devel @@ -29,7 +29,7 @@ driver Kernel module for current NVIDIA graphics driver releases - kernel + kernel /lib/modules diff --git a/kernel/drivers/module-nvidia340/pspec.xml b/kernel/drivers/module-nvidia340/pspec.xml index 2741de08d1..301433a7d5 100644 --- a/kernel/drivers/module-nvidia340/pspec.xml +++ b/kernel/drivers/module-nvidia340/pspec.xml @@ -23,7 +23,7 @@ 0004-kernel-5.10.patch - kernel-module-headers + kernel-module-headers @@ -32,7 +32,7 @@ driver Kernel module for NVIDIA driver 340.xx releases - kernel + kernel /lib/modules diff --git a/kernel/drivers/module-nvidia390/pspec.xml b/kernel/drivers/module-nvidia390/pspec.xml index 062c3f2a24..a896b9e438 100644 --- a/kernel/drivers/module-nvidia390/pspec.xml +++ b/kernel/drivers/module-nvidia390/pspec.xml @@ -20,7 +20,7 @@ NVIDIA-Linux-x86_64-390.132-kernel-5.6-uvm.patch - kernel-module-headers + kernel-module-headers libX11-devel gtk2-devel gtk3-devel @@ -32,7 +32,7 @@ driver Kernel module for current NVIDIA graphics driver releases - kernel + kernel diff --git a/pisi-index.xml b/pisi-index.xml index fe10d62cc9..aee95467c5 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -7853,22 +7853,21 @@ squashfs sıkıştırılmış salt-okunur dosya sistemi oluşturma aracı Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. squashfs, Linux için sıkıştırılmış ve salt-okunur bir dosya sistemidir. Bu paket squashfs dosya sistemiyle çalışmak için kullanılabilecek araçları içerir. - https://sourceforge.net/projects/squashfs/files/squashfs/squashfs4.4/squashfs4.4.tar.gz + https://github.com/plougher/squashfs-tools/archive/refs/tags/4.4-git.1.tar.gz lzo-devel + lz4-devel zstd-devel xz-devel zlib-devel - - 0001-squashfs-tools-fix-build-failure-against-gcc-10.patch - hardware/disk/squashfs-tools/pspec.xml squashfs-tools lzo + lz4 zstd zlib xz @@ -7879,6 +7878,13 @@ + + 2021-04-11 + 4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2020-12-26 4.4 @@ -11686,7 +11692,7 @@ util-linux gtk-doc libcap-devel - bubblewrap + bubblewrap polkit-devel libseccomp-devel dbus-devel @@ -11703,10 +11709,11 @@ flatpak xorg-app - bubblewrap + bubblewrap fuse glib2 gpgme + gnupg libXau libxml2 libsoup @@ -11745,7 +11752,7 @@ flatpak-devel Development files for flatpak - flatpak + flatpak fuse-devel glib2-devel gpgme-devel @@ -11765,6 +11772,13 @@ + + 2021-04-06 + 1.6.3 + Update dependencies + Berkan Şahin + cicektaksi@tutanota.com + 2020-04-02 1.6.3 @@ -15312,7 +15326,7 @@ Xfce4-systemload-plugin is a plugin which displays the current CPU load, the memory in use, the swap space and the system uptime in the Xfce panel. Xfce4-systemload-plugin, Xfce panelinde o anki işlemci yükü, bellek ve swap alanı kullanımını gösteren bir eklentidir. xfce4-panel - https://archive.xfce.org/src/panel-plugins/xfce4-systemload-plugin/1.3/xfce4-systemload-plugin-1.3.0.tar.bz2 + https://archive.xfce.org/src/panel-plugins/xfce4-systemload-plugin/1.3/xfce4-systemload-plugin-1.3.1.tar.bz2 intltool xfconf-devel @@ -15339,6 +15353,13 @@ + + 2021-03-31 + 1.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-03-11 1.3.0 @@ -15869,6 +15890,82 @@ + + + xfce4-mixer + http://git.xfce.org/apps/xfce4-mixer + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL-2 + app:gui + desktop.xfce.addon + Xfce sound mixer application. + Xfce ses ayar uygulaması + Mikser dźwięku dla Xfce + Xfce4-mixer is a volume control application for the Xfce Desktop Environment. It provides both a volume control plugin for the Xfce Panel and a standalone mixer application. It supports all audio systems supported by GStreamer project. + Xfce4-mixer, Xfce Masaüstü Ortamı için yazılmış bir ses ayar uygulamasıdır. Hem panel eklentisi olarak, hem de kendi penceresinde bağımsız olarak kullanılabilen bir uygulamadır. GStreamer projesinin desteklediği tüm ses sistemlerini destekler. + Jest to nakładka na ustawienia miksera, dostarczana ze środowiskiem graficznym Xfce. Spełnia to samo zadanie, co inne nakładki ale jest zintegrowana z Xfce4 jako wtyczka dla panelu Xfce + https://git.xfce.org/apps/xfce4-mixer/snapshot/xfce4-mixer-30f3baf8b08985b9f6ee0ccc1c96b328e64ea7f5.tar.gz + + gtk3-devel + cairo-devel + xfconf-devel + alsa-lib-devel + libunique-devel + keybinder-devel + gstreamer-devel + xfce4-dev-tools + gdk-pixbuf-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + pulseaudio-libs-devel + gst-plugins-base-devel + + + Fix_obvious_build_errors.patch + + desktop/xfce/addon/xfce4-mixer/pspec.xml + + + xfce4-mixer + + gtk3 + cairo + glib2 + xfconf + alsa-lib + gstreamer + keybinder + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + pulseaudio-libs + + + /usr/bin + /usr/lib/xfce4/panel/plugins + /usr/share/locale + /usr/share/pixmaps + /usr/share/applications + /usr/share/xfce4 + /usr/share/doc + /usr/share/man + + + + + 2021-03-31 + 4.15.0 + First Beta release. + fury + uglyside@yandex.ru + + + mousepad @@ -15884,7 +15981,7 @@ Xfce için küçük bir yazı düzenleyici Mousepad aims to be an easy-to-use and fast editor. Our target is an editor for quickly editing text files, not a development environment or an editor with a huge bunch of plugins. On the other hand we try to use the latest Gtk+ features available, which means that if Gtk adds something new in a major release that is useful for the editor, we will likely bump the Gtk dependency and integrate this new feature in Mousepad. Mousepad, Xfce için yazılmış bir metin düzenleyicisidir. - https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.2.tar.bz2 + https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.4.tar.bz2 intltool gtk3-devel @@ -15914,6 +16011,13 @@ + + 2021-04-10 + 0.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-02 0.5.2 @@ -16172,7 +16276,7 @@ Xfce4 Paneli için bir kullanıcı değiştirme modülü With the modular Xfce Panel, a multitude of panel layouts can be created. This tool makes it possible to backup, restore, import, and export these panel layouts. xfce4-panel-profiles, Xfce4 Paneli için bir kullanıcı değiştirme modülüdür. Mevcut oturumu açık bırakarak başka bir kullanıcıyla yeni bir oturum açılmasına izin verir. - https://archive.xfce.org/src/apps/xfce4-panel-profiles/1.0/xfce4-panel-profiles-1.0.12.tar.bz2 + https://archive.xfce.org/src/apps/xfce4-panel-profiles/1.0/xfce4-panel-profiles-1.0.13.tar.bz2 intltool python3-devel @@ -16199,6 +16303,13 @@ + + 2021-04-10 + 1.0.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-01-17 1.0.12 @@ -16328,10 +16439,21 @@ /usr/share/man /usr/share/doc + + 16x16.png + 22x22.png + 24x24.png + 32x32.png + 48x48.png + 64x64.png + 128x128.png + 256x256.png + logotype-pisi.svg + - 2021-01-24 + 2021-04-15 2.5.3 Ver. bump fury @@ -16403,6 +16525,61 @@ + + + xfce4-verve-plugin + https://docs.xfce.org/panel-plugins/xfce4-verve-plugin + + fury + wascheme@tuta.io + + GPLv2 + library + desktop.xfce.addon + Command line for Xfce panel. + The Verve panel plugin is a comfortable command line plugin for the Xfce panel. + https://archive.xfce.org/src/panel-plugins/xfce4-verve-plugin/2.0/xfce4-verve-plugin-2.0.1.tar.bz2 + + intltool + exo-devel + gtk3-devel + glib2-devel + xfconf-devel + libpcre-devel + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-verve-plugin/pspec.xml + + + xfce4-verve-plugin + + gtk3 + glib2 + xfconf + libX11 + libpcre + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-04-10 + 2.0.1 + First Beta build. + fury + uglyside@yandex.ru + + + thunarx-python @@ -16640,6 +16817,66 @@ + + + xfce4-docklike-plugin + https://github.com/nsz32/docklike-plugin + + fury + wascheme@tuta.io + + GPLv3 + library + desktop.xfce.addon + A Dock-like Taskbar Plugin for XFCE. + A modern, docklike, minimalist taskbar for XFCE. + https://github.com/davekeogh/xfce4-docklike-plugin/releases/download/v0.2.0/xfce4-docklike-plugin-0.2.0.tar.xz + + intltool + gtk3-devel + cairo-devel + libX11-devel + libwnck3-devel + xfce4-dev-tools + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-docklike-plugin/pspec.xml + + + xfce4-docklike-plugin + + atk + gtk3 + cairo + glib2 + pango + libX11 + libgcc + harfbuzz + libwnck3 + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-04-02 + 0.2.0 + First release from David Keogh. + fury + wascheme@tuta.io + + + xfce-polkit @@ -16853,7 +17090,7 @@ Easy to use task manager Kullanımı kolay görev yöneticisi Kullanımı kolay görev yöneticisi - https://archive.xfce.org/src/apps/xfce4-taskmanager/1.5/xfce4-taskmanager-1.5.0.tar.bz2 + https://archive.xfce.org/src/apps/xfce4-taskmanager/1.5/xfce4-taskmanager-1.5.2.tar.bz2 intltool gtk3-devel @@ -16886,6 +17123,13 @@ + + 2021-04-10 + 1.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-07 1.5.0 @@ -17144,16 +17388,13 @@ GIO/GVfs kullanarak uzak dosya sistemleri için bağlantıları yönetme arayüzü Gigolo allows you to quickly connect/mount local and remote filesystems and manage bookmarks of such. Gigolo, yerel ve uzak dosya sistemlerinin kolayca bağlanmasını ve yönetilmesini sağlayan bir arayüzdür. - https://archive.xfce.org/src/apps/gigolo/0.5/gigolo-0.5.1.tar.bz2 + https://archive.xfce.org/src/apps/gigolo/0.5/gigolo-0.5.2.tar.bz2 intltool gtk3-devel glib2-devel desktop-file-utils - - gigolo-0.4.2-desktop-icon.patch - desktop/xfce/addon/gigolo/pspec.xml @@ -17175,6 +17416,13 @@ + + 2021-03-31 + 0.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-11-21 0.5.1 @@ -17707,7 +17955,7 @@ The Xfce4 panel supports multiple panels, with many options for their position, appearance, transparency and behavior. There are many items available by default to full fit a panel, like application launchers with detachable menus, a graphical pager, a tasklist, a clock, a system tray, a show / hide desktop switcher, and even more. It offers an easy way to add items using a dialog, and to move items accross different panels Xfce4 paneli, farklı pozisyon, görünüm ve davranış gibi ayarlara sahip birden fazla paneli destekleyebilmektedir. Uygulama başlatıcı tipinde ayrılabilir menüler, grafiksel sayfalayıcı, görev çubuğu, saat, sistem çekmecesi, masaüstünü gizleme / görüntüleme ve bir panelde olabilecek birçok şeyi içinde barındırır. Ayrıca, diyalog penceresi kullanarak kolayca panel öğesi eklemeye ve panelden panele öğe taşımaya izin verir. Jest to panel dostarczany przez projekt środowiska graficznego Xfce4. Jeśli użytkownik chce posiadać wielofunkcyjny panel, który może obsługiwać aplety i tym podobne programy, to Xfce4 Panel może być wart wypróbowania. - https://archive.xfce.org/src/xfce/xfce4-panel/4.16/xfce4-panel-4.16.1.tar.bz2 + https://archive.xfce.org/src/xfce/xfce4-panel/4.16/xfce4-panel-4.16.2.tar.bz2 gtk-doc intltool @@ -17781,7 +18029,7 @@ glib2-devel gtk3-devel libxfce4util-devel - xfce4-panel + xfce4-panel /usr/include @@ -17790,6 +18038,13 @@ + + 2021-04-15 + 4.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-02 4.16.1 @@ -17930,7 +18185,7 @@ desktop.xfce.base Xfce file manager Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options. Thunar is fast and responsive with a good start up time and directory load time. Thunar is accessible using Assistive Technologies and is fully standarts compliant - https://archive.xfce.org/src/xfce/thunar/4.16/thunar-4.16.2.tar.bz2 + https://archive.xfce.org/src/xfce/thunar/4.17/thunar-4.17.1.tar.bz2 python3-devel intltool @@ -18005,7 +18260,7 @@ gtk3-devel glib2-devel - thunar + thunar /usr/include @@ -18017,13 +18272,20 @@ Thunar reference documents data:doc - thunar + thunar /usr/share/gtk-doc + + 2021-03-28 + 4.17.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-01-15 4.16.2 @@ -18851,7 +19113,7 @@ Xfce eklenti kitaplığı exo is an extension library to Xfce, developed by os-cillation. While Xfce comes with quite a few libraries that are targeted at desktop development, exo is targeted at application development. exo, os-cillation tarafından geliştirilen Xfce eklenti kitaplığıdır. Xfce masaüstü ortamını hedefleyen az kitaplıkla gelirken, exo uygulama geliştirmeyi hedefliyor. - https://archive.xfce.org/xfce/4.16/src/exo-4.16.0.tar.bz2 + https://archive.xfce.org/src/xfce/exo/4.16/exo-4.16.1.tar.bz2 intltool perl-URI @@ -18890,7 +19152,7 @@ Development files for exo exo geliştirme dosyaları - exo + exo gtk2-devel gtk3-devel libxfce4util-devel @@ -18906,13 +19168,20 @@ exo belgeleri data:doc - exo + exo /usr/share/gtk-doc + + 2021-03-28 + 4.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-12-24 4.16.0 @@ -19143,6 +19412,9 @@ /usr/share/lumina-desktop/desktop-background.jpg /usr/share/man + + ankara_cigdemi.jpg + lumina-archiver @@ -19336,7 +19608,7 @@ 2020-011-20 1.6.0 - Version bump. + Version bump Erkan IŞIK erkanisik@pisilinux.org @@ -21171,7 +21443,7 @@ PiSi est une interface graphique permettant d'effectuer l'installation, la suppression et la mise à jour de paquet PiSi depuis un environnement graphique. Package Manager is PiSi's easy-to-use graphical user interface. PiSi paket yöneticisine ait paket kurma, kaldırma ve güncelleme gibi işlerin grafik ortamda yapılabilmesini sağlayan PiSi grafik arayüzü. - https://github.com/PisiLinuxNew/package-manager/archive/package-manager.4.2.6.tar.gz + https://github.com/PisiLinuxNew/package-manager/archive/refs/tags/PM-4.2.7.tar.gz docutils python-docutils @@ -21199,6 +21471,13 @@ + + 2021-04-15 + 4.2.7 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + 2020-05-25 4.2.6 @@ -21848,16 +22127,16 @@ start-here-light.svg start-here-dark.svg - felis_catus.png - wallpaper.png - frost.png - dolunay_ata.png - light.png + Crocus-Ancyrensis.jpg + Crocus-Ancyrensis.jpg + Crocus-Ancyrensis.jpg + Crocus-Ancyrensis.jpg + Crocus-Ancyrensis.jpg - 2020-11-05 + 2021-04-08 0.16.0 Version bump. Mustafa Cinasal @@ -24473,7 +24752,7 @@ - 2020-11-05 + 2021-04-08 0.16.0 Version bump. Mustafa Cinasal @@ -26087,6 +26366,9 @@ intltool itstool + + pisilinux_layout.patch + desktop/mate/mate-panel/pspec.xml @@ -26154,7 +26436,7 @@ - 2020-12-20 + 2021-04-11 1.25.2 Version bump Mustafa Cinasal @@ -26711,9 +26993,6 @@ libglvnd-devel autoconf-archive - - pisi_screen_saver.patch - desktop/mate/mate-screensaver/pspec.xml @@ -26756,6 +27035,9 @@ /usr/share/desktop-directories /usr/share/mate-background-properties + + logotype-pisi.svg + @@ -28195,6 +28477,14 @@ /usr/share/themes /usr/share/locale + + logotype-pisi.svg + 48x48.png + 48x48.png + 48x48.png + 48x48.png + 48x48.png + @@ -28836,16 +29126,16 @@ /usr/share/locale - 16.png - 22.png - 24.png - 32.png - 48.png - 16.png - 22.png - 24.png - 32.png - 48.png + 16x16.png + 22x22.png + 24x24.png + 32x32.png + 48x48.png + 16x16.png + 22x22.png + 24x24.png + 32x32.png + 48x48.png scalable.svg @@ -29163,6 +29453,9 @@ python3 python3-setproctitle + python3-distro + python3-psutil + python3-pygobject3 /usr/bin @@ -32097,40 +32390,44 @@ gsettings-desktop-schemas https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas - PisiLinux Community - admin@pisilinux.org + Berk Çakar + berk2238@hotmail.com - GPLv2 - desktop.gnome.base - Collection of GSettings schemas for GNOME desktop + LGPLv2.1 + desktop.gnome + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. GNOME masaüstü ortamı için GSettings şemalarının koleksiyonu - Gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. + gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. Gnome masaüstünün çeşitli bileşenleri tarafından paylaşılan ayarlar için GSettings şemalarının bir koleksiyonudur. - ftp://ftp.gnome.org/pub/gnome/sources/gsettings-desktop-schemas/3.34/gsettings-desktop-schemas-3.34.0.tar.xz + https://download.gnome.org/sources/gsettings-desktop-schemas/3.38/gsettings-desktop-schemas-3.38.0.tar.xz meson - intltool - glib2-devel - gobject-introspection-devel + glib2-devel + gobject-introspection-devel desktop/gnome/base/gsettings-desktop-schemas/pspec.xml gsettings-desktop-schemas + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. - /usr/share/doc - /usr/share/locale - /usr/share/GConf/ - /usr/share/gir-1.0 /usr/lib/girepository-1.0 + /usr/share/GConf/ + /usr/share/doc + /usr/share/gir-1.0 /usr/share/glib-2.0/schemas + /usr/share/locale gsettings-desktop-schemas-devel + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. gsettings-desktop-schemas için geliştirme dosyaları - gsettings-desktop-schemas + gsettings-desktop-schemas /usr/include @@ -32138,6 +32435,13 @@ + + 2021-04-06 + 3.38.0 + Version bump. + Berk Çakar + berk2238@hotmail.com + 2020-01-31 3.34.0 @@ -46404,7 +46708,7 @@ desktop.lookandfeel Adwaita icon theme Adwaita icon theme - ftp://ftp.gnome.org/pub/gnome/sources/adwaita-icon-theme/3.34/adwaita-icon-theme-3.34.3.tar.xz + https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/archive/3.38.0/adwaita-icon-theme-3.38.0.tar.gz intltool gtk2-devel @@ -46424,8 +46728,29 @@ /usr/share/icons/Adwaita /usr/lib/pkgconfig + + 16x16.png + 16x16.png + 22x22.png + 24x24.png + 24x24.png + 32x32.png + 32x32.png + 48x48.png + 48x48.png + 64x64.png + 96x96.png + scalable.svg + + + 2021-04-08 + 3.38.0 + v.bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + 2020-01-18 3.34.3 @@ -47445,7 +47770,7 @@ desktop.lookandfeel Icon theme designed for pisilinux GTK theme Icon theme designed for pisilinux GTK theme - https://source.pisilinux.org/1.0/milky-2.0.tar.bz2 + http://source.pisilinux.org/milky/milky-2.0.tar.bz2 desktop/lookandfeel/icon-theme-milky/pspec.xml @@ -47454,8 +47779,33 @@ /usr/share/icons /usr/share/doc + + 16x16.png + 16x16.png + 22x22.png + 22x22.png + 32x32.png + 32x32.png + 48x48.png + 48x48.png + 64x64.png + 64x64.png + 128x128.png + 128x128.png + 256x256.png + 256x256.png + logotype-pisi.svg + logotype-pisi.svg + + + 2021-04-11 + 1.0 + fixed start-here icons + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + 2019-08-01 1.0 @@ -47730,8 +48080,20 @@ /usr/share/wallpapers /usr/share/doc + + logotype-pisi_64.svg + logotype-pisi_512.svg + logotype-pisi_512.svg + + + 2021-04-11 + 0.7 + fixed start-here icons + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + 2018-08-31 0.7 @@ -117929,7 +118291,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Plasma Specific Protocols for Wayland Wayland için Plazma Özel Protokoller Wayland için Plazma Özel Protokoller - https://download.kde.org/stable/plasma-wayland-protocols/plasma-wayland-protocols-1.2.0.tar.xz + https://download.kde.org/stable/plasma-wayland-protocols/plasma-wayland-protocols-v1.2.1.tar.xz qt5-base-devel extra-cmake-modules @@ -117945,6 +118307,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2021-04-10 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-03-29 1.2.0 @@ -130980,6 +131349,12 @@ It supports email, address books, calendars, tasks, news feeds and much more./usr/share /usr/share/doc + + breeze-16.svg + breeze-22.svg + breeze-dark-16.svg + breeze-dark-22.svg + @@ -140403,10 +140778,26 @@ It supports email, address books, calendars, tasks, news feeds and much more./usr/share/icons /usr/share/doc + + 16x16.png + 16x16.png + 22x22.png + 22x22.png + 32x32.png + 32x32.png + 48x48.png + 48x48.png + 64x64.png + 64x64.png + 128x128.png + 128x128.png + 256x256.png + 256x256.png + - 2021-03-13 + 2021-04-11 5.80.0 Version bump. Mustafa Cinasal @@ -175019,7 +175410,7 @@ functionality to build high-performing, platform-independent programs.Çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz libdrm is a library providing the userspace interface to kernel DRM services. libdrm, çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz sağlayan bir kitaplıktır. - https://dri.freedesktop.org/libdrm/libdrm-2.4.102.tar.xz + https://dri.freedesktop.org/libdrm/libdrm-2.4.105.tar.xz libpciaccess-devel util-macros @@ -175052,7 +175443,7 @@ functionality to build high-performing, platform-independent programs.Userspace interface to kernel DRM services for intel Çekirdekteki intel DRM servisleri için kullanıcı düzeyi arayüz - libdrm + libdrm libpciaccess @@ -175064,7 +175455,7 @@ functionality to build high-performing, platform-independent programs.Userspace interface to kernel DRM services for nouveau Çekirdekteki nouveau DRM servisleri için kullanıcı düzeyi arayüz - libdrm + libdrm /usr/lib/libdrm_nouveau.* @@ -175075,7 +175466,7 @@ functionality to build high-performing, platform-independent programs.Userspace interface to kernel DRM services for radeon Çekirdekteki radeon DRM servisleri için kullanıcı düzeyi arayüz - libdrm + libdrm /usr/lib/libdrm_radeon.* @@ -175085,7 +175476,7 @@ functionality to build high-performing, platform-independent programs.libdrm-amd Userspace interface to kernel DRM services for amdgpu - libdrm + libdrm /usr/lib/libdrm_amdgpu.* @@ -175096,7 +175487,7 @@ functionality to build high-performing, platform-independent programs.Userspace library for kernel mode setting Çekirdekteki ekran modu değiştirme servisleri için kullanıcı düzeyi arayüz - libdrm + libdrm /usr/lib/libkms.* @@ -175107,12 +175498,13 @@ functionality to build high-performing, platform-independent programs.Development files for libdrm libdrm için geliştirme dosyaları - libdrm - libdrm-intel - libdrm-nouveau - libdrm-radeon - libdrm-amd - libkms + libdrm + libdrm-intel + libdrm-nouveau + libdrm-radeon + libdrm-amd + libkms + libpciaccess-devel /usr/include @@ -175132,7 +175524,7 @@ functionality to build high-performing, platform-independent programs.libpciaccess-32bit - libdrm + libdrm libpciaccess-32bit @@ -175146,8 +175538,8 @@ functionality to build high-performing, platform-independent programs.emul32 emul32 - libdrm-intel - libdrm-32bit + libdrm-intel + libdrm-32bit libpciaccess-32bit @@ -175161,8 +175553,8 @@ functionality to build high-performing, platform-independent programs.emul32 emul32 - libdrm-nouveau - libdrm-32bit + libdrm-nouveau + libdrm-32bit /usr/lib32/libdrm_nouveau.* @@ -175175,8 +175567,8 @@ functionality to build high-performing, platform-independent programs.emul32 emul32 - libdrm-radeon - libdrm-32bit + libdrm-radeon + libdrm-32bit /usr/lib32/libdrm_radeon.* @@ -175188,8 +175580,8 @@ functionality to build high-performing, platform-independent programs.emul32 emul32 - libdrm-amd - libdrm-32bit + libdrm-amd + libdrm-32bit /usr/lib32/libdrm_amdgpu.* @@ -175202,14 +175594,21 @@ functionality to build high-performing, platform-independent programs.emul32 emul32 - libkms - libdrm-32bit + libkms + libdrm-32bit /usr/lib32/libkms.* + + 2021-04-08 + 2.4.105 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-09-30 2.4.102 @@ -181554,8 +181953,8 @@ functionality to build high-performing, platform-independent programs.vte https://www.gnome.org/ - PisiLinux Community - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com LGPLv2 x11.terminal @@ -181563,60 +181962,62 @@ functionality to build high-performing, platform-independent programs.Xft powered terminal widget The VTE package contains a termcap file implementation for terminal emulators. Vte paketi, terminal emülatörleri için termcap uygulama dosyası içerir. - mirrors://gnome/vte/0.56/vte-0.56.4.tar.xz + mirrors://gnome/vte/0.63/vte-0.63.91.tar.xz - gobject-introspection-devel - fontconfig-devel - gtk3-devel - gtk2-devel - pango-devel - cairo-devel - gtk-doc - gdk-pixbuf-devel atk-devel - ncurses-devel + cairo-devel + fontconfig-devel + gdk-pixbuf-devel glib2-devel - libX11-devel - intltool - harfbuzz-devel - graphite2-devel - python-six gnutls-devel - libpcre2-devel + gobject-introspection-devel + graphite2-devel + gtk-doc + gtk2-devel + gtk3-devel + harfbuzz-devel + intltool + libX11-devel libglade-devel + libpcre2-devel + ncurses-devel + pango-devel + python-six + meson vala-devel x11/terminal/vte/pspec.xml vte + Development files for vte library - gobject-introspection - gtk3 atk - zlib cairo gdk-pixbuf - pango - libgcc + glib2 gnutls + gobject-introspection + gtk3 + libX11 + libgcc libpcre2 ncurses - glib2 - libX11 + pango + zlib /etc/profile.d /usr/bin /usr/lib /usr/libexec - /usr/share/doc - /usr/share/locale /usr/share - /usr/share/vte - /usr/share/pygtk + /usr/share/doc /usr/share/gir-1.0/Vte-0.0.gir + /usr/share/locale + /usr/share/pygtk + /usr/share/vte @@ -181632,12 +182033,12 @@ functionality to build high-performing, platform-independent programs.Development files for vte vte için geliştirme dosyaları - vte - gtk3-devel - pango-devel cairo-devel glib2-devel + gtk3-devel libX11-devel + pango-devel + vte /usr/include @@ -181645,6 +182046,13 @@ functionality to build high-performing, platform-independent programs. + + 2021-04-06 + 0.63.91 + Version bump + Berk Çakar + berk2238@hotmail.com + 2020-01-25 0.56.4 @@ -183594,6 +184002,13 @@ functionality to build high-performing, platform-independent programs. + + 2021-04-10 + 0.4.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2018-08-13 0.4.2 @@ -183641,7 +184056,7 @@ functionality to build high-performing, platform-independent programs.YALI is the graphical installer for PiSi Linux distribution which is written using the Qt framework. YALI: PiSi Linux kurulum yazılımı. YALI jest graficznym instalatorem PiSi Linux. - https://github.com/hrngultekin/yali/archive/v3.3.1.0.tar.gz + https://github.com/hrngultekin/yali/archive/refs/tags/v3.3.3.0.tar.gz python-qt5-devel python-devel @@ -183711,6 +184126,13 @@ functionality to build high-performing, platform-independent programs. + + 2021-02-13 + 3.3.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-02-13 3.3.1.0 @@ -189142,7 +189564,7 @@ functionality to build high-performing, platform-independent programs.mageia/NVIDIA-Linux-x86_64-430.64-work-around-mga-bug-25890.patch - kernel-module-headers + kernel-module-headers libX11-devel gtk2-devel gtk3-devel @@ -189158,7 +189580,7 @@ functionality to build high-performing, platform-independent programs.noDelta - kernel + kernel /lib/modules @@ -189622,7 +190044,7 @@ functionality to build high-performing, platform-independent programs.NVIDIA-Linux-x86_64-390.132-kernel-5.6-uvm.patch - kernel-module-headers + kernel-module-headers libX11-devel gtk2-devel gtk3-devel @@ -189637,7 +190059,7 @@ functionality to build high-performing, platform-independent programs.noDelta - kernel + kernel /lib/modules @@ -190031,7 +190453,7 @@ functionality to build high-performing, platform-independent programs.0004-kernel-5.10.patch - kernel-module-headers + kernel-module-headers kernel/drivers/module-nvidia340/pspec.xml @@ -190043,7 +190465,7 @@ functionality to build high-performing, platform-independent programs.noDelta - kernel + kernel /lib/modules @@ -192949,8 +193371,8 @@ functionality to build high-performing, platform-independent programs.kxmlgui-devel plasma-framework-devel qt5-base-devel - qt5-declarative - qt5-x11extras + qt5-declarative-devel + qt5-x11extras-devel qt5-quickcontrols qt5-graphicaleffects qt5-quickcontrols2-devel @@ -193744,8 +194166,8 @@ functionality to build high-performing, platform-independent programs.neofetch https://github.com/dylanaraps/neofetch - Berkan Şahin - cicektaksi@tutanota.com + Berk Çakar + berk2238@hotmail.com MIT util.misc @@ -193768,12 +194190,18 @@ functionality to build high-performing, platform-independent programs.bash - / /usr/bin/* /usr/share/* + + 2021-04-06 + 7.1.0 + Fixed file install paths + Berk Çakar + berk2238@hotmail.com + 2021-04-05 7.1.0 @@ -236095,8 +236523,8 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libical https://github.com/libical/libical - PisiLinux Community - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com MPL-1.1 LGPLv2 @@ -236106,33 +236534,40 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar. - https://github.com/libical/libical/releases/download/v3.0.7/libical-3.0.7.tar.gz + https://github.com/libical/libical/releases/download/v3.0.9/libical-3.0.9.tar.gz cmake - perl - doxygen - docbook-xsl - gtk-doc db-devel + docbook-xsl + doxygen glib2-devel + gobject-introspection-devel + gtk-doc libxml2-devel libxslt-devel + perl python-six - gobject-introspection-devel + vala programming/misc/libical/pspec.xml libical + The Evolution Data Server package provides a unified backend for programs that work with +contacts, tasks, and calendar information. db - icu4c glib2 + icu4c libgcc + gobject-introspection /usr/lib + /usr/libexec/libical/ical-glib-src-generator + /usr/share/gir-1.0/* /usr/share/libical/zoneinfo + /usr/share/vala/* @@ -236140,10 +236575,10 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Development files for libical libical için geliştirme dosyaları - libical db-devel - icu4c-devel glib2-devel + icu4c-devel + libical /usr/include @@ -236153,12 +236588,18 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libical-docs libical reference documents - data:doc /usr/share/gtk-doc + + 2021-04-10 + 3.0.9 + Version bump. + Berk Çakar + berk2238@hotmail.com + 2020-01-14 3.0.7 @@ -236166,13 +236607,6 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression İdris Kalp idriskalp@gmail.com - - 2018-08-07 - 3.0.1 - Rebuild - Mustafa Cinasal - admin@pisilinux.org - 2018-01-31 3.0.1 @@ -248666,6 +249100,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2021-04-11 + 2.39 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2020-03-23 2.39 @@ -271969,7 +272410,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression PHP7 is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly. PHP7, dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dilidir. Dil yapısının önemli bir kısmı C, Java ve Perl'den alınmıştır. Bu dilin amacı, web geliştiricilerinin kısa zamanda dinamik sayfalar oluşturmasına imkan vermektir. PHP7 es un languaje interpretado que puede estar embebido en HTML. Muchas partes de su sintaxis fueron prestados de C, Java y Perl con algunas facilidades agregados únicas de PHP. El lenguaje permite a desarrolladores web escribir de manera sencilla páginas con contenido dinámico. - https://www.php.net/distributions/php-7.4.3.tar.xz + https://www.php.net/distributions/php-7.4.16.tar.xz gd-devel re2c @@ -272005,7 +272446,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression php-cli - php-common + php-common gd curl zlib @@ -272053,7 +272494,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression php-devel Development files for PHP - php-common + php-common /usr/bin/php-config @@ -272064,6 +272505,37 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression /usr/share/man/man1/phpize* + + php-pear + Development files for PHP + + php-common + + + /etc/pear.conf + /usr/bin/pear + /usr/bin/go-pear + /usr/lib/php/PEAR/ + /usr/lib/php/Structures + /usr/lib/php/.lock + /usr/lib/php/peclcmd.php + /usr/lib/php/pearcmd.php + /usr/lib/php/System.php + /usr/lib/php/PEAR.php + /usr/lib/php/.filemap + /usr/lib/php/.registry/ + /usr/lib/php/Console/Getopt.php + /usr/lib/php/XML/Util.php + /usr/lib/php/Archive/Tar.php + /usr/lib/php/test/XML_Util + /usr/lib/php/test/Structures_Graph + /usr/lib/php/test/Console_Getopt + /usr/lib/php/.channels + /usr/lib/php/doc/ + /usr/lib/php/data/PEAR/ + /usr/lib/php/OS/Guess.php + + mod_php server.web @@ -272090,6 +272562,10 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression php-common libmcrypt libjpeg-turbo + sqlite + openssl + e2fsprogs + oniguruma /usr/lib/apache2/modules/libphp7.so @@ -272105,6 +272581,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression Zip extension for PHP php-common + pam libzip mit-kerberos @@ -272121,6 +272598,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression php-imap Module for PHP to enable IMAP support + pam openssl e2fsprogs php-common @@ -272147,6 +272625,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression libjpeg-turbo postgresql-lib openldap-client + curl + zlib + bzip2 + sqlite + libxml2 + openssl + oniguruma /usr/sbin/php-fpm @@ -272165,6 +272650,13 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2021-02-06 + 7.4.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-02-22 7.4.3 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 7a8aa53236..7632fa9f56 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -e77bcdeda5c53c75e284f4301117c87d15d23b5d \ No newline at end of file +7f883f2be9f626bd432514f25dc33299eba2a297 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index b523485a8f..f1b3e67fba 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index abc3d3da74..eec9c7b52b 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -73db8287660ae59674df6b416368dc502832458c \ No newline at end of file +9a3c6f481bd4749cbf6e2279d811d762ac3d3f05 \ No newline at end of file diff --git a/programming/language/python3/python3-distutils-extra/pspec.xml b/programming/language/python3/python3-distutils-extra/pspec.xml index 09f0cd8a86..efe8b64996 100644 --- a/programming/language/python3/python3-distutils-extra/pspec.xml +++ b/programming/language/python3/python3-distutils-extra/pspec.xml @@ -32,6 +32,13 @@ + + 2021-04-11 + 2.39 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2020-03-23 2.39 diff --git a/programming/misc/libical/actions.py b/programming/misc/libical/actions.py index a639141013..4477f45afa 100644 --- a/programming/misc/libical/actions.py +++ b/programming/misc/libical/actions.py @@ -8,13 +8,15 @@ from pisi.actionsapi import cmaketools from pisi.actionsapi import pisitools def setup(): - cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib") + cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release \ + -DSHARED_ONLY=yes \ + -DICAL_BUILD_DOCS=true \ + -DGOBJECT_INTROSPECTION=true \ + -DICAL_GLIB_VAPI=true") def build(): cmaketools.make() def install(): cmaketools.install() - - diff --git a/programming/misc/libical/pspec.xml b/programming/misc/libical/pspec.xml index 9c036b5f7f..06bf9593e5 100644 --- a/programming/misc/libical/pspec.xml +++ b/programming/misc/libical/pspec.xml @@ -5,69 +5,78 @@ libical https://github.com/libical/libical - PisiLinux Community - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com MPL-1.1 LGPLv2 library An open source reference implementation of the icalendar data type and serialization format libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. - https://github.com/libical/libical/releases/download/v3.0.7/libical-3.0.7.tar.gz cmake - perl - doxygen - docbook-xsl - gtk-doc db-devel + docbook-xsl + doxygen glib2-devel + gobject-introspection-devel + gtk-doc libxml2-devel libxslt-devel + perl python-six - gobject-introspection-devel + vala + https://github.com/libical/libical/releases/download/v3.0.9/libical-3.0.9.tar.gz - libical + The Evolution Data Server package provides a unified backend for programs that work with +contacts, tasks, and calendar information. db - icu4c glib2 + icu4c libgcc + gobject-introspection /usr/lib + /usr/libexec/libical/ical-glib-src-generator + /usr/share/gir-1.0/* /usr/share/libical/zoneinfo + /usr/share/vala/* - libical-devel Development files for libical - libical db-devel - icu4c-devel glib2-devel + icu4c-devel + libical /usr/include /usr/lib/pkgconfig - libical-docs - data:doc libical reference documents /usr/share/gtk-doc - + + 2021-04-10 + 3.0.9 + Version bump. + Berk Çakar + berk2238@hotmail.com + 2020-01-14 3.0.7 @@ -75,13 +84,6 @@ İdris Kalp idriskalp@gmail.com - - 2018-08-07 - 3.0.1 - Rebuild - Mustafa Cinasal - admin@pisilinux.org - 2018-01-31 3.0.1 diff --git a/x11/library/libdrm/actions.py b/x11/library/libdrm/actions.py index eed036aa2a..eb7e210a25 100644 --- a/x11/library/libdrm/actions.py +++ b/x11/library/libdrm/actions.py @@ -8,11 +8,27 @@ from pisi.actionsapi import pisitools from pisi.actionsapi import mesontools from pisi.actionsapi import shelltools + def setup(): - mesontools.configure("-Dudev=true -Dvalgrind=true") + if not get.buildTYPE() == "emul32": + options = "-Dudev=true \ + -Dvalgrind=true \ + " + + if get.buildTYPE() == "emul32": + options = " --libdir=lib32 \ + -Dudev=false \ + -Dvalgrind=false" + + + + mesontools.configure(options) def build(): mesontools.build() def install(): mesontools.install() + + if get.buildTYPE() == "emul32": + return diff --git a/x11/library/libdrm/pspec.xml b/x11/library/libdrm/pspec.xml index eca305fc4d..737cfea877 100644 --- a/x11/library/libdrm/pspec.xml +++ b/x11/library/libdrm/pspec.xml @@ -12,7 +12,7 @@ library Userspace interface to kernel DRM services libdrm is a library providing the userspace interface to kernel DRM services. - https://dri.freedesktop.org/libdrm/libdrm-2.4.102.tar.xz + https://dri.freedesktop.org/libdrm/libdrm-2.4.105.tar.xz libpciaccess-devel util-macros @@ -107,6 +107,7 @@ libdrm-radeon libdrm-amd libkms + libpciaccess-devel @@ -207,6 +208,13 @@ + + 2021-04-08 + 2.4.105 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2020-09-30 2.4.102 diff --git a/x11/terminal/vte/actions.py b/x11/terminal/vte/actions.py index 661e1078c4..40b9a60ca3 100644 --- a/x11/terminal/vte/actions.py +++ b/x11/terminal/vte/actions.py @@ -2,29 +2,19 @@ # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 3. -# See the file http://www.gnu.org/copyleft/gpl.txt. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt -from pisi.actionsapi import shelltools -from pisi.actionsapi import autotools +from pisi.actionsapi import mesontools from pisi.actionsapi import pisitools -from pisi.actionsapi import get - def setup(): - autotools.configure("--disable-static \ - --enable-python \ - --enable-introspection \ - --libexecdir=/usr/lib/vte \ - --localstatedir=/var \ - --without-glX \ - --disable-gtk-doc") - - pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + mesontools.configure("-D_systemd=false \ + -Ddocs=true") def build(): - autotools.make() + mesontools.build() def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + mesontools.install() - pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS") + pisitools.dodoc("AUTHORS", "README.md", "COPYING*") diff --git a/x11/terminal/vte/pspec.xml b/x11/terminal/vte/pspec.xml index 707058d2f6..1023157f13 100644 --- a/x11/terminal/vte/pspec.xml +++ b/x11/terminal/vte/pspec.xml @@ -5,76 +5,69 @@ vte https://www.gnome.org/ - PisiLinux Community - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com LGPLv2 Xft powered terminal widget The VTE package contains a termcap file implementation for terminal emulators. - mirrors://gnome/vte/0.56/vte-0.56.4.tar.xz - gobject-introspection-devel - fontconfig-devel - gtk3-devel - gtk2-devel - pango-devel - cairo-devel - gtk-doc - gdk-pixbuf-devel atk-devel - ncurses-devel + cairo-devel + fontconfig-devel + gdk-pixbuf-devel glib2-devel - libX11-devel - intltool - harfbuzz-devel - graphite2-devel - python-six gnutls-devel - libpcre2-devel + gobject-introspection-devel + graphite2-devel + gtk-doc + gtk2-devel + gtk3-devel + harfbuzz-devel + intltool + libX11-devel libglade-devel + libpcre2-devel + ncurses-devel + pango-devel + python-six + meson vala-devel - - - - - - - + mirrors://gnome/vte/0.63/vte-0.63.91.tar.xz - vte library + Development files for vte - gobject-introspection - gtk3 atk - zlib cairo gdk-pixbuf - pango - libgcc + glib2 gnutls + gobject-introspection + gtk3 + libX11 + libgcc libpcre2 ncurses - glib2 - libX11 + pango + zlib /etc/profile.d /usr/bin /usr/lib /usr/libexec - /usr/share/doc - /usr/share/locale /usr/share - /usr/share/vte - /usr/share/pygtk + /usr/share/doc /usr/share/gir-1.0/Vte-0.0.gir + /usr/share/locale + /usr/share/pygtk + /usr/share/vte - vte-docs data:doc @@ -83,25 +76,30 @@ /usr/share/gtk-doc - vte-devel Development files for vte - vte - gtk3-devel - pango-devel cairo-devel glib2-devel + gtk3-devel libX11-devel + pango-devel + vte /usr/include /usr/lib/pkgconfig - + + 2021-04-06 + 0.63.91 + Version bump + Berk Çakar + berk2238@hotmail.com + 2020-01-25 0.56.4