Merge branch 'master' of https://github.com/pisilinux/main
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#!/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.system("./bootstrap")
|
||||
autotools.configure("--enable-jpeg \
|
||||
--enable-tjpeg \
|
||||
--enable-pam-config=unix \
|
||||
--enable-fuse \
|
||||
--enable-opus \
|
||||
--enable-rfxcodec \
|
||||
--enable-mp3lame \
|
||||
--enable-pixman=yes \
|
||||
--enable-painter \
|
||||
--enable-vsock")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("NEWS*", "COPYING", "README*")
|
||||
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xrdp</Name>
|
||||
<Homepage>https://xorg.freedesktop.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>Apache</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>xrdp an open source RDP server</Summary>
|
||||
<Description>xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü</Description>
|
||||
<Archive sha1sum="d677d8fe70e8713ad90da9e98585e6238ad57476" type="targz">https://github.com/neutrinolabs/xrdp/releases/download/v0.9.16/xrdp-0.9.16.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>nasm</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>pam-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>fuse-devel</Dependency>
|
||||
<Dependency>libopus-devel</Dependency>
|
||||
<Dependency>lame-devel</Dependency>
|
||||
<Dependency>pixman-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libXfixes-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
<!--
|
||||
|
||||
<Dependency>mit-kerberos</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>e2fsprogs-devel</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>xrdp.patch</Patch>
|
||||
<Patch level="1">xrdp.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xrdp</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>pam</Dependency>
|
||||
<Dependency>fuse</Dependency>
|
||||
<Dependency>lame</Dependency>
|
||||
<Dependency>pixman</Dependency>
|
||||
<Dependency>mit-kerberos</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libopus</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xrdp-devel</Name>
|
||||
<Summary>Development files for xrdp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xrdp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-29</Date>
|
||||
<Version>0.9.16</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xrdp</Name>
|
||||
<Summary xml:lang="tr">xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü</Summary>
|
||||
<Description xml:lang="tr">xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,25 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("NOCONFIGURE=1 ./autogen.sh")
|
||||
autotools.configure("--disable-static \
|
||||
--prefix=/usr")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING*", "NEWS")
|
||||
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gnome-autoar</Name>
|
||||
<Homepage>https://gitlab.gnome.org/GNOME/gnome-autoar</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<Summary>Archive framework for GNOME</Summary>
|
||||
<Description>gnome-autoar provides functions and widgets for GNOME applications which want to use archives as a method to transfer directories over the Internet.</Description>
|
||||
<Archive sha1sum="312d92faba6ca4f0a74fb37ea8583d0dec7b5e46">https://download.gnome.org/sources/gnome-autoar/0.3/gnome-autoar-0.3.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>libarchive-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gnome-autoar</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>libarchive</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/girepository-1.0</Path>
|
||||
<Path fileType="library">/usr/lib/lib*.so*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>gnome-autoar-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">gnome-autoar</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="data">/usr/share/vala</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-28</Date>
|
||||
<Version>0.3.2</Version>
|
||||
<Comment>First release for Pisi Linux</Comment>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>The GNU Privacy Guard, a PGP replacement</Summary>
|
||||
<Description>GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories.</Description>
|
||||
<Archive sha1sum="d5290f0781df5dc83302127d6065fb59b35e53d7" type="tarbz2">https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.20.tar.bz2</Archive>
|
||||
<Archive sha1sum="d928d4bd0808ffb8fe20d1161501401d5d389458" type="tarbz2">https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.27.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>openldap-client</Dependency>
|
||||
<Dependency>pinentry</Dependency>
|
||||
@@ -89,6 +89,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2021-05-28</Date>
|
||||
<Version>2.2.27</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2020-11-09</Date>
|
||||
<Version>2.2.20</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>GNU TLS Library</Summary>
|
||||
<Description>gnutls is a project that aims to develop a library which provides a secure layer, over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group.</Description>
|
||||
<Archive sha1sum="00ef7d93347df586c3d1a00f13c326706c0c59ba" type="tarxz">https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.15.tar.xz</Archive>
|
||||
<Archive sha1sum="5de5d25534ee5910ea9ee6aaeeb6af1af4350c1e" type="tarxz">https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/gnutls-3.7.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gc-devel</Dependency>
|
||||
<Dependency>gmp-devel</Dependency>
|
||||
@@ -99,6 +99,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="14">
|
||||
<Date>2021-05-28</Date>
|
||||
<Version>3.7.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2021-03-01</Date>
|
||||
<Version>3.6.15</Version>
|
||||
|
||||
@@ -7,6 +7,10 @@
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.system("sed -i 's:$(LIBDIR)/$(PKGCONFIG_DIR):/usr/lib/pkgconfig:' Makefile")
|
||||
|
||||
def build():
|
||||
autotools.make("NO_ARLIB=1 LIBDIR=/lib USRLIBDIR=/usr/lib NO_GLIBC_KEYERR=1 CFLAGS=\"%s\"" % get.CFLAGS())
|
||||
|
||||
@@ -33,6 +33,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-05-31</Date>
|
||||
<Version>1.6.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-01-08</Date>
|
||||
<Version>1.6.1</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Library handling X.509 certificates and CMS data</Summary>
|
||||
<Description>libksba is a library designed to build software based on the X.509 and CMS protocols.</Description>
|
||||
<Archive sha1sum="a98385734a0c3f5b713198e8d6e6e4aeb0b76fde" type="tarbz2">https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.3.5.tar.bz2</Archive>
|
||||
<Archive sha1sum="740ac2551b33110e879aff100c6a6749284daf97" type="tarbz2">https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.5.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libgpg-error-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -45,6 +45,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-05-28</Date>
|
||||
<Version>1.5.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-01-19</Date>
|
||||
<Version>1.3.5</Version>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Network Security Services</Summary>
|
||||
<Description>Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards.</Description>
|
||||
<Archive sha1sum="ecdf1352cb35d43a2bb4e276ece100c30a26a0ec" type="targz">https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_63_RTM/src/nss-3.63.tar.gz</Archive>
|
||||
<Archive sha1sum="c0d452f828e16e3345e891fe2bd016250f1b51e1" type="targz">https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_66_RTM/src/nss-3.66.tar.gz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="dist/pkgconfig/nss.pc.in">nss.pc.in</AdditionalFile>
|
||||
<AdditionalFile target="dist/pkgconfig/nss-config.in">nss-config.in</AdditionalFile>
|
||||
@@ -77,6 +77,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="30">
|
||||
<Date>2021-05-31</Date>
|
||||
<Version>3.66</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="29">
|
||||
<Date>2021-03-19</Date>
|
||||
<Version>3.63</Version>
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
#!/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("-Dtracker_core=system \
|
||||
-Ddocs=false \
|
||||
-Dextract=true \
|
||||
-Dfunctional_tests=false \
|
||||
-Dcue=enabled \
|
||||
-Dexif=enabled \
|
||||
-Dflac=enabled \
|
||||
-Dgif=enabled \
|
||||
-Dgsf=enabled \
|
||||
-Diptc=enabled \
|
||||
-Diso=enabled \
|
||||
-Djpeg=enabled \
|
||||
-Dpdf=enabled \
|
||||
-Dplaylist=enabled \
|
||||
-Dpng=enabled \
|
||||
-Draw=enabled \
|
||||
-Dtaglib=enabled \
|
||||
-Dtiff=enabled \
|
||||
-Dvorbis=enabled \
|
||||
-Dxml=enabled \
|
||||
-Dxmp=enabled \
|
||||
-Dxps=enabled \
|
||||
-Dminer_rss=false \
|
||||
-Dbattery_detection=upower \
|
||||
-Dcharset_detection=icu \
|
||||
-Dgeneric_media_extractor=gstreamer \
|
||||
-Dgstreamer_backend=discoverer \
|
||||
-Dnetwork_manager=enabled \
|
||||
-Dsystemd_user_services=false \
|
||||
-Dsystemd_user_services_dir=no")
|
||||
|
||||
def build():
|
||||
mesontools.build()
|
||||
|
||||
def install():
|
||||
mesontools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING*", "HACKING.md", "MAINTAINERS", "NEWS", "README*")
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
From 24a47894578f48c54cb303c8a11ad8df29fc93a4 Mon Sep 17 00:00:00 2001
|
||||
From: Matt Turner <mattst88@gmail.com>
|
||||
Date: Sat, 13 Mar 2021 17:35:17 -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 0b8a64863..831d08597 100644
|
||||
--- a/docs/manpages/meson.build
|
||||
+++ b/docs/manpages/meson.build
|
||||
@@ -43,7 +43,7 @@ foreach m : daemon_manpages + cli_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.2
|
||||
|
||||
@@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>tracker-miners</Name>
|
||||
<Homepage>https://gitlab.gnome.org/GNOME/tracker-miners</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<Summary>Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes.</Summary>
|
||||
<Description>Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes.</Description>
|
||||
<Archive sha1sum="89335a2958f4d9539fb5a643081f0b3c1d5c74ea">https://download.gnome.org/sources/tracker-miners/3.1/tracker-miners-3.1.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>meson</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>asciidoc</Dependency>
|
||||
<Dependency>tracker-devel</Dependency>
|
||||
<Dependency>tracker</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>exempi-devel</Dependency>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>libgexiv2-devel</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>libcue-devel</Dependency>
|
||||
<Dependency>libexif-devel</Dependency>
|
||||
<Dependency>libgsf-devel</Dependency>
|
||||
<Dependency>libgxps-devel</Dependency>
|
||||
<Dependency>libiptcdata-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>libosinfo-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libseccomp-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>poppler-glib-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>totem-pl-parser-devel</Dependency>
|
||||
<Dependency>upower-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
<Dependency>giflib-devel</Dependency>
|
||||
<Dependency>NetworkManager-devel</Dependency>
|
||||
<Dependency>harfbuzz-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>tracker-miners-3.1.1-Fix-asciidoc-manpage.xsl-location.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>tracker-miners</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>exempi</Dependency>
|
||||
<Dependency>giflib</Dependency>
|
||||
<Dependency>libgsf</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>upower</Dependency>
|
||||
<Dependency>libexif</Dependency>
|
||||
<Dependency>libgxps</Dependency>
|
||||
<Dependency>gstreamer</Dependency>
|
||||
<Dependency>libgexiv2</Dependency>
|
||||
<Dependency>libosinfo</Dependency>
|
||||
<Dependency>libseccomp</Dependency>
|
||||
<Dependency>libiptcdata</Dependency>
|
||||
<Dependency>poppler-glib</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>NetworkManager</Dependency>
|
||||
<Dependency>totem-pl-parser</Dependency>
|
||||
<Dependency>gst-plugins-base</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/xdg</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</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/glib-2.0</Path>
|
||||
<Path fileType="data">/usr/share/tracker3-miners</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<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>
|
||||
@@ -0,0 +1,25 @@
|
||||
#!/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 \
|
||||
-Dnetwork_manager=enabled \
|
||||
-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
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
<?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="8618183a8e38e51253578facce6ac44e4652b84e">https://download.gnome.org/sources/tracker/3.1/tracker-3.1.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<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>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>meson</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>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="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>
|
||||
Reference in New Issue
Block a user