commit orage for openSUSE:Factory

2018-03-07 Thread root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2018-03-07 10:33:44

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


Package is "orage"

Wed Mar  7 10:33:44 2018 rev:42 rq:582262 version:4.12.1

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2015-04-13 
20:31:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2018-03-07 
10:33:46.920416893 +0100
@@ -1,0 +2,11 @@
+Sat Mar  3 19:38:13 UTC 2018 - seife+...@b1-systems.com
+
+- add 0001-fix-build-with-libical-version-3.patch (bxo#13997)
+- should now work with libical > 2
+
+---
+Sat Mar  3 11:55:29 UTC 2018 - jeng...@inai.de
+
+- Explicitly request old libical
+
+---

New:

  0001-fix-build-with-libical-version-3.patch



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.UWLurC/_old  2018-03-07 10:33:48.264368416 +0100
+++ /var/tmp/diff_new_pack.UWLurC/_new  2018-03-07 10:33:48.268368271 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package orage
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -20,13 +20,15 @@
 Version:4.12.1
 Release:0
 Summary:Time-managing Application for the Xfce Desktop Environment
-License:GPL-2.0+
+License:GPL-2.0-or-later
 Group:  Productivity/Office/Organizers
 Url:http://www.xfce.org/projects#applications
 Source: 
http://archive.xfce.org/src/apps/orage/4.12/%{name}-%{version}.tar.bz2
 Source1:README.SUSE
 # PATCH-FIX-UPSTREAM orage-use-docdir.patch g...@opensuse.org -- Use docdir 
correctly
 Patch0: orage-use-docdir.patch
+# PATCH-FIX-UPSTREAM 0001-fix-build-with-libical-version-3.patch -- fix build 
with libical3, bxo#13997
+Patch1: 0001-fix-build-with-libical-version-3.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  perl
@@ -69,6 +71,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 cp %{SOURCE1} .
 sed -i 's:^Icon=clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 

++ 0001-fix-build-with-libical-version-3.patch ++
>From 58e4bb4d3b982876dec33d55003d591559439598 Mon Sep 17 00:00:00 2001
From: Stefan Seyfried 
Date: Sat, 3 Mar 2018 20:25:24 +0100
Subject: [PATCH] fix build with libical version 3

---
 src/ical-code.c | 12 
 1 file changed, 12 insertions(+)

diff --git a/src/ical-code.c b/src/ical-code.c
index d5831404..c40042c3 100644
--- a/src/ical-code.c
+++ b/src/ical-code.c
@@ -2579,7 +2579,9 @@ static struct icaltimetype 
count_first_alarm_time(xfical_period per
  * when counting alarm time. */
 if (rel == ICAL_RELATED_START) {
 per.stime.is_date   = 0;
+#if ICAL_MAJOR_VERSION < 3
 per.stime.is_utc= 1;
+#endif
 per.stime.is_daylight   = 0;
 per.stime.zone  = utc_icaltimezone;
 per.stime.hour  = 0;
@@ -2588,7 +2590,9 @@ static struct icaltimetype 
count_first_alarm_time(xfical_period per
 }
 else {
 per.etime.is_date   = 0;
+#if ICAL_MAJOR_VERSION < 3
 per.etime.is_utc= 1;
+#endif
 per.etime.is_daylight   = 0;
 per.etime.zone  = utc_icaltimezone;
 per.etime.hour  = 0;
@@ -2613,7 +2617,9 @@ static struct icaltimetype count_next_alarm_time(struct 
icaltimetype start_time
 /* HACK: convert to UTC time so that we can use time arithmetic
  * when counting alarm time. */
 start_time.is_date   = 0;
+#if ICAL_MAJOR_VERSION < 3
 start_time.is_utc= 1;
+#endif
 start_time.is_daylight   = 0;
 start_time.zone  = utc_icaltimezone;
 start_time.hour  = 0;
@@ -2768,7 +2774,9 @@ static alarm_struct *process_alarm_trigger(icalcomponent 
*c
  */
 if (icaltime_is_date(per.stime)) {
 if (local_icaltimezone != utc_icaltimezone) {
+#if ICAL_MAJOR_VERSION < 3
 next_alarm_time.is_utc= 0;
+#endif
 next_alarm_time.is_daylight   = 0;
 next_alarm_time.zone  = local_icaltimezone;
 }
@@ -2850,7 +2858,9 @@ orage_message(120, P_N "Alarm rec loop next_start:%s 
next_alarm:%s per.stime:%s"
  */
 if (icaltime_is_date(per.stime)) {
 if (local_icaltimezone != 

commit orage for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2015-04-13 20:31:06

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


Package is orage

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2015-04-10 
10:20:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2015-04-13 
20:31:07.0 +0200
@@ -1,0 +2,8 @@
+Sun Apr 12 16:21:07 UTC 2015 - g...@opensuse.org
+
+- update to version 4.12.1
+  - bxo#11807: Wrong plugin module name
+  - bxo#11380: Error in manpage
+- drop obsolete orage-fix-plugin-filename.patch
+
+---

Old:

  orage-4.12.0.tar.bz2
  orage-fix-plugin-filename.patch

New:

  orage-4.12.1.tar.bz2



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.k2oGvz/_old  2015-04-13 20:31:08.0 +0200
+++ /var/tmp/diff_new_pack.k2oGvz/_new  2015-04-13 20:31:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   orage
-Version:4.12.0
+Version:4.12.1
 Release:0
 Summary:Time-managing Application for the Xfce Desktop Environment
 License:GPL-2.0+
@@ -27,8 +27,6 @@
 Source1:README.SUSE
 # PATCH-FIX-UPSTREAM orage-use-docdir.patch g...@opensuse.org -- Use docdir 
correctly
 Patch0: orage-use-docdir.patch
-# PATCH-FIX-UPSTREAM orage-fix-plugin-filename.patch bxo#11807 
g...@opensuse.org -- FIx plugin filename so that the plugin is found again
-Patch1: orage-fix-plugin-filename.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  perl
@@ -71,7 +69,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 cp %{SOURCE1} .
 sed -i 's:^Icon=clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 

++ orage-4.12.0.tar.bz2 - orage-4.12.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orage-4.12.0/configure new/orage-4.12.1/configure
--- old/orage-4.12.0/configure  2015-04-09 12:43:31.0 +0200
+++ new/orage-4.12.1/configure  2015-04-10 12:26:56.0 +0200
@@ -1,7 +1,7 @@
 #! /bin/sh
 # From configure.in Id.
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for orage 4.12.0.
+# Generated by GNU Autoconf 2.69 for orage 4.12.1.
 #
 # Report bugs to xfce4-...@xfce.org.
 #
@@ -596,8 +596,8 @@
 # Identity of this package.
 PACKAGE_NAME='orage'
 PACKAGE_TARNAME='orage'
-PACKAGE_VERSION='4.12.0'
-PACKAGE_STRING='orage 4.12.0'
+PACKAGE_VERSION='4.12.1'
+PACKAGE_STRING='orage 4.12.1'
 PACKAGE_BUGREPORT='xfce4-...@xfce.org'
 PACKAGE_URL=''
 
@@ -1441,7 +1441,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures orage 4.12.0 to adapt to many kinds of systems.
+\`configure' configures orage 4.12.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1512,7 +1512,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of orage 4.12.0:;;
+ short | recursive ) echo Configuration of orage 4.12.1:;;
esac
   cat \_ACEOF
 
@@ -1655,7 +1655,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-orage configure 4.12.0
+orage configure 4.12.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2083,7 +2083,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by orage $as_me 4.12.0, which was
+It was created by orage $as_me 4.12.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2574,7 +2574,7 @@
 
 
 
-ORAGE_VERSION=4.12.0
+ORAGE_VERSION=4.12.1
 am__api_version='1.14'
 
 # Find a good install program.  We prefer a C program (faster),
@@ -16635,7 +16635,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log=
-This file was extended by orage $as_me 4.12.0, which was
+This file was extended by orage $as_me 4.12.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -16701,7 +16701,7 @@
 cat $CONFIG_STATUS _ACEOF || ac_write_fail=1
 ac_cs_config=`$as_echo $ac_configure_args | sed 's/^ //; 
s/[\\\`\$]//g'`
 ac_cs_version=\\
-orage config.status 4.12.0
+orage config.status 4.12.1
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\\$ac_cs_config\\
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' 

commit orage for openSUSE:Factory

2013-12-13 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2013-12-13 12:00:08

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


Package is orage

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2013-02-01 
15:56:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2013-12-13 
12:00:10.0 +0100
@@ -1,0 +2,35 @@
+Wed Dec 11 20:53:42 UTC 2013 - g...@opensuse.org
+
+- update to version 4.10.0
+  - fix bxo#9249: Hourly flag missing from event window and tooltip
+  - fix bxo#9830: Pick the date dialog is not localized
+  - fix bxo#9014: Rename Execute button to Postpone for snooze
+alarms
+  - fix bxo#9017: Clarified Delete confirmation message
+  - fix bxo#9024: Clear nto used extra space from main calendar
+  - fix bxo#10517: Fix archiving to use correct year
+  - fix bxo#10325: Fix startup failure for some languages
+  - fix bxo#10108: Use g_strdup() instead of strdup() with g_free()
+  - fix bxo#10107: Fixed potential memory leak
+  - fix bxo#10473: Fixed crash in file copy with missing files
+  - fix bxo#10401: Use exo-open instead of fixed firefox with help
+  - fix bxo#9507: Older than 1970 periodic events do not work
+  - fix bxo#7929: Some foreign files show time offset in event view
+  - fix bxo#8382: Some events were shown on wrong day
+  - fix bxo#8508: Event ending at midnight is shown on the next day
+  - fix bxo#8426: Missing translations for some timezone names
+  - fix bxo#9028: Orage shows events at + with some iCal files
+  - fix bxo#9810: Do not show null when Location or Notes is empty
+  - fix bxo#8231: Make the alarm type selectable for foreign files
+  - fix bxo#8383: Possible to start day view on first day of week
+  - fix bxo#6597: Tooltip enhacements to use Pango markup
+  - fix bxo#9011: Tooltip enhacements to use smaller windows
+  - fix bxo#10432: Possible to make Orage quit when asked to close
+  - fix bxo#9291: Handle external updates to Orage file also
+  - fix bxo#7873: Allow inserting events to foreign files
+  - fix bxo#9250: New list of all events in event list window
+- drop obsolete orage-do-not-hardcode-firefox.patch
+- remove %clean
+- drop unnecessary removal of unsupported locales
+
+---

Old:

  orage-4.8.4.tar.bz2
  orage-do-not-hardcode-firefox.patch

New:

  orage-4.10.0.tar.bz2



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.a1aHqX/_old  2013-12-13 12:00:11.0 +0100
+++ /var/tmp/diff_new_pack.a1aHqX/_new  2013-12-13 12:00:11.0 +0100
@@ -17,18 +17,16 @@
 
 
 Name:   orage
-Version:4.8.4
+Version:4.10.0
 Release:0
 Summary:Time-managing Application for the Xfce Desktop Environment
 License:GPL-2.0+
 Group:  Productivity/Office/Organizers
 Url:http://www.xfce.org/projects#applications
-Source: 
http://archive.xfce.org/src/apps/orage/4.8/%{name}-%{version}.tar.bz2
+Source: 
http://archive.xfce.org/src/apps/orage/4.10/%{name}-%{version}.tar.bz2
 Source1:README.SUSE
 # PATCH-FIX-UPSTREAM orage-use-docdir.patch g...@opensuse.org -- Use docdir 
correctly
 Patch0: orage-use-docdir.patch
-# PATCH-FIX-UPSTREAM orage-do-not-hardcode-firefox.patch g...@opensuse.org -- 
Do not hardcode firefox and use exo-open instead
-Patch1: orage-do-not-hardcode-firefox.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  perl
@@ -71,7 +69,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 cp %{SOURCE1} .
 sed -i 's:^Icon=clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 
@@ -92,15 +89,10 @@
 %suse_update_desktop_file -r globaltime X-XFCE Utility Clock GTK
 %suse_update_desktop_file xfce-xfcalendar-settings
 
-rm -rf %{buildroot}%{_datadir}/locale/{ast,kk,tl_PH,ur_PK}
-
 %fdupes %{buildroot}%{_datadir}
 
 %find_lang %{name} %{?no_lang_C}
 
-%clean
-rm -rf %{buildroot}
-
 %post
 %desktop_database_post
 %icon_theme_cache_post

++ orage-4.8.4.tar.bz2 - orage-4.10.0.tar.bz2 ++
 246859 lines of diff (skipped)

++ orage-use-docdir.patch ++
--- /var/tmp/diff_new_pack.a1aHqX/_old  2013-12-13 12:00:13.0 +0100
+++ /var/tmp/diff_new_pack.a1aHqX/_new  2013-12-13 12:00:13.0 +0100
@@ -1,7 +1,7 @@
-Index: orage-4.8.4/doc/C/Makefile.am
+Index: orage-4.10.0/doc/C/Makefile.am
 ===
 orage-4.8.4.orig/doc/C/Makefile.am
-+++ orage-4.8.4/doc/C/Makefile.am
+--- orage-4.10.0.orig/doc/C/Makefile.am
 orage-4.10.0/doc/C/Makefile.am
 @@ -4,12 +4,12 @@ SUBDIRS = \
  noinst_DATA = 

commit orage for openSUSE:Factory

2013-02-01 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2013-02-01 15:56:09

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


Package is orage, Maintainer is xfce-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2012-05-08 
06:47:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2013-02-01 
15:56:11.0 +0100
@@ -1,0 +2,18 @@
+Fri Feb  1 10:59:27 UTC 2013 - g...@opensuse.org
+
+- update to version 4.8.4:
+  - fix bxo#8525: Orage notifies every second on All day events
+  - fix bxo#4817: anchor('#') does not work in help links
+  - fix bxo#9243: strptime() needs _XOPEN_SOURCE_EXTENDED defined
+  - fix bxo#9248: internal libical fix SSPM_UNKNOWN_MINOR_TYPE
+  - fix bxo#8231: alarm type is selectable for foreign files
+  - fix bxo#9739: new TODOs start as NOT completed
+  - fix bxo#9738: main window sorts TODOs by due-date
+  - fix bxo#9598: main window tooltip shows title and location bold
+ - translation updates
+- rebase and rename orage-4.8.2-use-docdir.patch to
+  orage-use-docdir.patch
+- add orage-do-not-hardcode-firefox.patch in order to use exo-open
+  instead of hardcoding firefox
+
+---

Old:

  orage-4.8.2-use-docdir.patch
  orage-4.8.3.tar.bz2

New:

  orage-4.8.4.tar.bz2
  orage-do-not-hardcode-firefox.patch
  orage-use-docdir.patch



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.BLaLjx/_old  2013-02-01 15:56:13.0 +0100
+++ /var/tmp/diff_new_pack.BLaLjx/_new  2013-02-01 15:56:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package orage
 #
-# 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:   orage
-Version:4.8.3
+Version:4.8.4
 Release:0
 Summary:Time-managing Application for the Xfce Desktop Environment
 License:GPL-2.0+
@@ -25,8 +25,10 @@
 Url:http://www.xfce.org/projects#applications
 Source: 
http://archive.xfce.org/src/apps/orage/4.8/%{name}-%{version}.tar.bz2
 Source1:README.SUSE
-# PATCH-FIX-UPSTREAM orage-4.8.2-use-docdir.patch g...@opensuse.org -- Use 
docdir correctly
-Patch0: orage-4.8.2-use-docdir.patch
+# PATCH-FIX-UPSTREAM orage-use-docdir.patch g...@opensuse.org -- Use docdir 
correctly
+Patch0: orage-use-docdir.patch
+# PATCH-FIX-UPSTREAM orage-do-not-hardcode-firefox.patch g...@opensuse.org -- 
Do not hardcode firefox and use exo-open instead
+Patch1: orage-do-not-hardcode-firefox.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
 BuildRequires:  perl
@@ -39,6 +41,7 @@
 BuildRequires:  pkgconfig(libnotify)
 BuildRequires:  pkgconfig(libxfce4panel-1.0)
 BuildRequires:  pkgconfig(libxfce4ui-1)
+Requires:   exo-tools
 Requires:   xfce4-panel
 Recommends: %{name}-lang = %{version}
 Recommends: %{name}-doc = %{version}
@@ -68,6 +71,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 cp %{SOURCE1} .
 sed -i 's:^Icon=clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 

++ orage-4.8.3.tar.bz2 - orage-4.8.4.tar.bz2 ++
 56669 lines of diff (skipped)

++ orage-do-not-hardcode-firefox.patch ++
Index: orage-4.8.4/src/mainbox.c
===
--- orage-4.8.4.orig/src/mainbox.c
+++ orage-4.8.4/src/mainbox.c
@@ -193,7 +193,7 @@ static void mHelp_help_activate_cb(GtkMe
 #ifdef ORAGE_DEBUG
 orage_message(-100, P_N);
 #endif
-helpdoc = g_strconcat(firefox , PACKAGE_DOC_DIR
+helpdoc = g_strconcat(exo-open , PACKAGE_DOC_DIR
, G_DIR_SEPARATOR_S, C
, G_DIR_SEPARATOR_S, orage.html
, NULL);
Index: orage-4.8.4/src/parameters.c
===
--- orage-4.8.4.orig/src/parameters.c
+++ orage-4.8.4/src/parameters.c
@@ -176,7 +176,7 @@ static void dialog_response(GtkWidget *d
 
 if (response_id == GTK_RESPONSE_HELP) {
 /* Needs to be in  to keep # */
-helpdoc = g_strconcat(firefox \file://, PACKAGE_DOC_DIR
+helpdoc = g_strconcat(exo-open \file://, PACKAGE_DOC_DIR
 , G_DIR_SEPARATOR_S, C
 , G_DIR_SEPARATOR_S, orage.html#orage-preferences-window\
 , NULL);
++ orage-use-docdir.patch ++
Index: orage-4.8.4/doc/C/Makefile.am

commit orage for openSUSE:Factory

2012-05-07 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2012-05-08 06:47:12

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


Package is orage, Maintainer is xfce-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2012-04-19 
10:40:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2012-05-08 
06:47:19.0 +0200
@@ -1,0 +2,6 @@
+Tue May  1 10:52:55 UTC 2012 - g...@opensuse.org
+
+- recommend sox so /usr/bin/play can be used to play notification
+  sounds
+
+---



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.br4wPk/_old  2012-05-08 06:47:20.0 +0200
+++ /var/tmp/diff_new_pack.br4wPk/_new  2012-05-08 06:47:20.0 +0200
@@ -42,6 +42,8 @@
 Requires:   xfce4-panel
 Recommends: %{name}-lang = %{version}
 Recommends: %{name}-doc = %{version}
+# use /usr/bin/play to play notification sounds
+Recommends: sox
 Provides:   xfcalendar = %{version}
 Obsoletes:  xfcalendar  %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

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



commit orage for openSUSE:Factory

2012-04-19 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2012-04-19 10:40:35

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


Package is orage, Maintainer is xfce-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2012-01-09 
15:20:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2012-04-19 
10:40:38.0 +0200
@@ -1,0 +2,12 @@
+Sun Apr 15 08:01:24 UTC 2012 - g...@opensuse.org
+
+- recommend the -doc subpackage
+
+---
+Fri Mar 30 20:12:23 UTC 2012 - g...@opensuse.org
+
+- specfile cleanup
+- correct dependencies
+- split off -doc subpackage
+
+---



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.IY4oyt/_old  2012-04-19 10:40:40.0 +0200
+++ /var/tmp/diff_new_pack.IY4oyt/_new  2012-04-19 10:40:40.0 +0200
@@ -15,19 +15,21 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   orage
 Version:4.8.3
 Release:0
 Summary:Time-managing Application for the Xfce Desktop Environment
 License:GPL-2.0+
 Group:  Productivity/Office/Organizers
-Url:http://www.xfce.org/projects/orage/
-Source: %{name}-%{version}.tar.bz2
+Url:http://www.xfce.org/projects#applications
+Source: 
http://archive.xfce.org/src/apps/orage/4.8/%{name}-%{version}.tar.bz2
 Source1:README.SUSE
 # PATCH-FIX-UPSTREAM orage-4.8.2-use-docdir.patch g...@opensuse.org -- Use 
docdir correctly
 Patch0: orage-4.8.2-use-docdir.patch
 BuildRequires:  fdupes
 BuildRequires:  intltool
+BuildRequires:  perl
 BuildRequires:  popt-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xfce4-dev-tools
@@ -36,8 +38,10 @@
 BuildRequires:  pkgconfig(libical)
 BuildRequires:  pkgconfig(libnotify)
 BuildRequires:  pkgconfig(libxfce4panel-1.0)
-Requires:   timezone
+BuildRequires:  pkgconfig(libxfce4ui-1)
+Requires:   xfce4-panel
 Recommends: %{name}-lang = %{version}
+Recommends: %{name}-doc = %{version}
 Provides:   xfcalendar = %{version}
 Obsoletes:  xfcalendar  %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -48,9 +52,17 @@
 features like repeating appointments and multiple alarming possibilities. Orage
 does not have group calendar features and can only be used for single user.
 
+%packagedoc
+Summary:Documentation for orage
+Group:  Documentation/HTML
+BuildArch:  noarch
+Requires:   %{name} = %{version}
 
+%description doc
+This package contains the documentation for orage.
 
 %lang_package
+
 %prep
 %setup -q
 %patch0 -p1
@@ -66,20 +78,23 @@
 
 %install
 %make_install
+
 install -D -p -m 644 icons/48x48/xfcalendar.png \
 %{buildroot}%{_datadir}/pixmaps/xfcalendar.png
-rm -rf %{buildroot}%{_datadir}/locale/{ast,kk,tl_PH,ur_PK}
-%fdupes %{buildroot}%{_datadir}
-%find_lang %{name}
+
 %suse_update_desktop_file -r xfcalendar X-XFCE Office Calendar GTK
 %suse_update_desktop_file -r globaltime X-XFCE Utility Clock GTK
 %suse_update_desktop_file xfce-xfcalendar-settings
 
+rm -rf %{buildroot}%{_datadir}/locale/{ast,kk,tl_PH,ur_PK}
+
+%fdupes %{buildroot}%{_datadir}
+
+%find_lang %{name} %{?no_lang_C}
+
 %clean
 rm -rf %{buildroot}
 
-%if 0%{?suse_version} = 1140
-
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -87,14 +102,10 @@
 %postun
 %desktop_database_postun
 %icon_theme_cache_postun
-%endif
 
 %files
 %defattr(-,root,root)
 %doc README ChangeLog COPYING AUTHORS NEWS README.SUSE
-%dir %{_datadir}/xfce4
-%dir %{_datadir}/xfce4/orage
-%doc %{_datadir}/xfce4/orage/html/
 %{_bindir}/orage
 %{_bindir}/globaltime
 %{_bindir}/tz_convert
@@ -110,6 +121,12 @@
 %{_libexecdir}/xfce4/panel-plugins/xfce4-orageclock-plugin
 %{_datadir}/xfce4/panel-plugins/xfce4-orageclock-plugin.desktop
 
+%files doc
+%defattr(-,root,root)
+%dir %{_datadir}/xfce4
+%dir %{_datadir}/xfce4/orage
+%doc %{_datadir}/xfce4/orage/html/
+
 %files lang -f %{name}.lang
 
 %changelog

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



commit orage for openSUSE:Factory

2012-01-09 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2012-01-09 15:20:22

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


Package is orage, Maintainer is xfce-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2011-10-25 
16:46:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2012-01-09 
15:20:24.0 +0100
@@ -1,0 +2,11 @@
+Thu Jan  5 09:05:46 UTC 2012 - g...@opensuse.org
+
+- update to version 4.8.3
+  - made it impossible to modify read-only events
+  - added location into main calender tooltip
+  - word wrap for note in appointment window
+  - improved time spinners in appointment window
+  - bugfixes
+  - translation updates
+
+---

Old:

  orage-4.8.2.tar.bz2

New:

  orage-4.8.3.tar.bz2



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.qdM671/_old  2012-01-09 15:20:25.0 +0100
+++ /var/tmp/diff_new_pack.qdM671/_new  2012-01-09 15:20:25.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package orage
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# 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
@@ -15,29 +15,27 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:   orage
-Version:4.8.2
-Release:1
-License:GPL-2.0+
+Version:4.8.3
+Release:0
 Summary:Time-managing Application for the Xfce Desktop Environment
-Url:http://www.xfce.org/projects/orage/
+License:GPL-2.0+
 Group:  Productivity/Office/Organizers
+Url:http://www.xfce.org/projects/orage/
 Source: %{name}-%{version}.tar.bz2
 Source1:README.SUSE
 # PATCH-FIX-UPSTREAM orage-4.8.2-use-docdir.patch g...@opensuse.org -- Use 
docdir correctly
 Patch0: orage-4.8.2-use-docdir.patch
+BuildRequires:  fdupes
 BuildRequires:  intltool
+BuildRequires:  popt-devel
+BuildRequires:  update-desktop-files
+BuildRequires:  xfce4-dev-tools
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gtk+-2.0)
 BuildRequires:  pkgconfig(libical)
 BuildRequires:  pkgconfig(libnotify)
 BuildRequires:  pkgconfig(libxfce4panel-1.0)
-BuildRequires:  popt-devel
-BuildRequires:  update-desktop-files
-BuildRequires:  xfce4-dev-tools
-BuildRequires:  fdupes
 Requires:   timezone
 Recommends: %{name}-lang = %{version}
 Provides:   xfcalendar = %{version}

++ orage-4.8.2.tar.bz2 - orage-4.8.3.tar.bz2 ++
 107665 lines of diff (skipped)

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



commit orage for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2011-12-06 18:35:10

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


Package is orage, Maintainer is xfce-maintain...@suse.de

Changes:




Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.1YZ479/_old  2011-12-06 18:56:38.0 +0100
+++ /var/tmp/diff_new_pack.1YZ479/_new  2011-12-06 18:56:38.0 +0100
@@ -20,7 +20,7 @@
 Name:   orage
 Version:4.8.2
 Release:1
-License:GPLv2+
+License:GPL-2.0+
 Summary:Time-managing Application for the Xfce Desktop Environment
 Url:http://www.xfce.org/projects/orage/
 Group:  Productivity/Office/Organizers

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



commit orage for openSUSE:Factory

2011-10-25 Thread h_root
Hello community,

here is the log from the commit of package orage for openSUSE:Factory checked 
in at 2011-10-25 16:46:06

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


Package is orage, Maintainer is xfce-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/orage/orage.changes  2011-09-23 
12:21:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.orage.new/orage.changes 2011-10-25 
16:46:29.0 +0200
@@ -1,0 +2,8 @@
+Thu Oct 20 20:44:41 UTC 2011 - g...@opensuse.org
+
+- added orage-4.8.2-use-docdir.patch in order to use docdir
+  correctly
+- install HTML documentation under /usr/share/xfce4/orage/html
+- make the file list a bit more explicit
+
+---

New:

  orage-4.8.2-use-docdir.patch



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.BUH4bi/_old  2011-10-25 16:47:08.0 +0200
+++ /var/tmp/diff_new_pack.BUH4bi/_new  2011-10-25 16:47:08.0 +0200
@@ -26,6 +26,8 @@
 Group:  Productivity/Office/Organizers
 Source: %{name}-%{version}.tar.bz2
 Source1:README.SUSE
+# PATCH-FIX-UPSTREAM orage-4.8.2-use-docdir.patch g...@opensuse.org -- Use 
docdir correctly
+Patch0: orage-4.8.2-use-docdir.patch
 BuildRequires:  intltool
 BuildRequires:  pkgconfig(dbus-glib-1)
 BuildRequires:  pkgconfig(gtk+-2.0)
@@ -53,18 +55,21 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p1
 cp %{SOURCE1} .
 sed -i 's:^Icon=clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 
 %build
+xdt-autogen
 # workaround broken libical headers
 export CFLAGS=%{optflags} -I%{_includedir}/libical
-%configure
+%configure --docdir=%{_datadir}/xfce4/orage/html
 make %{?_smp_mflags}
 
 %install
 %make_install
-install -D -m 644 icons/48x48/xfcalendar.png 
%{buildroot}%{_datadir}/pixmaps/xfcalendar.png
+install -D -p -m 644 icons/48x48/xfcalendar.png \
+%{buildroot}%{_datadir}/pixmaps/xfcalendar.png
 rm -rf %{buildroot}%{_datadir}/locale/{ast,kk,tl_PH,ur_PK}
 %fdupes %{buildroot}%{_datadir}
 %find_lang %{name}
@@ -89,18 +94,22 @@
 %files
 %defattr(-,root,root)
 %doc README ChangeLog COPYING AUTHORS NEWS README.SUSE
-%doc %{_datadir}/orage/doc/
+%dir %{_datadir}/xfce4
+%dir %{_datadir}/xfce4/orage
+%doc %{_datadir}/xfce4/orage/html/
 %{_bindir}/orage
 %{_bindir}/globaltime
 %{_bindir}/tz_convert
-%{_datadir}/orage/
-%doc %{_mandir}/man1/*
+%doc %{_mandir}/man1/globaltime.1*
+%doc %{_mandir}/man1/orage.1*
+%doc %{_mandir}/man1/tz_convert.1*
+%dir %{_datadir}/%{name}
 %{_datadir}/orage/sounds/
 %{_datadir}/applications/*desktop
 %{_datadir}/icons/hicolor/*
 %{_datadir}/pixmaps/xfcalendar.png
 %{_datadir}/dbus-1/services/org.xfce.*
-%{_libexecdir}/xfce4/
+%{_libexecdir}/xfce4/panel-plugins/xfce4-orageclock-plugin
 %{_datadir}/xfce4/panel-plugins/xfce4-orageclock-plugin.desktop
 
 %files lang -f %{name}.lang

++ orage-4.8.2-use-docdir.patch ++
Index: orage-4.8.2/doc/C/Makefile.am
===
--- orage-4.8.2.orig/doc/C/Makefile.am
+++ orage-4.8.2/doc/C/Makefile.am
@@ -4,12 +4,12 @@ SUBDIRS = \
 noinst_DATA = \
orage.xml
 
-docdir=$(datadir)/orage/doc/C
+cdocdir=$(docdir)/C
 
-doc_DATA= \
+cdoc_DATA= \
orage.html
 
-EXTRA_DIST = $(noinst_DATA) $(doc_DATA)
+EXTRA_DIST = $(noinst_DATA) $(cdoc_DATA)
 
 html: $(srcdir)/orage.xml
xsltproc $(top_srcdir)/doc/xfce-nochunk.xsl \
Index: orage-4.8.2/doc/C/images/Makefile.am
===
--- orage-4.8.2.orig/doc/C/images/Makefile.am
+++ orage-4.8.2/doc/C/images/Makefile.am
@@ -1,5 +1,5 @@
-imagesdir = $(datadir)/orage/doc/C/images
-images_DATA = \
+cimagesdir = $(docdir)/C/images
+cimages_DATA = \
default_calendar.png \
orage_calendar_edit_menu.png \
orage_calendar_file_menu.png \
@@ -18,4 +18,4 @@ images_DATA = \
orage_preferences_main.png \
orage_preferences_extra.png 
 
-EXTRA_DIST = $(images_DATA)
+EXTRA_DIST = $(cimages_DATA)
Index: orage-4.8.2/src/Makefile.am
===
--- orage-4.8.2.orig/src/Makefile.am
+++ orage-4.8.2/src/Makefile.am
@@ -38,7 +38,8 @@ orage_SOURCES =   \
 orage_CFLAGS = \
 $(LIBGTK_CFLAGS)\
-DPACKAGE_DATA_DIR=\$(datadir)\ \
-   -DPACKAGE_LOCALE_DIR=\$(localedir)\
+   -DPACKAGE_LOCALE_DIR=\$(localedir)\ \
+   -DPACKAGE_DOC_DIR=\$(docdir)\
 
 orage_LDADD =  \
 $(LIBGTK_LIBS)  \
Index: 

commit orage for openSUSE:Factory

2011-09-21 Thread h_root

Hello community,

here is the log from the commit of package orage for openSUSE:Factory
checked in at Wed Sep 21 17:13:32 CEST 2011.




--- orage/orage.changes 2011-03-08 23:04:50.0 +0100
+++ /mounts/work_src_done/STABLE/orage/orage.changes2011-09-19 
16:56:21.0 +0200
@@ -1,0 +2,11 @@
+Mon Sep 19 13:56:46 UTC 2011 - g...@opensuse.org
+
+- update to version 4.8.2
+  - possible to export from shell
+  - variable icon can now be changed
+  - procedure alarm replacement parameters
+  - hourly repeat option added
+  - bugfixes
+  - translation updates
+
+---

calling whatdependson for head-i586


Old:

  orage-4.8.1.tar.bz2

New:

  orage-4.8.2.tar.bz2



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.zCO4y2/_old  2011-09-21 17:13:24.0 +0200
+++ /var/tmp/diff_new_pack.zCO4y2/_new  2011-09-21 17:13:24.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   orage
-Version:4.8.1
+Version:4.8.2
 Release:1
 License:GPLv2+
 Summary:Time-managing Application for the Xfce Desktop Environment
@@ -54,7 +54,7 @@
 %prep
 %setup -q
 cp %{SOURCE1} .
-sed -i 's:^Icon=xfce4-clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
+sed -i 's:^Icon=clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 
 %build
 # workaround broken libical headers
@@ -97,7 +97,7 @@
 %doc %{_mandir}/man1/*
 %{_datadir}/orage/sounds/
 %{_datadir}/applications/*desktop
-%{_datadir}/icons/hicolor/*/*
+%{_datadir}/icons/hicolor/*
 %{_datadir}/pixmaps/xfcalendar.png
 %{_datadir}/dbus-1/services/org.xfce.*
 %{_libexecdir}/xfce4/

++ orage-4.8.1.tar.bz2 - orage-4.8.2.tar.bz2 ++
 124371 lines of diff (skipped)






Remember to have fun...

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



commit orage for openSUSE:Factory

2011-05-02 Thread h_root

Hello community,

here is the log from the commit of package orage for openSUSE:Factory
checked in at Mon May 2 17:53:54 CEST 2011.




--- orage/orage.changes 2011-02-17 22:33:21.0 +0100
+++ orage/orage.changes 2011-03-08 23:04:50.0 +0100
@@ -1,0 +2,7 @@
+Tue Mar  8 21:02:31 UTC 2011 - g...@opensuse.org
+
+- update to version 4.8.1
+  - bugfixes
+  - translation updates
+
+---

calling whatdependson for head-i586


Old:

  orage-4.8.0.tar.bz2

New:

  orage-4.8.1.tar.bz2



Other differences:
--
++ orage.spec ++
--- /var/tmp/diff_new_pack.HlxKOL/_old  2011-05-02 17:52:34.0 +0200
+++ /var/tmp/diff_new_pack.HlxKOL/_new  2011-05-02 17:52:34.0 +0200
@@ -18,8 +18,8 @@
 
 
 Name:   orage
-Version:4.8.0
-Release:7
+Version:4.8.1
+Release:1
 License:GPLv2+
 Summary:Time-managing Application for the Xfce Desktop Environment
 Url:http://www.xfce.org/projects/orage/
@@ -57,6 +57,7 @@
 sed -i 's:^Icon=xfce4-clock:Icon=xfcalendar:' globaltime/globaltime.desktop.in
 
 %build
+# workaround broken libical headers
 export CFLAGS=%{optflags} -I%{_includedir}/libical
 %configure
 make %{?_smp_mflags}

++ orage-4.8.0.tar.bz2 - orage-4.8.1.tar.bz2 ++
 4913 lines of diff (skipped)






Remember to have fun...

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