commit grsync for openSUSE:Factory

2020-06-07 Thread root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2020-06-07 21:39:27

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new.3606 (New)


Package is "grsync"

Sun Jun  7 21:39:27 2020 rev:12 rq:812211 version:1.2.8

Changes:

--- /work/SRC/openSUSE:Factory/grsync/grsync.changes2016-08-12 
15:43:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.grsync.new.3606/grsync.changes  2020-06-07 
21:39:36.341694952 +0200
@@ -1,0 +2,6 @@
+Sun Jun  7 10:10:10 UTC 2020 - o...@aepfle.de
+
+- Update to 1.2.8
+- Fix build with grsync.patch
+
+---

Old:

  grsync-1.2.6.tar.gz

New:

  grsync-1.2.8.tar.gz
  grsync.patch



Other differences:
--
++ grsync.spec ++
--- /var/tmp/diff_new_pack.u6C089/_old  2020-06-07 21:39:37.445698452 +0200
+++ /var/tmp/diff_new_pack.u6C089/_new  2020-06-07 21:39:37.445698452 +0200
@@ -17,13 +17,14 @@
 
 
 Name:   grsync
-Version:1.2.6
+Version:1.2.8
 Release:0
 Summary:GUI for rsync
 License:GPL-2.0
 Group:  Productivity/Archiving/Backup
 Url:http://www.opbyte.it/grsync/
 Source: http://www.opbyte.it/release/%{name}-%{version}.tar.gz
+Patch0: grsync.patch
 Patch1: fix-invalid-lc-messages-dir.patch
 # PATCH-FIX-UPSTREAM grsync-appdata.patch badshah...@gmail.com -- Add, 
translate and install appdata file
 Patch2: grsync-appdata.patch
@@ -36,7 +37,6 @@
 BuildRequires:  pkgconfig(gtk+-2.0) >= 2.16
 Requires:   rsync
 Recommends: %{name}-lang
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Grsync is a GUI (Graphical User Interface) for rsync, the commandline directory
@@ -49,9 +49,7 @@
 %lang_package
 
 %prep
-%setup -q
-%patch1 -p1
-%patch2 -p1
+%autosetup -p1
 
 %build
 autoreconf -fi
@@ -82,8 +80,8 @@
 %suse_update_desktop_file -r %{name} Utility Archiving GTK
 
 %files
-%defattr(-,root,root)
-%doc AUTHORS COPYING README NEWS
+%license COPYING
+%doc AUTHORS README NEWS
 %{_bindir}/grsync
 %{_bindir}/grsync-batch
 %{_datadir}/applications/grsync.desktop

++ fix-invalid-lc-messages-dir.patch ++
--- /var/tmp/diff_new_pack.u6C089/_old  2020-06-07 21:39:37.469698528 +0200
+++ /var/tmp/diff_new_pack.u6C089/_new  2020-06-07 21:39:37.469698528 +0200
@@ -2,15 +2,13 @@
  configure.in |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-Index: grsync-1.2.4/configure.in
-===
 grsync-1.2.4.orig/configure.in
-+++ grsync-1.2.4/configure.in
-@@ -91,7 +91,7 @@
+--- a/configure.in
 b/configure.in
+@@ -91,7 +91,7 @@ AC_SUBST(GETTEXT_PACKAGE)
  AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
  
  dnl Add the languages which your application supports here.
--ALL_LINGUAS="nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR zh_TW hu_HU"
+-ALL_LINGUAS="nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR zh_TW hu_HU el_GR pt_PT"
 +ALL_LINGUAS="ca cs de es fr gl hr hu id it nb nl pt_BR ru sv tr zh_CN zh_TW"
  AM_GLIB_GNU_GETTEXT
  

++ grsync-1.2.6.tar.gz -> grsync-1.2.8.tar.gz ++
 4314 lines of diff (skipped)

++ grsync.patch ++
--- a/src/callbacks.h
+++ b/src/callbacks.h
@@ -7,11 +7,17 @@
 #define ICON_PACKAGE PACKAGE_DATA_DIR "/" ICON_SOURCE
 #define ICON_PACKAGE_BUSY PACKAGE_DATA_DIR "/" ICON_SOURCE_BUSY
 
-GtkBuilder *builder;
-GtkWidget *main_window;
-gchar *argv_session, *argv_filename, *icon, *icon_busy;
-gboolean cmdline_session, cmdline_execute, cmdline_stayopen, cmdline_import;
-GtkListStore *liststore_session;
+extern GtkBuilder *builder;
+extern GtkWidget *main_window;
+extern gchar *argv_session;
+extern gchar **argv_filename;
+extern gchar *icon;
+extern gchar *icon_busy;
+extern gboolean cmdline_session;
+extern gboolean cmdline_execute;
+extern gboolean cmdline_stayopen;
+extern gboolean cmdline_import;
+extern GtkListStore *liststore_session;
 
 void save_settings(gchar *session, gchar *filename);
 gboolean load_groups(gchar *session);
--- a/src/main.c
+++ b/src/main.c
@@ -9,6 +9,17 @@
 #  include 
 #  include 
 #endif
+GtkBuilder *builder;
+GtkWidget *main_window;
+gchar *argv_session;
+gchar **argv_filename;
+gchar *icon;
+gchar *icon_busy;
+gboolean cmdline_session;
+gboolean cmdline_execute;
+gboolean cmdline_stayopen;
+gboolean cmdline_import;
+GtkListStore *liststore_session;
 
 int main (int argc, char *argv[]) {
 #ifdef ENABLE_NLS
@@ -33,11 +44,6 @@ int main (int argc, char *argv[]) {
GtkWidget *appmenu;
 #endif
 

commit grsync for openSUSE:Factory

2016-08-12 Thread h_root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2016-08-12 15:43:24

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new (New)


Package is "grsync"

Changes:

--- /work/SRC/openSUSE:Factory/grsync/grsync.changes2016-03-31 
13:02:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.grsync.new/grsync.changes   2016-08-12 
15:43:36.0 +0200
@@ -1,0 +2,8 @@
+Tue Aug  9 20:07:48 UTC 2016 - badshah...@gmail.com
+
+- Add grsync-appdata.patch to add, translate and install appdata
+  file; the presence of the appdata file ensures that the
+  application appears on appstores like GNOME Software and KDE
+  Discover.
+
+---

New:

  grsync-appdata.patch



Other differences:
--
++ grsync.spec ++
--- /var/tmp/diff_new_pack.iAa7a7/_old  2016-08-12 15:43:37.0 +0200
+++ /var/tmp/diff_new_pack.iAa7a7/_new  2016-08-12 15:43:37.0 +0200
@@ -25,6 +25,8 @@
 Url:http://www.opbyte.it/grsync/
 Source: http://www.opbyte.it/release/%{name}-%{version}.tar.gz
 Patch1: fix-invalid-lc-messages-dir.patch
+# PATCH-FIX-UPSTREAM grsync-appdata.patch badshah...@gmail.com -- Add, 
translate and install appdata file
+Patch2: grsync-appdata.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  dos2unix
@@ -49,6 +51,7 @@
 %prep
 %setup -q
 %patch1 -p1
+%patch2 -p1
 
 %build
 autoreconf -fi
@@ -90,6 +93,8 @@
 %{_datadir}/icons/hicolor/48x48/mimetypes/application-x-grsync-session.png
 %{_datadir}/mime/packages/grsync.xml
 %{_mandir}/man1/grsync*
+%dir %{_datadir}/appdata
+%{_datadir}/appdata/*.appdata.xml
 
 %files lang -f %{name}.lang
 

++ grsync-appdata.patch ++
Index: grsync-1.2.6/grsync.appdata.xml.in
===
--- /dev/null
+++ grsync-1.2.6/grsync.appdata.xml.in
@@ -0,0 +1,25 @@
+
+
+  grsync.desktop
+  CC0-1.0
+  <_name>Grsync
+  GPL-2.0
+  <_summary>Synchronize files and folders (a GTK GUI for rsync)
+  http://www.opbyte.it/grsync/
+  
+<_p>Grsync is a GUI (Graphical User Interface) for rsync, the commandline 
directory
+and file synchronization tool. It can be effectively used to synchronize local
+directories and it supports remote targets as well (even though it doesn't
+support browsing the remote folder). Sample uses of grsync include: synchronize
+a music collection with removable devices, backup personal files to a networked
+drive, replication of a partition to another one, mirroring of files, etc.
+  
+  
+
+  http://www.opbyte.it/grsync/grsync-1.0.0.png
+  Grsync in action
+
+  
+  i...@opbyte.it
+  grsync
+
Index: grsync-1.2.6/Makefile.am
===
--- grsync-1.2.6.orig/Makefile.am
+++ grsync-1.2.6/Makefile.am
@@ -52,6 +52,12 @@ icon_scalable_DATA = maemo-icons/scalabl
 else
 Applicationsdir = $(datadir)/applications
 Applications_DATA = grsync.desktop
+
+Appdatadir = $(datadir)/appdata
+Appdata_in_files = grsync.appdata.xml.in
+Appdata_DATA = $(Appdata_in_files:.appdata.xml.in=.appdata.xml)
+@INTLTOOL_XML_RULE@
+EXTRA_DIST += $(Appdata_in_files)
 endif
 
 Gladedir = $(datadir)/grsync
Index: grsync-1.2.6/po/POTFILES.in
===
--- grsync-1.2.6.orig/po/POTFILES.in
+++ grsync-1.2.6/po/POTFILES.in
@@ -1,6 +1,7 @@
 # List of source files containing translatable strings.
 
 [type: gettext/glade]grsync.glade
+grsync.appdata.xml.in
 src/main.c
 src/callbacks.c
 



commit grsync for openSUSE:Factory

2016-03-31 Thread h_root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2016-03-31 13:02:53

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new (New)


Package is "grsync"

Changes:

--- /work/SRC/openSUSE:Factory/grsync/grsync.changes2015-01-20 
12:34:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.grsync.new/grsync.changes   2016-03-31 
13:02:55.0 +0200
@@ -1,0 +2,19 @@
+Wed Mar 23 00:12:41 UTC 2016 - lazy.k...@opensuse.org
+
+- Update to 1.2.6.
+  * Don't save "default" session to ini file when "remember last
+used session" is off.
+  * Better "before command" error notification.
+  * Added "overwrite logs" preferences option.
+  * Updated Norwegian, Russian, German, Swedish, Simplified Chinese
+  * translations.
+  * Enhanced and translated desktop file.
+  * Updated README file.
+- Split off and Recommend a -lang package,
+- Drop fix-desktop-file.patch: the action is done running
+  %suse_update_desktop_file macro.
+- Drop grsync-link-libm.patch: fixed upstream.
+- Rebase fix-invalid-lc-messages-dir.patch: add "hu", don't touch
+  pt_BR, zh_CN, zh_TW, as they are in their own.
+
+---

Old:

  fix-desktop-file.patch
  grsync-1.2.5.tar.gz
  grsync-link-libm.patch

New:

  grsync-1.2.6.tar.gz



Other differences:
--
++ grsync.spec ++
--- /var/tmp/diff_new_pack.drVgMU/_old  2016-03-31 13:02:56.0 +0200
+++ /var/tmp/diff_new_pack.drVgMU/_new  2016-03-31 13:02:56.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package grsync
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,16 +17,14 @@
 
 
 Name:   grsync
-Version:1.2.5
+Version:1.2.6
 Release:0
 Summary:GUI for rsync
 License:GPL-2.0
 Group:  Productivity/Archiving/Backup
 Url:http://www.opbyte.it/grsync/
 Source: http://www.opbyte.it/release/%{name}-%{version}.tar.gz
-Patch0: fix-desktop-file.patch
 Patch1: fix-invalid-lc-messages-dir.patch
-Patch2: grsync-link-libm.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  dos2unix
@@ -35,6 +33,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(gtk+-2.0) >= 2.16
 Requires:   rsync
+Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -45,11 +44,11 @@
 a music collection with removable devices, backup personal files to a networked
 drive, replication of a partition to another one, mirroring of files, etc.
 
+%lang_package
+
 %prep
 %setup -q
-%patch0 -p1
 %patch1 -p1
-%patch2 -p1
 
 %build
 autoreconf -fi
@@ -63,27 +62,23 @@
 mv fr_FR.po fr.po
 mv gl_ES.po gl.po
 mv hr_HR.po hr.po
+mv hu_HU.po hu.po
 mv id_ID.po id.po
 mv it_IT.po it.po
 mv nb_NO.po nb.po
 mv nl_NL.po nl.po
-mv pt_BR.po pt.po
 mv ru_RU.po ru.po
 mv sv_SE.po sv.po
 mv tr_TR.po tr.po
-mv zh_CN.po zh.po
 popd
 dos2unix README NEWS AUTHORS
 
 %install
 %make_install
-%find_lang %{name}
-%suse_update_desktop_file -i %{name} Utility Archiving
-
-%clean
-rm -rf %{buildroot}
+%find_lang %{name} %{?no_lang_C}
+%suse_update_desktop_file -r %{name} Utility Archiving GTK
 
-%files -f %{name}.lang
+%files
 %defattr(-,root,root)
 %doc AUTHORS COPYING README NEWS
 %{_bindir}/grsync
@@ -91,9 +86,11 @@
 %{_datadir}/applications/grsync.desktop
 %{_datadir}/pixmaps/grsync.png
 %{_datadir}/pixmaps/grsync-busy.png
-%{_datadir}/%{name}
-%{_datadir}/mime/packages/grsync.xml
+%{_datadir}/%{name}/
 %{_datadir}/icons/hicolor/48x48/mimetypes/application-x-grsync-session.png
+%{_datadir}/mime/packages/grsync.xml
 %{_mandir}/man1/grsync*
 
+%files lang -f %{name}.lang
+
 %changelog

++ fix-invalid-lc-messages-dir.patch ++
--- /var/tmp/diff_new_pack.drVgMU/_old  2016-03-31 13:02:56.0 +0200
+++ /var/tmp/diff_new_pack.drVgMU/_new  2016-03-31 13:02:56.0 +0200
@@ -11,7 +11,7 @@
  
  dnl Add the languages which your application supports here.
 -ALL_LINGUAS="nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR zh_TW hu_HU"
-+ALL_LINGUAS="nl it zh fr sv nb tr ru de es cs gl ca pt id hr zh"
++ALL_LINGUAS="ca cs de es fr gl hr hu id it nb nl pt_BR ru sv tr zh_CN zh_TW"
  AM_GLIB_GNU_GETTEXT
  
  AC_OUTPUT([

++ grsync-1.2.5.tar.gz -> grsync-1.2.6.tar.gz ++
 9300 lines of diff (skipped)




commit grsync for openSUSE:Factory

2015-01-20 Thread h_root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2015-01-20 12:32:39

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new (New)


Package is grsync

Changes:

--- /work/SRC/openSUSE:Factory/grsync/grsync.changes2013-07-12 
20:45:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.grsync.new/grsync.changes   2015-01-20 
12:34:55.0 +0100
@@ -1,0 +2,17 @@
+Thu Jan 15 21:12:02 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.2.5
+  * Fixed an uninitialized variable warning
+  * Fixed current session type change on new session creation
+  * Fixed selection of sessions in set
+  * Removed switch source with destination keyboard shortcut
+  * Fixed pause and stop when running as superuser (it may ask the
+password multiple times)
+  * Added Hungarian translation
+  * Updated French translation
+  * Updated Czech translation
+- Use download Url as source
+- Update fix-invalid-lc-messages-dir.patch and disable  broken hungarian
+  translation
+
+---

Old:

  grsync-1.2.4.tar.gz

New:

  grsync-1.2.5.tar.gz



Other differences:
--
++ grsync.spec ++
--- /var/tmp/diff_new_pack.7mMz88/_old  2015-01-20 12:34:57.0 +0100
+++ /var/tmp/diff_new_pack.7mMz88/_new  2015-01-20 12:34:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package grsync
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,13 @@
 
 
 Name:   grsync
-Version:1.2.4
+Version:1.2.5
 Release:0
 Summary:GUI for rsync
 License:GPL-2.0
 Group:  Productivity/Archiving/Backup
 Url:http://www.opbyte.it/grsync/
-Source: %{name}-%{version}.tar.gz
+Source: http://www.opbyte.it/release/%{name}-%{version}.tar.gz
 Patch0: fix-desktop-file.patch
 Patch1: fix-invalid-lc-messages-dir.patch
 Patch2: grsync-link-libm.patch

++ fix-invalid-lc-messages-dir.patch ++
--- /var/tmp/diff_new_pack.7mMz88/_old  2015-01-20 12:34:57.0 +0100
+++ /var/tmp/diff_new_pack.7mMz88/_new  2015-01-20 12:34:57.0 +0100
@@ -6,11 +6,11 @@
 ===
 --- grsync-1.2.4.orig/configure.in
 +++ grsync-1.2.4/configure.in
-@@ -91,7 +91,7 @@ AC_SUBST(GETTEXT_PACKAGE)
+@@ -91,7 +91,7 @@
  AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,$GETTEXT_PACKAGE, [Gettext package.])
  
  dnl Add the languages which your application supports here.
--ALL_LINGUAS=nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR zh_TW
+-ALL_LINGUAS=nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR zh_TW hu_HU
 +ALL_LINGUAS=nl it zh fr sv nb tr ru de es cs gl ca pt id hr zh
  AM_GLIB_GNU_GETTEXT
  

++ grsync-1.2.4.tar.gz - grsync-1.2.5.tar.gz ++
 9659 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit grsync for openSUSE:Factory

2013-07-12 Thread h_root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2013-07-12 20:45:29

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new (New)


Package is grsync

Changes:

--- /work/SRC/openSUSE:Factory/grsync/grsync.changes2013-04-23 
15:09:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.grsync.new/grsync.changes   2013-07-12 
20:45:31.0 +0200
@@ -1,0 +2,11 @@
+Thu Jul 11 07:53:34 UTC 2013 - pu...@suse.com
+
+- update to 1.2.4
+  - Monospace font in the rsync output box
+  - Log files are now appended (instead of truncated) each time a
+new run is done
+  - Added date and time when starting a new rsync run (useful with
+logs)
+  - Added Traditional Chinese translation (thanks Wei-Lun)
+
+---

Old:

  grsync-1.2.3.tar.gz

New:

  grsync-1.2.4.tar.gz



Other differences:
--
++ grsync.spec ++
--- /var/tmp/diff_new_pack.EhE4Zo/_old  2013-07-12 20:45:32.0 +0200
+++ /var/tmp/diff_new_pack.EhE4Zo/_new  2013-07-12 20:45:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   grsync
-Version:1.2.3
+Version:1.2.4
 Release:0
 Summary:GUI for rsync
 License:GPL-2.0

++ fix-invalid-lc-messages-dir.patch ++
--- /var/tmp/diff_new_pack.EhE4Zo/_old  2013-07-12 20:45:32.0 +0200
+++ /var/tmp/diff_new_pack.EhE4Zo/_new  2013-07-12 20:45:32.0 +0200
@@ -2,16 +2,16 @@
  configure.in |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-Index: grsync-1.2.2/configure.in
+Index: grsync-1.2.4/configure.in
 ===
 grsync-1.2.2.orig/configure.in
-+++ grsync-1.2.2/configure.in
-@@ -90,7 +90,7 @@ AC_SUBST(GETTEXT_PACKAGE)
+--- grsync-1.2.4.orig/configure.in
 grsync-1.2.4/configure.in
+@@ -91,7 +91,7 @@ AC_SUBST(GETTEXT_PACKAGE)
  AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,$GETTEXT_PACKAGE, [Gettext package.])
  
  dnl Add the languages which your application supports here.
--ALL_LINGUAS=nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR
-+ALL_LINGUAS=nl it zh fr sv nb tr ru de es cs gl ca pt id hr
+-ALL_LINGUAS=nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR zh_TW
++ALL_LINGUAS=nl it zh fr sv nb tr ru de es cs gl ca pt id hr zh
  AM_GLIB_GNU_GETTEXT
  
  AC_OUTPUT([

++ grsync-1.2.3.tar.gz - grsync-1.2.4.tar.gz ++
 5067 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit grsync for openSUSE:Factory

2013-04-23 Thread h_root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2013-04-23 15:09:46

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new (New)


Package is grsync, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/grsync/grsync.changes2012-10-24 
07:10:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.grsync.new/grsync.changes   2013-04-23 
15:09:47.0 +0200
@@ -1,0 +2,7 @@
+Mon Apr 22 20:11:52 UTC 2013 - pu...@suse.com
+
+- update to 1.2.3 
+  - Do not allow creation of session names with slashes in them
+  - Lintian fixes to man pages and desktop file (thanks Martijn)
+
+---

Old:

  grsync-1.2.2.tar.gz

New:

  grsync-1.2.3.tar.gz



Other differences:
--
++ grsync.spec ++
--- /var/tmp/diff_new_pack.ocQR78/_old  2013-04-23 15:09:49.0 +0200
+++ /var/tmp/diff_new_pack.ocQR78/_new  2013-04-23 15:09:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package grsync
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   grsync
-Version:1.2.2
+Version:1.2.3
 Release:0
 Summary:GUI for rsync
 License:GPL-2.0

++ fix-desktop-file.patch ++
--- /var/tmp/diff_new_pack.ocQR78/_old  2013-04-23 15:09:49.0 +0200
+++ /var/tmp/diff_new_pack.ocQR78/_new  2013-04-23 15:09:49.0 +0200
@@ -1,16 +1,12 @@
 ---
- grsync.desktop.in |4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
+ grsync.desktop.in |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
 
-Index: grsync-1.1.1/grsync.desktop.in
+Index: grsync-1.2.3/grsync.desktop.in
 ===
 grsync-1.1.1.orig/grsync.desktop.in2010-05-07 11:06:29.0 
+0200
-+++ grsync-1.1.1/grsync.desktop.in 2010-05-07 11:06:30.0 +0200
-@@ -1,11 +1,10 @@
- [Desktop Entry]
- Version=1.0
--Encoding=UTF-8
- Name=Grsync
+--- grsync-1.2.3.orig/grsync.desktop.in
 grsync-1.2.3/grsync.desktop.in
+@@ -4,7 +4,7 @@ Name=Grsync
  Terminal=false
  Type=Application
  MimeType=application/x-grsync-session;

++ grsync-1.2.2.tar.gz - grsync-1.2.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grsync-1.2.2/NEWS new/grsync-1.2.3/NEWS
--- old/grsync-1.2.2/NEWS   2012-10-18 09:19:30.0 +0200
+++ new/grsync-1.2.3/NEWS   2013-01-17 11:11:20.0 +0100
@@ -1,5 +1,9 @@
 Grsync Release history:
 
+Version 1.2.3
+   Do not allow creation of session names with slashes in them
+   Lintian fixes to man pages and desktop file (thanks Martijn)
+
 Version 1.2.2
Increased size of source and destination fields
Added Croatian translation (thanks Bojan)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grsync-1.2.2/configure new/grsync-1.2.3/configure
--- old/grsync-1.2.2/configure  2012-10-22 11:36:28.0 +0200
+++ new/grsync-1.2.3/configure  2012-11-24 16:02:47.0 +0100
@@ -2670,7 +2670,7 @@
 
 # Define the identity of the package.
  PACKAGE=grsync
- VERSION=1.2.2
+ VERSION=1.2.3
 
 
 cat confdefs.h _ACEOF
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grsync-1.2.2/configure.in 
new/grsync-1.2.3/configure.in
--- old/grsync-1.2.2/configure.in   2012-03-22 17:19:11.0 +0100
+++ new/grsync-1.2.3/configure.in   2012-11-24 16:02:17.0 +0100
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(grsync, 1.2.2)
+AM_INIT_AUTOMAKE(grsync, 1.2.3)
 AM_CONFIG_HEADER(config.h)
 AM_MAINTAINER_MODE
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grsync-1.2.2/grsync-batch.1 
new/grsync-1.2.3/grsync-batch.1
--- old/grsync-1.2.2/grsync-batch.1 2010-02-04 10:31:31.0 +0100
+++ new/grsync-1.2.3/grsync-batch.1 2013-01-10 13:59:20.0 +0100
@@ -1,24 +1,24 @@
-.TH GRSYNC-BATCH 1 2007-07-18 0.6 grsync batch runner
+.TH GRSYNC\-BATCH 1 2007\-07\-18 0.6 grsync batch runner
 
 .SH NAME
-GRSYNC-BATCH \- Grsync batch session runner
+GRSYNC\-BATCH \- Grsync batch session runner
 
 .SH SYNOPSIS
-.B grsync-batch [-f] [-d] [session_name|file_name]
+.B grsync\-batch [\-f] [\-d] [session_name|file_name]
 
 .SH 

commit grsync for openSUSE:Factory

2012-10-23 Thread h_root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2012-10-24 07:10:14

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new (New)


Package is grsync, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/grsync/grsync.changes2012-02-10 
17:14:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.grsync.new/grsync.changes   2012-10-24 
07:10:15.0 +0200
@@ -1,0 +2,7 @@
+Tue Oct 23 15:58:23 UTC 2012 - pu...@suse.com
+
+- update to 1.2.2 
+ - increased size of source and destination fields
+ - updated translations
+
+---

Old:

  grsync-1.2.1.tar.gz

New:

  grsync-1.2.2.tar.gz



Other differences:
--
++ grsync.spec ++
--- /var/tmp/diff_new_pack.070IEy/_old  2012-10-24 07:10:17.0 +0200
+++ /var/tmp/diff_new_pack.070IEy/_new  2012-10-24 07:10:17.0 +0200
@@ -1,31 +1,39 @@
 #
-# spec file for package grsync (Version 1.1.1)
+# spec file for package grsync
 #
-# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# This file and all modifications and additions to the pristine
-# package are under the same license as the package itself.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An Open Source License is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   grsync
-Version:1.2.1
-Release:1
-License:GPL-2.0
+Version:1.2.2
+Release:0
 Summary:GUI for rsync
-Url:http://www.opbyte.it/grsync/
+License:GPL-2.0
 Group:  Productivity/Archiving/Backup
+Url:http://www.opbyte.it/grsync/
 Source: %{name}-%{version}.tar.gz
 Patch0: fix-desktop-file.patch
 Patch1: fix-invalid-lc-messages-dir.patch
 Patch2: grsync-link-libm.patch
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  dos2unix
 BuildRequires:  intltool
 BuildRequires:  pkg-config
-BuildRequires:  pkgconfig(gtk+-2.0) = 2.16
 BuildRequires:  update-desktop-files
-BuildRequires:  autoconf
-BuildRequires:  automake
+BuildRequires:  pkgconfig(gtk+-2.0) = 2.16
 Requires:   rsync
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -48,20 +56,22 @@
 %configure \
--disable-unity
 pushd po
-mv nl_NL.po nl.po
+mv ca_ES.po ca.po
+mv cs_CZ.po cs.po
+mv de_DE.po de.po
 mv es_ES.po es.po
-mv it_IT.po it.po
 mv fr_FR.po fr.po
-mv sv_SE.po sv.po
-mv nb_NO.po nb.po
-mv tr_TR.po tr.po
-mv ru_RU.po ru.po
-mv de_DE.po de.po
-mv cs_CZ.po cs.po
 mv gl_ES.po gl.po
-mv ca_ES.po ca.po
-mv pt_BR.po pt.po
+mv hr_HR.po hr.po
 mv id_ID.po id.po
+mv it_IT.po it.po
+mv nb_NO.po nb.po
+mv nl_NL.po nl.po
+mv pt_BR.po pt.po
+mv ru_RU.po ru.po
+mv sv_SE.po sv.po
+mv tr_TR.po tr.po
+mv zh_CN.po zh.po
 popd
 dos2unix README NEWS AUTHORS
 
@@ -86,6 +96,4 @@
 %{_datadir}/icons/hicolor/48x48/mimetypes/application-x-grsync-session.png
 %{_mandir}/man1/grsync*
 
-
-
 %changelog

++ fix-invalid-lc-messages-dir.patch ++
--- /var/tmp/diff_new_pack.070IEy/_old  2012-10-24 07:10:17.0 +0200
+++ /var/tmp/diff_new_pack.070IEy/_new  2012-10-24 07:10:17.0 +0200
@@ -1,13 +1,17 @@
-Index: grsync-1.2.1/configure.in
+---
+ configure.in |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: grsync-1.2.2/configure.in
 ===
 grsync-1.2.1.orig/configure.in
-+++ grsync-1.2.1/configure.in
+--- grsync-1.2.2.orig/configure.in
 grsync-1.2.2/configure.in
 @@ -90,7 +90,7 @@ AC_SUBST(GETTEXT_PACKAGE)
  AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,$GETTEXT_PACKAGE, [Gettext package.])
  
  dnl Add the languages which your application supports here.
--ALL_LINGUAS=nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID
-+ALL_LINGUAS=nl it zh_CN fr sv nb tr ru de es cs gl ca pt id
+-ALL_LINGUAS=nl_NL it_IT zh_CN fr_FR sv_SE nb_NO tr_TR ru_RU de_DE es_ES 
cs_CZ gl_ES ca_ES pt_BR id_ID hr_HR
++ALL_LINGUAS=nl it zh fr sv nb tr ru de es cs gl ca pt id hr
  AM_GLIB_GNU_GETTEXT
  
  AC_OUTPUT([

++ 

commit grsync for openSUSE:Factory

2012-02-10 Thread h_root
Hello community,

here is the log from the commit of package grsync for openSUSE:Factory checked 
in at 2012-02-10 17:14:08

Comparing /work/SRC/openSUSE:Factory/grsync (Old)
 and  /work/SRC/openSUSE:Factory/.grsync.new (New)


Package is grsync, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2010-08-26 16:28:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.grsync.new/grsync.changes   2012-02-10 
17:14:21.0 +0100
@@ -0,0 +1,138 @@
+---
+Mon Jan 23 12:58:39 UTC 2012 - pu...@suse.com
+
+- update to 1.2.1
+ - enabled session sets
+ - fixed saving of current session when creating new one
+ - little fix to main window layout for the two open buttons,
+   which had some overflown translations
+ - grsync-batch: fixed paths with spaces in them
+ - optimization of global and file progress updates
+ - fixed a translation problem on the slashes help dialog
+ - fixed bug: didn't check before command exit status correctly
+ - fixed bug: some rsync window titles aren't translatable
+ - fixed bug: grsync-batch can't find last session in config file
+ - fixed bug: output text is not selectable after something
+   initially fails
+ - added check for empty new session names
+ - differentiated exit status in grsync-batch
+ - some glade file cleanups by-hand
+ - auto window resize only on first window load
+- configure with --disable-unity
+- add grsync-link-libm.patch (fix build)
+
+---
+Tue Apr 26 12:56:32 UTC 2011 - pu...@novell.com
+
+- use spec-cleaner 
+
+---
+Fri May  7 09:06:53 UTC 2010 - pu...@novell.com
+
+- update to grsync-1.1.1 
+  * Removed automatic addition of a trailing slash to source and 
+destination directories
+  * Updated new functionalities of 1.1.0 for Maemo, added 
+configuration backup support + other fixes
+  * Updated czech translation (thanks Lucas)
+  * Fixed tags in a french translation message
+  * Added Rsync command line menu item
+
+---
+Tue Mar 30 08:57:10 UTC 2010 - pu...@novell.com
+
+- update to grsync-1.1.0 
+ - notable changes:
+  * Use tray icon preferences option added
+  * Added --protect-args option, on by default, solves the 
+remote filename with spaces problem
+  * Fixed bug: doesn't save itemized changes list option
+  * Added mime type definition for grsync session files with icon
+  * Updated desktop file to open session files with grsync -i
+  * Made some fixes which could make grsync more stable on some systems
+  * Added run as superuser extra options switch, uses pkexec 
+from policykit
+  * Added rsync child watch function
+  * Added rsync process exit status output
+  * Fixed behaviour when rsync window is closed not by using the close button
+  * Fixed scrolling to end on pause
+  * Added -i option to import a session file from command line
+
+---
+Thu Dec  3 14:43:36 UTC 2009 - pu...@novell.com
+
+- update to grsync-0.9.3
+  * Fixed file permissions: some scripts were not executable
+  * Fixed main window position and size reset when closed with window 
manager's close button
+  * Added advanced option to disable directory recursion
+  * Added preferences option to enable the switch source with destination 
button
+  * New main window layout, more compact and pretty; changes include:
+   * new toolbar
+   * removed quit button
+   * introduced more stock buttons
+   * removed custom icons from buttons
+   * additional options in a multiline text entry field
+   * directories moved to basic options tab
+   * notes moved to extra options tab
+   * other little fixes to tooltips, accelerators etc.
+  * Authors information moved from AUTHORS file to about dialog
+
+---
+Wed Oct  7 11:24:48 UTC 2009 - pu...@novell.com
+
+- update to grsync-0.9.2
+  * grsync-batch: added itemize-changes option which was missing 
+in 0.9.1
+  * Small fix to the pause button showing as play instead of 
+pause in some occasions
+  * Catalan translation added (thanks Josep)
+  * -s command line option added, stays open on success
+  * Gtkbuilder xml file updated for glade 3.6.7
+  * Fixed bug: when wrong session specified on the command line 
+with -e, executes default session instead of nothing
+  * Fixed bug: grsync can't start when compiled against 
+gtk = 2.16.6
+  * Now prints an error and exits when unable to correctly load 
+gtkbuilder xml file
+  * Dutch translation updated (thanks Frank)
+  * Italian translation updated
+  * Manpage updated
+