commit zsh for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package zsh for openSUSE:Factory checked in 
at 2013-12-26 17:42:43

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


Package is "zsh"

Changes:

--- /work/SRC/openSUSE:Factory/zsh/zsh.changes  2013-04-22 14:33:20.0 
+0200
+++ /work/SRC/openSUSE:Factory/.zsh.new/zsh.changes 2013-12-26 
17:42:45.0 +0100
@@ -1,0 +2,10 @@
+Wed Dec 25 12:25:03 UTC 2013 - idon...@suse.com
+
+- Update to version 5.0.4
+  * Small bugfix release
+- Add zsh-pipefix.patch to import pipe fixes from zsh.git
+- Remove upstream patches
+  * zsh-osc-suseversion.patch
+  * zsh-zypper-completion.patch
+
+---

Old:

  zsh-5.0.2.tar.bz2
  zsh-osc-suseversion.patch
  zsh-zypper-completion.patch

New:

  zsh-5.0.4.tar.bz2
  zsh-pipefix.patch



Other differences:
--
++ zsh.spec ++
--- /var/tmp/diff_new_pack.SY2wAX/_old  2013-12-26 17:42:46.0 +0100
+++ /var/tmp/diff_new_pack.SY2wAX/_new  2013-12-26 17:42:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   zsh
-Version:5.0.2
+Version:5.0.4
 Release:0
 Summary:Shell with comprehensive completion
 License:MIT
@@ -36,9 +36,8 @@
 Source16:   dotzshrc.rh
 Source17:   zshprompt.pl
 %endif
-Patch1: zsh-zypper-completion.patch
-Patch2: zsh-osc-suseversion.patch
-Patch3: trim-unneeded-completions.patch
+Patch1: trim-unneeded-completions.patch
+Patch2: zsh-pipefix.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 Requires(pre):  %{install_info_prereq}
@@ -94,11 +93,10 @@
 
 %prep
 %setup -q -n %{name}-%{version}
-%patch1 -p1
-%patch2 -p1
 %if 0%{?suse_version}
-%patch3 -p1
+%patch1 -p1
 %endif
+%patch2 -p1
 
 # Remove executable bit
 chmod 0644 Etc/changelog2html.pl
@@ -129,15 +127,6 @@
 
 make all info html
 
-# make help text files
-install -d Help
-pushd Help/
-troff -Tlatin1 -t -mandoc ../Doc/zshbuiltins.1 | \
-   grotty -cbou | \
-   sed -e 's/±/{+|-}/' | \
-   ../Util/helpfiles
-popd
-
 # generate intro.ps
 groff -Tps -ms Doc/intro.ms > intro.ps
 
@@ -179,7 +168,7 @@
 
 # install help files
 install -m 0755 -Dd%{buildroot}%{_datadir}/%{name}/%{version}/help
-install -m 0644 Help/* %{buildroot}%{_datadir}/%{name}/%{version}/help/
+install -m 0644 Doc/help/* %{buildroot}%{_datadir}/%{name}/%{version}/help/
 
 # link zsh binary
 ln -sf %{_bindir}/zsh %{buildroot}/bin/zsh

++ zsh-5.0.2.tar.bz2 -> zsh-5.0.4.tar.bz2 ++
 22175 lines of diff (skipped)

++ zsh-pipefix.patch ++
diff --git a/Src/exec.c b/Src/exec.c
index dccdc2b..4480033 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -1691,6 +1691,7 @@ execpline2(Estate state, wordcode pcode,
execcmd(state, input, output, how, last1 ? 1 : 2);
 else {
int old_list_pipe = list_pipe;
+   int subsh_close = -1;
Wordcode next = state->pc + (*state->pc), pc;
wordcode code;
 
@@ -1738,6 +1739,7 @@ execpline2(Estate state, wordcode pcode,
} else {
/* otherwise just do the pipeline normally. */
addfilelist(NULL, pipes[0]);
+   subsh_close = pipes[0];
execcmd(state, input, pipes[1], how, 0);
}
zclose(pipes[1]);
@@ -1750,6 +1752,8 @@ execpline2(Estate state, wordcode pcode,
execpline2(state, *state->pc++, how, pipes[0], output, last1);
list_pipe = old_list_pipe;
cmdpop();
+   if (subsh_close != pipes[0])
+   zclose(pipes[0]);
 }
 }
 
diff --git a/Test/A05execution.ztst b/Test/A05execution.ztst
index c8320a1..61d24fe 100644
--- a/Test/A05execution.ztst
+++ b/Test/A05execution.ztst
@@ -202,3 +202,15 @@ F:the bug is still there or it reappeared. See 
workers-29973 for details.
 0:Check $pipestatus with a known difficult case
 >1 0 1 0 0
 F:This similar test was triggering a reproducible failure with pipestatus.
+
+  { unsetopt MONITOR } 2>/dev/null
+  coproc { read -Et 5 || kill -INT $$ }
+  print -u $ZTST_fd 'This test takes 5 seconds to fail...'
+  { printf "%d\n" {1..2} } | ( read -E )
+  print -p done
+  read -Ep
+0:Bug regression: piping a shell construct to an external process may hang
+>1
+>done
+F:This test checks for a file descriptor leak that could cause the left
+F:side of a pipe to block on write after the right side has exited
diff --git a/Src/exec.c b/Src/exec.c
index 4480033..f16cfd3 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -2389,7 +2389,7 @@ static void
 execcmd(Estate state, int input, int output, int how, int last1)
 {
 HashNode hn = NULL;
-LinkList args;
+LinkList args, filelist = NULL;
  

commit sendmail for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package sendmail for openSUSE:Factory 
checked in at 2013-12-26 17:39:36

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


Package is "sendmail"

Changes:

--- /work/SRC/openSUSE:Factory/sendmail/sendmail.changes2013-10-20 
10:53:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.sendmail.new/sendmail.changes   2013-12-26 
17:39:40.0 +0100
@@ -1,0 +2,6 @@
+Wed Dec 18 08:03:28 UTC 2013 - wer...@suse.de
+
+- Do not use remote-fs.target but local-fs.target to make sure that
+  failing remote/cifs shares let sendmail fail (bnc#855688)
+
+---



Other differences:
--
uucp.spec: same change
++ sendmail.service ++
--- /var/tmp/diff_new_pack.fDhcJX/_old  2013-12-26 17:39:42.0 +0100
+++ /var/tmp/diff_new_pack.fDhcJX/_new  2013-12-26 17:39:42.0 +0100
@@ -14,8 +14,8 @@
 
 [Unit]
 Description=Sendmail Mail Transport Agent
-Requires=var-run.mount nss-lookup.target network.target remote-fs.target 
time-sync.target
-After=var-run.mount nss-lookup.target network.target remote-fs.target 
time-sync.target
+Requires=var-run.mount nss-lookup.target network.target local-fs.target 
time-sync.target
+After=var-run.mount nss-lookup.target network.target local-fs.target 
time-sync.target
 Wants=amavis.service cyrus.service ldap.service nscd.service ypbind.service 
sendmail-client.service saslauthd.service
 After=amavis.service cyrus.service ldap.service nscd.service ypbind.service 
saslauthd.service
 Before=sendmail-client.service mail-transfer-agent.target

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



commit pidgin-sipe for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package pidgin-sipe for openSUSE:Factory 
checked in at 2013-12-26 17:38:14

Comparing /work/SRC/openSUSE:Factory/pidgin-sipe (Old)
 and  /work/SRC/openSUSE:Factory/.pidgin-sipe.new (New)


Package is "pidgin-sipe"

Changes:

--- /work/SRC/openSUSE:Factory/pidgin-sipe/pidgin-sipe.changes  2013-09-23 
15:47:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.pidgin-sipe.new/pidgin-sipe.changes 
2013-12-26 17:38:15.0 +0100
@@ -1,0 +2,24 @@
+Mon Dec 23 21:02:50 UTC 2013 - dims...@opensuse.org
+
+- Update to version 1.17.3:
+  + Fixed sf#222: SIPE crashes when groupchat session expires.
+  + Fixed sf#225: HTTP re-authentication with NTLM fails.
+  + Fix UCS Persona key extraction.
+
+---
+Sun Dec  8 10:13:31 UTC 2013 - zai...@opensuse.org
+
+- Update to version 1.17.2:
+  + Fixed sf#214: Typing notification does not always work.
+  + Reverted one change which caused problems for some users.
+  + Fixed sf#222: SIPE crashes when groupchat session expires.
+  + Updated translations.
+- Changes from version 1.17.1:
+  + Fixed sf#215: Password not entity encoded in WSSE element.
+  + Fixed sf#214: Typing notification does not always work.
+  + Accept alternatives for webticket timestamp/keydata.
+  + Adium: add "don't publish calendar" to account UI.
+  + Contrib: add SSL BEAST mitigation patch for Adium.
+  + Updated translations.
+
+---

Old:

  pidgin-sipe-1.17.0.tar.bz2

New:

  pidgin-sipe-1.17.3.tar.bz2



Other differences:
--
++ pidgin-sipe.spec ++
--- /var/tmp/diff_new_pack.MzODFf/_old  2013-12-26 17:38:15.0 +0100
+++ /var/tmp/diff_new_pack.MzODFf/_new  2013-12-26 17:38:15.0 +0100
@@ -19,13 +19,13 @@
 %define build_telepathy 1
 
 Name:   pidgin-sipe
-Version:1.17.0
+Version:1.17.3
 Release:0
 Summary:Pidgin protocol plugin to connect to MS Office Communicator
 License:GPL-2.0+
 Group:  Productivity/Networking/Instant Messenger
 Url:http://sipe.sourceforge.net/
-Source: 
http://downloads.sourceforge.net/project/sipe/sipe/pidgin-sipe-1.17.0/%{name}-%{version}.tar.bz2
+Source: 
http://downloads.sourceforge.net/project/sipe/sipe/pidgin-sipe-1.17.3/%{name}-%{version}.tar.bz2
 BuildRequires:  gettext-devel
 BuildRequires:  glib2-devel >= 2.12.0
 BuildRequires:  gmime-devel

++ pidgin-sipe-1.17.0.tar.bz2 -> pidgin-sipe-1.17.3.tar.bz2 ++
 4055 lines of diff (skipped)

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



commit rednotebook for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package rednotebook for openSUSE:Factory 
checked in at 2013-12-26 17:39:14

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


Package is "rednotebook"

Changes:

--- /work/SRC/openSUSE:Factory/rednotebook/rednotebook.changes  2013-11-27 
15:32:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.rednotebook.new/rednotebook.changes 
2013-12-26 17:39:15.0 +0100
@@ -1,0 +2,12 @@
+Mon Dec 23 21:42:42 UTC 2013 - dims...@opensuse.org
+
+- Update to version 1.8.0:
+  + Add font selection for edit mode.
+  + Allow changing preview and cloud font in preferences.
+  + Only allow opening RedNotebook minimized on Windows since other
+systems may lack a system tray.
+  + Fix: Display tags starting with "SEP" in preview (lp#1255582).
+  + Write scripts to cross-compile RedNotebook Windows exe and
+installer on Linux.
+
+---

Old:

  rednotebook-1.7.3.tar.gz

New:

  rednotebook-1.8.0.tar.gz



Other differences:
--
++ rednotebook.spec ++
--- /var/tmp/diff_new_pack.svdN02/_old  2013-12-26 17:39:15.0 +0100
+++ /var/tmp/diff_new_pack.svdN02/_new  2013-12-26 17:39:15.0 +0100
@@ -17,12 +17,12 @@
 
 
 Name:   rednotebook
-Version:1.7.3
+Version:1.8.0
 Release:0
-# See note at the end of README: code is using some LGPL-3.0+ module, so the 
resulting work is GPL-3.0+.
 Summary:Graphical diary and journal
 License:GPL-3.0+
 Group:  Productivity/Office/Other
+# See note at the end of README: code is using some LGPL-3.0+ module, so the 
resulting work is GPL-3.0+.
 Url:http://rednotebook.sourceforge.net/
 Source: 
http://downloads.sourceforge.net/project/rednotebook/%{name}-%{version}.tar.gz
 BuildRequires:  fdupes

++ rednotebook-1.7.3.tar.gz -> rednotebook-1.8.0.tar.gz ++
 52627 lines of diff (skipped)

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



commit python3-six for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package python3-six for openSUSE:Factory 
checked in at 2013-12-26 17:38:34

Comparing /work/SRC/openSUSE:Factory/python3-six (Old)
 and  /work/SRC/openSUSE:Factory/.python3-six.new (New)


Package is "python3-six"

Changes:

--- /work/SRC/openSUSE:Factory/python3-six/python3-six.changes  2013-07-31 
17:24:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-six.new/python3-six.changes 
2013-12-26 17:38:35.0 +0100
@@ -1,0 +2,25 @@
+Mon Dec 23 18:50:44 UTC 2013 - ocef...@gmail.com
+
+- updated to 1.4.1
+  - Issue #32: urllib module wrappings don't work when six is not a toplevel 
file.
+- updates from 1.4.0
+  - Issue #31: Add six.moves mapping for UserString.
+  - Pull request #12: Add six.add_metaclass, a decorator for adding a 
metaclass to
+a class.
+  - Add six.moves.zip_longest and six.moves.filterfalse, which correspond
+respectively to itertools.izip_longest and itertools.ifilterfalse on 
Python 2
+and itertools.zip_longest and itertools.filterfalse on Python 3.
+  - Issue #25: Add the unichr function, which returns a string for a Unicode
+codepoint.
+  - Issue #26: Add byte2int function, which complements int2byte.
+  - Add a PY2 constant with obvious semantics.
+  - Add helpers for indexing and iterating over bytes: iterbytes and 
indexbytes.
+  - Add create_bound_method() wrapper.
+  - Issue #23: Allow multiple base classes to be passed to with_metaclass.
+  - Issue #24: Add six.moves.range alias. This exactly the same as the current
+xrange alias.
+  - Pull request #5: Create six.moves.urllib, which contains abstractions for a
+bunch of things which are in urllib in Python 3 and spread out across 
urllib,
+urllib2, and urlparse in Python 2.
+
+---

Old:

  six-1.3.0.tar.gz

New:

  six-1.4.1.tar.gz



Other differences:
--
++ python3-six.spec ++
--- /var/tmp/diff_new_pack.deM5q3/_old  2013-12-26 17:38:35.0 +0100
+++ /var/tmp/diff_new_pack.deM5q3/_new  2013-12-26 17:38:35.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-six
-Version:1.3.0
+Version:1.4.1
 Release:0
 Url:http://pypi.python.org/pypi/six/
 Summary:Python 2 and 3 compatibility utilities

++ six-1.3.0.tar.gz -> six-1.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/six-1.3.0/CHANGES new/six-1.4.1/CHANGES
--- old/six-1.3.0/CHANGES   2013-03-18 21:35:07.0 +0100
+++ new/six-1.4.1/CHANGES   2013-09-02 15:09:15.0 +0200
@@ -3,6 +3,43 @@
 
 This file lists the changes in each six version.
 
+1.4.1
+-
+
+- Issue #32: urllib module wrappings don't work when six is not a toplevel 
file.
+
+1.4.0
+-
+
+- Issue #31: Add six.moves mapping for UserString.
+
+- Pull request #12: Add six.add_metaclass, a decorator for adding a metaclass 
to
+  a class.
+
+- Add six.moves.zip_longest and six.moves.filterfalse, which correspond
+  respectively to itertools.izip_longest and itertools.ifilterfalse on Python 2
+  and itertools.zip_longest and itertools.filterfalse on Python 3.
+
+- Issue #25: Add the unichr function, which returns a string for a Unicode
+  codepoint.
+
+- Issue #26: Add byte2int function, which complements int2byte.
+
+- Add a PY2 constant with obvious semantics.
+
+- Add helpers for indexing and iterating over bytes: iterbytes and indexbytes.
+
+- Add create_bound_method() wrapper.
+
+- Issue #23: Allow multiple base classes to be passed to with_metaclass.
+
+- Issue #24: Add six.moves.range alias. This exactly the same as the current
+  xrange alias.
+
+- Pull request #5: Create six.moves.urllib, which contains abstractions for a
+  bunch of things which are in urllib in Python 3 and spread out across urllib,
+  urllib2, and urlparse in Python 2.
+
 1.3.0
 -
 
@@ -56,7 +93,6 @@
 
 - Issue #3: Add six.moves mappings for filter, map, and zip.
 
-
 1.0.0
 -
 
@@ -64,7 +100,6 @@
 
 - Expose an API for adding mappings to six.moves.
 
-
 1.0 beta 1
 --
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/six-1.3.0/PKG-INFO new/six-1.4.1/PKG-INFO
--- old/six-1.3.0/PKG-INFO  2013-03-18 21:40:09.0 +0100
+++ new/six-1.4.1/PKG-INFO  2013-09-02 15:11:53.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: six
-Version: 1.3.0
+Version: 1.4.1
 Summary: Python 2 and 3 compatibility utilities
 Home-page: http://pypi.python.org/pypi/six/
 Author: Benjamin Peterson
@@ -11,9 +11,11 @@
 writing Python code that is compatible on both Python versions.  See 
the
 documentation for more

commit hyper-v for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package hyper-v for openSUSE:Factory checked 
in at 2013-12-26 17:38:09

Comparing /work/SRC/openSUSE:Factory/hyper-v (Old)
 and  /work/SRC/openSUSE:Factory/.hyper-v.new (New)


Package is "hyper-v"

Changes:

--- /work/SRC/openSUSE:Factory/hyper-v/hyper-v.changes  2013-09-08 
15:27:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.hyper-v.new/hyper-v.changes 2013-12-26 
17:38:10.0 +0100
@@ -1,0 +2,5 @@
+Wed Dec 18 14:46:37 CET 2013 - oher...@suse.de
+
+- Use native systemd services for post 13.1 releases
+
+---



Other differences:
--
++ hyper-v.spec ++
--- /var/tmp/diff_new_pack.NjZJDM/_old  2013-12-26 17:38:11.0 +0100
+++ /var/tmp/diff_new_pack.NjZJDM/_new  2013-12-26 17:38:11.0 +0100
@@ -18,11 +18,23 @@
 
 %define hv_kvp_daemon hv_kvp_daemon
 %define hv_vss_daemon hv_vss_daemon
+%define helper_dir /usr/lib/%{name}
 
 Name:   hyper-v
 ExclusiveArch:  %ix86 x86_64
+# systemd for post 13.1 releases
+%if 0%{?suse_version} > 1310
+%define use_systemd 1
+%else
+%define use_systemd 0
+%endif
+%if %{use_systemd}
+%{?systemd_requires}
+BuildRequires:  pkgconfig(systemd)
+%else
 PreReq: %insserv_prereq
 Requires(pre):  coreutils
+%endif
 Summary:Microsoft Hyper-V tools
 License:GPL-2.0
 Group:  System/Kernel
@@ -30,7 +42,7 @@
 Supplements:modalias(pci:v1414d5353sv*sd*bc*sc*i*)
 Url:http://www.kernel.org
 # Arbitrary version number
-Version:5
+Version:6
 Release:0
 Source5:hyper-v.kvptest.ps1.txt
 Source9:hyper-v.include.linux.hyperv.h
@@ -84,23 +96,71 @@
 mkdir -p $RPM_BUILD_ROOT/usr/sbin
 install -m755 %{hv_kvp_daemon} $RPM_BUILD_ROOT/usr/sbin
 install -m755 %{hv_vss_daemon} $RPM_BUILD_ROOT/usr/sbin
-mkdir -p $RPM_BUILD_ROOT/usr/lib/%{name}/bin
-cp -avL %{S:20} $RPM_BUILD_ROOT/usr/lib/%{name}/bin/hv_get_dhcp_info
-cp -avL %{S:21} $RPM_BUILD_ROOT/usr/lib/%{name}/bin/hv_get_dns_info
-cp -avL %{S:22} $RPM_BUILD_ROOT/usr/lib/%{name}/bin/hv_set_ifconfig
-chmod 755 $RPM_BUILD_ROOT/usr/lib/%{name}/bin/*
+mkdir -p $RPM_BUILD_ROOT%{helper_dir}/bin
+cp -avL %{S:20} $RPM_BUILD_ROOT%{helper_dir}/bin/hv_get_dhcp_info
+cp -avL %{S:21} $RPM_BUILD_ROOT%{helper_dir}/bin/hv_get_dns_info
+cp -avL %{S:22} $RPM_BUILD_ROOT%{helper_dir}/bin/hv_set_ifconfig
+chmod 755 $RPM_BUILD_ROOT%{helper_dir}/bin/*
+%if %{use_systemd}
+d=$RPM_BUILD_ROOT%{_unitdir}
+mkdir -vp ${d}
+#
+cat > ${d}/%{hv_kvp_daemon}.service <<'EOF'
+[Unit]
+Description=Hyper-V KVP Daemon
+ConditionVirtualization=microsoft
+
+[Service]
+Environment=%{helper_dir}/bin:/usr/sbin:/usr/bin:/sbin:/bin
+Type=forking
+# Restart appears to work, but its unsupported
+# Reboot required until kernel-user protocol is fixed
+ExecStartPre=/usr/bin/mkdir /run/%{hv_kvp_daemon}
+ExecStart=/usr/sbin/%{hv_kvp_daemon}
+ExecReload=/usr/bin/false
+Restart=no
+
+[Install]
+WantedBy=default.target
+EOF
+#
+cat > ${d}/%{hv_vss_daemon}.service <<'EOF'
+[Unit]
+Description=Hyper-V VSS Daemon
+ConditionVirtualization=microsoft
+
+[Service]
+Type=forking
+# Restart appears to work, but its unsupported
+# Reboot required until kernel-user protocol is fixed
+ExecStartPre=/usr/bin/mkdir /run/%{hv_vss_daemon}
+ExecStart=/usr/sbin/%{hv_vss_daemon}
+ExecReload=/usr/bin/false
+Restart=no
+
+[Install]
+WantedBy=default.target
+EOF
+#
+head -n 42 ${d}/*.service 
+%else
 mkdir -p $RPM_BUILD_ROOT/etc/init.d
 install -m755 %{S:11} $RPM_BUILD_ROOT/etc/init.d/%{hv_kvp_daemon}
 ln -sfvbn ../../etc/init.d/%{hv_kvp_daemon} 
$RPM_BUILD_ROOT/usr/sbin/rc%{hv_kvp_daemon}
 install -m755 %{S:13} $RPM_BUILD_ROOT/etc/init.d/%{hv_vss_daemon}
 ln -sfvbn ../../etc/init.d/%{hv_vss_daemon} 
$RPM_BUILD_ROOT/usr/sbin/rc%{hv_vss_daemon}
+%endif
 
 %files
 %defattr (-,root,root)
 %doc kvptest.ps1.txt
+%if %{use_systemd}
+%{_unitdir}
+%else
 /etc/init.d/*
+%endif
 /usr/sbin/*
-/usr/lib/%{name}
+%{helper_dir}
 
 %pre
 # hv_kvp_daemon in SLES11 SP2 stored temporary state files in /var/opt
@@ -120,6 +180,10 @@
fi
rmdir -v  /var/opt/hyperv || :
 fi
+%if %{use_systemd}
+%{service_add_pre %{hv_kvp_daemon}.service}
+%{service_add_pre %{hv_vss_daemon}.service}
+%endif
 
 %post
 board_vendor=
@@ -138,18 +202,33 @@
 fi
 if test "${board_vendor}" = "Microsoft Corporation" -a "${product_name}" = 
"Virtual Machine"
 then
+%if %{use_systemd}
+%{service_add_post %{hv_kvp_daemon}.service}
+%{service_add_post %{hv_vss_daemon}.service}
+%else
echo "Enabling %{hv_kvp_daemon} on '${product_name}' from 
'${board_vendor}'"
%{insserv_force_if_yast %{hv_kvp_daemon}}
echo "Enabling %{hv_vss_daemon} on '${product_name}' from 

commit gimp-dds for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package gimp-dds for openSUSE:Factory 
checked in at 2013-12-26 17:37:07

Comparing /work/SRC/openSUSE:Factory/gimp-dds (Old)
 and  /work/SRC/openSUSE:Factory/.gimp-dds.new (New)


Package is "gimp-dds"

Changes:

--- /work/SRC/openSUSE:Factory/gimp-dds/gimp-dds.changes2012-11-02 
17:32:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.gimp-dds.new/gimp-dds.changes   2013-12-26 
17:37:08.0 +0100
@@ -1,0 +2,17 @@
+Tue Dec 24 17:11:12 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.0.1:
+  + Minor bug fix release.
+- Changes from versioon 3.0.0:
+  + New major "turkey-day" release!
+  + New DXT compressor.
+  + OpenMP support.
+  + New mipmap generator, with better support for alpha mipmaps.
+  + Support reading/writing DX10 texture arrays.
+- Only export %{optflags} into CFLAGS: the Makefile now correctly
+  extends CFLAGS with its own values instead of overwriting
+  everything.
+- No longer call make -e, but use regular make call (as we don't
+  need to prefer env variables any longer).
+
+---

Old:

  gimp-dds-2.2.1.tar.bz2

New:

  gimp-dds-3.0.1.tar.bz2



Other differences:
--
++ gimp-dds.spec ++
--- /var/tmp/diff_new_pack.ceC2P8/_old  2013-12-26 17:37:08.0 +0100
+++ /var/tmp/diff_new_pack.ceC2P8/_new  2013-12-26 17:37:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gimp-dds
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Malcolm J Lewis 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   gimp-dds
-Version:2.2.1
+Version:3.0.1
 Release:0
 Summary:Plugin for GIMP providing support for the DDS format
 License:GPL-2.0+
@@ -61,9 +61,9 @@
 %setup -q
 
 %build
-# As we currently need to override CFLAGS, we also need to inject gtk2 and 
gimp cflags.
-export CFLAGS="%{optflags} $(pkg-config --cflags gtk+-2.0 gimp-2.0)"
-make %{?_smp_mflags} -e
+# The Makefile correct expands CFLAGS
+export CFLAGS="%{optflags}"
+make %{?_smp_mflags}
 
 %install
 install -D -m 0755 dds %{buildroot}%{_libdir}/gimp/2.0/plug-ins/dds

++ gimp-dds-2.2.1.tar.bz2 -> gimp-dds-3.0.1.tar.bz2 ++
 6869 lines of diff (skipped)

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



commit glabels for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package glabels for openSUSE:Factory checked 
in at 2013-12-26 17:37:11

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


Package is "glabels"

Changes:

--- /work/SRC/openSUSE:Factory/glabels/glabels.changes  2013-08-16 
12:21:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.glabels.new/glabels.changes 2013-12-26 
17:37:13.0 +0100
@@ -1,0 +2,17 @@
+Mon Dec 23 22:23:59 UTC 2013 - dims...@opensuse.org
+
+- Update to version 3.2.0:
+  + Fixed bug causing object editor to remain active after object
+deleted.
+  + Embed text directly to printsrteam rather than outline.
+  + Added workaround for pango kerning bug (bgo#700592).
+  + Fixed many gtk+ deprecations.
+  + Document updates.
+  + Additional templates and fixes.
+  + Updated to workaround evolution-data-server API breakage.
+  + Fixed desktop file validation problems.
+  + Updated translations.
+- Drop glabels-eds-3.6.patch: fixed upstream.
+- Add itstool BuildRequires: new dependency for building help.
+
+---

Old:

  glabels-3.0.1.tar.xz
  glabels-eds-3.6.patch

New:

  glabels-3.2.0.tar.xz



Other differences:
--
++ glabels.spec ++
--- /var/tmp/diff_new_pack.azbCOr/_old  2013-12-26 17:37:14.0 +0100
+++ /var/tmp/diff_new_pack.azbCOr/_new  2013-12-26 17:37:14.0 +0100
@@ -17,18 +17,17 @@
 
 
 Name:   glabels
-Version:3.0.1
+Version:3.2.0
 Release:0
 Summary:Label Editing and Printing Tool
 License:GPL-3.0+
 Group:  Productivity/Office/Other
 Url:http://glabels.sourceforge.net/
-Source: 
http://download.gnome.org/sources/glabels/3.0/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM glabels-eds-3.6.patch bgo#685130 dims...@opensuse.org -- 
Fix build with evolution-data-server 3.6
-Patch0: glabels-eds-3.6.patch
+Source: 
http://download.gnome.org/sources/glabels/3.2/%{name}-%{version}.tar.xz
 BuildRequires:  barcode-devel
 BuildRequires:  fdupes
 BuildRequires:  intltool
+BuildRequires:  itstool
 BuildRequires:  qrencode-devel
 # We need the %%mime_database_* macros
 BuildRequires:  shared-mime-info
@@ -67,12 +66,10 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
 translation-update-upstream
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"
-# FIXME: Build as root modifies system!
 %configure\
 --disable-static
 make %{?_smp_mflags}
@@ -101,19 +98,18 @@
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING README TODO
-%dir %{_datadir}/gnome/
-%dir %{_datadir}/gnome/help/
-%dir %{_datadir}/gnome/help/%{name}-3.0/
-%doc %{_datadir}/gnome/help/%{name}-3.0/C/
+%doc %{_datadir}/help/C/glabels-3.0/
 %{_bindir}/*
 %{_libdir}/*.so.*
+%dir %{_datadir}/appdata
+%{_datadir}/appdata/glabels-3.appdata.xml
 %{_datadir}/applications/*.desktop
 %{_datadir}/glabels-3.0/
 %{_datadir}/libglabels-3.0/
 %{_datadir}/glib-2.0/schemas/org.gnome.glabels-3.gschema.xml
 %{_datadir}/mime/packages/glabels-3.0.xml
-%{_datadir}/icons/hicolor/*/apps/glabels-3.0.png
-%{_datadir}/icons/hicolor/*/mimetypes/application-x-glabels.png
+%{_datadir}/icons/hicolor/*/apps/glabels-3.0.*
+%{_datadir}/icons/hicolor/*/mimetypes/application-x-glabels.*
 %doc %{_mandir}/man?/*.*
 
 %files devel

++ glabels-3.0.1.tar.xz -> glabels-3.2.0.tar.xz ++
 114369 lines of diff (skipped)

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



commit gnome-commander for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package gnome-commander for openSUSE:Factory 
checked in at 2013-12-26 17:37:52

Comparing /work/SRC/openSUSE:Factory/gnome-commander (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-commander.new (New)


Package is "gnome-commander"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-commander/gnome-commander.changes  
2013-08-01 15:35:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-commander.new/gnome-commander.changes 
2013-12-26 17:37:54.0 +0100
@@ -1,0 +2,15 @@
+Mon Dec 23 19:28:20 UTC 2013 - dims...@opensuse.org
+
+- Update to version 1.2.8.16:
+  + Fix for gcc-4.7 compiling problem.
+  + Fix build with newer poppler versions (bgo#676303, bgo#705724).
+  + Updated translations.
+- Drop gnome-commander-gcc47.patch, gnome-commander-glib236.patch,
+  gnome-commander-libgsf.patch and
+  gnome-commander-poppler020.patch: fixed upstream.
+- Drop libtool BuildRequires and call to autoreconf, as we don't
+  carry any patches anymore.
+- Minor spec file cleanup (using spec-cleaner) and drop obsolete
+  FIXME comment.
+
+---

Old:

  gnome-commander-1.2.8.15.tar.xz
  gnome-commander-gcc47.patch
  gnome-commander-glib236.patch
  gnome-commander-libgsf.patch
  gnome-commander-poppler020.patch

New:

  gnome-commander-1.2.8.16.tar.xz



Other differences:
--
++ gnome-commander.spec ++
--- /var/tmp/diff_new_pack.5hpiKE/_old  2013-12-26 17:37:55.0 +0100
+++ /var/tmp/diff_new_pack.5hpiKE/_new  2013-12-26 17:37:55.0 +0100
@@ -17,21 +17,13 @@
 
 
 Name:   gnome-commander
-Version:1.2.8.15
+Version:1.2.8.16
 Release:0
 Summary:Nice and Fast File Manager for the GNOME Desktop
 License:GPL-2.0+
 Group:  Productivity/File utilities
 Url:http://www.nongnu.org/gcmd/
 Source: 
http://download.gnome.org/sources/gnome-commander/1.2/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM gnome-commander-gcc47.patch dims...@opensuse.org -- Fix 
build with gcc 4.7. Taken from git, commit a8cf386.
-Patch0: gnome-commander-gcc47.patch
-# PATCH-FIX-UPSTREAM gnome-commander-poppler020.patch bgo#676303 
dims...@opensuse.org -- Fix build with poppler 0.20.
-Patch1: gnome-commander-poppler020.patch
-# PATCH-FIX-UPSTREAM gnome-commander-libgsf.patch bgo#696227 
dims...@opensuse.org -- Fix build with libgsf 1.14.26.
-Patch2: gnome-commander-libgsf.patch
-# PATCH-FIX-UPSTREAM gnome-commander-glib236.patch dims...@opensuse.org -- Fix 
build with glib 2.36, patch inspired by git.
-Patch3: gnome-commander-glib236.patch
 BuildRequires:  chmlib-devel
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -41,8 +33,6 @@
 BuildRequires:  libgnomeui-devel
 BuildRequires:  libgsf-devel
 BuildRequires:  libpoppler-devel
-# Needed by patch1
-BuildRequires:  libtool
 BuildRequires:  libxslt
 BuildRequires:  python-devel
 BuildRequires:  taglib-devel
@@ -61,23 +51,16 @@
 %lang_package
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
 translation-update-upstream
 
 %build
-# Needed by patch1
-autoreconf -fi
-# FIXME: C/gnome-commander.xml:*: parser error : Entity '*' not defined
 %configure\
--disable-static\
--disable-scrollkeeper
-%__make %{?_smp_mflags}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 find %{buildroot}%{_libdir} -name '*.la' -delete -print
 %suse_update_desktop_file gnome-commander
 # Change sr@Latn to sr@latin

++ gnome-commander-1.2.8.15.tar.xz -> gnome-commander-1.2.8.16.tar.xz ++
 190382 lines of diff (skipped)

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



commit deja-dup for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package deja-dup for openSUSE:Factory 
checked in at 2013-12-26 17:36:41

Comparing /work/SRC/openSUSE:Factory/deja-dup (Old)
 and  /work/SRC/openSUSE:Factory/.deja-dup.new (New)


Package is "deja-dup"

Changes:

--- /work/SRC/openSUSE:Factory/deja-dup/deja-dup.changes2013-10-06 
19:32:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.deja-dup.new/deja-dup.changes   2013-12-26 
17:36:42.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec 24 21:06:08 UTC 2013 - dims...@opensuse.org
+
+- Add deja-dup-vala-0.22.patch: Support building against vala
+  0.22; taken from deja-dup 30 branch.
+
+---

New:

  deja-dup-vala-0.22.patch



Other differences:
--
++ deja-dup.spec ++
--- /var/tmp/diff_new_pack.OovJ2c/_old  2013-12-26 17:36:42.0 +0100
+++ /var/tmp/diff_new_pack.OovJ2c/_new  2013-12-26 17:36:42.0 +0100
@@ -25,6 +25,8 @@
 Group:  Productivity/Archiving/Backup
 Url:https://launchpad.net/deja-dup
 Source0:
https://launchpad.net/deja-dup/28/%{version}/+download/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM deja-dup-vala-0.22.patch dims...@opensuse.org -- Fix 
build with Vala 0.22, taken from launchpad.
+Patch0: deja-dup-vala-0.22.patch
 # For make check to work, we need dbus-launch
 BuildRequires:  dbus-1-x11
 BuildRequires:  fdupes
@@ -80,6 +82,7 @@
 %lang_package
 %prep
 %setup -q
+%patch0 -p0
 
 %build
 %configure --disable-static

++ deja-dup-vala-0.22.patch ++
=== modified file 'CMakeLists.txt'
Index: deja-dup/widgets/WidgetUtils.vala
===
--- deja-dup/widgets/WidgetUtils.vala.orig
+++ deja-dup/widgets/WidgetUtils.vala
@@ -19,6 +19,10 @@
 
 using GLib;
 
+// vala 0.22.1 changed the prototype for Notify.get_server_caps.
+// Rather than require that specific version, use 0.22.1's definition directly.
+extern GLib.List notify_get_server_caps();
+
 namespace DejaDup {
 
 public void show_uri(Gtk.Window parent, string link)
@@ -60,7 +64,7 @@ public ShellEnv get_shell()
   // Use Legacy unless we detect a different shell.
   shell = ShellEnv.LEGACY;
   // Next check for Shell by notification capabilities
-  unowned List caps = Notify.get_server_caps();
+  List caps = notify_get_server_caps();
   bool persistence = false, actions = false;
   foreach (string cap in caps) {
 if (cap == "persistence")
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gd for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package gd for openSUSE:Factory checked in 
at 2013-12-26 17:36:49

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


Package is "gd"

Changes:

--- /work/SRC/openSUSE:Factory/gd/gd.changes2013-02-04 20:12:24.0 
+0100
+++ /work/SRC/openSUSE:Factory/.gd.new/gd.changes   2013-12-26 
17:36:50.0 +0100
@@ -1,0 +2,8 @@
+Tue Dec 17 14:30:38 UTC 2013 - pgaj...@suse.com
+
+- updated to 2.1.0
+- removed warn.patch (not needed)
+- removed ppc64.patch (upstreamed)
+- removed gd-png_check_sig.patch (upstreamed)
+
+---

Old:

  gd-2.0.36.RC1-ppc64.patch
  gd-2.0.36.RC1.tar.bz2
  gd-2.0.36RC1-config.patch
  gd-2.0.36RC1-warn.patch
  gd-png_check_sig.patch

New:

  gd-config.patch
  libgd-2.1.0.tar.xz



Other differences:
--
++ gd.spec ++
--- /var/tmp/diff_new_pack.ThsNnv/_old  2013-12-26 17:36:51.0 +0100
+++ /var/tmp/diff_new_pack.ThsNnv/_new  2013-12-26 17:36:51.0 +0100
@@ -16,48 +16,47 @@
 #
 
 
+%define prjname libgd
+
 Name:   gd
+BuildRequires:  cmake
 BuildRequires:  fontconfig-devel
 BuildRequires:  freetype2-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libpng-devel
 BuildRequires:  libtool
+BuildRequires:  pkg-config
 BuildRequires:  xorg-x11-libX11-devel
 BuildRequires:  xorg-x11-libXau-devel
 BuildRequires:  xorg-x11-libXdmcp-devel
 BuildRequires:  xorg-x11-libXpm-devel
 Provides:   gdlib
 Obsoletes:  gdlib
-Version:2.0.36.RC1
+Version:2.1.0
 Release:0
-Url:http://www.libgd.org/
+Url:http://libgd.bitbucket.org/
 Summary:A Drawing Library for Programs That Use PNG and JPEG Output
 License:MIT
 Group:  System/Libraries
-Source: gd-%{version}.tar.bz2
+Source: 
https://bitbucket.org/libgd/gd-libgd/downloads/libgd-%{version}.tar.xz
 Source1:baselibs.conf
-Patch0: gd-2.0.36RC1-warn.patch
-#Patch1: gd-CAN-2004-0941.patch
+# to be upstreamed, gdlib-config --libs to return the same as pkg-config 
--libs gdlib
+Patch0: gd-config.patch
+# might be upstreamed, but could be suse specific also (/usr/share/fonts/Type1 
font dir)
+Patch1: gd-fontpath.patch
+# could be upstreamed, but not in this form (need ac check for attribute 
format printf, etc.)
 Patch2: gd-format.patch
+# could be upstreamed
 Patch3: gd-aliasing.patch
-Patch6: gd-fontpath.patch
-Patch7: gd-2.0.36RC1-config.patch
-Patch8: gd-2.0.36.RC1-ppc64.patch
-Patch9: gd-png_check_sig.patch
-Patch10:gd-autoconf.patch
+# could be upstreamed?
+Patch4: gd-autoconf.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Gd allows your code to quickly draw images complete with lines, arcs,
 text, and multiple colors. It supports cut and paste from other images
 and flood fills. It outputs PNG, JPEG, and WBMP (for wireless devices)
-and is supported by PHP4.
-
-
-
-Authors:
-
-Thomas Boutell 
+and is supported by PHP.
 
 %package devel
 Requires:   %{name} = %{version}
@@ -76,20 +75,13 @@
 
 
 
-Authors:
-
-Thomas Boutell 
-
 %prep
-%setup -q
-#%patch0
-%patch2 -p1
+%setup -q -n %{prjname}-%{version}
+%patch0
+%patch1
+%patch2
 %patch3
-%patch6
-%patch7
-%patch8
-%patch9
-%patch10
+%patch4
 %build
 autoreconf -fiv
 %configure \
@@ -102,21 +94,7 @@
 make %{?_smp_mflags}
 
 %check
-export MALLOC_CHECK_=2 MALLOC_PERTURB_=$((${RANDOM:-256} % 256))
-#run test programs
-cp test/gdtest_wbmp_to_png.png gdtest.png
-./gdtest gdtest.png  2>&1 |tee gdtest.log
-grep ERROR gdtest.log && exit 1
-./gdtest demoin.png  2>&1 |tee gdtest.log
-# wbmp test fails on color image, this is OK
-grep -v "gdtest.png, gdtest.wbmp.*ERROR" gdtest.log | grep ERROR && exit 1 
-./gddemo
-# The following would require xorg-x11-fonts-scalable which we do not like to 
have as requirement
-# so disable it.
-#for f in `find /usr/share/fonts/truetype /usr/X11R6/lib/X11/fonts/truetype 
-name "*.ttf"` ; do
-#./gdtestft $f
-#done
-unset MALLOC_CHECK_ MALLOC_PERTURB_
+make check
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT
@@ -127,7 +105,7 @@
 
 %files
 %defattr(-,root,root)
-%doc COPYING README* index.html
+%doc COPYING NEWS examples
 /usr/bin/annotate
 /usr/bin/bdftogd
 /usr/bin/gd2copypal
@@ -147,6 +125,7 @@
 %{_bindir}/gdlib-config
 %{_includedir}/*
 %{_libdir}/*.so
+%{_libdir}/pkgconfig/gdlib.pc
 %exclude %{_libdir}/*.la
 
 %changelog

++ gd-aliasing.patch ++
--- /var/tmp/diff_new_pack.ThsNnv/_old  2013-12-26 17:36:51.0 +0100
+++ /var/tmp/diff_new_pack.ThsNnv/_new  2013-12

commit gedit-code-assistance for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package gedit-code-assistance for 
openSUSE:Factory checked in at 2013-12-26 17:36:55

Comparing /work/SRC/openSUSE:Factory/gedit-code-assistance (Old)
 and  /work/SRC/openSUSE:Factory/.gedit-code-assistance.new (New)


Package is "gedit-code-assistance"

Changes:

--- 
/work/SRC/openSUSE:Factory/gedit-code-assistance/gedit-code-assistance.changes  
2013-07-31 17:25:32.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gedit-code-assistance.new/gedit-code-assistance.changes
 2013-12-26 17:36:56.0 +0100
@@ -1,0 +2,18 @@
+Tue Dec 17 20:13:34 UTC 2013 - zai...@opensuse.org
+
+- Update to version 0.3.0:
+  + This release issues a major change in how gedit-code-assistance
+works. The code-assistance backends have been refactored as
+out-of-process dbus services in a new project called
+gnome-code-assistance. The gedit-code-assistance project now
+uses gnome-code-assistance services to provide code assistance
+for gedit as a plugin.
+- Drop fdupes, pkgconfig(pygobject-3.0) and pkgconfig(libpeas-1.0)
+  BuildRequires, not needed any more.
+- Exchange pkgconfig(gee-1.0) for pkgconfig(gee-0.8) BuildRequires,
+  following upstreams port to gee-0.8.
+- Drop subpackages typelib-1_0-Gcp-3_0 and
+  gedit-code-assistance-devel, not built anymore.
+- Add gnome-code-assistance BuildRequires, new dependency.
+
+---

Old:

  gedit-code-assistance-0.2.0.tar.xz

New:

  gedit-code-assistance-0.3.0.tar.xz



Other differences:
--
++ gedit-code-assistance.spec ++
--- /var/tmp/diff_new_pack.AsZUpJ/_old  2013-12-26 17:36:57.0 +0100
+++ /var/tmp/diff_new_pack.AsZUpJ/_new  2013-12-26 17:36:57.0 +0100
@@ -17,21 +17,19 @@
 
 
 Name:   gedit-code-assistance
-Version:0.2.0
+Version:0.3.0
 Release:0
 Summary:Plugin for gedit which provides code assistance for C, C++ and 
Objective-C
 License:GPL-3.0+
 Group:  Productivity/Text/Editors
 Url:http://git.gnome.org/browse/gedit-code-assistance
-Source: 
http://download.gnome.org/sources/gedit-code-assistance/0.2/%{name}-%{version}.tar.xz
-BuildRequires:  fdupes
+Source: 
http://download.gnome.org/sources/gedit-code-assistance/0.3/%{name}-%{version}.tar.xz
 BuildRequires:  llvm-clang-devel >= 2.8
 BuildRequires:  llvm-devel >= 2.8
 BuildRequires:  vala
-BuildRequires:  pkgconfig(gedit) >= 3.7.6
-BuildRequires:  pkgconfig(gee-1.0)
-BuildRequires:  pkgconfig(libpeas-1.0) >= 1.5
-BuildRequires:  pkgconfig(pygobject-3.0)
+BuildRequires:  pkgconfig(gedit) >= 3.8
+BuildRequires:  pkgconfig(gee-0.8)
+BuildRequires:  gnome-code-assistance
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -48,27 +46,6 @@
 gedit-code-assistance is a plugin for gedit which provides code
 assistance for C, C++ and Objective-C by utilizing clang.
 
-%package -n typelib-1_0-Gcp-3_0
-Summary:Files to compile backends for gedit-code-asistance - 
Introspection bindings
-Group:  System/Libraries
-
-%description -n typelib-1_0-Gcp-3_0
-gedit-code-assistance is a plugin for gedit which provides code
-assistance for C, C++ and Objective-C by utilizing clang.
-
-This package provides the GObject Introspection bindings for the
-gedit-plugin-code-assistance backend plugins.
-
-%package -n gedit-code-assistance-devel
-Summary:Files to compile backends for gedit-code-asistance
-Group:  Development/Libraries/GNOME
-Requires:   %{name} = %{version}
-Requires:   typelib-1_0-Gcp-3_0 = %{version}
-
-%description -n gedit-code-assistance-devel
-gedit-code-assistance-devel contains the files required to compile
-backends using gedit-code-assistance.
-
 %prep
 %setup -q
 
@@ -79,38 +56,14 @@
 
 %install
 %make_install
-%fdupes %{buildroot}%{_libdir}/gedit/plugins/gcp/backends/
 find %{buildroot}%{_libdir}/gedit/plugins/ -type f -name "*.la" -delete -print
 
 %files -n gedit-plugin-code-assistance
 %defattr(-,root,root)
 %doc AUTHORS ChangeLog COPYING README
-%{_libdir}/gedit/plugins/gcp.plugin
-%{_libdir}/gedit/plugins/libgcp.so
-%{_datadir}/gedit/plugins/gcp/gcp.css
-%dir %{_libdir}/gedit/plugins/gcp
-%dir %{_libdir}/gedit/plugins/gcp/backends
-%{_libdir}/gedit/plugins/gcp/backends/gcpbackendc.plugin
-%{_libdir}/gedit/plugins/gcp/backends/libgcpbackendc.so
-%dir %{_libdir}/gedit/plugins/gcp/backends/gcpbackendpython
-%{_libdir}/gedit/plugins/gcp/backends/gcpbackendpython.plugin
-%{_libdir}/gedit/plugins/gcp/backends/gcpbackendpython/*.p*
-%dir %{_libdir}/gedit/plugins/gcp/backends/gcpbackendxml
-%{_libdir}/gedit/plugins/gcp/backends/gcpbackendxml.plugin
-%{_libdir}/gedit/plugins/gcp/

commit cherrytree for openSUSE:Factory

2013-12-26 Thread h_root
Hello community,

here is the log from the commit of package cherrytree for openSUSE:Factory 
checked in at 2013-12-26 17:36:31

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


Package is "cherrytree"

Changes:

--- /work/SRC/openSUSE:Factory/cherrytree/cherrytree.changes2013-09-02 
17:03:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.cherrytree.new/cherrytree.changes   
2013-12-26 17:36:32.0 +0100
@@ -1,0 +2,47 @@
+Tue Dec 24 18:23:57 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.31.5:
+  + Fixed bug in pasting data from clipboard.
+  + Opening a new file from menu it done again in current instance
+(restored old behavior).
+  + Bugfix: in links dialog the latest selected node was not
+selected by default anymore.
+- Changes from version 0.31.4:
+  + Bugfix: cannot change foreground and background color.
+  + Bugfix: row wrongly recognized as a list row after pressing
+enter.
+  + Updated PowerShell syntax highlighting.
+- Changes from version 0.31.3:
+  + Updated translations.
+- Changes from version 0.31.2:
+  + Bugfix: cannot open document if option to reload latest
+document at startup is disabled.
+- Changes from version 0.31.1:
+  + Bugfix: cannot change node type from rich text to automatic
+syntax highlighting.
+  + Bugfix: import from zim errors.
+- Changes from version 0.31.0:
+  + Added import from one plain text file or a folder of plain text
+files.
+  + Added direct export to pdf without going through the print
+dialog, working also in windows without need of installing
+software that creates pdf.
+  + Improved the todo lists using different chars (automatic
+conversion) and three states like zim-wiki (not done, done ok
+and done fail).
+  + Added function to strip trailing spaces in code nodes (from
+right click menu).
+  + Ctrl+Shift+E to expand all nodes, Ctrl+Shift+L to collapse all
+nodes.
+  + When opening new file or starting a new empty file will do it
+on a new window if the current is not empty.
+  + Right click on a link lets you choose to edit/cut/copy/dismiss/
+delete the underlying link.
+  + It is now possible to insert a link if no text is selected, the
+link name will be asked in this case.
+  + Added line num column in search all matches list dialog.
+  + Added syntax highlighting for PowerShell.
+  + Fixed bugs.
+  + updated translations.
+
+---

Old:

  cherrytree-0.30.5.tar.xz

New:

  cherrytree-0.31.5.tar.xz



Other differences:
--
++ cherrytree.spec ++
--- /var/tmp/diff_new_pack.AcEbB6/_old  2013-12-26 17:36:33.0 +0100
+++ /var/tmp/diff_new_pack.AcEbB6/_new  2013-12-26 17:36:33.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   cherrytree
-Version:0.30.5
+Version:0.31.5
 Release:0
 Summary:A hierarchical note taking application
 License:GPL-3.0+

++ cherrytree-0.30.5.tar.xz -> cherrytree-0.31.5.tar.xz ++
 292983 lines of diff (skipped)

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