webit2gtk-5.0 new package
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
paths = ["JavaScriptCore", "WebCore", "WebKit", "WebKit2"]
|
||||
docs = ["AUTHORS", "COPYING.LIB", "THANKS", \
|
||||
"LICENSE-LGPL-2", "LICENSE-LGPL-2.1", "LICENSE"]
|
||||
|
||||
def setup():
|
||||
#shelltools.system("rm -r Source/ThirdParty/gtest/")
|
||||
#pisitools.dosed("Source/cmake/OptionsGTK.cmake", "2.99.5", "2.72.0")
|
||||
shelltools.system("mkdir build")
|
||||
shelltools.cd("build")
|
||||
cmaketools.configure("-DPORT=GTK \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_SKIP_RPATH=ON \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DLIB_INSTALL_DIR=/usr/lib \
|
||||
-DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-5.0 \
|
||||
-DENABLE_CREDENTIAL_STORAGE=ON \
|
||||
-DENABLE_GEOLOCATION=ON \
|
||||
-DENABLE_VIDEO=ON \
|
||||
-DENABLE_WEB_AUDIO=ON \
|
||||
-DENABLE_WEBGL=ON \
|
||||
-DUSE_LIBHYPHEN=OFF \
|
||||
-DUSE_SOUP2=OFF \
|
||||
-DUSE_WOFF2=OFF \
|
||||
-DUSE_SYSTEMD=OFF \
|
||||
-DUSE_GTK4=ON \
|
||||
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
|
||||
-DJPEG_INCLUDE_DIR=/usr/include/openjpeg-2.5 \
|
||||
-DSHOULD_INSTALL_JS_SHELL=ON \
|
||||
-DUSE_WPE_RENDERER=OFF \
|
||||
-DENABLE_MINIBROWSER=ON", sourceDir="..")
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.remove("/usr/bin/WebKitWebDriver")
|
||||
|
||||
pisitools.dodoc("../NEWS")
|
||||
shelltools.cd("../Source")
|
||||
for path in paths:
|
||||
for doc in docs:
|
||||
if shelltools.isFile("%s/%s" % (path, doc)):
|
||||
pisitools.insinto("%s/%s/%s" % (get.docDIR(), get.srcNAME(), path),
|
||||
"%s/%s" % (path, doc))
|
||||
@@ -0,0 +1,37 @@
|
||||
From: Alberto Garcia <berto@igalia.com>
|
||||
Subject: Install the MiniBrowser binary
|
||||
Forwarded: not-needed
|
||||
Index: webkitgtk/Tools/MiniBrowser/gtk/main.c
|
||||
===================================================================
|
||||
--- webkitgtk.orig/Tools/MiniBrowser/gtk/main.c
|
||||
+++ webkitgtk/Tools/MiniBrowser/gtk/main.c
|
||||
@@ -265,8 +265,6 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
g_option_context_free (context);
|
||||
|
||||
- g_setenv("WEBKIT_INJECTED_BUNDLE_PATH", WEBKIT_INJECTED_BUNDLE_PATH, FALSE);
|
||||
-
|
||||
// Enable the favicon database, by specifying the default directory.
|
||||
webkit_web_context_set_favicon_database_directory(webkit_web_context_get_default(), NULL);
|
||||
|
||||
Index: webkitgtk/Tools/MiniBrowser/gtk/GNUmakefile.am
|
||||
===================================================================
|
||||
--- webkitgtk.orig/Tools/MiniBrowser/gtk/GNUmakefile.am
|
||||
+++ webkitgtk/Tools/MiniBrowser/gtk/GNUmakefile.am
|
||||
@@ -1,5 +1,5 @@
|
||||
if ENABLE_WEBKIT2
|
||||
-noinst_PROGRAMS += \
|
||||
+libexec_PROGRAMS += \
|
||||
Programs/MiniBrowser
|
||||
endif
|
||||
|
||||
@@ -44,9 +44,6 @@ Programs_MiniBrowser_LDADD = \
|
||||
$(GTK_LIBS) \
|
||||
$(LIBSOUP_LIBS)
|
||||
|
||||
-Programs_MiniBrowser_LDFLAGS = \
|
||||
- -no-install
|
||||
-
|
||||
CLEANFILES += \
|
||||
$(top_builddir)/Programs/MiniBrowser \
|
||||
$(minibrowser_built_sources) \
|
||||
@@ -0,0 +1,157 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>webkit2gtk-5.0</Name>
|
||||
<Homepage>http://webkitgtk.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<License>LGPLv2.1</License>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>An opensource web browser engine for GTK+ applications</Summary>
|
||||
<Description>The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux.</Description>
|
||||
<Archive sha1sum="6dcb65b8dc56c52f086bfeecfca7920e9cc78348" type="tarxz">https://www.webkitgtk.org/releases/webkitgtk-2.38.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>which</Dependency>
|
||||
<Dependency>gperf</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>bubblewrap</Dependency>
|
||||
<Dependency>ruby-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtk4-devel</Dependency>
|
||||
<Dependency>webp-devel</Dependency>
|
||||
<Dependency>libwpe-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>icu4c-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>sqlite-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>libsoup3-devel</Dependency>
|
||||
<Dependency>wayland-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>geoclue-devel</Dependency>
|
||||
<Dependency>elogind-devel</Dependency>
|
||||
<Dependency>libgudev-devel</Dependency>
|
||||
<Dependency>harfbuzz-devel</Dependency>
|
||||
<Dependency>enchant2-devel</Dependency>
|
||||
<Dependency>xdg-dbus-proxy</Dependency>
|
||||
<Dependency>libtasn1-devel</Dependency>
|
||||
<Dependency>libglvnd-devel</Dependency>
|
||||
<Dependency>libnotify-devel</Dependency>
|
||||
<Dependency>openjpeg2-devel</Dependency>
|
||||
<Dependency>libsecret-devel</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>libseccomp-devel</Dependency>
|
||||
<Dependency>libmanette-devel</Dependency>
|
||||
<Dependency>icon-theme-hicolor</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>wpebackend-fdo-devel</Dependency>
|
||||
<Dependency>gst-plugins-bad-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">fix-build.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>webkit2gtk-5.0</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>gtk4</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>webp</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>icu4c</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libwpe</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>wayland</Dependency>
|
||||
<Dependency>enchant</Dependency>
|
||||
<Dependency>geoclue</Dependency>
|
||||
<Dependency>libsoup3</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>elogind</Dependency>
|
||||
<Dependency>enchant2</Dependency>
|
||||
<Dependency>libtasn1</Dependency>
|
||||
<Dependency>harfbuzz</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libglvnd</Dependency>
|
||||
<Dependency>libsecret</Dependency>
|
||||
<Dependency>openjpeg2</Dependency>
|
||||
<Dependency>libnotify</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>gst-libav</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libseccomp</Dependency>
|
||||
<Dependency>libmanette</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>wpebackend-fdo</Dependency>
|
||||
<Dependency>wayland-client</Dependency>
|
||||
<Dependency>wayland-server</Dependency>
|
||||
<Dependency>gst-plugins-bad</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>gst-plugins-good</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>webkit2gtk-5.0-devel</Name>
|
||||
<IsA>library</IsA>
|
||||
<IsA>data:doc</IsA>
|
||||
<Summary>Development files for GTK+ port of WebKit</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libsoup3-devel</Dependency>
|
||||
<Dependency release="current">webkit2gtk-5.0</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="doc">/usr/share/doc/webkit-gtk/Web*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/webkit2gtk/html</Path>
|
||||
<Path fileType="doc">/usr/share/doc/webkit-gtk/JavaScriptCore</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-09-17</Date>
|
||||
<Version>2.38.0</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
+201
-17
@@ -13661,6 +13661,157 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>webkit2gtk-5.0</Name>
|
||||
<Homepage>http://webkitgtk.org</Homepage>
|
||||
<Packager>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<License>LGPLv2.1</License>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>network.misc</PartOf>
|
||||
<Summary xml:lang="en">An opensource web browser engine for GTK+ applications</Summary>
|
||||
<Description xml:lang="en">The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux.</Description>
|
||||
<Archive type="tarxz" sha1sum="6dcb65b8dc56c52f086bfeecfca7920e9cc78348" name="webkitgtk-2.38.0.tar.xz">https://www.webkitgtk.org/releases/webkitgtk-2.38.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>which</Dependency>
|
||||
<Dependency>gperf</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>bubblewrap</Dependency>
|
||||
<Dependency>ruby-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtk4-devel</Dependency>
|
||||
<Dependency>webp-devel</Dependency>
|
||||
<Dependency>libwpe-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>icu4c-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>sqlite-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>libsoup3-devel</Dependency>
|
||||
<Dependency>wayland-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>geoclue-devel</Dependency>
|
||||
<Dependency>elogind-devel</Dependency>
|
||||
<Dependency>libgudev-devel</Dependency>
|
||||
<Dependency>harfbuzz-devel</Dependency>
|
||||
<Dependency>enchant2-devel</Dependency>
|
||||
<Dependency>xdg-dbus-proxy</Dependency>
|
||||
<Dependency>libtasn1-devel</Dependency>
|
||||
<Dependency>libglvnd-devel</Dependency>
|
||||
<Dependency>libnotify-devel</Dependency>
|
||||
<Dependency>openjpeg2-devel</Dependency>
|
||||
<Dependency>libsecret-devel</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>libseccomp-devel</Dependency>
|
||||
<Dependency>libmanette-devel</Dependency>
|
||||
<Dependency>icon-theme-hicolor</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>wpebackend-fdo-devel</Dependency>
|
||||
<Dependency>gst-plugins-bad-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>network/misc/webkit2gtk-5.0/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>webkit2gtk-5.0</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>gtk4</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>webp</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>icu4c</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libwpe</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>wayland</Dependency>
|
||||
<Dependency>enchant</Dependency>
|
||||
<Dependency>geoclue</Dependency>
|
||||
<Dependency>libsoup3</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>elogind</Dependency>
|
||||
<Dependency>enchant2</Dependency>
|
||||
<Dependency>libtasn1</Dependency>
|
||||
<Dependency>harfbuzz</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libglvnd</Dependency>
|
||||
<Dependency>libsecret</Dependency>
|
||||
<Dependency>openjpeg2</Dependency>
|
||||
<Dependency>libnotify</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>gst-libav</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libseccomp</Dependency>
|
||||
<Dependency>libmanette</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>wpebackend-fdo</Dependency>
|
||||
<Dependency>wayland-client</Dependency>
|
||||
<Dependency>wayland-server</Dependency>
|
||||
<Dependency>gst-plugins-bad</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
<Dependency>gst-plugins-good</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>webkit2gtk-5.0-devel</Name>
|
||||
<Summary xml:lang="en">Development files for GTK+ port of WebKit</Summary>
|
||||
<IsA>library</IsA>
|
||||
<IsA>data:doc</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libsoup3-devel</Dependency>
|
||||
<Dependency release="1">webkit2gtk-5.0</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="doc">/usr/share/doc/webkit-gtk/Web*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/webkit2gtk/html</Path>
|
||||
<Path fileType="doc">/usr/share/doc/webkit-gtk/JavaScriptCore</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-09-17</Date>
|
||||
<Version>2.38.0</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>grpc</Name>
|
||||
@@ -13936,7 +14087,7 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="tr">SSH bağlantılarının kontrol edilebilmesini sağlayan C kitaplığı</Summary>
|
||||
<Description xml:lang="en">libssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl).</Description>
|
||||
<Description xml:lang="tr">libssh, yazılımlarında SSH kullanmak isteyen programcılar için tasarlanmış bir C kitaplığıdır. SSH istemcisi programcı tarafından tam olarak kontrol edilebilir, uzaktan yazılım çalıştırma, tünel yaratma, dosya transferi ve uzak dosya erişimi işlemleri yapılabilir. Tüm bunlar için openssl paketinde bulunan lıbcrypto'nun sistemde bulunması yeterlidir.</Description>
|
||||
<Archive type="tarxz" sha1sum="02bbb73c975356aeb58bd5fa221f93cc03148ca0" name="libssh-0.10.2.tar.xz">https://www.libssh.org/files/0.10/libssh-0.10.2.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="4c48350a0a688ad82080175ed26a2019928a99c4" name="libssh-0.10.4.tar.xz">https://www.libssh.org/files/0.10/libssh-0.10.4.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>cmocka-devel</Dependency>
|
||||
@@ -13984,8 +14135,8 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-09-01</Date>
|
||||
<Version>0.10.2</Version>
|
||||
<Date>2022-09-14</Date>
|
||||
<Version>0.10.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
@@ -99927,10 +100078,12 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<Description xml:lang="en">The session manager allows the user to save sessions and restore them after login. It is capable of saving several different sessions. It comes with three splash screen engines. And at last it helps you to log out, reboot, and shutdown the system.</Description>
|
||||
<Description xml:lang="tr">Xfce oturum yöneticisi, kullanıcıların oturumlarını kaydetmesine ve giriş yaptıktan sonra tekrar oturumu çağırmalarına izin verir. Birden fazla, farklı oturumları kaydetmede oldukça başarılıdır. Pakette üç tane örnek açılış teması var ve son olarak, sistemi kapatırken, yeniden başlatırken veya çıkarken kullanıcılara yardımcı olur.</Description>
|
||||
<Description xml:lang="pl">Xfce4-session jest zgodny z "menedżerem sesji" X11 zaprojektowanym do użycia ze środowiskiem graficznym Xfce4. Podczas wylogowywania, menedżer sesji zapisuje wszystkie uruchomione aplikacje. Przy ponownym zalogowaniu, przywraca je z oknami na tych samych pozycjach.</Description>
|
||||
<Archive type="tarbz2" sha1sum="87b5e1ec2b9ff1ca9398471623319dfc6aba6940" name="xfce4-session-4.16.0.tar.bz2">https://archive.xfce.org/xfce/4.16/src/xfce4-session-4.16.0.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="382e9564741522aae24ec69589c63d6020a8432b" name="xfce4-session-4.17.0.tar.bz2">https://archive.xfce.org/src/xfce/xfce4-session/4.17/xfce4-session-4.17.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>xfce4-dev-tools</Dependency>
|
||||
<Dependency>autoconf</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
@@ -99943,16 +100096,16 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>polkit-devel</Dependency>
|
||||
<Dependency>elogind-devel</Dependency>
|
||||
<Dependency>libwnck3-devel</Dependency>
|
||||
<Dependency>xorg-app-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency versionFrom="4.16.0">libxfce4ui-devel</Dependency>
|
||||
<Dependency versionFrom="4.16.0">libxfce4util-devel</Dependency>
|
||||
<Dependency versionFrom="4.17.0">libxfce4ui-devel</Dependency>
|
||||
<Dependency versionFrom="4.17.0">libxfce4util-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">mageia/0001-Export-XDG_CONFIG_HOME-and-XDG_CACHE_HOME.patch</Patch>
|
||||
<Patch level="1">mageia/xfce4-session-4.13.2-add-more-screen-lockers-to-xflock4.patch</Patch>
|
||||
<Patch level="1">mageia/xfce4-session-4.13.2-xinitrc.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>desktop/xfce/base/xfce4-session/pspec.xml</SourceURI>
|
||||
@@ -99991,6 +100144,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2022-09-14</Date>
|
||||
<Version>4.17.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2021-01-29</Date>
|
||||
<Version>4.16.0</Version>
|
||||
@@ -144620,6 +144780,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<Description xml:lang="en">KWin is the window manager of the K desktop environment.</Description>
|
||||
<Archive type="tarxz" sha1sum="9c6b85aae205b8fc5d2ec8bf9405c5654454e91c" name="kwin-5.25.5.tar.xz">mirrors://kde/stable/plasma/5.25.5/kwin-5.25.5.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>hwdata</Dependency>
|
||||
<Dependency>kactivities-devel</Dependency>
|
||||
<Dependency>kauth-devel</Dependency>
|
||||
<Dependency>kcmutils-devel</Dependency>
|
||||
@@ -144703,6 +144864,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
|
||||
<Name>kwin</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>hwdata</Dependency>
|
||||
<Dependency>kactivities</Dependency>
|
||||
<Dependency>kauth</Dependency>
|
||||
<Dependency>libcap</Dependency>
|
||||
@@ -255545,7 +255707,7 @@ components such as the Settings and gnome-shell.</Description>
|
||||
<Description xml:lang="tr">GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır.</Description>
|
||||
<Description xml:lang="pl">Wersja 4 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce.</Description>
|
||||
<Icon>gtk4-logo</Icon>
|
||||
<Archive type="tarxz" sha1sum="eeac4389692e284566c03a1a68a0e6ced22ae498" name="gtk-4.6.7.tar.xz">mirrors://gnome/gtk/4.6/gtk-4.6.7.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="f4f07131756e08c075399c9c9f9b07370d257bad" name="gtk-4.8.1.tar.xz">mirrors://gnome/gtk/4.8/gtk-4.8.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
@@ -255636,6 +255798,7 @@ components such as the Settings and gnome-shell.</Description>
|
||||
<Path fileType="man">/usr/share/man/man1/gtk4-encode-symbolic*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/gtk4-launch*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/gtk4-query-settings*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/gtk4-node-editor*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="library">/usr/lib/libgtk*</Path>
|
||||
<Path fileType="library">/usr/lib/gtk-4.0</Path>
|
||||
@@ -255650,7 +255813,7 @@ components such as the Settings and gnome-shell.</Description>
|
||||
<Summary xml:lang="tr">GTK4 demo uygulamaları</Summary>
|
||||
<IsA>app:gui</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="8">gtk4</Dependency>
|
||||
<Dependency release="9">gtk4</Dependency>
|
||||
<Dependency>librsvg</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -255682,7 +255845,7 @@ components such as the Settings and gnome-shell.</Description>
|
||||
<Summary xml:lang="tr">GTK4 için geliştirme dosyaları</Summary>
|
||||
<Summary xml:lang="pl">Pliki nagłówkowe do gtk4</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="8">gtk4</Dependency>
|
||||
<Dependency release="9">gtk4</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libXi-devel</Dependency>
|
||||
@@ -255716,7 +255879,7 @@ components such as the Settings and gnome-shell.</Description>
|
||||
<Summary xml:lang="en">GTK4 icon cache updater</Summary>
|
||||
<Summary xml:lang="tr">GTK4 için simge önbelleği güncelleyicisi</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="8">gtk4</Dependency>
|
||||
<Dependency release="9">gtk4</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/gtk*-update-icon-cache</Path>
|
||||
@@ -255724,6 +255887,13 @@ components such as the Settings and gnome-shell.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-09-16</Date>
|
||||
<Version>4.8.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2022-08-17</Date>
|
||||
<Version>4.6.7</Version>
|
||||
@@ -342309,7 +342479,7 @@ contacts, tasks, and calendar information.</Summary>
|
||||
<Summary xml:lang="tr">Güçlü bir sanallaştırma programı</Summary>
|
||||
<Description xml:lang="en">VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. This is the Open Source Edition which lacks USB support and some other things.</Description>
|
||||
<Description xml:lang="tr">VirtualBox, ev kullanımı yanında kurumsal kullanım alanı da bulan güçlü bir xf86 sanallaştırma ürünleri ailesidir. Bu sürüm, USB ve birkaç özellik için desteği bulunmayan açık kodlu uyarlamasıdır.</Description>
|
||||
<Archive type="tarbz2" sha1sum="87d82e9b47ceb40b21d15fddbcf4993785b24a27" name="VirtualBox-6.1.36.tar.bz2">http://download.virtualbox.org/virtualbox/6.1.36/VirtualBox-6.1.36.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="6d9ad6298fb9a40e91952d0462a4aae75f051e15" name="VirtualBox-6.1.38.tar.bz2">http://download.virtualbox.org/virtualbox/6.1.38/VirtualBox-6.1.38.tar.bz2</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="dkms.conf" permission="0644" owner="root">dkms.conf</AdditionalFile>
|
||||
<AdditionalFile target="dkms-guest.conf" permission="0644" owner="root">dkms-guest.conf</AdditionalFile>
|
||||
@@ -342403,8 +342573,8 @@ contacts, tasks, and calendar information.</Summary>
|
||||
<Dependency>libglvnd</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<AnyDependency>
|
||||
<Dependency version="6.1.36">module-virtualbox</Dependency>
|
||||
<Dependency version="6.1.36">virtualbox-dkms</Dependency>
|
||||
<Dependency version="6.1.38">module-virtualbox</Dependency>
|
||||
<Dependency version="6.1.38">virtualbox-dkms</Dependency>
|
||||
</AnyDependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -342444,8 +342614,8 @@ contacts, tasks, and calendar information.</Summary>
|
||||
<Dependency>xorg-server</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<AnyDependency>
|
||||
<Dependency version="6.1.36">module-virtualbox-guest</Dependency>
|
||||
<Dependency version="6.1.36">virtualbox-guest-dkms</Dependency>
|
||||
<Dependency version="6.1.38">module-virtualbox-guest</Dependency>
|
||||
<Dependency version="6.1.38">virtualbox-guest-dkms</Dependency>
|
||||
</AnyDependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -342494,6 +342664,13 @@ contacts, tasks, and calendar information.</Summary>
|
||||
</Conflicts>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="54">
|
||||
<Date>2022-09-16</Date>
|
||||
<Version>6.1.38</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="53">
|
||||
<Date>2022-07-21</Date>
|
||||
<Version>6.1.36</Version>
|
||||
@@ -344099,7 +344276,7 @@ from a wide variety of machine architectures.</Description>
|
||||
<Summary xml:lang="tr">The official VirtualBox Guest Additions ISO image</Summary>
|
||||
<Description xml:lang="en">The official VirtualBox Guest Additions ISO image</Description>
|
||||
<Description xml:lang="tr">The official VirtualBox Guest Additions ISO image</Description>
|
||||
<Archive type="binary" sha1sum="330b56f0b06661c4813d85b642be583313fd4731" name="VBoxGuestAdditions_6.1.34.iso">https://download.virtualbox.org/virtualbox/6.1.34/VBoxGuestAdditions_6.1.34.iso</Archive>
|
||||
<Archive type="binary" sha1sum="55e3b48ff590ff5706417ac8d6cee3f501235198" name="VBoxGuestAdditions_6.1.38.iso">https://download.virtualbox.org/virtualbox/6.1.38/VBoxGuestAdditions_6.1.38.iso</Archive>
|
||||
<SourceURI>hardware/virtualization/virtualbox-guest-iso/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
@@ -344112,6 +344289,13 @@ from a wide variety of machine architectures.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="15">
|
||||
<Date>2022-09-17</Date>
|
||||
<Version>6.1.38</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2022-04-29</Date>
|
||||
<Version>6.1.34</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
93d58bbd6174d8d48f41937f77b794f41ab08df0
|
||||
0f5a3522ca5d9a1f8a05360db5de233c44664adc
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
5c4a05d99dab44cd5f75d8fc9de3ba9b946d2cc1
|
||||
b84da0594fefd05b4bf16b29161bc9df14a52ed0
|
||||
Reference in New Issue
Block a user