Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Sep 2018 21:28:30 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480927 - in head/databases: . sequeler sequeler/files
Message-ID:  <201809292128.w8TLSUrC044399@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Sat Sep 29 21:28:29 2018
New Revision: 480927
URL: https://svnweb.freebsd.org/changeset/ports/480927

Log:
  New port: databases/sequeler
  
  Sequeler is a friendly SQL client that allows you to connect to
  your local and remote databases, write SQL in a handy text editor
  with language recognition, and visualize SELECT results.
  
  WWW: https://github.com/Alecaddd/sequeler

Added:
  head/databases/sequeler/
  head/databases/sequeler/Makefile   (contents, props changed)
  head/databases/sequeler/distinfo   (contents, props changed)
  head/databases/sequeler/files/
  head/databases/sequeler/files/patch-src_Services_ActionManager.vala   (contents, props changed)
  head/databases/sequeler/pkg-descr   (contents, props changed)
  head/databases/sequeler/pkg-plist   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sat Sep 29 20:50:43 2018	(r480926)
+++ head/databases/Makefile	Sat Sep 29 21:28:29 2018	(r480927)
@@ -1011,6 +1011,7 @@
     SUBDIR += rubygem-state_machines-activemodel
     SUBDIR += rubygem-state_machines-activerecord
     SUBDIR += rubygem-tarantool
+    SUBDIR += sequeler
     SUBDIR += sfcgal
     SUBDIR += sharedance
     SUBDIR += skytools

Added: head/databases/sequeler/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sequeler/Makefile	Sat Sep 29 21:28:29 2018	(r480927)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	sequeler
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.6.2
+CATEGORIES=	databases
+
+MAINTAINER=	tobik@FreeBSD.org
+COMMENT=	Friendly SQL client
+
+LICENSE=	GPLv3+
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+BUILD_DEPENDS=	vala:lang/vala
+LIB_DEPENDS=	libgee-0.8.so:devel/libgee \
+		libgranite.so:x11-toolkits/granite \
+		libsecret-1.so:security/libsecret
+
+USES=		gettext gnome meson pkgconfig python:3.5+,build
+USE_GITHUB=	yes
+GH_ACCOUNT=	Alecaddd
+USE_GNOME=	glib20 gtk30 gtksourceview3 libgda5
+GLIB_SCHEMAS=	com.github.alecaddd.sequeler.gschema.xml
+INSTALLS_ICONS=	yes
+
+BINARY_ALIAS=	python3=${PYTHON_CMD} # for meson/post_install.py
+
+.include <bsd.port.mk>

Added: head/databases/sequeler/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sequeler/distinfo	Sat Sep 29 21:28:29 2018	(r480927)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1538250783
+SHA256 (Alecaddd-sequeler-v0.6.2_GH0.tar.gz) = 5fd37b8b004b7fb5991480e9c46affd9f196e4af986b03a903cf37a6b26d4480
+SIZE (Alecaddd-sequeler-v0.6.2_GH0.tar.gz) = 524879

Added: head/databases/sequeler/files/patch-src_Services_ActionManager.vala
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sequeler/files/patch-src_Services_ActionManager.vala	Sat Sep 29 21:28:29 2018	(r480927)
@@ -0,0 +1,43 @@
+Fix crash most likely caused by an outdated libgee and or vala?
+Reevaluate when libgee >= 0.20 and vala >= 0.40 make it into the
+tree after https://bugs.freebsd.org/229761 lands.
+
+--- src/Services/ActionManager.vala.orig	2018-09-11 21:39:55 UTC
++++ src/Services/ActionManager.vala
+@@ -32,8 +32,6 @@ public class Sequeler.Services.ActionManager : Object 
+ 	public const string ACTION_LOGOUT = "action_logout";
+ 	public const string ACTION_QUIT = "action_quit";
+ 
+-	public static Gee.MultiMap<string, string> action_accelerators = new Gee.HashMultiMap<string, string> ();
+-
+ 	private const ActionEntry[] action_entries = {
+ 		{ ACTION_NEW_WINDOW, action_new_window },
+ 		{ ACTION_NEW_CONNECTION, action_new_connection },
+@@ -49,22 +47,16 @@ public class Sequeler.Services.ActionManager : Object 
+ 		);
+ 	}
+ 
+-	static construct {
+-		action_accelerators.set (ACTION_NEW_WINDOW, "<Control>n");
+-		action_accelerators.set (ACTION_NEW_CONNECTION, "<Control><Shift>n");
+-		action_accelerators.set (ACTION_RUN_QUERY, "<Control>Return");
+-		action_accelerators.set (ACTION_LOGOUT, "<Control>Escape");
+-		action_accelerators.set (ACTION_QUIT, "<Control>q");
+-	}
+-
+ 	construct {
+ 		actions = new SimpleActionGroup ();
+ 		actions.add_action_entries (action_entries, this);
+ 		window.insert_action_group ("win", actions);
+ 
+-		foreach (var action in action_accelerators.get_keys ()) {
+-			app.set_accels_for_action (ACTION_PREFIX + action, action_accelerators[action].to_array ());
+-		}
++		app.set_accels_for_action (ACTION_PREFIX + ACTION_NEW_WINDOW, { "<Control>n" });
++		app.set_accels_for_action (ACTION_PREFIX + ACTION_NEW_CONNECTION, { "<Control><Shift>n" });
++		app.set_accels_for_action (ACTION_PREFIX + ACTION_RUN_QUERY, { "<Control>Return" });
++		app.set_accels_for_action (ACTION_PREFIX + ACTION_LOGOUT, { "<Control>Escape" });
++		app.set_accels_for_action (ACTION_PREFIX + ACTION_QUIT, { "<Control>q" });
+ 	}
+ 
+ 	private void action_quit () {

Added: head/databases/sequeler/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sequeler/pkg-descr	Sat Sep 29 21:28:29 2018	(r480927)
@@ -0,0 +1,5 @@
+Sequeler is a friendly SQL client that allows you to connect to
+your local and remote databases, write SQL in a handy text editor
+with language recognition, and visualize SELECT results.
+
+WWW: https://github.com/Alecaddd/sequeler

Added: head/databases/sequeler/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/sequeler/pkg-plist	Sat Sep 29 21:28:29 2018	(r480927)
@@ -0,0 +1,218 @@
+bin/com.github.alecaddd.sequeler
+share/applications/com.github.alecaddd.sequeler.desktop
+share/icons/hicolor/128x128/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/128x128/mimetypes/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/128x128@2/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/16x16/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/16x16/mimetypes/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/16x16@2/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/24x24/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/24x24/mimetypes/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/24x24@2/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/32x32/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/32x32/mimetypes/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/32x32@2/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/48x48/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/48x48/mimetypes/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/48x48@2/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/64x64/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/64x64/mimetypes/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/64x64@2/apps/com.github.alecaddd.sequeler.svg
+share/icons/hicolor/scalable/apps/com.github.alecaddd.sequeler.svg
+share/locale/aa/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ab/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ae/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/af/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ak/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/am/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/an/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ar/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/as/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ast/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/av/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ay/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/az/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ba/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/be/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/bg/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/bh/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/bi/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/bm/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/bn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/bo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/br/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/bs/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ca/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ce/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ch/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ckb/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/co/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/cr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/cs/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/cu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/cv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/cy/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/da/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/de/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/dv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/dz/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ee/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/el/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/en_AU/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/en_CA/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/en_GB/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/eo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/es/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/et/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/eu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/fa/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ff/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/fi/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/fj/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/fo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/fr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/fr_CA/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/fy/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ga/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/gd/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/gl/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/gn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/gu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/gv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ha/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/he/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/hi/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ho/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/hr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ht/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/hu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/hy/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/hz/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ia/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/id/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ie/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ig/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ii/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ik/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/io/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/is/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/it/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/iu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ja/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/jv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ka/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kg/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ki/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kj/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kk/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kl/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/km/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ko/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ks/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ku/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/kw/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ky/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/la/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/lb/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/lg/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/li/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ln/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/lo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/lt/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/lu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/lv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mg/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mh/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mi/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mk/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ml/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ms/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/mt/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/my/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/na/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/nb/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/nd/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ne/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ng/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/nl/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/nn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/no/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/nr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/nv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ny/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/oc/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/oj/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/om/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/or/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/os/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/pa/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/pi/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/pl/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ps/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/pt/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/pt_BR/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/qu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/rm/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/rn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ro/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ru/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/rue/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/rw/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sa/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sc/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sd/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/se/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sg/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/si/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sk/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sl/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sm/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sma/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/so/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sq/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ss/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/st/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/su/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sv/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/sw/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ta/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/te/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/tg/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/th/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ti/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/tk/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/tl/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/tn/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/to/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/tr/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ts/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/tt/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/tw/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ty/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ug/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/uk/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ur/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/uz/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/ve/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/vi/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/vo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/wa/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/wo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/xh/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/yi/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/yo/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/za/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/zh/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/zh_CN/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/zh_HK/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/zh_TW/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/locale/zu/LC_MESSAGES/com.github.alecaddd.sequeler.mo
+share/metainfo/com.github.alecaddd.sequeler.appdata.xml



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809292128.w8TLSUrC044399>