Merge pull request #9742 from 4fury-c3440d8/no

added new packages.
This commit is contained in:
Rmys
2021-10-14 11:00:08 +03:00
committed by GitHub
122 changed files with 5217 additions and 15411 deletions
+19
View File
@@ -0,0 +1,19 @@
#!/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, autotools, get
def setup():
shelltools.system("NOCONFIGURE=1 ./autogen.sh")
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# pisitools.dodoc("AUTHORS", "NEWS")
@@ -0,0 +1,25 @@
From 64ac3a6f94cd299e5e14945dc31b48f009dec152 Mon Sep 17 00:00:00 2001
From: Rico Tzschichholz <ricotz@ubuntu.com>
Date: Wed, 30 Dec 2020 16:50:32 +0100
Subject: [PATCH] Use GenericArray API only
---
libzeitgeist/where-clause.vala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libzeitgeist/where-clause.vala b/libzeitgeist/where-clause.vala
index 204e9b1a..c3e6fa62 100644
--- a/libzeitgeist/where-clause.vala
+++ b/libzeitgeist/where-clause.vala
@@ -216,7 +216,7 @@ namespace Zeitgeist
#else
long[] pointers = new long[gptrarr.length + 1];
#endif
- Memory.copy(pointers, ((PtrArray *) gptrarr)->pdata,
+ Memory.copy(pointers, (void*) gptrarr.data,
gptrarr.length * sizeof (void *));
return (T[]) pointers;
}
--
GitLab
+81
View File
@@ -0,0 +1,81 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>zeitgeist</Name>
<Homepage>https://zeitgeist.freedesktop.org/</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>LGPL-2.1</License>
<IsA>library</IsA>
<PartOf>util.admin</PartOf>
<Summary>Activity logging framework.</Summary>
<Description>Zeitgeist is a service which logs the users's activities and events (files opened, websites visites, conversations held with other people, etc.) and makes relevant information available to other applications.</Description>
<Archive sha1sum="c54ca4b03f69426ffca7ffde73a571b261c403de" type="tarbz2">
https://gitlab.freedesktop.org/zeitgeist/zeitgeist/-/archive/v1.0.3/zeitgeist-v1.0.3.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>dbus-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>vala-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>python3-six</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>python3-rdflib</Dependency>
<Dependency>python3-isodate</Dependency>
<Dependency>json-glib-devel</Dependency>
<Dependency>python3-pyparsing</Dependency>
<Dependency>telepathy-glib-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level='1'>Use_GenericArray_API_only.patch</Patch>
</Patches>
</Source>
<Package>
<Name>zeitgeist</Name>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>python3</Dependency>
<Dependency>json-glib</Dependency>
<Dependency>dbus-python3</Dependency>
<Dependency>telepathy-glib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>zeitgeist-devel</Name>
<RuntimeDependencies>
<Dependency release='current'>zeitgeist</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-10-13</Date>
<Version>1.0.3</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>