From d5342732740bf2a1b70a7bbd2d699dddea199a5e Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Sun, 22 Nov 2015 00:38:26 +0200 Subject: [PATCH] telepathy-sunshine:add pisi-2.0 --- network/chat/telepathy-sunshine/actions.py | 20 ++ .../files/dont-compile-py.patch | 261 ++++++++++++++++++ network/chat/telepathy-sunshine/pspec.xml | 56 ++++ .../chat/telepathy-sunshine/translations.xml | 8 + 4 files changed, 345 insertions(+) create mode 100644 network/chat/telepathy-sunshine/actions.py create mode 100644 network/chat/telepathy-sunshine/files/dont-compile-py.patch create mode 100644 network/chat/telepathy-sunshine/pspec.xml create mode 100644 network/chat/telepathy-sunshine/translations.xml diff --git a/network/chat/telepathy-sunshine/actions.py b/network/chat/telepathy-sunshine/actions.py new file mode 100644 index 0000000000..e59071140e --- /dev/null +++ b/network/chat/telepathy-sunshine/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 +from pisi.actionsapi import get + +def setup(): + autotools.configure("--libexecdir=/usr/lib") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README") diff --git a/network/chat/telepathy-sunshine/files/dont-compile-py.patch b/network/chat/telepathy-sunshine/files/dont-compile-py.patch new file mode 100644 index 0000000000..26fcdb2235 --- /dev/null +++ b/network/chat/telepathy-sunshine/files/dont-compile-py.patch @@ -0,0 +1,261 @@ +diff -Nuar telepathy-sunshine-0.1.6.orig/Makefile.in telepathy-sunshine-0.1.6/Makefile.in +--- telepathy-sunshine-0.1.6.orig/Makefile.in 2010-03-25 14:47:13.977092623 +0200 ++++ telepathy-sunshine-0.1.6/Makefile.in 2010-03-25 14:55:47.071089015 +0200 +@@ -35,7 +35,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.in + am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/channel/Makefile.in telepathy-sunshine-0.1.6/sunshine/channel/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/channel/Makefile.in 2010-03-25 14:47:13.985107821 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/channel/Makefile.in 2010-03-25 14:58:19.582388419 +0200 +@@ -65,7 +65,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(channeldir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -203,14 +202,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(channeldir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(channeldir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(channeldir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(channeldir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-channelPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/cstruct/fields/Makefile.in telepathy-sunshine-0.1.6/sunshine/lqsoft/cstruct/fields/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/cstruct/fields/Makefile.in 2010-03-25 14:47:13.980097615 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/lqsoft/cstruct/fields/Makefile.in 2010-03-25 14:57:13.719100382 +0200 +@@ -65,7 +65,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(fieldsdir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -203,14 +202,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(fieldsdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(fieldsdir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(fieldsdir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(fieldsdir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-fieldsPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/cstruct/Makefile.in telepathy-sunshine-0.1.6/sunshine/lqsoft/cstruct/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/cstruct/Makefile.in 2010-03-25 14:47:13.979097558 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/lqsoft/cstruct/Makefile.in 2010-03-25 14:56:50.822100654 +0200 +@@ -72,7 +72,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(cstructdir)" +-py_compile = $(top_srcdir)/py-compile + RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive + AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ +@@ -243,14 +242,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(cstructdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(cstructdir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(cstructdir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(cstructdir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-cstructPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/cstruct/test/Makefile.in telepathy-sunshine-0.1.6/sunshine/lqsoft/cstruct/test/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/cstruct/test/Makefile.in 2010-03-25 14:47:13.979097558 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/lqsoft/cstruct/test/Makefile.in 2010-03-25 14:57:00.887089032 +0200 +@@ -65,7 +65,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(testdir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -203,14 +202,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(testdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(testdir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(testdir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(testdir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-testPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/Makefile.in telepathy-sunshine-0.1.6/sunshine/lqsoft/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/Makefile.in 2010-03-25 14:47:13.979097558 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/lqsoft/Makefile.in 2010-03-25 14:56:38.015341378 +0200 +@@ -72,7 +72,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(lqsoftdir)" +-py_compile = $(top_srcdir)/py-compile + RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive + AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ +@@ -242,14 +241,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(lqsoftdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(lqsoftdir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(lqsoftdir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(lqsoftdir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-lqsoftPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/pygadu/Makefile.in telepathy-sunshine-0.1.6/sunshine/lqsoft/pygadu/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/pygadu/Makefile.in 2010-03-25 14:47:13.983097998 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/lqsoft/pygadu/Makefile.in 2010-03-25 14:57:26.775089022 +0200 +@@ -65,7 +65,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(pygadudir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -206,14 +205,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pygadudir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(pygadudir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(pygadudir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pygadudir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-pygaduPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/utils/Makefile.in telepathy-sunshine-0.1.6/sunshine/lqsoft/utils/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/lqsoft/utils/Makefile.in 2010-03-25 14:47:13.984097637 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/lqsoft/utils/Makefile.in 2010-03-25 14:57:35.599100394 +0200 +@@ -65,7 +65,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(utilsdir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -199,14 +198,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(utilsdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(utilsdir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(utilsdir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(utilsdir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-utilsPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/Makefile.in telepathy-sunshine-0.1.6/sunshine/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/Makefile.in 2010-03-25 14:47:13.979097558 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/Makefile.in 2010-03-25 14:58:08.262108030 +0200 +@@ -72,7 +72,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(sunshinedir)" +-py_compile = $(top_srcdir)/py-compile + RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive + AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ +@@ -251,14 +250,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sunshinedir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(sunshinedir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(sunshinedir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(sunshinedir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-sunshinePYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/sunshine/util/Makefile.in telepathy-sunshine-0.1.6/sunshine/util/Makefile.in +--- telepathy-sunshine-0.1.6.orig/sunshine/util/Makefile.in 2010-03-25 14:47:13.984097637 +0200 ++++ telepathy-sunshine-0.1.6/sunshine/util/Makefile.in 2010-03-25 14:57:52.047112382 +0200 +@@ -65,7 +65,6 @@ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' + am__installdirs = "$(DESTDIR)$(utildir)" +-py_compile = $(top_srcdir)/py-compile + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + AMTAR = @AMTAR@ +@@ -201,14 +200,7 @@ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(utildir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(utildir)" || exit $$?; \ +- done || exit $$?; \ +- if test -n "$$dlist"; then \ +- if test -z "$(DESTDIR)"; then \ +- PYTHON=$(PYTHON) $(py_compile) --basedir "$(utildir)" $$dlist; \ +- else \ +- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(utildir)" $$dlist; \ +- fi; \ +- else :; fi ++ done || exit $$?; + + uninstall-utilPYTHON: + @$(NORMAL_UNINSTALL) +diff -Nuar telepathy-sunshine-0.1.6.orig/.swp telepathy-sunshine-0.1.6/.swp +--- telepathy-sunshine-0.1.6.orig/.swp 1970-01-01 02:00:00.000000000 +0200 ++++ telepathy-sunshine-0.1.6/.swp 2010-03-25 14:49:14.567095065 +0200 +@@ -0,0 +1 @@ ++b0VIM 7.2nrootigungor-pardus U3210#"! Utpÿadå 5õèÖʾžwHÞ°ƒ^65sunshine/channel/Makefile.in:py_compilesunshine/util/Makefile.in:py_compilesunshine/lqsoft/utils/Makefile.in:py_compilesunshine/lqsoft/pygadu/Makefile.in:py_compilesunshine/lqsoft/cstruct/fields/Makefile.in:py_compilesunshine/lqsoft/cstruct/test/Makefile.in:py_compilesunshine/lqsoft/cstruct/Makefile.in:py_compilesunshine/lqsoft/Makefile.in:py_compilesunshine/Makefile.in:py_compilepy-compile:py-compile:py-compile:Usage:py-compile:#kefile.in: +\ Dosya sonunda yenisatır yok. diff --git a/network/chat/telepathy-sunshine/pspec.xml b/network/chat/telepathy-sunshine/pspec.xml new file mode 100644 index 0000000000..080674c342 --- /dev/null +++ b/network/chat/telepathy-sunshine/pspec.xml @@ -0,0 +1,56 @@ + + + + + telepathy-sunshine + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + Gadu-Gadu connection manager for telepathy + Telepathy-sunshine is a Gadu-Gadu network connection manager. It supports the Nowe Gadu Gadu features such as UTF-8 encoding and new statuses. + http://telepathy.freedesktop.org/releases/telepathy-sunshine/telepathy-sunshine-0.2.0.tar.gz + + dont-compile-py.patch + + + + + telepathy-sunshine + + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/man + /usr/share/doc + + + + + + 2015-11-22 + 2.0 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 2.0 + Rebuild + Varol MaksutoÄŸlu + waroi@pisilinux.org + + + 2012-09-01 + 2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/network/chat/telepathy-sunshine/translations.xml b/network/chat/telepathy-sunshine/translations.xml new file mode 100644 index 0000000000..bd38b9e35e --- /dev/null +++ b/network/chat/telepathy-sunshine/translations.xml @@ -0,0 +1,8 @@ + + + + telepathy-sunshine + Telepathy için Gadu Gadu baÄŸlantı yöneticisi + Telepathy-sunshine Telepathy iletiÅŸim altyapısı için Gadu Gadu baÄŸlantı yöneticisidir. + +