Date: Sat, 22 Feb 2014 16:58:05 +0000 (UTC) From: Olivier Duchateau <olivierd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345667 - in head/net-im/turpial: . files Message-ID: <201402221658.s1MGw5Mo048939@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: olivierd Date: Sat Feb 22 16:58:05 2014 New Revision: 345667 URL: http://svnweb.freebsd.org/changeset/ports/345667 QAT: https://qat.redports.org/buildarchive/r345667/ Log: - Update to 3.0 Added: head/net-im/turpial/files/patch-setup.py (contents, props changed) head/net-im/turpial/files/patch-turpial__singleton.py (contents, props changed) head/net-im/turpial/files/patch-turpial__ui__lang.py (contents, props changed) head/net-im/turpial/files/patch-turpial__ui__qt__worker.py (contents, props changed) head/net-im/turpial/files/patch-turpial__ui__util.py (contents, props changed) Deleted: head/net-im/turpial/files/extra-patch-argparse-turpial_main.py head/net-im/turpial/files/extra-patch-optparse-turpial_main.py head/net-im/turpial/files/patch-turpial_api_interfaces_protocol.py head/net-im/turpial/files/patch-turpial_ui_gtk_about.py head/net-im/turpial/files/patch-turpial_ui_gtk_statuslist.py Modified: head/net-im/turpial/Makefile head/net-im/turpial/distinfo head/net-im/turpial/pkg-plist Modified: head/net-im/turpial/Makefile ============================================================================== --- head/net-im/turpial/Makefile Sat Feb 22 16:53:41 2014 (r345666) +++ head/net-im/turpial/Makefile Sat Feb 22 16:58:05 2014 (r345667) @@ -2,67 +2,51 @@ # $FreeBSD$ PORTNAME= turpial -PORTVERSION= 1.6.9 +PORTVERSION= 3.0 CATEGORIES= net-im python MASTER_SITES= http://files.turpial.org.ve/sources/stable/ MAINTAINER= ports@FreeBSD.org -COMMENT= Twitter and Identi.ca client written in Python +COMMENT= Twitter client written in Python LICENSE= GPLv3 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=1.3:${PORTSDIR}/devel/py-babel RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}notify>=0.1.1:${PORTSDIR}/devel/py-notify \ - ${PYTHON_PKGNAMEPREFIX}webkitgtk>=1.1.8:${PORTSDIR}/www/py-webkitgtk \ - ${PYTHON_PKGNAMEPREFIX}setproctitle>=1.1.7:${PORTSDIR}/devel/py-setproctitle \ - ${PYTHON_PKGNAMEPREFIX}xdg>=0.19:${PORTSDIR}/devel/py-xdg + ${PYTHON_PKGNAMEPREFIX}setproctitle>=1.1.7:${PORTSDIR}/devel/py-setproctitle \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.7.1:${PORTSDIR}/devel/py-Jinja2 \ + ${PYTHON_PKGNAMEPREFIX}libturpial>=1.6.0:${PORTSDIR}/net-im/py-libturpial USE_PYTHON= 2 -USE_GNOME= pygobject pygtk2 -USE_GSTREAMER= python +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +INSTALLS_ICONS= yes -REINPLACE_ARGS= -i "" +PYQT4_PORTS= core gui network phonon webkit -DOCSDIR= ${PREFIX}/share/doc/${PORTNAME} -DATADIR= ${PREFIX}/share/${PORTNAME} +.include "${.CURDIR}/../../devel/py-qt4/bsd.pyqt.mk" -LOCALES_DIR= ca ca_ES cs de en es es_ES es_VE eu fr gl he hu it nl nn \ - pt pt_BR ru ru_RU sr uk_UA zh_CN zh_TW +.for component in ${PYQT4_PORTS} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT} +.endfor -.include <bsd.port.pre.mk> +LOCALES_DIR= ca de eo es fr it ja pt_BR pt_PT ru_RU tr -# Since Python > 2.7, optparse module is deprecated -.if ${PYTHON_REL} >= 270 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-argparse-turpial_main.py -.else -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-optparse-turpial_main.py -.endif +post-extract: +# setuptools doesn't exclude these directories +.for dir in unity gtk + @${RM} -Rf ${WRKSRC}/turpial/ui/${dir} +.endfor post-patch: - @${FIND} ${WRKSRC}/turpial -type f -name '*.py' \ - | ${XARGS} ${REINPLACE_CMD} 's|bin/python|bin/env python| ; \ - s|Linux|FreeBSD|g ; \ - s|from turpial\.|from |g ; \ - s|%%PREFIX%%|${PREFIX}|g' + @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ + ${WRKSRC}/turpial/ui/lang.py -do-build: +post-build: @cd ${WRKSRC} && \ ${PYTHON_CMD} setup.py compile_catalog --directory turpial/i18n - @${PYTHON_CMD} -m compileall ${WRKSRC} - - @${ECHO_CMD} "#!/bin/sh" >> ${WRKDIR}/run.sh - @${ECHO_CMD} "" >> ${WRKDIR}/run.sh - @${ECHO_CMD} "cd ${DATADIR} || exit 1" >> ${WRKDIR}/run.sh - @${ECHO_CMD} "exec ${PYTHON_CMD} main.py" >> ${WRKDIR}/run.sh - -pre-install: - @${FIND} ${WRKSRC} -type f -name '*.orig' \ - | ${XARGS} rm - -do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/bin - @${INSTALL_SCRIPT} ${WRKDIR}/run.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} +post-install: .for dir in ${LOCALES_DIR} @${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${dir}/LC_MESSAGES @cd ${WRKSRC}/turpial/i18n && \ @@ -70,23 +54,4 @@ do-install: ${STAGEDIR}${PREFIX}/share/locale/${dir}/LC_MESSAGES .endfor -.for dir in ${PORTNAME} pixmaps applications - @${MKDIR} ${STAGEDIR}${PREFIX}/share/${dir} -.endfor - @cd ${WRKSRC} && \ - ${INSTALL_DATA} turpial/data/pixmaps/turpial.png \ - ${STAGEDIR}${PREFIX}/share/pixmaps ; \ - ${INSTALL_DATA} ${PORTNAME}.desktop \ - ${STAGEDIR}${PREFIX}/share/applications - @${RM} -R ${WRKSRC}/turpial/i18n - @cd ${WRKSRC}/turpial && \ - ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} - -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @cd ${WRKSRC} && \ - ${INSTALL_DATA} AUTHORS COPYING TRANSLATORS README.rst \ - ${STAGEDIR}${DOCSDIR} -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> Modified: head/net-im/turpial/distinfo ============================================================================== --- head/net-im/turpial/distinfo Sat Feb 22 16:53:41 2014 (r345666) +++ head/net-im/turpial/distinfo Sat Feb 22 16:58:05 2014 (r345667) @@ -1,2 +1,2 @@ -SHA256 (turpial-1.6.9.tar.gz) = cf059ef3010c400fd57e30081cd2d54daa0a062817c0ab4b08b7c6c7deac0177 -SIZE (turpial-1.6.9.tar.gz) = 760609 +SHA256 (turpial-3.0.tar.gz) = 1da62df141191dbb009e7c36c150c924e5285aca4fac2c8394d1e570df922db8 +SIZE (turpial-3.0.tar.gz) = 910021 Added: head/net-im/turpial/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/turpial/files/patch-setup.py Sat Feb 22 16:58:05 2014 (r345667) @@ -0,0 +1,15 @@ +--- ./setup.py.orig 2013-12-19 01:59:57.000000000 +0000 ++++ ./setup.py 2014-02-22 15:06:23.000000000 +0000 +@@ -55,10 +55,10 @@ + "Topic :: Communications" + ], + include_package_data=True, +- packages=find_packages(), ++ packages=find_packages(exclude=('turpial.ui.unity', 'turpial.ui.gtk.*', 'turpial.ui.gtk')), + package_data={ + 'turpial': ['data/pixmaps/*', 'data/sounds/*', 'data/fonts/*', 'turpial/ui/qt/*', +- 'turpial/i18n/*', 'turpial/ui/qt/templates/*'], ++ 'turpial/ui/qt/templates/*'], + }, + entry_points={ + 'console_scripts': [ Added: head/net-im/turpial/files/patch-turpial__singleton.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/turpial/files/patch-turpial__singleton.py Sat Feb 22 16:58:05 2014 (r345667) @@ -0,0 +1,20 @@ +--- ./turpial/singleton.py.orig 2013-12-19 01:59:58.000000000 +0000 ++++ ./turpial/singleton.py 2014-02-22 11:42:16.000000000 +0000 +@@ -12,7 +12,7 @@ + + from libturpial.common.tools import * + +-if detect_os() == OS_LINUX: ++if detect_os() == OS_LINUX or detect_os() == OS_FREEBSD or detect_os() == OS_DFLY: + import fcntl + + class Singleton: +@@ -21,7 +21,7 @@ + self.log = logging.getLogger('Sys') + self.filepath = os.path.abspath(os.path.join(tempfile.gettempdir(), pid_name)) + +- if detect_os() == OS_LINUX: ++ if detect_os() == OS_LINUX or detect_os() == OS_FREEBSD or detect_os() == OS_DFLY: + self.fd = open(self.filepath, 'w') + try: + fcntl.lockf(self.fd, fcntl.LOCK_EX | fcntl.LOCK_NB) Added: head/net-im/turpial/files/patch-turpial__ui__lang.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/turpial/files/patch-turpial__ui__lang.py Sat Feb 22 16:58:05 2014 (r345667) @@ -0,0 +1,13 @@ +--- ./turpial/ui/lang.py.orig 2013-12-19 01:59:58.000000000 +0000 ++++ ./turpial/ui/lang.py 2014-02-22 15:28:02.000000000 +0000 +@@ -8,8 +8,8 @@ + # Initialize gettext + gettext_domain = 'turpial' + # localedir definition in development mode +-if os.path.isdir(os.path.join(os.path.dirname(__file__), '..', 'i18n')): +- localedir = os.path.realpath(os.path.join(os.path.dirname(__file__), '..', 'i18n')) ++if os.path.isdir(os.path.join('%%PREFIX%%', 'share', 'locale')): ++ localedir = os.path.realpath(os.path.join('%%PREFIX%%', 'share', 'locale')) + trans = gettext.install(gettext_domain, localedir, unicode=1) + else: + trans = gettext.install(gettext_domain, unicode=1) Added: head/net-im/turpial/files/patch-turpial__ui__qt__worker.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/turpial/files/patch-turpial__ui__qt__worker.py Sat Feb 22 16:58:05 2014 (r345667) @@ -0,0 +1,17 @@ +Taken from commit 6c26b50205 + +--- ./turpial/ui/qt/worker.py.orig 2013-12-19 01:59:58.000000000 +0000 ++++ ./turpial/ui/qt/worker.py 2014-02-22 14:36:16.000000000 +0000 +@@ -336,10 +336,10 @@ + # FIXME: Remove this after implement this in libturpial + def load_account(self, account_id, trigger_signal=True): + if trigger_signal: +- self.register(self.core.accman.load, (account_id), ++ self.register(self.core.account_manager.load, (account_id), + self.__after_load_account) + else: +- self.core.accman.load(account_id) ++ self.core.account_manager.load(account_id) + self.__after_load_account() + + def delete_account(self, account_id): Added: head/net-im/turpial/files/patch-turpial__ui__util.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/turpial/files/patch-turpial__ui__util.py Sat Feb 22 16:58:05 2014 (r345667) @@ -0,0 +1,18 @@ +--- ./turpial/ui/util.py.orig 2013-12-19 01:59:58.000000000 +0000 ++++ ./turpial/ui/util.py 2014-02-22 11:49:20.000000000 +0000 +@@ -8,10 +8,14 @@ + + try: + # TODO: Implement this function for other platforms ++ import ctypes + if detect_os() == OS_LINUX: +- import ctypes + libc = ctypes.CDLL('libc.so.6') + libc.prctl(15, 'turpial', 0, 0) ++ elif detect_os() == OS_FREEBSD or detect_os() == OS_DFLY: ++ import ctypes.util ++ libc = ctypes.cdll.LoadLibrary(ctypes.util.find_library('c')) ++ libc.setproctitle('turpial') + except ImportError, exc: + print exc + Modified: head/net-im/turpial/pkg-plist ============================================================================== --- head/net-im/turpial/pkg-plist Sat Feb 22 16:53:41 2014 (r345666) +++ head/net-im/turpial/pkg-plist Sat Feb 22 16:58:05 2014 (r345667) @@ -1,272 +1,13 @@ -bin/turpial -share/applications/turpial.desktop -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/README.rst -%%PORTDOCS%%%%DOCSDIR%%/TRANSLATORS share/locale/ca/LC_MESSAGES/turpial.mo -share/locale/ca_ES/LC_MESSAGES/turpial.mo -share/locale/cs/LC_MESSAGES/turpial.mo share/locale/de/LC_MESSAGES/turpial.mo -share/locale/en/LC_MESSAGES/turpial.mo +share/locale/eo/LC_MESSAGES/turpial.mo share/locale/es/LC_MESSAGES/turpial.mo -share/locale/es_ES/LC_MESSAGES/turpial.mo -share/locale/es_VE/LC_MESSAGES/turpial.mo -share/locale/eu/LC_MESSAGES/turpial.mo share/locale/fr/LC_MESSAGES/turpial.mo -share/locale/gl/LC_MESSAGES/turpial.mo -share/locale/he/LC_MESSAGES/turpial.mo -share/locale/hu/LC_MESSAGES/turpial.mo share/locale/it/LC_MESSAGES/turpial.mo -share/locale/nl/LC_MESSAGES/turpial.mo -share/locale/nn/LC_MESSAGES/turpial.mo -share/locale/pt/LC_MESSAGES/turpial.mo +share/locale/ja/LC_MESSAGES/turpial.mo share/locale/pt_BR/LC_MESSAGES/turpial.mo -share/locale/ru/LC_MESSAGES/turpial.mo +share/locale/pt_PT/LC_MESSAGES/turpial.mo share/locale/ru_RU/LC_MESSAGES/turpial.mo -share/locale/sr/LC_MESSAGES/turpial.mo -share/locale/uk_UA/LC_MESSAGES/turpial.mo -share/locale/zh_CN/LC_MESSAGES/turpial.mo -share/locale/zh_TW/LC_MESSAGES/turpial.mo -share/pixmaps/turpial.png -%%DATADIR%%/__init__.py -%%DATADIR%%/__init__.pyc -%%DATADIR%%/api/__init__.py -%%DATADIR%%/api/__init__.pyc -%%DATADIR%%/api/interfaces/__init__.py -%%DATADIR%%/api/interfaces/__init__.pyc -%%DATADIR%%/api/interfaces/http.py -%%DATADIR%%/api/interfaces/http.pyc -%%DATADIR%%/api/interfaces/post.py -%%DATADIR%%/api/interfaces/post.pyc -%%DATADIR%%/api/interfaces/protocol.py -%%DATADIR%%/api/interfaces/protocol.pyc -%%DATADIR%%/api/interfaces/service.py -%%DATADIR%%/api/interfaces/service.pyc -%%DATADIR%%/api/protocols/__init__.py -%%DATADIR%%/api/protocols/__init__.pyc -%%DATADIR%%/api/protocols/identica/__init__.py -%%DATADIR%%/api/protocols/identica/__init__.pyc -%%DATADIR%%/api/protocols/identica/globals.py -%%DATADIR%%/api/protocols/identica/globals.pyc -%%DATADIR%%/api/protocols/identica/http.py -%%DATADIR%%/api/protocols/identica/http.pyc -%%DATADIR%%/api/protocols/identica/identica.py -%%DATADIR%%/api/protocols/identica/identica.pyc -%%DATADIR%%/api/protocols/twitter/__init__.py -%%DATADIR%%/api/protocols/twitter/__init__.pyc -%%DATADIR%%/api/protocols/twitter/globals.py -%%DATADIR%%/api/protocols/twitter/globals.pyc -%%DATADIR%%/api/protocols/twitter/http.py -%%DATADIR%%/api/protocols/twitter/http.pyc -%%DATADIR%%/api/protocols/twitter/oauth.py -%%DATADIR%%/api/protocols/twitter/oauth.pyc -%%DATADIR%%/api/protocols/twitter/twitter.py -%%DATADIR%%/api/protocols/twitter/twitter.pyc -%%DATADIR%%/api/services/__init__.py -%%DATADIR%%/api/services/__init__.pyc -%%DATADIR%%/api/services/shorturl/__init__.py -%%DATADIR%%/api/services/shorturl/__init__.pyc -%%DATADIR%%/api/services/shorturl/bitly.py -%%DATADIR%%/api/services/shorturl/bitly.pyc -%%DATADIR%%/api/services/shorturl/cligs.py -%%DATADIR%%/api/services/shorturl/cligs.pyc -%%DATADIR%%/api/services/shorturl/googl.py -%%DATADIR%%/api/services/shorturl/googl.pyc -%%DATADIR%%/api/services/shorturl/isgd.py -%%DATADIR%%/api/services/shorturl/isgd.pyc -%%DATADIR%%/api/services/shorturl/smlkes.py -%%DATADIR%%/api/services/shorturl/smlkes.pyc -%%DATADIR%%/api/services/shorturl/supr.py -%%DATADIR%%/api/services/shorturl/supr.pyc -%%DATADIR%%/api/services/shorturl/tinyurl.py -%%DATADIR%%/api/services/shorturl/tinyurl.pyc -%%DATADIR%%/api/services/shorturl/trim.py -%%DATADIR%%/api/services/shorturl/trim.pyc -%%DATADIR%%/api/services/shorturl/unu.py -%%DATADIR%%/api/services/shorturl/unu.pyc -%%DATADIR%%/api/services/shorturl/ur1ca.py -%%DATADIR%%/api/services/shorturl/ur1ca.pyc -%%DATADIR%%/api/services/shorturl/zima.py -%%DATADIR%%/api/services/shorturl/zima.pyc -%%DATADIR%%/api/services/uploadpic/__init__.py -%%DATADIR%%/api/services/uploadpic/__init__.pyc -%%DATADIR%%/api/services/uploadpic/imgly.py -%%DATADIR%%/api/services/uploadpic/imgly.pyc -%%DATADIR%%/api/services/uploadpic/imgur.py -%%DATADIR%%/api/services/uploadpic/imgur.pyc -%%DATADIR%%/api/services/uploadpic/mobypicture.py -%%DATADIR%%/api/services/uploadpic/mobypicture.pyc -%%DATADIR%%/api/services/uploadpic/posterous.py -%%DATADIR%%/api/services/uploadpic/posterous.pyc -%%DATADIR%%/api/services/uploadpic/pyTweetPhoto.py -%%DATADIR%%/api/services/uploadpic/pyTweetPhoto.pyc -%%DATADIR%%/api/services/uploadpic/tweetphoto.py -%%DATADIR%%/api/services/uploadpic/tweetphoto.pyc -%%DATADIR%%/api/services/uploadpic/twitgoo.py -%%DATADIR%%/api/services/uploadpic/twitgoo.pyc -%%DATADIR%%/api/services/uploadpic/twitpic.py -%%DATADIR%%/api/services/uploadpic/twitpic.pyc -%%DATADIR%%/api/services/uploadpic/yfrog.py -%%DATADIR%%/api/services/uploadpic/yfrog.pyc -%%DATADIR%%/api/servicesapi.py -%%DATADIR%%/api/servicesapi.pyc -%%DATADIR%%/api/turpialapi.py -%%DATADIR%%/api/turpialapi.pyc -%%DATADIR%%/certs/cacert.pem -%%DATADIR%%/config.py -%%DATADIR%%/config.pyc -%%DATADIR%%/data/pixmaps/action-add-friends.png -%%DATADIR%%/data/pixmaps/action-autoscroll.png -%%DATADIR%%/data/pixmaps/action-clear.png -%%DATADIR%%/data/pixmaps/action-mark-all.png -%%DATADIR%%/data/pixmaps/action-refresh.png -%%DATADIR%%/data/pixmaps/dock-about.png -%%DATADIR%%/data/pixmaps/dock-favorites.png -%%DATADIR%%/data/pixmaps/dock-follow.png -%%DATADIR%%/data/pixmaps/dock-home.png -%%DATADIR%%/data/pixmaps/dock-profile.png -%%DATADIR%%/data/pixmaps/dock-settings.png -%%DATADIR%%/data/pixmaps/dock-update.png -%%DATADIR%%/data/pixmaps/dock-uploadpic.png -%%DATADIR%%/data/pixmaps/identica.png -%%DATADIR%%/data/pixmaps/logo2.png -%%DATADIR%%/data/pixmaps/turpial-notification.png -%%DATADIR%%/data/pixmaps/turpial-tray-update.png -%%DATADIR%%/data/pixmaps/turpial-tray.png -%%DATADIR%%/data/pixmaps/turpial.png -%%DATADIR%%/data/pixmaps/twitter.png -%%DATADIR%%/data/pixmaps/unknown.png -%%DATADIR%%/data/pixmaps/wait-error.png -%%DATADIR%%/data/pixmaps/wait10.png -%%DATADIR%%/data/pixmaps/wait11.png -%%DATADIR%%/data/pixmaps/wait12.png -%%DATADIR%%/data/pixmaps/wait13.png -%%DATADIR%%/data/pixmaps/wait14.png -%%DATADIR%%/data/pixmaps/wait15.png -%%DATADIR%%/data/pixmaps/wait16.png -%%DATADIR%%/data/pixmaps/wait17.png -%%DATADIR%%/data/pixmaps/wait18.png -%%DATADIR%%/data/pixmaps/wait19.png -%%DATADIR%%/data/pixmaps/wait2.png -%%DATADIR%%/data/pixmaps/wait20.png -%%DATADIR%%/data/pixmaps/wait21.png -%%DATADIR%%/data/pixmaps/wait22.png -%%DATADIR%%/data/pixmaps/wait23.png -%%DATADIR%%/data/pixmaps/wait24.png -%%DATADIR%%/data/pixmaps/wait25.png -%%DATADIR%%/data/pixmaps/wait26.png -%%DATADIR%%/data/pixmaps/wait27.png -%%DATADIR%%/data/pixmaps/wait28.png -%%DATADIR%%/data/pixmaps/wait29.png -%%DATADIR%%/data/pixmaps/wait3.png -%%DATADIR%%/data/pixmaps/wait30.png -%%DATADIR%%/data/pixmaps/wait31.png -%%DATADIR%%/data/pixmaps/wait32.png -%%DATADIR%%/data/pixmaps/wait4.png -%%DATADIR%%/data/pixmaps/wait5.png -%%DATADIR%%/data/pixmaps/wait6.png -%%DATADIR%%/data/pixmaps/wait7.png -%%DATADIR%%/data/pixmaps/wait8.png -%%DATADIR%%/data/pixmaps/wait9.png -%%DATADIR%%/data/sounds/cambur_pinton.ogg -%%DATADIR%%/data/sounds/mencion.ogg -%%DATADIR%%/data/sounds/mencion2.ogg -%%DATADIR%%/data/sounds/mencion3.ogg -%%DATADIR%%/data/sounds/turpial.ogg -%%DATADIR%%/data/themes/default/style.css -%%DATADIR%%/data/themes/default/tweet.html -%%DATADIR%%/data/themes/default/tweet_template.html -%%DATADIR%%/main.py -%%DATADIR%%/main.pyc -%%DATADIR%%/notification.py -%%DATADIR%%/notification.pyc -%%DATADIR%%/sound.py -%%DATADIR%%/sound.pyc -%%DATADIR%%/ui/__init__.py -%%DATADIR%%/ui/__init__.pyc -%%DATADIR%%/ui/base_ui.py -%%DATADIR%%/ui/base_ui.pyc -%%DATADIR%%/ui/cmd/__init__.py -%%DATADIR%%/ui/cmd/__init__.pyc -%%DATADIR%%/ui/cmd/main.py -%%DATADIR%%/ui/cmd/main.pyc -%%DATADIR%%/ui/gtk/__init__.py -%%DATADIR%%/ui/gtk/__init__.pyc -%%DATADIR%%/ui/gtk/about.py -%%DATADIR%%/ui/gtk/about.pyc -%%DATADIR%%/ui/gtk/button.py -%%DATADIR%%/ui/gtk/button.pyc -%%DATADIR%%/ui/gtk/columns.py -%%DATADIR%%/ui/gtk/columns.pyc -%%DATADIR%%/ui/gtk/conversation.py -%%DATADIR%%/ui/gtk/conversation.pyc -%%DATADIR%%/ui/gtk/dock.py -%%DATADIR%%/ui/gtk/dock.pyc -%%DATADIR%%/ui/gtk/errorbox.py -%%DATADIR%%/ui/gtk/errorbox.pyc -%%DATADIR%%/ui/gtk/follow.py -%%DATADIR%%/ui/gtk/follow.pyc -%%DATADIR%%/ui/gtk/friendwin.py -%%DATADIR%%/ui/gtk/friendwin.pyc -%%DATADIR%%/ui/gtk/home.py -%%DATADIR%%/ui/gtk/home.pyc -%%DATADIR%%/ui/gtk/indicator.py -%%DATADIR%%/ui/gtk/indicator.pyc -%%DATADIR%%/ui/gtk/login.py -%%DATADIR%%/ui/gtk/login.pyc -%%DATADIR%%/ui/gtk/loginlabel.py -%%DATADIR%%/ui/gtk/loginlabel.pyc -%%DATADIR%%/ui/gtk/main.py -%%DATADIR%%/ui/gtk/main.pyc -%%DATADIR%%/ui/gtk/menu.py -%%DATADIR%%/ui/gtk/menu.pyc -%%DATADIR%%/ui/gtk/oauthwin.py -%%DATADIR%%/ui/gtk/oauthwin.pyc -%%DATADIR%%/ui/gtk/preferences.py -%%DATADIR%%/ui/gtk/preferences.pyc -%%DATADIR%%/ui/gtk/profile.py -%%DATADIR%%/ui/gtk/profile.pyc -%%DATADIR%%/ui/gtk/statuslist.py -%%DATADIR%%/ui/gtk/statuslist.pyc -%%DATADIR%%/ui/gtk/tweetslistwk.py -%%DATADIR%%/ui/gtk/tweetslistwk.pyc -%%DATADIR%%/ui/gtk/updatebox.py -%%DATADIR%%/ui/gtk/updatebox.pyc -%%DATADIR%%/ui/gtk/uploadpicbox.py -%%DATADIR%%/ui/gtk/uploadpicbox.pyc -%%DATADIR%%/ui/gtk/userform.py -%%DATADIR%%/ui/gtk/userform.pyc -%%DATADIR%%/ui/gtk/waiting.py -%%DATADIR%%/ui/gtk/waiting.pyc -%%DATADIR%%/ui/gtk/wrapper.py -%%DATADIR%%/ui/gtk/wrapper.pyc -%%DATADIR%%/ui/util.py -%%DATADIR%%/ui/util.pyc -@dirrm %%DATADIR%%/ui/gtk -@dirrm %%DATADIR%%/ui/cmd -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/data/themes/default -@dirrm %%DATADIR%%/data/themes -@dirrm %%DATADIR%%/data/sounds -@dirrm %%DATADIR%%/data/pixmaps -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%%/certs -@dirrm %%DATADIR%%/api/services/uploadpic -@dirrm %%DATADIR%%/api/services/shorturl -@dirrm %%DATADIR%%/api/services -@dirrm %%DATADIR%%/api/protocols/twitter -@dirrm %%DATADIR%%/api/protocols/identica -@dirrm %%DATADIR%%/api/protocols -@dirrm %%DATADIR%%/api/interfaces -@dirrm %%DATADIR%%/api -@dirrm %%DATADIR%% -@dirrmtry share/locale/uk_UA/LC_MESSAGES -@dirrmtry share/locale/uk_UA +share/locale/tr/LC_MESSAGES/turpial.mo @dirrmtry share/locale/ru_RU/LC_MESSAGES @dirrmtry share/locale/ru_RU -@dirrmtry share/locale/es_VE/LC_MESSAGES -@dirrmtry share/locale/es_VE -@dirrmtry share/locale/ca_ES/LC_MESSAGES -@dirrmtry share/locale/ca_ES -%%PORTDOCS%%@dirrm %%DOCSDIR%%
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402221658.s1MGw5Mo048939>