nautilus-admin nautilus-python
This commit is contained in:
Executable
+3
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>desktop.gnome.admin</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "LICENSE", "NEWS", "README*")
|
||||
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>nautilus-admin</Name>
|
||||
<Homepage>https://github.com/brunonova/nautilus-admin</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Extension for Nautilus to do administrative operations</Summary>
|
||||
<Description>Extension for Nautilus to do administrative operations</Description>
|
||||
<Archive sha1sum="5618e7c6949dd3a002ed14d39fc379aac74f5a2b" type="targz">https://github.com/brunonova/nautilus-admin/archive/refs/tags/v1.1.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>nautilus-admin.patch</Patch>
|
||||
<Patch level="1">nautilus-admin.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>nautilus-admin</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>nautilus-python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/nautilus-python</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-06-21</Date>
|
||||
<Version>1.1.9</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>nautilus-admin</Name>
|
||||
<Summary xml:lang="tr">Extension for Nautilus to do administrative operations</Summary>
|
||||
<Description xml:lang="tr">Extension for Nautilus to do administrative operations</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.export("PYTHON","/usr/bin/python3")
|
||||
|
||||
autotools.configure("PYTHON=python3 \
|
||||
--enable-gtk-doc")
|
||||
|
||||
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*")
|
||||
@@ -0,0 +1,147 @@
|
||||
From bd4820186751034c6b5acb9c71b1aeab03c56523 Mon Sep 17 00:00:00 2001
|
||||
From: Andreas Henriksson <andreas@fatal.se>
|
||||
Date: Mon, 11 May 2020 14:57:45 +0200
|
||||
Subject: [PATCH] Fix build with gcc 10
|
||||
|
||||
Bug-Debian: https://bugs.debian.org/957578
|
||||
Forwarded: https://gitlab.gnome.org/GNOME/nautilus-python/-/merge_requests/7
|
||||
Last-Update: 2020-05-11
|
||||
---
|
||||
src/nautilus-python-object.c | 10 +++++-----
|
||||
src/nautilus-python.c | 13 +++++++++++++
|
||||
src/nautilus-python.h | 22 +++++++++++-----------
|
||||
3 files changed, 29 insertions(+), 16 deletions(-)
|
||||
|
||||
diff --git a/src/nautilus-python-object.c b/src/nautilus-python-object.c
|
||||
index f343070..da185ad 100644
|
||||
--- a/src/nautilus-python-object.c
|
||||
+++ b/src/nautilus-python-object.c
|
||||
@@ -40,7 +40,7 @@ int __PyString_Check(PyObject *obj) {
|
||||
#endif
|
||||
}
|
||||
|
||||
-char* __PyString_AsString(PyObject *obj) {
|
||||
+const char* __PyString_AsString(PyObject *obj) {
|
||||
#if PY_MAJOR_VERSION >= 3
|
||||
return PyUnicode_AsUTF8(obj);
|
||||
#else
|
||||
@@ -389,7 +389,7 @@ beach:
|
||||
#define METHOD_NAME "update_file_info"
|
||||
static NautilusOperationResult
|
||||
nautilus_python_object_update_file_info (NautilusInfoProvider *provider,
|
||||
- NautilusFile *file,
|
||||
+ NautilusFileInfo *file_info,
|
||||
GClosure *update_complete,
|
||||
NautilusOperationHandle **handle) {
|
||||
NautilusPythonObject *object = (NautilusPythonObject*)provider;
|
||||
@@ -408,12 +408,12 @@ nautilus_python_object_update_file_info (NautilusInfoProvider *provider,
|
||||
pygobject_new((GObject*)provider),
|
||||
py_handle,
|
||||
pyg_boxed_new(G_TYPE_CLOSURE, update_complete, TRUE, TRUE),
|
||||
- pygobject_new((GObject*)file));
|
||||
+ pygobject_new((GObject*)file_info));
|
||||
}
|
||||
else if (PyObject_HasAttrString(object->instance, "update_file_info")) {
|
||||
py_ret = PyObject_CallMethod(object->instance,
|
||||
METHOD_PREFIX METHOD_NAME, "(N)",
|
||||
- pygobject_new((GObject*)file));
|
||||
+ pygobject_new((GObject*)file_info));
|
||||
}
|
||||
else {
|
||||
goto beach;
|
||||
@@ -434,7 +434,7 @@ nautilus_python_object_update_file_info (NautilusInfoProvider *provider,
|
||||
#endif
|
||||
|
||||
beach:
|
||||
- free_pygobject_data(file, NULL);
|
||||
+ free_pygobject_data(file_info, NULL);
|
||||
Py_XDECREF(py_ret);
|
||||
pyg_gil_state_release(state);
|
||||
return ret;
|
||||
diff --git a/src/nautilus-python.c b/src/nautilus-python.c
|
||||
index 843e3c6..510cdfb 100644
|
||||
--- a/src/nautilus-python.c
|
||||
+++ b/src/nautilus-python.c
|
||||
@@ -22,6 +22,7 @@
|
||||
#endif
|
||||
|
||||
#include <Python.h>
|
||||
+#define NO_IMPORT_PYGOBJECT //To avoid a multiple definition, nautilus-python-object.c also includes and does the import.
|
||||
#include <pygobject.h>
|
||||
#include <gmodule.h>
|
||||
#include <gtk/gtk.h>
|
||||
@@ -42,6 +43,18 @@ static gboolean nautilus_python_init_python(void);
|
||||
static GArray *all_types = NULL;
|
||||
|
||||
|
||||
+PyTypeObject *_PyGtkWidget_Type;
|
||||
+PyTypeObject *_PyNautilusColumn_Type;
|
||||
+PyTypeObject *_PyNautilusColumnProvider_Type;
|
||||
+PyTypeObject *_PyNautilusInfoProvider_Type;
|
||||
+PyTypeObject *_PyNautilusLocationWidgetProvider_Type;
|
||||
+PyTypeObject *_PyNautilusMenu_Type;
|
||||
+PyTypeObject *_PyNautilusMenuItem_Type;
|
||||
+PyTypeObject *_PyNautilusMenuProvider_Type;
|
||||
+PyTypeObject *_PyNautilusPropertyPage_Type;
|
||||
+PyTypeObject *_PyNautilusPropertyPageProvider_Type;
|
||||
+PyTypeObject *_PyNautilusOperationHandle_Type;
|
||||
+
|
||||
static inline gboolean
|
||||
np_init_pygobject(void) {
|
||||
PyObject *gobject = pygobject_init (PYGOBJECT_MAJOR_VERSION, PYGOBJECT_MINOR_VERSION, PYGOBJECT_MICRO_VERSION);
|
||||
diff --git a/src/nautilus-python.h b/src/nautilus-python.h
|
||||
index 4c181f8..c940a06 100644
|
||||
--- a/src/nautilus-python.h
|
||||
+++ b/src/nautilus-python.h
|
||||
@@ -43,37 +43,37 @@ extern NautilusPythonDebug nautilus_python_debug;
|
||||
#define debug_enter_args(x, y) { if (nautilus_python_debug & NAUTILUS_PYTHON_DEBUG_MISC) \
|
||||
g_printf("%s: entered " x "\n", __FUNCTION__, y); }
|
||||
|
||||
-PyTypeObject *_PyGtkWidget_Type;
|
||||
+extern PyTypeObject *_PyGtkWidget_Type;
|
||||
#define PyGtkWidget_Type (*_PyGtkWidget_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusColumn_Type;
|
||||
+extern PyTypeObject *_PyNautilusColumn_Type;
|
||||
#define PyNautilusColumn_Type (*_PyNautilusColumn_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusColumnProvider_Type;
|
||||
+extern PyTypeObject *_PyNautilusColumnProvider_Type;
|
||||
#define PyNautilusColumnProvider_Type (*_PyNautilusColumnProvider_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusInfoProvider_Type;
|
||||
+extern PyTypeObject *_PyNautilusInfoProvider_Type;
|
||||
#define PyNautilusInfoProvider_Type (*_PyNautilusInfoProvider_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusLocationWidgetProvider_Type;
|
||||
+extern PyTypeObject *_PyNautilusLocationWidgetProvider_Type;
|
||||
#define PyNautilusLocationWidgetProvider_Type (*_PyNautilusLocationWidgetProvider_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusMenu_Type;
|
||||
+extern PyTypeObject *_PyNautilusMenu_Type;
|
||||
#define PyNautilusMenu_Type (*_PyNautilusMenu_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusMenuItem_Type;
|
||||
+extern PyTypeObject *_PyNautilusMenuItem_Type;
|
||||
#define PyNautilusMenuItem_Type (*_PyNautilusMenuItem_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusMenuProvider_Type;
|
||||
+extern PyTypeObject *_PyNautilusMenuProvider_Type;
|
||||
#define PyNautilusMenuProvider_Type (*_PyNautilusMenuProvider_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusPropertyPage_Type;
|
||||
+extern PyTypeObject *_PyNautilusPropertyPage_Type;
|
||||
#define PyNautilusPropertyPage_Type (*_PyNautilusPropertyPage_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusPropertyPageProvider_Type;
|
||||
+extern PyTypeObject *_PyNautilusPropertyPageProvider_Type;
|
||||
#define PyNautilusPropertyPageProvider_Type (*_PyNautilusPropertyPageProvider_Type)
|
||||
|
||||
-PyTypeObject *_PyNautilusOperationHandle_Type;
|
||||
+extern PyTypeObject *_PyNautilusOperationHandle_Type;
|
||||
#define PyNautilusOperationHandle_Type (*_PyNautilusOperationHandle_Type)
|
||||
|
||||
#endif /* NAUTILUS_PYTHON_H */
|
||||
--
|
||||
GitLab
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>nautilus-python</Name>
|
||||
<Homepage>https://wiki.gnome.org/Projects/NautilusPython</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>Python bindings for the Nautilus Extension API</Summary>
|
||||
<Description>Python bindings for the Nautilus Extension API</Description>
|
||||
<Archive sha1sum="6b11ff66603053c8355328969dffbeaab0aaa2ff" type="tarxz">https://download.gnome.org/sources/nautilus-python/1.2/nautilus-python-1.2.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>yelp-tools</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>nautilus-devel</Dependency>
|
||||
<Dependency>python3-pygobject3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">gcc10.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>nautilus-python</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>nautilus</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>nautilus-python-devel</Name>
|
||||
<Summary>Development files for nautilus-python</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">nautilus-python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-06-21</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>nautilus-python</Name>
|
||||
<Summary xml:lang="tr">Python bindings for the Nautilus Extension API</Summary>
|
||||
<Description xml:lang="tr">Python bindings for the Nautilus Extension API</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+162
-28
@@ -14358,8 +14358,8 @@
|
||||
<Name>bluez</Name>
|
||||
<Homepage>http://bluez.sourceforge.net</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv2+</License>
|
||||
<IsA>service</IsA>
|
||||
@@ -14370,54 +14370,60 @@
|
||||
<Summary xml:lang="tr">Linux resmi Bluetooth protokol yığını</Summary>
|
||||
<Description xml:lang="en">bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols.</Description>
|
||||
<Description xml:lang="tr">Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir.</Description>
|
||||
<Archive type="tarxz" sha1sum="02e247790eab70329f2d94794e46181bb28e975f" name="bluez-5.54.tar.xz">https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.54.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="9f0d55e30cc62c1a1976eacb81811a925b4355d5" name="bluez-5.59.tar.xz">https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.59.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>docutils</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>cups-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>libnl-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
<Dependency>libical-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
<Dependency>readline-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>json-c-devel</Dependency>
|
||||
<Dependency>libical-devel</Dependency>
|
||||
<Dependency>libnl-devel</Dependency>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
<Dependency>readline-devel</Dependency>
|
||||
<Dependency>python3-docutils</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">0001-Allow-using-obexd-without-systemd-in-the-user-session.patch</Patch>
|
||||
<Patch level="1">refresh_adv_manager_for_non-LE_devices.diff</Patch>
|
||||
<Patch level="1">0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch</Patch>
|
||||
<Patch level="1">0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch</Patch>
|
||||
<Patch level="1">0001-rfkill-Fix-reading-from-rfkill-socket.patch</Patch>
|
||||
<Patch level="1">0002-Use-g_memdup2-everywhere.patch</Patch>
|
||||
<Patch level="1">0005-media-rename-local-function-conflicting-with-pause-2.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>hardware/bluetooth/bluez/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>bluez</Name>
|
||||
<Summary xml:lang="en">Development files for bluez-libs</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="12">bluez-libs</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>eudev</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>json-c</Dependency>
|
||||
<Dependency>libical</Dependency>
|
||||
<Dependency>readline</Dependency>
|
||||
<Dependency release="11">bluez-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/lib/udev/rules.d</Path>
|
||||
<Path fileType="data">/lib/systemd/system</Path>
|
||||
<Path fileType="data">/usr/share/misc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="executable">/lib/udev</Path>
|
||||
<Path fileType="executable">/lib/bluetooth/obexd</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/lib/bluetooth/bluetoothd</Path>
|
||||
<Path fileType="executable">/lib/bluetooth/obexd</Path>
|
||||
<Path fileType="data">/lib/systemd/system</Path>
|
||||
<Path fileType="executable">/lib/udev</Path>
|
||||
<Path fileType="data">/lib/udev/rules.d</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/var/lib/bluetooth</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="data">/usr/share/alsa/bluetooth.conf</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/misc</Path>
|
||||
<Path fileType="data">/usr/share/zsh</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="data">/var/lib/bluetooth</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
@@ -14440,7 +14446,7 @@
|
||||
<Summary xml:lang="en">Development files for bluez-libs</Summary>
|
||||
<Summary xml:lang="tr">bluez-libs için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="11">bluez-libs</Dependency>
|
||||
<Dependency release="12">bluez-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/bluetooth</Path>
|
||||
@@ -14448,6 +14454,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2021-06-17</Date>
|
||||
<Version>5.59</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2020-11-07</Date>
|
||||
<Version>5.54</Version>
|
||||
@@ -15419,7 +15432,7 @@
|
||||
<Summary xml:lang="tr">Xfce için resim göstericisi</Summary>
|
||||
<Description xml:lang="en">Ristretto is a fast and lightweight picture-viewer for the Xfce desktop environment.</Description>
|
||||
<Description xml:lang="tr">Ristretto, Xfce masaüstü ortamı için hızlı ve hafif bir resim görüntüleyicisidir.</Description>
|
||||
<Archive type="tarbz2" sha1sum="88f2a4fcb704892f1906ba365189160abc6da961" name="ristretto-0.10.0.tar.bz2">https://archive.xfce.org/src/apps/ristretto/0.10/ristretto-0.10.0.tar.bz2</Archive>
|
||||
<Archive type="tarbz2" sha1sum="8229176cc6e35f54a1e2983b4fba0c379ed88474" name="ristretto-0.11.0.tar.bz2">https://archive.xfce.org/src/apps/ristretto/0.11/ristretto-0.11.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
@@ -15458,6 +15471,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2021-06-21</Date>
|
||||
<Version>0.11.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-11-21</Date>
|
||||
<Version>0.10.0</Version>
|
||||
@@ -31046,6 +31066,49 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>nautilus-admin</Name>
|
||||
<Homepage>https://github.com/brunonova/nautilus-admin</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>desktop.gnome.admin</PartOf>
|
||||
<Summary xml:lang="en">Extension for Nautilus to do administrative operations</Summary>
|
||||
<Summary xml:lang="tr">Extension for Nautilus to do administrative operations</Summary>
|
||||
<Description xml:lang="en">Extension for Nautilus to do administrative operations</Description>
|
||||
<Description xml:lang="tr">Extension for Nautilus to do administrative operations</Description>
|
||||
<Archive type="targz" sha1sum="5618e7c6949dd3a002ed14d39fc379aac74f5a2b" name="v1.1.9.tar.gz">https://github.com/brunonova/nautilus-admin/archive/refs/tags/v1.1.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/gnome/admin/nautilus-admin/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>nautilus-admin</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>nautilus-python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/nautilus-python</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-06-21</Date>
|
||||
<Version>1.1.9</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>gitg</Name>
|
||||
@@ -31239,6 +31302,70 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>nautilus-python</Name>
|
||||
<Homepage>https://wiki.gnome.org/Projects/NautilusPython</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app</IsA>
|
||||
<PartOf>desktop.gnome.apps</PartOf>
|
||||
<Summary xml:lang="en">Python bindings for the Nautilus Extension API</Summary>
|
||||
<Summary xml:lang="tr">Python bindings for the Nautilus Extension API</Summary>
|
||||
<Description xml:lang="en">Python bindings for the Nautilus Extension API</Description>
|
||||
<Description xml:lang="tr">Python bindings for the Nautilus Extension API</Description>
|
||||
<Archive type="tarxz" sha1sum="6b11ff66603053c8355328969dffbeaab0aaa2ff" name="nautilus-python-1.2.3.tar.xz">https://download.gnome.org/sources/nautilus-python/1.2/nautilus-python-1.2.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>yelp-tools</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>nautilus-devel</Dependency>
|
||||
<Dependency>python3-pygobject3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">gcc10.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>desktop/gnome/apps/nautilus-python/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>nautilus-python</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>nautilus</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>nautilus-python-devel</Name>
|
||||
<Summary xml:lang="en">Development files for nautilus-python</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">nautilus-python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-06-21</Date>
|
||||
<Version>1.2.3</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>dconf-editor</Name>
|
||||
@@ -31548,9 +31675,9 @@
|
||||
<Description xml:lang="en">Movie player for GNOME</Description>
|
||||
<Description xml:lang="tr">GNOME için film oynatıcı</Description>
|
||||
<Icon>totem</Icon>
|
||||
<Archive type="tarxz" sha1sum="e706c9faa350788bae851fe86a5ba4695b4596dc" name="totem-3.38.0.tar.xz">mirrors://gnome/totem/3.38/totem-3.38.0.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="76e1cd9eadf9f59ebd04e709e2afb7ed15ea6d8b" name="totem-3.38.1.tar.xz">mirrors://gnome/totem/3.38/totem-3.38.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>clutter-devel</Dependency>
|
||||
<Dependency>clutter-gst-devel</Dependency>
|
||||
<Dependency>clutter-gtk-devel</Dependency>
|
||||
@@ -31627,7 +31754,7 @@
|
||||
<Name>totem-devel</Name>
|
||||
<Summary xml:lang="tr">totem için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">totem</Dependency>
|
||||
<Dependency release="2">totem</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>totem-pl-parser-devel</Dependency>
|
||||
@@ -31639,6 +31766,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2021-06-21</Date>
|
||||
<Version>3.38.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2021-06-15</Date>
|
||||
<Version>3.38.0</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
1a5d448ae07561a05c3ea630b9add821f7e3b073
|
||||
2ef762e36718dccf0323c3ed0a344b14c8660245
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
018c8187ac5fba6c030dfa9578ebf3320cea3177
|
||||
25f3be25a691368bb87e15d7426173de5687d1f3
|
||||
Reference in New Issue
Block a user