[libgnome-games-support] Rename to libgnome-games-support
- From: Sahil Sareen <ssareen src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgnome-games-support] Rename to libgnome-games-support
- Date: Mon, 15 Aug 2016 18:56:18 +0000 (UTC)
commit 28b4dd8fd30c8e54829056fb97acd91e9316d555
Author: Jeremy Bicha <jbicha ubuntu com>
Date: Sat Aug 13 14:21:30 2016 -0400
Rename to libgnome-games-support
See discussion at https://bugs.debian.org/824130
https://bugzilla.gnome.org/show_bug.cgi?id=769860
Makefile.am | 2 +-
README | 2 +-
autogen.sh | 2 +-
configure.ac | 10 ++--
games/Makefile.am | 44 ++++++++++----------
games/gridframe.vala | 8 ++--
games/scores/category.vala | 8 ++--
games/scores/context.vala | 8 ++--
games/scores/dialog.vala | 8 ++--
games/scores/directory-importer.vala | 10 ++--
games/scores/history-file-importer.vala | 10 ++--
games/scores/importer.vala | 8 ++--
games/scores/score.vala | 8 ++--
...t-1.0.pc.in => libgnome-games-support-1.0.pc.in | 6 +-
po/bg.po | 4 +-
po/ca.po | 2 +-
po/da.po | 8 ++--
po/eo.po | 6 +-
po/eu.po | 4 +-
po/fi.po | 8 ++--
po/fur.po | 8 ++--
po/gl.po | 8 ++--
po/id.po | 2 +-
po/it.po | 6 +-
po/ko.po | 4 +-
po/lt.po | 8 ++--
po/nb.po | 4 +-
po/pl.po | 2 +-
po/pt.po | 8 ++--
po/ru.po | 8 ++--
po/sk.po | 8 ++--
po/sv.po | 8 ++--
po/zh_TW.po | 8 ++--
style-checker | 2 +-
tests/Makefile.am | 8 ++--
tests/test-scores.vala | 18 ++++----
36 files changed, 138 insertions(+), 138 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index ef4e9ab..982feef 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,7 +2,7 @@ SUBDIRS = games po tests
pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = libgames-support-$(LIBGAMES_SUPPORT_API_VERSION).pc
+pkgconfig_DATA = libgnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION).pc
EXTRA_DIST = \
COPYING.LESSER
diff --git a/README b/README
index 9f00431..ef9c82e 100644
--- a/README
+++ b/README
@@ -1,2 +1,2 @@
-libgames-support is a small library intended for internal use by GNOME Games,
+libgnome-games-support is a small library intended for internal use by GNOME Games,
but it may be used by others.
diff --git a/autogen.sh b/autogen.sh
index 2b33e32..35a2465 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -16,7 +16,7 @@ cd $srcdir
if [ -d $srcdir/.git ]; then
for HOOK in pre-commit pre-applypatch; do
if [ ! -L $srcdir/.git/hooks/$HOOK ]; then
- ln -s ../../../libgames-support/style-checker \
+ ln -s ../../../libgnome-games-support/style-checker \
$srcdir/.git/hooks/$HOOK && echo "Enabled $HOOK style checker."
fi
done
diff --git a/configure.ac b/configure.ac
index c25289d..785d88e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.69])
-AC_INIT([libgames-support], [1.0.2], [https://bugzilla.gnome.org])
+AC_INIT([libgnome-games-support], [1.0.2], [https://bugzilla.gnome.org])
dnl http://people.gnome.org/~walters/docs/build-api.txt
dnl https://bugzilla.gnome.org/show_bug.cgi?id=751624
@@ -15,9 +15,9 @@ dnl * If any interfaces have been removed or changed since the last public
dnl release, then set age to 0)
dnl
dnl http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
-AC_SUBST([LIBGAMES_SUPPORT_LT_VERSION], [2:1:0])
+AC_SUBST([LIBGNOME_GAMES_SUPPORT_LT_VERSION], [2:1:0])
-AC_SUBST([LIBGAMES_SUPPORT_API_VERSION], [1.0])
+AC_SUBST([LIBGNOME_GAMES_SUPPORT_API_VERSION], [1.0])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
@@ -31,7 +31,7 @@ AM_PROG_VALAC([0.24])
LT_PREREQ([2.2])
LT_INIT([disable-static])
-PKG_CHECK_MODULES([LIBGAMES_SUPPORT], [
+PKG_CHECK_MODULES([LIBGNOME_GAMES_SUPPORT], [
glib-2.0 >= 2.40
gio-2.0 >= 2.40
gtk+-3.0 >= 3.19.2
@@ -44,7 +44,7 @@ AC_SUBST([GETTEXT_PACKAGE], [AC_PACKAGE_NAME])
AC_CONFIG_FILES([
Makefile
- libgames-support-1.0.pc
+ libgnome-games-support-1.0.pc
po/Makefile.in
games/Makefile
tests/Makefile
diff --git a/games/Makefile.am b/games/Makefile.am
index d0fb41c..0250450 100644
--- a/games/Makefile.am
+++ b/games/Makefile.am
@@ -1,6 +1,6 @@
-lib_LTLIBRARIES = libgames-support-@LIBGAMES_SUPPORT_API_VERSION@.la
+lib_LTLIBRARIES = libgnome-games-support-@LIBGNOME_GAMES_SUPPORT_API_VERSION@.la
-libgames_support_@LIBGAMES_SUPPORT_API_VERSION@_la_SOURCES = \
+libgnome_games_support_@LIBGNOME_GAMES_SUPPORT_API_VERSION@_la_SOURCES = \
config.vapi \
gridframe.vala \
scores/category.vala \
@@ -11,39 +11,39 @@ libgames_support_@LIBGAMES_SUPPORT_API_VERSION@_la_SOURCES = \
scores/importer.vala \
scores/score.vala
-libgames_support_@LIBGAMES_SUPPORT_API_VERSION@_la_CFLAGS = \
+libgnome_games_support_@LIBGNOME_GAMES_SUPPORT_API_VERSION@_la_CFLAGS = \
-w
-libgames_support_@LIBGAMES_SUPPORT_API_VERSION@_la_CPPFLAGS = \
+libgnome_games_support_@LIBGNOME_GAMES_SUPPORT_API_VERSION@_la_CPPFLAGS = \
-I$(top_srcdir)/include \
-DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \
-DLOCALEDIR=\"$(localedir)\" \
- $(LIBGAMES_SUPPORT_CFLAGS)
+ $(LIBGNOME_GAMES_SUPPORT_CFLAGS)
-libgames_support_@LIBGAMES_SUPPORT_API_VERSION@_la_LDFLAGS = \
- -version-info $(LIBGAMES_SUPPORT_LT_VERSION) \
+libgnome_games_support_@LIBGNOME_GAMES_SUPPORT_API_VERSION@_la_LDFLAGS = \
+ -version-info $(LIBGNOME_GAMES_SUPPORT_LT_VERSION) \
-no-undefined \
- $(LIBGAMES_SUPPORT_LIBS)
+ $(LIBGNOME_GAMES_SUPPORT_LIBS)
-libgames_support_@LIBGAMES_SUPPORT_API_VERSION@_la_VALAFLAGS = \
- --pkg glib-2.0 \
- --pkg gtk+-3.0 \
- --pkg gio-2.0 \
- --pkg gee-0.8 \
- --header=libgames-support.h \
- --vapi=libgames-support-$(LIBGAMES_SUPPORT_API_VERSION).vapi
+libgnome_games_support_@LIBGNOME_GAMES_SUPPORT_API_VERSION@_la_VALAFLAGS = \
+ --pkg glib-2.0 \
+ --pkg gtk+-3.0 \
+ --pkg gio-2.0 \
+ --pkg gee-0.8 \
+ --header=libgnome-games-support.h \
+ --vapi=libgnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION).vapi
-libgames-support.h libgames-support-$(LIBGAMES_SUPPORT_API_VERSION).vapi: \
- libgames_support_$(LIBGAMES_SUPPORT_API_VERSION)_la_vala.stamp
+libgnome-games-support.h libgnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION).vapi: \
+ libgnome_games_support_$(LIBGNOME_GAMES_SUPPORT_API_VERSION)_la_vala.stamp
-games_includedir = $(includedir)/games-support-$(LIBGAMES_SUPPORT_API_VERSION)
-dist_games_include_HEADERS = libgames-support.h
+games_includedir = $(includedir)/gnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION)
+dist_games_include_HEADERS = libgnome-games-support.h
vapidir = $(datadir)/vala/vapi
-dist_vapi_DATA = libgames-support-$(LIBGAMES_SUPPORT_API_VERSION).vapi
+dist_vapi_DATA = libgnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION).vapi
MAINTAINERCLEANFILES = \
- libgames-support.h \
- libgames-support-$(LIBGAMES_SUPPORT_API_VERSION).vapi
+ libgnome-games-support.h \
+ libgnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION).vapi
-include $(top_srcdir)/git.mk
diff --git a/games/gridframe.vala b/games/gridframe.vala
index 3de68bf..14c0a93 100644
--- a/games/gridframe.vala
+++ b/games/gridframe.vala
@@ -2,20 +2,20 @@
*
* Copyright © 2015 Michael Catanzaro <mcatanzaro gnome org>
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
// A container that guarantees that the internal allocated space is a fixed
diff --git a/games/scores/category.vala b/games/scores/category.vala
index 0adc267..4fb0ff6 100644
--- a/games/scores/category.vala
+++ b/games/scores/category.vala
@@ -2,20 +2,20 @@
*
* Copyright © 2014 Nikhar Agrawal
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
diff --git a/games/scores/context.vala b/games/scores/context.vala
index ea68780..17b90cb 100644
--- a/games/scores/context.vala
+++ b/games/scores/context.vala
@@ -3,20 +3,20 @@
* Copyright © 2014 Nikhar Agrawal
* Copyright © 2015 Michael Catanzaro <mcatanzaro gnome org>
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
diff --git a/games/scores/dialog.vala b/games/scores/dialog.vala
index 1260c75..5a16eea 100644
--- a/games/scores/dialog.vala
+++ b/games/scores/dialog.vala
@@ -2,20 +2,20 @@
*
* Copyright © 2014 Nikhar Agrawal
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
diff --git a/games/scores/directory-importer.vala b/games/scores/directory-importer.vala
index 272e2e2..e7861d8 100644
--- a/games/scores/directory-importer.vala
+++ b/games/scores/directory-importer.vala
@@ -2,20 +2,20 @@
*
* Copyright © 2016 Michael Catanzaro <mcatanzaro gnome org>
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
@@ -23,7 +23,7 @@ namespace Scores {
/* Imports scores from an old scores directory, where each category of scores is
* saved in a separate file. This is the format used by old C games that were
- * never converted to Vala before switching to libgames-support. This class
+ * never converted to Vala before switching to libgnome-games-support. This class
* should probably be used by Five or More, Nibbles, Robots, Tali, and nothing
* else.
*/
diff --git a/games/scores/history-file-importer.vala b/games/scores/history-file-importer.vala
index d473c9d..848dc3d 100644
--- a/games/scores/history-file-importer.vala
+++ b/games/scores/history-file-importer.vala
@@ -2,20 +2,20 @@
*
* Copyright © 2016 Michael Catanzaro <mcatanzaro gnome org>
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
@@ -23,7 +23,7 @@ namespace Scores {
/* Imports scores from a Vala game's history file directory, where each category
* of scores is saved together in the same file. This is the format used by
- * games that were converted to Vala before switching to libgames-support. This
+ * games that were converted to Vala before switching to libgnome-games-support. This
* class should probably be used by Klotski, Mines, Swell Foop, Mahjongg,
* Tetravex, Quadrapassel, and nothing else.
*/
diff --git a/games/scores/importer.vala b/games/scores/importer.vala
index f451cc9..16dd1f2 100644
--- a/games/scores/importer.vala
+++ b/games/scores/importer.vala
@@ -2,20 +2,20 @@
*
* Copyright © 2016 Michael Catanzaro <mcatanzaro gnome org>
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
diff --git a/games/scores/score.vala b/games/scores/score.vala
index ff5d5e3..692e43a 100644
--- a/games/scores/score.vala
+++ b/games/scores/score.vala
@@ -2,20 +2,20 @@
*
* Copyright © 2014 Nikhar Agrawal
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
diff --git a/libgames-support-1.0.pc.in b/libgnome-games-support-1.0.pc.in
similarity index 52%
rename from libgames-support-1.0.pc.in
rename to libgnome-games-support-1.0.pc.in
index 68ba363..e133193 100644
--- a/libgames-support-1.0.pc.in
+++ b/libgnome-games-support-1.0.pc.in
@@ -3,9 +3,9 @@ exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
-Name: libgames-support
+Name: libgnome-games-support
Description: Useful functionality shared among GNOME games
Version: @VERSION@
Requires: gee-0.8 glib-2.0 gio-2.0 gtk+-3.0
-Libs: -L${libdir} -lgames-support-@LIBGAMES_SUPPORT_API_VERSION@
-Cflags: -I${includedir}/games-support-@LIBGAMES_SUPPORT_API_VERSION@
+Libs: -L${libdir} -lgnome-games-support-@LIBGNOME_GAMES_SUPPORT_API_VERSION@
+Cflags: -I${includedir}/gnome-games-support-@LIBGNOME_GAMES_SUPPORT_API_VERSION@
diff --git a/po/bg.po b/po/bg.po
index 7ac3818..f036a19 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,9 +1,9 @@
-# Bulgarian translation of libgames-support po-file.
+# Bulgarian translation of libgnome-games-support po-file.
# Copyright (C) 2016 Free Software Foundation, Inc.
# Alexander Shopov <ash kambanaria org>, 20016.
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-13 20:25+0200\n"
"PO-Revision-Date: 2016-01-13 17:02+0200\n"
diff --git a/po/ca.po b/po/ca.po
index 2d4893e..99e249d 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support.master\n"
+"Project-Id-Version: libgnome-games-support.master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-29 07:00+0100\n"
"PO-Revision-Date: 2015-10-29 07:00+0100\n"
diff --git a/po/da.po b/po/da.po
index 9ddcefc..ae39cad 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,10 +1,10 @@
-# Danish translation for libgames-support.
-# Copyright (C) 2016 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Danish translation for libgnome-games-support.
+# Copyright (C) 2016 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# scootergrisen, 2015, 2016.
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product"
"=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-02-29 12:48+0000\n"
diff --git a/po/eo.po b/po/eo.po
index 1dacaec..fb13ba7 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -1,11 +1,11 @@
-# Esperanto translation for libgames-support.
+# Esperanto translation for libgnome-games-support.
# Copyright (C) 2016 Free Software Foundation, Inc.
-# This file is distributed under the same license as the libgames-support package.
+# This file is distributed under the same license as the libgnome-games-support package.
# Kristjan SCHMIDT <kristjan schmidt googlemail com>, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-03-01 12:53+0000\n"
diff --git a/po/eu.po b/po/eu.po
index 4406215..3fb28b8 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,11 +1,11 @@
-# Basque translation for libgames-support
+# Basque translation for libgnome-games-support
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# dooteo <dooteo zundan com>, 2016.
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-20 19:58+0100\n"
"PO-Revision-Date: 2016-03-20 20:00+0100\n"
diff --git a/po/fi.po b/po/fi.po
index 2da6be7..f550a36 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,11 +1,11 @@
-# Finnish translation for libgames-support.
-# Copyright (C) 2015 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Finnish translation for libgnome-games-support.
+# Copyright (C) 2015 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Jiri Grönroos <jiri gronroos+l10n iki fi>, 2015, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-02-21 04:35+0000\n"
diff --git a/po/fur.po b/po/fur.po
index 6f1b682..a52d6e6 100644
--- a/po/fur.po
+++ b/po/fur.po
@@ -1,11 +1,11 @@
-# Friulian translation for libgames-support.
-# Copyright (C) 2016 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Friulian translation for libgnome-games-support.
+# Copyright (C) 2016 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Fabio Tomat <f t public gmail com>, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=libgames-"
"scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-03-24 07:51+0000\n"
diff --git a/po/gl.po b/po/gl.po
index 70d6142..e5930a2 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,10 +1,10 @@
-# Galician translation for libgames-support.
-# Copyright (C) 2015 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Galician translation for libgnome-games-support.
+# Copyright (C) 2015 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Fran Dieguez <frandieguez gnome org>, 2015, 2016.
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-02-23 19:49+0100\n"
"PO-Revision-Date: 2016-02-23 19:54+0200\n"
diff --git a/po/id.po b/po/id.po
index 1b5d8d7..43e4843 100644
--- a/po/id.po
+++ b/po/id.po
@@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-scores libgames-support-1-0\n"
+"Project-Id-Version: libgames-scores libgnome-games-support-1-0\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-04-08 14:01+0000\n"
diff --git a/po/it.po b/po/it.po
index 4a45a4c..4a2b7c9 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,11 +1,11 @@
-# Italian translation for libgames-support.
+# Italian translation for libgnome-games-support.
# Copyright (C) 2016 The Free Software Foundation, Inc.
-# This file is distributed under the same license as the libgames-support package.
+# This file is distributed under the same license as the libgnome-games-support package.
# Milo Casagrande <milo milo name>, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-03-17 20:41+0000\n"
diff --git a/po/ko.po b/po/ko.po
index b42da8e..eed9b4c 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,9 +1,9 @@
-# This file is distributed under the same license as the libgames-support package.
+# This file is distributed under the same license as the libgnome-games-support package.
# Minseok Jeon <cheon7886 naver com>, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-03-19 13:05+0000\n"
diff --git a/po/lt.po b/po/lt.po
index 95c5ffc..61e5c9d 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1,11 +1,11 @@
-# Lithuanian translation for libgames-support.
-# Copyright (C) 2015 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Lithuanian translation for libgnome-games-support.
+# Copyright (C) 2015 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Aurimas Černius <aurisc4 gmail com>, 2015, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-02-21 04:35+0000\n"
diff --git a/po/nb.po b/po/nb.po
index 1528305..4cc9439 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1,11 +1,11 @@
-# Norwegian bokmål translation of libgames-support.
+# Norwegian bokmål translation of libgnome-games-support.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support 3.19.x\n"
+"Project-Id-Version: libgnome-games-support 3.19.x\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-01-10 13:04+0100\n"
"PO-Revision-Date: 2016-01-10 13:06+0100\n"
diff --git a/po/pl.po b/po/pl.po
index 2671596..f3318ac 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
# Aviary.pl <gnomepl aviary pl>, 2014-2016.
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support\n"
+"Project-Id-Version: libgnome-games-support\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-02-21 16:49+0100\n"
"PO-Revision-Date: 2016-02-21 16:50+0100\n"
diff --git a/po/pt.po b/po/pt.po
index 69b31bd..ead4ceb 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,13 +1,13 @@
-# Portuguese translation for libgames-support.
-# Copyright (C) 2015 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Portuguese translation for libgnome-games-support.
+# Copyright (C) 2015 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Tiago Santos <tiagofsantos81 sapo pt>, 2015, 2016.
# Pedro Albuquerque <palbuquerque73 gmail com>, 2015.
# Sérgio Cardeira <cardeira sergio gmail com>, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-02-21 04:35+0000\n"
diff --git a/po/ru.po b/po/ru.po
index 1bc925d..5d08292 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,11 +1,11 @@
-# Russian translation for libgames-support.
-# Copyright (C) 2016 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Russian translation for libgnome-games-support.
+# Copyright (C) 2016 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-03-19 12:54+0000\n"
diff --git a/po/sk.po b/po/sk.po
index c18431c..ee6b2b7 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,11 +1,11 @@
-# Slovak translation for libgames-support.
-# Copyright (C) 2015 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Slovak translation for libgnome-games-support.
+# Copyright (C) 2015 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Dušan Kazik <prescott66 gmail com>, 2015.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-02-21 04:35+0000\n"
diff --git a/po/sv.po b/po/sv.po
index 2895031..a92156a 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,11 +1,11 @@
-# Swedish translation for libgames-support.
-# Copyright © 2015, 2016 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Swedish translation for libgnome-games-support.
+# Copyright © 2015, 2016 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Anders Jonsson <anders jonsson norsjovallen se>, 2015, 2016.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2016-02-21 04:35+0000\n"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index b6efbfe..7bde454 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,11 +1,11 @@
-# Chinese (Taiwan) translation for libgames-support.
-# Copyright (C) 2015 libgames-support's COPYRIGHT HOLDER
-# This file is distributed under the same license as the libgames-support package.
+# Chinese (Taiwan) translation for libgnome-games-support.
+# Copyright (C) 2015 libgnome-games-support's COPYRIGHT HOLDER
+# This file is distributed under the same license as the libgnome-games-support package.
# Cheng-Chia Tseng <>, 2015.
#
msgid ""
msgstr ""
-"Project-Id-Version: libgames-support master\n"
+"Project-Id-Version: libgnome-games-support master\n"
"Report-Msgid-Bugs-To:
http://bugzilla.gnome.org/enter_bug.cgi?product=libgames-scores&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2015-07-24 17:01+0000\n"
"PO-Revision-Date: 2015-11-08 12:12-0500\n"
diff --git a/style-checker b/style-checker
index 064c9e2..00570b2 100755
--- a/style-checker
+++ b/style-checker
@@ -32,7 +32,7 @@
# for HOOK in pre-commit pre-applypatch
# do
# if [ ! -L $srcdir/.git/hooks/$HOOK ]; then
-# ln -s ../../../libgames-support/style-checker \
+# ln -s ../../../libgnome-games-support/style-checker \
# $srcdir/.git/hooks/$HOOK && echo "Enabled $HOOK style checker."
# fi
# done
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 80f5bfe..c837f70 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -3,7 +3,7 @@ noinst_PROGRAMS = test-scores
TESTS = test-scores
test_scores_SOURCES = \
- $(top_srcdir)/games/libgames-support-$(LIBGAMES_SUPPORT_API_VERSION).vapi \
+ $(top_srcdir)/games/libgnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION).vapi \
test-scores.vala
test_scores_CFLAGS = \
@@ -11,11 +11,11 @@ test_scores_CFLAGS = \
test_scores_CPPFLAGS = \
-I$(top_srcdir)/games \
- $(LIBGAMES_SUPPORT_CFLAGS)
+ $(LIBGNOME_GAMES_SUPPORT_CFLAGS)
test_scores_LDADD = \
- $(top_builddir)/games/libgames-support-$(LIBGAMES_SUPPORT_API_VERSION).la \
- $(LIBGAMES_SUPPORT_LIBS)
+ $(top_builddir)/games/libgnome-games-support-$(LIBGNOME_GAMES_SUPPORT_API_VERSION).la \
+ $(LIBGNOME_GAMES_SUPPORT_LIBS)
test_scores_VALAFLAGS = \
--pkg gee-0.8 \
diff --git a/tests/test-scores.vala b/tests/test-scores.vala
index f8fdf1f..9050f4f 100644
--- a/tests/test-scores.vala
+++ b/tests/test-scores.vala
@@ -3,20 +3,20 @@
* Copyright © 2014 Nikhar Agrawal
* Copyright © 2016 Michael Catanzaro <mcatanzaro gnome org>
*
- * This file is part of libgames-support.
+ * This file is part of libgnome-games-support.
*
- * libgames-support is free software: you can redistribute it and/or modify
+ * libgnome-games-support is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
- * libgames-support is distributed in the hope that it will be useful,
+ * libgnome-games-support is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with libgames-support. If not, see <http://www.gnu.org/licenses/>.
+ * along with libgnome-games-support. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Games {
@@ -46,7 +46,7 @@ private void add_score_sync (Context context, int score, Category category) {
private void create_scores ()
{
- Context context = new Context ("libgames-support-test", "Games Type", null, category_request,
Style.POINTS_GREATER_IS_BETTER);
+ Context context = new Context ("libgnome-games-support-test", "Games Type", null, category_request,
Style.POINTS_GREATER_IS_BETTER);
Category cat = new Category ("cat1", "cat1");
add_score_sync (context, 101, cat);
add_score_sync (context, 102, cat);
@@ -59,7 +59,7 @@ private void create_scores ()
private string get_test_directory_name ()
{
- return Path.build_filename (Environment.get_user_data_dir (), "libgames-support-test", null);
+ return Path.build_filename (Environment.get_user_data_dir (), "libgnome-games-support-test", null);
}
private string get_score_directory_name ()
@@ -177,7 +177,7 @@ private void test_import_from_score_directory ()
assert (old_scores_file.query_exists ());
var context = new Context.with_importer (
- "libgames-support-test",
+ "libgnome-games-support-test",
"",
null,
(key) => {
@@ -224,7 +224,7 @@ private void test_import_from_history_file ()
assert (old_scores_file.query_exists ());
var context = new Context.with_importer (
- "libgames-support-test",
+ "libgnome-games-support-test",
"",
null,
(key) => {
@@ -255,7 +255,7 @@ private void test_import_from_history_file ()
private void test_import_from_nonexistent_history_file ()
{
(void) new Context.with_importer (
- "libgames-support-test",
+ "libgnome-games-support-test",
"",
null,
(key) => {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]