gnome-42.0

This commit is contained in:
Rmys
2022-06-01 16:05:26 +03:00
parent 31fad72a70
commit 32523b32f8
47 changed files with 534 additions and 58 deletions
+5 -5
View File
@@ -4,15 +4,15 @@
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools, get, pisitools
from pisi.actionsapi import autotools, get, pisitools, mesontools
def setup():
autotools.configure()
mesontools.configure()
def build():
autotools.make()
mesontools.build()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
pisitools.dodoc("AUTHORS", "ChangeLog*", "README*", "NEWS")
+9 -1
View File
@@ -13,8 +13,9 @@
<IsA>app:gui</IsA>
<Summary>A collection of plugins for the eog image viewer</Summary>
<Description>A collection of plugins for the eog image viewer</Description>
<Archive sha1sum="db26a05f72d37576a1cd8353270039d6a206fcc0" type="tarxz">mirrors://gnome/eog-plugins/3.26/eog-plugins-3.26.8.tar.xz</Archive>
<Archive sha1sum="a0238985ec959dd171b70af6d574f944ab1b2eaf" type="tarxz">mirrors://gnome/eog-plugins/42/eog-plugins-42.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>libchamplain-devel</Dependency>
<Dependency>clutter-gtk-devel</Dependency>
<Dependency>eog-devel</Dependency>
@@ -75,6 +76,13 @@
</Package>
<History>
<Update release="3">
<Date>2022-04-24</Date>
<Version>42.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="2">
<Date>2022-01-09</Date>
<Version>3.26.8</Version>
+10 -1
View File
@@ -13,7 +13,7 @@
<IsA>app:gui</IsA>
<Summary>Eye of GNOME image viewer</Summary>
<Description>Eye of GNOME image viewer</Description>
<Archive sha1sum="a5615e83a7ddb4ec19dbe8ddd94b34f4cbae5cf0" type="tarxz">mirrors://gnome/eog/41/eog-41.1.tar.xz</Archive>
<Archive sha1sum="e12eb1e1e556a3fc070d107260c22c5da1abf44e" type="tarxz">mirrors://gnome/eog/42/eog-42.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
@@ -37,6 +37,7 @@
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>meson</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>libhandy-devel</Dependency>
<Dependency>appstream-glib-devel</Dependency>
</BuildDependencies>
<Patches>
@@ -59,6 +60,7 @@
<Dependency>libexif</Dependency>
<Dependency>libpeas</Dependency>
<Dependency>librsvg</Dependency>
<Dependency>libhandy</Dependency>
<Dependency>libportal</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gnome-desktop</Dependency>
@@ -96,6 +98,13 @@
</Package>
<History>
<Update release="5">
<Date>2022-05-28</Date>
<Version>42.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2021-12-05</Date>
<Version>41.1</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>app</IsA>
<Summary>Access, organize, and share your photos on GNOME</Summary>
<Description>GNOME'de fotoğraflarınıza erişin, düzenleyin ve paylaşın </Description>
<Archive sha1sum="4f14ee6d7dcb55c1c07c9e043a56d2d5cb5cd311" type="tarxz">https://download.gnome.org/sources/gnome-photos/40/gnome-photos-40.0.tar.xz</Archive>
<Archive sha1sum="f4b68bf64a3cb38011b3dcd123e16df7541d34bf" type="tarxz">https://download.gnome.org/sources/gnome-photos/42/gnome-photos-42.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>git</Dependency>
<Dependency>meson</Dependency>
@@ -87,6 +87,13 @@
</Package>
<History>
<Update release="2">
<Date>2022-03-21</Date>
<Version>42.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2021-06-02</Date>
<Version>40.0</Version>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Graphical interface for advanced GNOME 3 settings (Tweak Tool)</Summary>
<Description>Gelişmiş GNOME 3 ayarları için grafik arayüz</Description>
<Archive sha1sum="1e8a5f0e4c2cddaeb2672804945d04130fca4b86" type="tarxz">https://download.gnome.org/sources/gnome-tweaks/40/gnome-tweaks-40.0.tar.xz</Archive>
<Archive sha1sum="4d69fc7bb4982a281066d9c62d6a2713df2955e2" type="tarxz">https://download.gnome.org/sources/gnome-tweaks/40/gnome-tweaks-40.10.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>libhandy-devel</Dependency>
@@ -48,6 +48,13 @@
</Package>
<History>
<Update release="3">
<Date>2022-03-20</Date>
<Version>40.10</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="2">
<Date>2021-10-24</Date>
<Version>40.0</Version>
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import mesontools
from pisi.actionsapi import pisitools
def setup():
mesontools.configure("-Ddocs=false \
-Dman=true \
-Dstemmer=disabled \
-Dsystemd_user_services=false \
-Dsystemd_user_services_dir=no \
-Dunicode_support=icu")
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("AUTHORS", "COPYING*", "HACKING.md", "MAINTAINERS", "NEWS", "README*")
@@ -0,0 +1,25 @@
From c14fa25f2b616b170b453861de87ef21c05dc6c4 Mon Sep 17 00:00:00 2001
From: Matt Turner <mattst88@gmail.com>
Date: Sat, 13 Mar 2021 14:29:58 -0500
Subject: [PATCH] Fix asciidoc manpage.xsl location
---
docs/manpages/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/manpages/meson.build b/docs/manpages/meson.build
index f90c757cf..101cbca16 100644
--- a/docs/manpages/meson.build
+++ b/docs/manpages/meson.build
@@ -32,7 +32,7 @@ foreach m : manpages
command: [xsltproc,
'--output', '@OUTPUT@',
'--stringparam', 'man.authors.section.enabled', '0',
- '/etc/asciidoc/docbook-xsl/manpage.xsl', '@INPUT@'],
+ '/usr/share/asciidoc/docbook-xsl/manpage.xsl', '@INPUT@'],
input: xml,
output: manpage,
install: true,
--
2.26.3
+121
View File
@@ -0,0 +1,121 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>tracker</Name>
<Homepage>https://gitlab.gnome.org/GNOME/tracker</Homepage>
<Packager>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<Summary>Tracker is an efficient search engine and triplestore for desktop, embedded and mobile.</Summary>
<Description>Tracker is an efficient search engine and triplestore for desktop, embedded and mobile.</Description>
<Archive sha1sum="c15bdaaf8b1b9fcc3e6c2399726891f97758ce6b">https://download.gnome.org/sources/tracker/3.3/tracker-3.3.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>vala-devel</Dependency>
<Dependency>asciidoc</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>json-glib-devel</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>libsoup3-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>NetworkManager-devel</Dependency>
<Dependency>bash-completion</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch>tracker-3.1.1-Fix-asciidoc-manpage.xsl-location.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>tracker</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
<Dependency>icu4c</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>libsoup3</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>json-glib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/girepository-1.0</Path>
<Path fileType="library">/usr/lib/lib*.so*</Path>
<Path fileType="library">/usr/lib/tracker*</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/tracker3</Path>
<Path fileType="data">/usr/share/bash-completion</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
</Files>
</Package>
<Package>
<Name>tracker-devel</Name>
<RuntimeDependencies>
<Dependency release="current">tracker</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>json-glib-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
<Path fileType="data">/usr/share/vala</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2022-06-01</Date>
<Version>3.3.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2021-10-31</Date>
<Version>3.2.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2021-09-18</Date>
<Version>3.2.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="2">
<Date>2021-06-15</Date>
<Version>3.1.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2021-05-28</Date>
<Version>3.1.1</Version>
<Comment>First release for Pisi Linux.</Comment>
<Name>Berk Çakar</Name>
<Email>berk2238@hotmail.com</Email>
</Update>
</History>
</PISI>