@@ -1,27 +0,0 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.system("sed -i 's:"'/desktop:'"/org:' " + get.curDIR() + "/schema/*.xml")
|
||||
|
||||
autotools.configure("--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-pam-dir=/lib/security \
|
||||
--enable-valgrind")
|
||||
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("NEWS", "README", "COPYING", "AUTHORS", "ChangeLog")
|
||||
@@ -1,65 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gnome-keyring</Name>
|
||||
<Homepage>https://gitlab.gnome.org/GNOME/gnome-keyring</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Compatibility library for accessing gnome-keyring</Summary>
|
||||
<Description>gnome-keyring is a program that keep password and other secrets for users.</Description>
|
||||
<Archive sha1sum="0e5287f5e0c8a0dcce960824bd4e43b223ada2a7" >https://download.gnome.org/sources/gnome-keyring/40/gnome-keyring-40.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>gcr-devel</Dependency>
|
||||
<Dependency>pam-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>openssh</Dependency>
|
||||
<Dependency>libcap-ng-devel</Dependency>
|
||||
<Dependency>gnupg</Dependency>
|
||||
<Dependency>valgrind</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gnome-keyring</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gcr</Dependency>
|
||||
<Dependency>pam</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libcap-ng</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>libgpg-error</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/lib</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/glib-2.0</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="data">/usr/share/p11-kit</Path>
|
||||
<Path fileType="data">/usr/share/GConf</Path>
|
||||
<Path fileType="data">/usr/share/xdg-desktop-portal</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-30</Date>
|
||||
<Version>40.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -2,20 +2,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
shelltools.system("""sed -i -r 's:"(/desktop):"/org/gnome\1:' schema/*.xml""")
|
||||
autotools.configure("--disable-static \
|
||||
shelltools.system("sed -i 's:"'/desktop:'"/org:' " + get.curDIR() + "/schema/*.xml")
|
||||
|
||||
autotools.configure("--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--with-pam-dir=/lib/security \
|
||||
--disable-doc")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
--enable-valgrind")
|
||||
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -23,4 +24,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "NEWS", "README")
|
||||
pisitools.dodoc("NEWS", "README", "COPYING", "AUTHORS", "ChangeLog")
|
||||
|
||||
@@ -1,134 +1,65 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libgnome-keyring</Name>
|
||||
<Homepage>http://live.gnome.org/GnomeKeyring</Homepage>
|
||||
<Homepage>https://gitlab.gnome.org/GNOME/gnome-keyring</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Compatibility library for accessing gnome-keyring3</Summary>
|
||||
<Description>libgnome-keyring is a library that used by applications to integrate with the gnome-keyring system.</Description>
|
||||
<Archive sha1sum="0e5287f5e0c8a0dcce960824bd4e43b223ada2a7" type="tarxz">https://download.gnome.org/sources/gnome-keyring/40/gnome-keyring-40.0.tar.xz</Archive>
|
||||
<Summary>Compatibility library for accessing gnome-keyring</Summary>
|
||||
<Description>gnome-keyring is a program that keep password and other secrets for users.</Description>
|
||||
<Archive sha1sum="0e5287f5e0c8a0dcce960824bd4e43b223ada2a7" >https://download.gnome.org/sources/gnome-keyring/40/gnome-keyring-40.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>pam-devel</Dependency>
|
||||
<Dependency>gcr-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>openssh</Dependency>
|
||||
<Dependency>libcap-ng-devel</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>gcr-devel</Dependency>
|
||||
<Dependency>pam-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>openssh</Dependency>
|
||||
<Dependency>libcap-ng-devel</Dependency>
|
||||
<Dependency>gnupg</Dependency>
|
||||
<Dependency>valgrind</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>libgnome-keyring</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libcap-ng</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gcr</Dependency>
|
||||
<Dependency>pam</Dependency>
|
||||
<Dependency>gcr</Dependency>
|
||||
<Dependency>pam</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libcap-ng</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>libgpg-error</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="config">/etc/xdg/autostart</Path>
|
||||
<Path fileType="library">/lib</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/vala</Path>
|
||||
<Path fileType="doc">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="data">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/glib-2.0</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="data">/usr/share/p11-kit</Path>
|
||||
<Path fileType="data">/usr/share/GConf</Path>
|
||||
<Path fileType="data">/usr/share/xdg-desktop-portal</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<!--Package>
|
||||
<Name>libgnome-keyring-devel</Name>
|
||||
<Summary>Development files for libgnome-keyring</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libgnome-keyring</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libgnome-keyring-docs</Name>
|
||||
<IsA>data:doc</IsA>
|
||||
<Summary>Referance documents for libgnome-keyring</Summary>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/gtk-doc</Path>
|
||||
</Files>
|
||||
</Package-->
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-05-24</Date>
|
||||
<Version>40.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-12-09</Date>
|
||||
<Version>3.28.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-02-07</Date>
|
||||
<Version>3.28.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2019-07-13</Date>
|
||||
<Version>3.28.2</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkaanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-14</Date>
|
||||
<Version>3.20.1</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-03-02</Date>
|
||||
<Version>3.12</Version>
|
||||
<Comment>Rebuild for new toolchain.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>3.12</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-08-25</Date>
|
||||
<Version>3.12</Version>
|
||||
<Date>2021-05-30</Date>
|
||||
<Version>40.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
<Name>Berk Çakar</Name>
|
||||
<Email>berk2238@hotmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libgnome-keyring</Name>
|
||||
<Summary xml:lang="tr">gnome-keyring'e ulaşmak için uyumluluk kütüphanesidir.</Summary>
|
||||
<Description xml:lang="tr">libgnome-keyring, gnome-keyring sistemine uyumlu olmak için programlar tarafından kullanılan bir kütüphanedir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libgnome-keyring-devel</Name>
|
||||
<Summary xml:lang="tr">libgnome-keyring için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libgnome-keyring-docs</Name>
|
||||
<Summary xml:lang="tr">libgnome-keyring için başvuru belgeleri</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+265597
-265708
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
fe55e347cfb9be4f48c1c5d680e6930e2ee30ae7
|
||||
c334a11db9b7d2a4a428ab0786efcc73e6905f98
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
f0c640354d3351683ddb8dc9f5741a4b024bd76c
|
||||
0c74edf83d68b7b91331e7e328954c061659665e
|
||||
Reference in New Issue
Block a user