@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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 pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "lf-r%s" % get.srcVERSION()
|
||||
|
||||
def build():
|
||||
shelltools.export("version", "%s" % get.srcVERSION())
|
||||
shelltools.system("GOPATH=%s gen/build.sh" % get.workDIR())
|
||||
|
||||
def install():
|
||||
pisitools.dobin("lf")
|
||||
pisitools.doman("lf.1")
|
||||
pisitools.insinto("/usr/share/applications", "lf.desktop")
|
||||
|
||||
pisitools.dodoc("LICENSE", "README.md")
|
||||
for i in ["etc/*"]:
|
||||
pisitools.insinto("/usr/share/doc/lf/examples/", "%s" % i)
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>lf</Name>
|
||||
<Homepage>https://godoc.org/github.com/gokcehan/lf</Homepage>
|
||||
<Packager>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>util.misc</PartOf>
|
||||
<Summary>Terminal file manager.</Summary>
|
||||
<Description>lf (as in "list files") is a terminal file manager written in Go. It is heavily inspired by ranger with some missing and extra features.</Description>
|
||||
<Archive sha1sum="56f1f1951772f7133971c45a614a4b92b6ee036a" type="targz">
|
||||
https://github.com/gokcehan/lf/archive/refs/tags/r25.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>golang</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>lf</Name>
|
||||
<RuntimeDependencies>
|
||||
<!-- <Dependency></Dependency> -->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/lf.1</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-10-13</Date>
|
||||
<Version>25</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
Reference in New Issue
Block a user