diff --git a/programming/misc/libsoup/actions.py b/programming/misc/libsoup/actions.py new file mode 100644 index 0000000000..a0f37d9448 --- /dev/null +++ b/programming/misc/libsoup/actions.py @@ -0,0 +1,41 @@ +#!/usr/bin/python +# -*- 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 get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + +def setup(): + options = "\ + --disable-static \ + --without-apache-httpd \ + --without-apache-module-dir \ + " + if get.buildTYPE() == "_emul32": + options += " --libdir=/usr/lib32 \ + --bindir=/_emul32/bin \ + --sbindir=/_emul32/sbin \ + --disable-tls-check" + + shelltools.export("CC", "%s -m32" % get.CC()) + shelltools.export("CXX", "%s -m32" % get.CXX()) + shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") + + autotools.configure(options) + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + #if get.buildTYPE() == "_emul32": + #pisitools.removeDir("/_emul32") + + pisitools.dodoc("README", "NEWS", "AUTHORS") \ No newline at end of file diff --git a/programming/misc/libsoup/pspec.xml b/programming/misc/libsoup/pspec.xml new file mode 100644 index 0000000000..5b571fcf38 --- /dev/null +++ b/programming/misc/libsoup/pspec.xml @@ -0,0 +1,182 @@ + + + + + libsoup + http://live.gnome.org/LibSoup + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + An HTTP library implementation in C + libsoup is an HTTP client/server library for GNOME. + mirrors://gnome/libsoup/2.50/libsoup-2.50.0.tar.xz + + gtk-doc + tls-devel + gconf-devel + gnutls-devel + glib-networking + libgcrypt-devel + libgnome-keyring-devel + glib2-devel + libxml2-devel + sqlite-devel + + + + + + + libsoup + + glib2 + libxml2 + sqlite + + + /usr/lib + /usr/share/doc + /usr/share/locale/ + /usr/lib/girepository-1.0/Soup-2.4.typelib + + + + + libsoup-gnome + + libsoup + + + /usr/lib/lib*gnome* + /usr/lib/girepository-1.0/SoupGNOME-2.4.typelib + + + + + + libsoup-docs + data:doc + libsoup reference documents + + libsoup + + + /usr/share/gtk-doc + + + + + libsoup-devel + Development files for libsoup + + glib2-devel + libxml2-devel + libsoup + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + libsoup-32bit + emul32 + 32-bit shared libraries for libsoup + _emul32 + + glib2-32bit + sqlite-32bit + libxml2-32bit + glibc-32bit + + + glib2-32bit + sqlite-32bit + libxml2-32bit + glibc-32bit + libsoup + + + /usr/lib32 + + + + + + 2015-06-14 + 2.50.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-20 + 2.49.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-25 + 2.46.0 + Rebuil. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.46.0 + 32bit split packages. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-30 + 2.46.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02.20 + 2.44.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10.10 + 2.44.0 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-03-08 + 2.41.91 + bump + Erdinç Gültekin + erdincgultekin@gmail + + + 2013-01-29 + 2.40.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-14 + 2.40.0 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/programming/misc/libsoup/translations.xml b/programming/misc/libsoup/translations.xml new file mode 100644 index 0000000000..0222ae910e --- /dev/null +++ b/programming/misc/libsoup/translations.xml @@ -0,0 +1,23 @@ + + + + libsoup + C için HTTP kitaplık gerçekleyicisi + libsoup, GNOME için HTTP istemci / sunucu kitaplığıdır. + + + + libsoup-docs + libsoup başvuru belgeleri + + + + libsoup-devel + libsoup için geliştirme dosyaları + + + + libsoup-32bit + libsoup için 32-bit paylaşımlı kitaplıklar + + \ No newline at end of file