diff --git a/desktop/kde/application/ktp-approver/actions.py b/desktop/kde/application/ktp-approver/actions.py new file mode 100644 index 0000000000..16c59b5752 --- /dev/null +++ b/desktop/kde/application/ktp-approver/actions.py @@ -0,0 +1,18 @@ +#!/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 kde5 +from pisi.actionsapi import pisitools + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("COPYING") \ No newline at end of file diff --git a/desktop/kde/application/ktp-approver/pspec.xml b/desktop/kde/application/ktp-approver/pspec.xml new file mode 100644 index 0000000000..ef6c37deb6 --- /dev/null +++ b/desktop/kde/application/ktp-approver/pspec.xml @@ -0,0 +1,61 @@ + + + + + ktp-approver + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + KDE Channel Approver for Telepathy + KDE Channel Approver for Telepathy + http://download.kde.org/stable/applications/15.08.3/src/ktp-approver-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kdbusaddons-devel + kconfig-devel + ki18n-devel + knotifications-devel + kservice-devel + telepathy-qt5-devel + + + + + ktp-approver + + ki18n + libgcc + kconfig + kservice + qt5-base + kcoreaddons + kdbusaddons + telepathy-qt5 + knotifications + + + /etc + /usr/lib + /usr/share + /usr/share/kservicetypes5 + /usr/share/kservices5 + /usr/share/dbus-1 + /usr/share/doc + + + + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + diff --git a/network/chat/libotr/actions.py b/network/chat/libotr/actions.py new file mode 100644 index 0000000000..74824acefe --- /dev/null +++ b/network/chat/libotr/actions.py @@ -0,0 +1,20 @@ +#!/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 + +def setup(): + autotools.autoreconf("-fi") + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.install() + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/network/chat/libotr/pspec.xml b/network/chat/libotr/pspec.xml new file mode 100644 index 0000000000..989c2c383e --- /dev/null +++ b/network/chat/libotr/pspec.xml @@ -0,0 +1,86 @@ + + + + + libotr + http://www.cypherpunks.ca/otr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + Portable OTR (Off The Record) messaging library + OTR messaging allows you to have private conversations over instant messaging. + https://otr.cypherpunks.ca/libotr-4.1.0.tar.gz + + libgcrypt-devel + + + + + libotr + + libgcrypt + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + libotr-devel + Development files for libotr + + libotr + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/libotr/html + + + + + + 2015-11-22 + 4.1.0 + Rebuild, add dep + Alihan Öztürk + alihan@pisilinux.org + + + 2015-02-17 + 4.1.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-04-07 + 4.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 4.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-01 + 3.2.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/network/chat/libotr/translations.xml b/network/chat/libotr/translations.xml new file mode 100644 index 0000000000..cad88c3857 --- /dev/null +++ b/network/chat/libotr/translations.xml @@ -0,0 +1,13 @@ + + + + libotr + Taşınabilir OTR (Off The Record/Kayıt dışı) mesajlaşma kitaplığı + OTR mesajlaşma, hızlı mesajlaşma araçları ile gizli sohbetler yapmanızı sağlar. + + + + libotr-devel + libotr için geliştirme dosyaları + + diff --git a/network/chat/telepathy-logger/actions.py b/network/chat/telepathy-logger/actions.py new file mode 100644 index 0000000000..90af710568 --- /dev/null +++ b/network/chat/telepathy-logger/actions.py @@ -0,0 +1,26 @@ +#!/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(): + #autotools.autoreconf("-vfi") + autotools.configure("--disable-static \ + --libexecdir=/usr/lib \ + --enable-call \ + --enable-shared \ + --with-gconf-schema-file-dir=/etc/gconf/schemas") + +def build(): + autotools.make("-j1") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README", "NEWS", "TODO") \ No newline at end of file diff --git a/network/chat/telepathy-logger/pspec.xml b/network/chat/telepathy-logger/pspec.xml new file mode 100644 index 0000000000..bc9f53f433 --- /dev/null +++ b/network/chat/telepathy-logger/pspec.xml @@ -0,0 +1,96 @@ + + + + + telepathy-logger + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + library + Logging utility Telepathy + telepathy-logger is a logging utility for Telepathy communication framework. + http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.2.tar.bz2 + + + glib2-devel + intltool + libxslt-devel + dbus-devel + dbus-glib-devel + gobject-introspection-devel + libxml2-devel + sqlite-devel + telepathy-glib-devel + + + + + telepathy-logger + + dbus + glib2 + sqlite + libxml2 + dbus-glib + telepathy-glib + + + /usr/lib + /usr/share/gir-1.0/ + /usr/share/telepathy + /usr/share/glib-2.0/ + /usr/libexec + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/share/doc + + + + + telepathy-logger-devel + Development files for telepathy-logger + + telepathy-logger + telepathy-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2015-11-22 + 0.8.2 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.8.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-04-12 + 0.8.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.1.7 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/network/chat/telepathy-logger/translations.xml b/network/chat/telepathy-logger/translations.xml new file mode 100644 index 0000000000..e3595186fd --- /dev/null +++ b/network/chat/telepathy-logger/translations.xml @@ -0,0 +1,13 @@ + + + + telepathy-logger + Telepathy için kayıt tutma aracı. + telepathy-logger, Telepathy iletişim altyapısı için kayıt tutma aracıdır. + + + + telepathy-logger-devel + telepathy-logger için geliştirme dosyaları + + diff --git a/network/chat/telepathy-mission-control/actions.py b/network/chat/telepathy-mission-control/actions.py new file mode 100644 index 0000000000..36cabbeea7 --- /dev/null +++ b/network/chat/telepathy-mission-control/actions.py @@ -0,0 +1,29 @@ +#!/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 get + +def setup(): + autotools.configure("--disable-static \ + --libexecdir=/usr/lib \ + --enable-gnome-keyring \ + --with-connectivity=nm \ + --enable-gtk-doc \ + --disable-upower \ + --disable-static \ + --disable-schemas-compile") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "README", "NEWS") diff --git a/network/chat/telepathy-mission-control/pspec.xml b/network/chat/telepathy-mission-control/pspec.xml new file mode 100644 index 0000000000..26cb3abf0a --- /dev/null +++ b/network/chat/telepathy-mission-control/pspec.xml @@ -0,0 +1,107 @@ + + + + + telepathy-mission-control + http://telepathy.freedesktop.org/wiki/Mission_Control + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + library + Telepathy component managing connection managers + telepathy-mission-control, or Mission Control, is a Telepathy component providing a way for end user applications to abstract some of the details of connection managers, to provide a simple way to manipulate a bunch of connection managers at once, and to remove the need to have in each program the account definitions and credentials. + http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.3.tar.gz + + libxslt-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + gtk-doc + NetworkManager-devel + docbook-xsl + + + + + telepathy-mission-control + + dbus + glib2 + dbus-glib + NetworkManager + telepathy-glib + + + /usr/bin + /usr/lib/libmission-control-plugins.so* + /usr/lib/mission-control-5 + /usr/share + /usr/share/gtk-doc + /usr/share/man + /usr/share/doc + /usr/share/dbus-1 + /usr/share/glib-2.0 + + + + + telepathy-mission-control-devel + Development files for telepathy-mission-control + + telepathy-mission-control + telepathy-glib-devel + + + /usr/include/mission-control-5.5/mission-control-plugins + /usr/lib/pkgconfig + + + + + + 2015-11-22 + 5.16.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 5.16.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-19 + 5.16.0 + Version bump for upower. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 5.14.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-15 + 5.14.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-01 + 5.12.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + \ No newline at end of file diff --git a/network/chat/telepathy-mission-control/translations.xml b/network/chat/telepathy-mission-control/translations.xml new file mode 100644 index 0000000000..07a0658bbe --- /dev/null +++ b/network/chat/telepathy-mission-control/translations.xml @@ -0,0 +1,13 @@ + + + + telepathy-mission-control + Bağlantı yöneticilerini düzenlemeya yarayan Telepathy bileşeni + telepathy-mission-control, diğer adıyla Mission Control, bağlantı yöneticilerini düzenlemenin zorluklarını kullanıcıdan soyutlamaya çalışan, basitçe hesap oluşturmanıza olanak tanıyan bir Telepathy bileşenidir. + + + + telepathy-mission-control-devel + telepathy-mission-control için geliştirme dosyaları + + diff --git a/network/chat/telepathy-salut/actions.py b/network/chat/telepathy-salut/actions.py new file mode 100644 index 0000000000..aa0f75daf8 --- /dev/null +++ b/network/chat/telepathy-salut/actions.py @@ -0,0 +1,28 @@ +#!/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 get + +def setup(): + autotools.configure("--prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/telepathy \ + --disable-static \ + --with-tls=openssl \ + --enable-avahi-tests=no \ + --disable-Werror") + + #pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make("-j1") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README", "NEWS") diff --git a/network/chat/telepathy-salut/files/fix_bork_in_tr_locale.patch b/network/chat/telepathy-salut/files/fix_bork_in_tr_locale.patch new file mode 100644 index 0000000000..154a505b31 --- /dev/null +++ b/network/chat/telepathy-salut/files/fix_bork_in_tr_locale.patch @@ -0,0 +1,14 @@ +diff -Nur telepathy-salut-0.3.11-old/configure.ac telepathy-salut-0.3.11/configure.ac +--- telepathy-salut-0.3.11-old/configure.ac 2010-04-06 13:21:58.592842887 +0300 ++++ telepathy-salut-0.3.11/configure.ac 2010-04-06 13:23:33.924588464 +0300 +@@ -33,6 +33,10 @@ + AM_PROG_AS + AM_PROG_MKDIR_P + ++dnl make sure locale does not mess with upper/lower conversions ++LC_ALL="C" ++AC_SUBST(LC_ALL) ++ + dnl add common command line switches + SALUT_ARG_DEBUG + SALUT_ARG_VALGRIND diff --git a/network/chat/telepathy-salut/pspec.xml b/network/chat/telepathy-salut/pspec.xml new file mode 100644 index 0000000000..e23a751b8c --- /dev/null +++ b/network/chat/telepathy-salut/pspec.xml @@ -0,0 +1,90 @@ + + + + + telepathy-salut + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + Link-local XMPP Telepathy connection manager + telepathy-salut is Telepathy connection manager for link-local XMPP. Normally, XMPP does no support direct client-to-client interactions, since it requires authentication with a server. This package makes it is possible to establish an XMPP-like communications on a local network using zero-configuration networking. + http://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-0.8.1.tar.gz + + libxslt-devel + glib2-devel + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + avahi-devel + avahi-glib-devel + libsoup-devel + openssl-devel + python-devel + sqlite-devel + cyrus-sasl-devel + + + fix_bork_in_tr_locale.patch + + + + + telepathy-salut + + dbus + glib2 + sqlite + libsoup + libxml2 + openssl + dbus-glib + avahi-glib + avahi-libs + telepathy-glib + + + /usr/lib + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + /usr/share/man + + + + + + 2015-11-22 + 0.8.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 0.8.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.8.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.8.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + \ No newline at end of file diff --git a/network/chat/telepathy-salut/translations.xml b/network/chat/telepathy-salut/translations.xml new file mode 100644 index 0000000000..625aca8618 --- /dev/null +++ b/network/chat/telepathy-salut/translations.xml @@ -0,0 +1,8 @@ + + + + telepathy-salut + XMPP ile yerel-bağlantı iletişimini sağlayan Telepathy bağlantı yöneticisi. + telepathy-salut, yerel bir ağ üzerinde XMPP benzeri iletişimi mümkün kılan bir Telepathy bağlantı yöneticisidir. + + diff --git a/programming/language/python/telepathy-python/actions.py b/programming/language/python/telepathy-python/actions.py new file mode 100644 index 0000000000..d94e63063c --- /dev/null +++ b/programming/language/python/telepathy-python/actions.py @@ -0,0 +1,23 @@ +#!/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.unlink("py-compile") + autotools.configure() + +def build(): + autotools.make() + +def install(): + pisitools.dosed("src/Makefile", "\s_generated\/errors\.py.*", deleteLine=True) + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") diff --git a/programming/language/python/telepathy-python/files/dont-compile-py.patch b/programming/language/python/telepathy-python/files/dont-compile-py.patch new file mode 100644 index 0000000000..b8c7c01346 --- /dev/null +++ b/programming/language/python/telepathy-python/files/dont-compile-py.patch @@ -0,0 +1,125 @@ +diff -Nuar telepathy-python-0.15.15.orig/Makefile.in telepathy-python-0.15.15/Makefile.in +--- telepathy-python-0.15.15.orig/Makefile.in 2010-01-20 15:47:58.000000000 +0200 ++++ telepathy-python-0.15.15/Makefile.in 2010-02-16 14:34:28.333117263 +0200 +@@ -34,7 +34,7 @@ + subdir = . + DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ +- ChangeLog INSTALL NEWS install-sh missing py-compile ++ ChangeLog INSTALL NEWS install-sh missing + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + am__aclocal_m4_deps = $(top_srcdir)/configure.ac + am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ +diff -Nuar telepathy-python-0.15.15.orig/src/client/Makefile.in telepathy-python-0.15.15/src/client/Makefile.in +--- telepathy-python-0.15.15.orig/src/client/Makefile.in 2010-01-20 15:47:58.000000000 +0200 ++++ telepathy-python-0.15.15/src/client/Makefile.in 2010-02-16 14:38:54.061356515 +0200 +@@ -71,7 +71,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(clientdir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -218,14 +217,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(clientdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(clientdir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(clientdir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(clientdir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-clientPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-python-0.15.15.orig/src/Makefile.in telepathy-python-0.15.15/src/Makefile.in +--- telepathy-python-0.15.15.orig/src/Makefile.in 2010-01-20 15:47:58.000000000 +0200 ++++ telepathy-python-0.15.15/src/Makefile.in 2010-02-16 14:38:41.068107412 +0200 +@@ -79,7 +79,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(generateddir)" \ + "$(DESTDIR)$(versiondir)" "$(DESTDIR)$(telepathydir)" +-py_compile = $(top_srcdir)/py-compile + RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive + AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ +@@ -288,14 +287,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(generateddir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(generateddir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(generateddir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(generateddir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-nodist_generatedPYTHON: + @$(NORMAL_UNINSTALL) +@@ -326,14 +318,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(versiondir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(versiondir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(versiondir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(versiondir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-nodist_versionPYTHON: + @$(NORMAL_UNINSTALL) +@@ -364,14 +349,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(telepathydir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(telepathydir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(telepathydir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(telepathydir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-telepathyPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-python-0.15.15.orig/src/server/Makefile.in telepathy-python-0.15.15/src/server/Makefile.in +--- telepathy-python-0.15.15.orig/src/server/Makefile.in 2010-01-20 15:47:58.000000000 +0200 ++++ telepathy-python-0.15.15/src/server/Makefile.in 2010-02-16 14:39:09.238088477 +0200 +@@ -71,7 +71,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(serverdir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -222,14 +221,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(serverdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(serverdir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(serverdir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(serverdir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-serverPYTHON: + @$(NORMAL_UNINSTALL) diff --git a/programming/language/python/telepathy-python/files/python-telepathy-no_double_errors-py.patch b/programming/language/python/telepathy-python/files/python-telepathy-no_double_errors-py.patch new file mode 100644 index 0000000000..69193d233a --- /dev/null +++ b/programming/language/python/telepathy-python/files/python-telepathy-no_double_errors-py.patch @@ -0,0 +1,18 @@ +diff --git a/src/Makefile.am b/src/Makefile.am +index 135f2f0..ede1fc3 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -13,10 +13,12 @@ telepathy_PYTHON = \ + spec_dir = $(top_srcdir)/spec + spec_files := $(patsubst $(spec_dir)%.xml,_generated%.py,$(wildcard $(spec_dir)/*.xml)) + ++# We leave _generated/errors.py out of here because there exists a ++# spec/errors.xml file, so that means there'll be a ++# _generated/errors.py in $(spec_files). See fd.o#32526 + BUILT_SOURCES = \ + _generated/interfaces.py \ + _generated/constants.py \ +- _generated/errors.py \ + _generated/__init__.py \ + $(spec_files) + diff --git a/programming/language/python/telepathy-python/files/telepathy-python-0.15.19-mkdir_p.patch b/programming/language/python/telepathy-python/files/telepathy-python-0.15.19-mkdir_p.patch new file mode 100644 index 0000000000..be4d9bfa71 --- /dev/null +++ b/programming/language/python/telepathy-python/files/telepathy-python-0.15.19-mkdir_p.patch @@ -0,0 +1,30 @@ +From 95f5183700cad0c713bc4f5757555b45ce173ed8 Mon Sep 17 00:00:00 2001 +From: Alexandre Rostovtsev +Date: Sun, 24 Jun 2012 21:02:04 -0400 +Subject: [PATCH] Stop using obsolete $(mkdir_p) for automake-1.12 + compatibility + +$(mkdir_p) was declared obsolete in automake-1.10, deprecated in 1.12, +and removed in 1.13. + +https://bugs.freedesktop.org/show_bug.cgi?id=51392 +--- + src/Makefile.am | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/src/Makefile.am b/src/Makefile.am +index ede1fc3..154c56e 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -57,7 +57,7 @@ _generated/errors.py: $(tools_dir)/python-errors-generator.xsl $(wildcard $(spec + $(spec_dir)/all.xml + + _generated/__init__.py: +- $(AM_V_GEN)$(mkdir_p) $(dir $@) ++ $(AM_V_GEN)$(MKDIR_P) $(dir $@) + @echo "# Placeholder for package" > $@ + + _generated/%.py: $(tools_dir)/spec-to-python.xsl $(spec_dir)/%.xml +-- +1.7.8.6 + diff --git a/programming/language/python/telepathy-python/pspec.xml b/programming/language/python/telepathy-python/pspec.xml new file mode 100644 index 0000000000..be85f31682 --- /dev/null +++ b/programming/language/python/telepathy-python/pspec.xml @@ -0,0 +1,71 @@ + + + + + telepathy-python + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + Python libraries for Telepathy + telepathy-python is the Python libraries for use in Telepathy client and connection managers. + http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-0.15.19.tar.gz + + libxslt-devel + + + telepathy-python-0.15.19-mkdir_p.patch + dont-compile-py.patch + python-telepathy-no_double_errors-py.patch + + + + + telepathy-python + + /usr/lib + /usr/share/doc + + + + + + 2015-11-22 + 0.15.19 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-03 + 0.15.19 + Fix build + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-16 + 0.15.19 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-15 + 0.15.19 + Version bump + Aydın Demirel + aydin@demirel.web.tr + + + 2010-10-13 + 0.15.18 + First release + Pisi Linux Admins + admins@pisilinux.org + + + diff --git a/programming/language/python/telepathy-python/translations.xml b/programming/language/python/telepathy-python/translations.xml new file mode 100644 index 0000000000..628f8c9433 --- /dev/null +++ b/programming/language/python/telepathy-python/translations.xml @@ -0,0 +1,8 @@ + + + + telepathy-python + Telepathy için Python kitaplıkları + telepathy-pyhon Telepathy istemcileri ve bağlantı yöneticilerinde kullanılmak üzere tasarlanmış Python kitaplığıdır. + +