libsoup, glib-networking and gnutls fix deps.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>network.library</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static \
|
||||
--disable-installed-tests \
|
||||
--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt \
|
||||
--without-libproxy \
|
||||
--with-gnutls \
|
||||
--with-pkcs11")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>glib-networking</Name>
|
||||
<Homepage>http://git.gnome.org/browse/glib-networking/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2+</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Network-related giomodules for glib</Summary>
|
||||
<Description>This package contains various network related extensions for the GIO library.</Description>
|
||||
<Archive sha1sum="02e4eb212dd5a322ca726802c714dd4e5a143a74" type="tarxz">mirrors://gnome/glib-networking/2.38/glib-networking-2.38.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>p11-kit-devel</Dependency>
|
||||
<Dependency>ca-certificates</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>glib-networking</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gnutls</Dependency>
|
||||
<Dependency>p11-kit</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>ca-certificates</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/gio/modules</Path>
|
||||
<Path fileType="executable">/usr/libexec</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc/glib-networking</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2014-03-30</Date>
|
||||
<Version>2.38.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-01-27</Date>
|
||||
<Version>2.34.2</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>glib-networking</Name>
|
||||
<Summary xml:lang="pl">Moduły GIO dotyczące sieci do glib</Summary>
|
||||
<Description xml:lang="pl">Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -14,12 +14,14 @@ def setup():
|
||||
--disable-static \
|
||||
--without-apache-httpd \
|
||||
--without-apache-module-dir \
|
||||
--disable-tls-check \
|
||||
"
|
||||
|
||||
if get.buildTYPE() == "_emul32":
|
||||
options += " --libdir=/usr/lib32 \
|
||||
--bindir=/_emul32/bin \
|
||||
--sbindir=/_emul32/sbin \
|
||||
--disable-tls-check"
|
||||
--sbindir=/_emul32/sbin"
|
||||
|
||||
|
||||
shelltools.export("CC", "%s -m32" % get.CC())
|
||||
shelltools.export("CXX", "%s -m32" % get.CXX())
|
||||
|
||||
@@ -14,19 +14,14 @@
|
||||
<Description>libsoup is an HTTP client/server library for GNOME.</Description>
|
||||
<Archive sha1sum="8bd422bd5d19b5e2630bbb35dfb06354b1d56442" type="tarxz">mirrors://gnome/libsoup/2.50/libsoup-2.50.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>tls-devel</Dependency>
|
||||
<Dependency>gconf-devel</Dependency>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>glib-networking</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>libgnome-keyring-devel</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>sqlite-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -35,6 +30,7 @@
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>glib-networking</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
@@ -47,6 +43,7 @@
|
||||
<Package>
|
||||
<Name>libsoup-gnome</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libsoup</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
|
||||
@@ -51,6 +51,7 @@
|
||||
<Dependency>nettle-devel</Dependency>
|
||||
<Dependency>p11-kit-devel</Dependency>
|
||||
<Dependency>libtasn1-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency release="current">gnutls</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
|
||||
Reference in New Issue
Block a user