commit libchipcard for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package libchipcard for openSUSE:Factory 
checked in at 2014-02-24 10:02:34

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


Package is libchipcard

Changes:

--- /work/SRC/openSUSE:Factory/libchipcard/libchipcard.changes  2011-09-23 
02:07:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.libchipcard.new/libchipcard.changes 
2014-02-24 10:02:36.0 +0100
@@ -1,0 +2,5 @@
+Sun Feb 23 19:45:27 UTC 2014 - zai...@opensuse.org
+
+- Own dirs to fix build for 13.2 and newer.
+
+---



Other differences:
--
++ libchipcard.spec ++
--- /var/tmp/diff_new_pack.x0d8xY/_old  2014-02-24 10:02:36.0 +0100
+++ /var/tmp/diff_new_pack.x0d8xY/_new  2014-02-24 10:02:36.0 +0100
@@ -115,6 +115,10 @@
 %{_bindir}/*
 %exclude %{_bindir}/*-config
 %{_datadir}/chipcard
+# Own dirs to fix build.
+%dir %{_libdir}/gwenhywfar/
+%dir %{_libdir}/gwenhywfar/plugins/
+%dir %{_libdir}/gwenhywfar/plugins/60
 %{_libdir}/gwenhywfar/plugins/60/ct
 %config %{_sysconfdir}/chipcard
 

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



commit tmux for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package tmux for openSUSE:Factory checked in 
at 2014-02-24 10:02:45

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


Package is tmux

Changes:

--- /work/SRC/openSUSE:Factory/tmux/tmux.changes2014-02-21 
14:26:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.tmux.new/tmux.changes   2014-02-24 
10:02:48.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb 23 22:28:14 UTC 2014 - g...@opensuse.org
+
+- update to version 1.9a
+  - Fix crash due to uninitialized lastwp member of layout_cell
+  - Fix -fg/-bg/-style with 256 colour terminals.
+
+---

Old:

  tmux-1.9.tar.gz

New:

  tmux-1.9a.tar.gz



Other differences:
--
++ tmux.spec ++
--- /var/tmp/diff_new_pack.A5Qu1W/_old  2014-02-24 10:02:49.0 +0100
+++ /var/tmp/diff_new_pack.A5Qu1W/_new  2014-02-24 10:02:49.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   tmux
-Version:1.9
+Version:1.9a
 Release:0
 Summary:Terminal multiplexer
 License:ISC and BSD-3-Clause and BSD-2-Clause
@@ -43,7 +43,6 @@
 
 %prep
 %setup -q
-rm compat/*.o
 
 %build
 export CFLAGS=%{optflags} -fno-strict-aliasing

++ tmux-1.9.tar.gz - tmux-1.9a.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tmux-1.9/CHANGES new/tmux-1.9a/CHANGES
--- old/tmux-1.9/CHANGES2014-02-20 22:27:17.0 +0100
+++ new/tmux-1.9a/CHANGES   2014-02-22 21:52:50.0 +0100
@@ -1,3 +1,14 @@
+CHANGES FROM 1.9 to 1.9a 22 February 2014
+
+NOTE:  This is a bug-fix release to address some important bugs which just
+missed the 1.9 deadline, but were found afterwards.
+
+Normal Changes
+==
+
+* Fix crash due to uninitialized lastwp member of layout_cell
+* Fix -fg/-bg/-style with 256 colour terminals.  
+
 CHANGES FROM 1.8 to 1.9, 20 February 2014
 
 NOTE:  This release has bumped the tmux protocol version.  It is therefore
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tmux-1.9/FAQ new/tmux-1.9a/FAQ
--- old/tmux-1.9/FAQ2014-02-16 23:59:59.0 +0100
+++ new/tmux-1.9a/FAQ   2014-02-22 21:48:37.0 +0100
@@ -238,6 +238,31 @@
 
 vim users may also want to set the ttyfast option inside tmux.
 
+* How do I make ctrl and shift arrow keys work in emacs?
+
+The terminal-init-screen function in term/screen.el is called for new frames,
+but it doesn't configure any function keys.
+
+If the tmux xterm-keys option is on, it is enough to define the same keys as
+xterm. Add the following to init.el or .emacs to do this:
+
+(defadvice terminal-init-screen
+  ;; The advice is named `tmux', and is run before `terminal-init-screen' runs.
+  (before tmux activate)
+  ;; Docstring.  This describes the advice and is made available inside emacs;
+  ;; for example when doing C-h f terminal-init-screen RET
+  Apply xterm keymap, allowing use of keys passed through tmux.
+  ;; This is the elisp code that is run before `terminal-init-screen'.
+  (if (getenv TMUX)
+(let ((map (copy-keymap xterm-function-map)))
+(set-keymap-parent map (keymap-parent input-decode-map))
+(set-keymap-parent input-decode-map map
+
+And ensure .tmux.conf contains set -g xterm-keys on.
+
+Alternatively, the screen.el file can be copied to the load path and
+customized.
+
 * Why doesn't elinks set the window title inside tmux?
 
 There isn't a way to detect if a terminal supports setting the window title, so
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tmux-1.9/Makefile.am new/tmux-1.9a/Makefile.am
--- old/tmux-1.9/Makefile.am2014-02-16 23:59:59.0 +0100
+++ new/tmux-1.9a/Makefile.am   2014-02-22 21:48:37.0 +0100
@@ -9,6 +9,7 @@
CHANGES FAQ README TODO COPYING examples compat \
array.h compat.h tmux.h osdep-*.c mdoc2man.awk tmux.1
 dist-hook:
+   make clean
grep ^#found_debug= configure
find $(distdir) -name .svn -type d|xargs rm -Rf
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tmux-1.9/Makefile.in new/tmux-1.9a/Makefile.in
--- old/tmux-1.9/Makefile.in2014-02-20 22:33:33.0 +0100
+++ new/tmux-1.9a/Makefile.in   2014-02-22 21:56:13.0 +0100
@@ -1211,6 +1211,7 @@
uninstall-am uninstall-binPROGRAMS
 
 dist-hook:
+   make clean
grep ^#found_debug= configure
find $(distdir) -name .svn -type d|xargs rm -Rf
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tmux-1.9/TODO new/tmux-1.9a/TODO
--- 

commit MozillaFirefox for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package MozillaFirefox for openSUSE:Factory 
checked in at 2014-02-24 10:02:38

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


Package is MozillaFirefox

Changes:

--- /work/SRC/openSUSE:Factory/MozillaFirefox/MozillaFirefox.changes
2014-02-05 16:23:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.MozillaFirefox.new/MozillaFirefox.changes   
2014-02-24 10:02:40.0 +0100
@@ -1,0 +2,10 @@
+Mon Feb 17 11:59:28 UTC 2014 - w...@rosenauer.org
+
+- update to Firefox 27.0.1
+  * Fixed stability issues with Greasemonkey and other JS that used
+ClearTimeoutOrInterval
+  * JS math correctness issue (bnc#941381)
+- incorporate Google API key for geolocation (bnc#864170)
+- updated list of other locales in RPM requirements
+
+---

Old:

  firefox-27.0-source.tar.xz
  l10n-27.0.tar.xz

New:

  firefox-27.0.1-source.tar.xz
  l10n-27.0.1.tar.xz



Other differences:
--
++ MozillaFirefox.spec ++
--- /var/tmp/diff_new_pack.ziHrsI/_old  2014-02-24 10:02:48.0 +0100
+++ /var/tmp/diff_new_pack.ziHrsI/_new  2014-02-24 10:02:48.0 +0100
@@ -18,7 +18,7 @@
 
 
 %define major 27
-%define mainver %major.0
+%define mainver %major.0.1
 %define update_channel release
 
 %if %suse_version  1220
@@ -63,7 +63,7 @@
 %endif
 Version:%{mainver}
 Release:0
-%define releasedate 2014012800
+%define releasedate 2014021500
 Provides:   firefox = %{mainver}
 Provides:   firefox = %{version}-%{release}
 Provides:   web_browser
@@ -140,6 +140,10 @@
 %define desktop_file_name %{name}
 %endif
 ### build options
+# Set up Google API keys, see 
http://www.chromium.org/developers/how-tos/api-keys
+# Note: these are for the openSUSE Firefox builds ONLY. For your own 
distribution,
+# please get your own set of keys.
+%define _google_api_key AIzaSyD1hTe85_a14kr1Ks8T3Ce75rvbR1_Dx7Q
 %define branding 1
 %define localize 1
 %ifarch ppc ppc64 ppc64le s390 s390x ia64 %arm
@@ -181,7 +185,7 @@
 %package translations-other
 Summary:Extra translations for Firefox
 Group:  System/Localization
-Provides:   
locale(%{name}:ach;af;ak;as;ast;be;bg;bn_BD;bn_IN;br;bs;csb;cy;en_ZA;eo;es_MX;et;eu;fa;ff;fy_NL;ga_IE;gd;gl;gu_IN;he;hi_IN;hr;hy_AM;id;is;kk;km;kn;ku;lg;lij;lt;lv;mai;mk;ml;mr;nn_NO;nso;or;pa_IN;rm;ro;si;sk;sl;son;sq;sr;ta;ta_LK;te;th;tr;uk;vi;zu)
+Provides:   
locale(%{name}:ach;af;an;as;ast;be;bg;bn_BD;bn_IN;br;bs;csb;cy;en_ZA;eo;es_MX;et;eu;fa;ff;fy_NL;ga_IE;gd;gl;gu_IN;he;hi_IN;hr;hy_AM;id;is;kk;km;kn;ku;lij;lt;lv;mai;mk;ml;mr;nn_NO;or;pa_IN;rm;ro;si;sk;sl;son;sq;sr;ta;te;th;tr;uk;vi;xh;zu
 Requires:   %{name} = %{version}
 Obsoletes:  %{name}-translations  %{version}-%{release}
 
@@ -275,6 +279,7 @@
 export MOZILLA_OFFICIAL=1
 export BUILD_OFFICIAL=1
 export MOZ_TELEMETRY_REPORTING=1
+export MOZ_GOOGLE_API_KEY=%{_google_api_key}
 export CFLAGS=$RPM_OPT_FLAGS -Os -fno-strict-aliasing
 %ifarch %arm
 export CFLAGS=${CFLAGS/-g / }


++ compare-locales.tar.xz ++

++ create-tar.sh ++
--- /var/tmp/diff_new_pack.ziHrsI/_old  2014-02-24 10:02:48.0 +0100
+++ /var/tmp/diff_new_pack.ziHrsI/_new  2014-02-24 10:02:48.0 +0100
@@ -2,8 +2,8 @@
 
 CHANNEL=release
 BRANCH=releases/mozilla-$CHANNEL
-RELEASE_TAG=FIREFOX_27_0_RELEASE
-VERSION=27.0
+RELEASE_TAG=FIREFOX_27_0_1_RELEASE
+VERSION=27.0.1
 
 # mozilla
 if [ -d mozilla ]; then

++ firefox-27.0-source.tar.xz - firefox-27.0.1-source.tar.xz ++
/work/SRC/openSUSE:Factory/MozillaFirefox/firefox-27.0-source.tar.xz 
/work/SRC/openSUSE:Factory/.MozillaFirefox.new/firefox-27.0.1-source.tar.xz 
differ: char 26, line 1


++ l10n-27.0.tar.xz - l10n-27.0.1.tar.xz ++
/work/SRC/openSUSE:Factory/MozillaFirefox/l10n-27.0.tar.xz 
/work/SRC/openSUSE:Factory/.MozillaFirefox.new/l10n-27.0.1.tar.xz differ: char 
25, line 1

++ source-stamp.txt ++
--- /var/tmp/diff_new_pack.ziHrsI/_old  2014-02-24 10:02:48.0 +0100
+++ /var/tmp/diff_new_pack.ziHrsI/_new  2014-02-24 10:02:48.0 +0100
@@ -1,2 +1,2 @@
-REV=b8896fee530d
+REV=0414e679f2ab
 REPO=http://hg.mozilla.org/releases/mozilla-release

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



commit e_dbus for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package e_dbus for openSUSE:Factory checked 
in at 2014-02-24 10:02:28

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


Package is e_dbus

Changes:

--- /work/SRC/openSUSE:Factory/e_dbus/e_dbus.changes2013-10-20 
10:50:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.e_dbus.new/e_dbus.changes   2014-02-24 
10:02:29.0 +0100
@@ -1,0 +2,23 @@
+Thu Dec 19 08:44:23 UTC 2013 - sleep_wal...@suse.cz
+
+- change to pkgconfig based dependencies
+- add note to doc package that e_dbus is deprecated
+- beautify the spec a bit
+
+---
+Fri Dec 13 20:25:26 UTC 2013 - sleep_wal...@suse.cz
+
+- bump to 1.7.10 pre-release
+
+---
+Sun Dec  1 01:07:35 UTC 2013 - si...@simotek.net
+
+- Build against efl 1.8.0 apparently e17 still wants this
+
+---
+Fri Nov  1 14:15:31 UTC 2013 - sleep_wal...@suse.cz
+
+- version bump to 1.7.9
+  No changes, just updating to keep in sync with lastest release.
+
+---

Old:

  e_dbus-1.7.8.tar.bz2

New:

  e_dbus-1.7.10.tar.bz2



Other differences:
--
++ e_dbus.spec ++
--- /var/tmp/diff_new_pack.wiIi47/_old  2014-02-24 10:02:29.0 +0100
+++ /var/tmp/diff_new_pack.wiIi47/_new  2014-02-24 10:02:29.0 +0100
@@ -17,19 +17,22 @@
 
 
 Name:   e_dbus
-Version:1.7.8
+Version:1.7.10
 Release:0
 Summary:Dbus wrapping and glue layer library
 License:BSD-2-Clause
 Group:  System/Libraries
 Url:http://enlightenment.org/
 Source: %{name}-%{version}.tar.bz2
-BuildRequires:  dbus-1-devel
 BuildRequires:  doxygen
-BuildRequires:  ecore-devel = %{version}
-BuildRequires:  eina-devel = %{version}
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(dbus-1) = 0.62
+BuildRequires:  pkgconfig(ecore)
+BuildRequires:  pkgconfig(ecore-evas)
+BuildRequires:  pkgconfig(eina)
+BuildRequires:  pkgconfig(elementary)
+BuildRequires:  pkgconfig(evas)
 %if 0%{?suse_version}
 BuildRequires:  fdupes
 %endif
@@ -51,10 +54,13 @@
 Summary:E_Dbus development package
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
-Requires:   dbus-1-devel
-Requires:   ecore-devel
-Requires:   eina-devel
 Requires:   libedbus1 = %{version}
+Requires:   pkgconfig(dbus-1)
+Requires:   pkgconfig(ecore)
+Requires:   pkgconfig(ecore-evas)
+Requires:   pkgconfig(eina)
+Requires:   pkgconfig(elementary)
+Requires:   pkgconfig(evas)
 
 %description devel
 Development files for E_Dbus package.
@@ -64,7 +70,9 @@
 Group:  Documentation/HTML
 
 %description doc-html
-Documentation of E_Dbus library in form of HTML pages.
+Documentation of E_Dbus library in form of HTML pages. Note, that there
+already is new EFL dbus library called eldbus, basing your application on
+deprecated library may not be the right choice ;)
 
 %prep
 %setup -q
@@ -81,7 +89,7 @@
 make doc
 
 %install
-make install DESTDIR=%buildroot
+make install DESTDIR=%buildroot %{?_smp_mflags}
 
 # copy documentation manually
 echo Copying HTML documentation

++ e_dbus-1.7.8.tar.bz2 - e_dbus-1.7.10.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/e_dbus-1.7.8/ChangeLog new/e_dbus-1.7.10/ChangeLog
--- old/e_dbus-1.7.8/ChangeLog  2013-08-01 23:31:26.0 +0200
+++ new/e_dbus-1.7.10/ChangeLog 2013-12-04 19:15:50.0 +0100
@@ -129,3 +129,11 @@
 2013-08-02  Eduardo Lima (Etrunko)
 
 * 1.7.8 release
+
+2013-09-10  Eduardo Lima (Etrunko)
+
+* 1.7.9 release
+
+2013-12-05  Eduardo Lima (Etrunko)
+
+* 1.7.10 release
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/e_dbus-1.7.8/NEWS new/e_dbus-1.7.10/NEWS
--- old/e_dbus-1.7.8/NEWS   2013-07-29 17:19:31.0 +0200
+++ new/e_dbus-1.7.10/NEWS  2013-09-10 20:27:59.0 +0200
@@ -1,3 +1,11 @@
+E_dbus 1.7.9
+
+Changes since E_dbus 1.7.8:
+---
+
+No changes, just updating to keep in sync with lastest release.
+
+
 E_dbus 1.7.8
 
 Changes since E_dbus 1.7.7:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/e_dbus-1.7.8/aclocal.m4 new/e_dbus-1.7.10/aclocal.m4
--- old/e_dbus-1.7.8/aclocal.m4 2013-08-01 23:39:46.0 +0200
+++ new/e_dbus-1.7.10/aclocal.m42013-12-04 20:23:53.0 +0100
@@ 

commit e17-branding-openSUSE for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package e17-branding-openSUSE for 
openSUSE:Factory checked in at 2014-02-24 10:59:01

Comparing /work/SRC/openSUSE:Factory/e17-branding-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.e17-branding-openSUSE.new (New)


Package is e17-branding-openSUSE

Changes:

--- 
/work/SRC/openSUSE:Factory/e17-branding-openSUSE/e17-branding-openSUSE.changes  
2013-11-04 08:48:51.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.e17-branding-openSUSE.new/e17-branding-openSUSE.changes
 2014-02-24 10:59:04.0 +0100
@@ -1,0 +2,17 @@
+Tue Feb 18 10:46:01 UTC 2014 - si...@simotek.net
+
+- replace e-* with e17-* 
+  conflicts with enlightenment
+  disable e-theme-recommends until they are pushed to factory
+
+---
+Tue Dec 24 03:34:54 UTC 2013 - si...@simotek.net
+
+- update for terminology
+
+---
+Sun Dec 22 05:42:53 UTC 2013 - si...@simotek.net
+
+- e-theme-openSUSE replaced with e17-theme-openSUSE
+
+---



Other differences:
--
++ e17-branding-openSUSE.spec ++
--- /var/tmp/diff_new_pack.xdglfI/_old  2014-02-24 10:59:05.0 +0100
+++ /var/tmp/diff_new_pack.xdglfI/_new  2014-02-24 10:59:05.0 +0100
@@ -28,16 +28,24 @@
 Provides:   e17-branding = %version
 Supplements:packageand(e17:branding-openSUSE)
 Conflicts:  otherproviders(e17-branding)
-Requires:   e-theme-openSUSE
-Requires:   e-profiles-openSUSE
+Conflicts: otherproviders(enlightenment-branding)
+Requires:   e17-theme-openSUSE
+Requires:   e17-profiles-openSUSE
 #default theme is needed otherwise enlightenment wont start
-Requires:  e-theme-default
-Recommends:e-theme-a-os-agust-v3
-Recommends:e-theme-a-os-black-nostrum
-Recommends:e-theme-a-os-detour
-Recommends:e-theme-a-os-green
-Recommends:e-theme-a-os-miguel-v3
-Recommends:e-theme-a-os-vision-v3
+Requires:  e17-theme-default
+#provides default elementary theme
+Requires:  enlightenment-theme-openSUSE
+# Add back recommends when they are pushed to factory
+#Recommends:   e-theme-a-os-agust-v3
+#Recommends:   e-theme-a-os-black-nostrum
+#Recommends:   e-theme-a-os-detour
+#Recommends:   e-theme-a-os-green
+#Recommends:   e-theme-a-os-miguel-v3
+#Recommends:   e-theme-a-os-vision-v3
+Recommends:enlightenment-theme-dark
+# recommend terminology to make xdg-open look better
+Recommends:terminology
+Conflicts: terminology-theme-upstream
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

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



commit terminology for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package terminology for openSUSE:Factory 
checked in at 2014-02-24 10:58:57

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


Package is terminology

Changes:

--- /work/SRC/openSUSE:Factory/terminology/terminology.changes  2013-11-01 
14:39:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.terminology.new/terminology.changes 
2014-02-24 10:58:58.0 +0100
@@ -1,0 +2,43 @@
+Wed Feb 19 12:19:39 UTC 2014 - si...@simotek.net
+
+- upstream theme that provides terminology-theme-dft now conflicts with
+  other providers
+
+---
+Tue Dec 24 03:25:13 UTC 2013 - si...@simotek.net
+
+- Split themes into separate packages as terminology-theme-openSUSE
+  can provide default.edj
+
+---
+Thu Dec 19 18:58:37 UTC 2013 - sleep_wal...@suse.cz
+
+- use Recommends only for *SUSE as that is SUSE specific RPM spec tag
+
+---
+Mon Dec 16 23:56:43 UTC 2013 - sleep_wal...@suse.cz
+
+- change to use pkgconfig dependencies
+- beautify spec a bit
+
+---
+Sat Dec  7 21:13:01 UTC 2013 - si...@simotek.net
+
+- Version 0.4.0 Release
+   * compress backscroll
+* add audio keyboard
+* text reflow
+* full 256-colors support
+* improve terminal compatibility
+* improve selection
+* add a man page
+* add option to set geometry on start
+* be able to inline edje objects
+* bug fixes
+
+---
+Sat Nov 30 23:33:43 UTC 2013 - si...@simotek.net
+
+- Updated to 0.4.0-alpha4
+
+---

Old:

  terminology-0.3.0.tar.bz2

New:

  terminology-0.4.0.tar.bz2



Other differences:
--
++ terminology.spec ++
--- /var/tmp/diff_new_pack.9qX5vz/_old  2014-02-24 10:58:59.0 +0100
+++ /var/tmp/diff_new_pack.9qX5vz/_new  2014-02-24 10:58:59.0 +0100
@@ -17,31 +17,72 @@
 
 
 Name:   terminology
-Version:0.3.0
+Version:0.4.0
 Release:0
 Summary:EFL based terminal emulator
 License:BSD-2-Clause and OFL-1.1
 Group:  System/X11/Terminals
 Url:http://enlightenment.org
 Source: %{name}-%{version}.tar.bz2
-BuildRequires:  ecore-devel
-BuildRequires:  edje-devel
-BuildRequires:  eet-devel
-BuildRequires:  efreet-devel
-BuildRequires:  eina-devel
-BuildRequires:  elementary-devel = 1.6.99
-BuildRequires:  evas-devel
+BuildRequires:  pkgconfig(ecore)
+BuildRequires:  pkgconfig(ecore-evas)
+BuildRequires:  pkgconfig(ecore-file)
+BuildRequires:  pkgconfig(ecore-imf)
+BuildRequires:  pkgconfig(ecore-imf-evas)
+BuildRequires:  pkgconfig(ecore-input)
+BuildRequires:  pkgconfig(ecore-ipc)
+BuildRequires:  pkgconfig(edje)
+BuildRequires:  pkgconfig(eet)
+BuildRequires:  pkgconfig(efreet)
+BuildRequires:  pkgconfig(eina)
+BuildRequires:  pkgconfig(elementary) = 1.8.0
+BuildRequires:  pkgconfig(emotion)
+BuildRequires:  pkgconfig(ethumb_client)
+BuildRequires:  pkgconfig(evas)
+Requires:   elementary = 1.8.0
+Requires:   evas-generic-loaders = 1.8.0
+# provides default.edj
+Requires:  terminology-theme-dft
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version}
+Recommends: terminology-theme-openSUSE
+Recommends:terminology-theme-misc
+Recommends:terminology-theme-dark
+%endif
 %if 0%{?suse_version}
 BuildRequires:  fdupes
 BuildRequires:  update-desktop-files
 %endif
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   elementary = 1.7.0
-Recommends:terminology-theme-openSUSE
 
 %description
 Fast and lightweight terminal emulator using EFL libraries.
 
+%package -n terminology-theme-upstream
+Summary:Default Enlightenment theme 
+Group:  System/X11/Terminals
+Provides:   terminology-theme = 0.1
+Provides:   terminology-theme-dft
+Conflicts: otherproviders(terminology-theme-dft)
+
+%description  -n terminology-theme-upstream
+For use with upstream branding, when using openSUSE themes, when using 
openSUSE themes Use the Dark theme instead
+
+%package -n terminology-theme-dark
+Summary:Default terminology theme(Dark)
+Group:  System/X11/Terminals
+Provides:   terminology-theme
+
+%description  -n terminology-theme-dark
+The default theme for terminology install when using openSUSE branding
+
+%package -n 

commit e17 for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package e17 for openSUSE:Factory checked in 
at 2014-02-24 10:59:00

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


Package is e17

Changes:

--- /work/SRC/openSUSE:Factory/e17/e17.changes  2013-10-20 10:51:05.0 
+0200
+++ /work/SRC/openSUSE:Factory/.e17.new/e17.changes 2014-02-24 
10:59:01.0 +0100
@@ -1,0 +2,32 @@
+Sun Feb 23 11:08:05 UTC 2014 - si...@simotek.net
+
+- e17-branding-upstream should require e17-theme-default not e-theme-default
+
+---
+Tue Feb 18 10:29:07 UTC 2014 - si...@simotek.net
+
+- Rename e-theme etc to e17-theme
+
+---
+Tue Dec 24 03:31:35 UTC 2013 - si...@simotek.net
+
+- Branding changes for upstream re terminology
+
+---
+Fri Dec 13 07:38:46 UTC 2013 - sleep_wal...@suse.cz
+
+- update to E17 0.17.6 pre-release
+
+---
+Sun Dec  1 00:01:29 UTC 2013 - si...@simotek.net
+
+- Build against efl 1.8.0 now
+
+---
+Fri Nov  1 15:01:52 UTC 2013 - sleep_wal...@suse.cz
+
+- bump to 0.17.5, require EFL 1.7.9
+  Fixes:
+  * fixed stall on startup because xinerama started before randr 
(backports).
+
+---

Old:

  enlightenment-0.17.3.tar.bz2

New:

  enlightenment-0.17.6.tar.bz2



Other differences:
--
++ e17.spec ++
--- /var/tmp/diff_new_pack.fx9cp4/_old  2014-02-24 10:59:04.0 +0100
+++ /var/tmp/diff_new_pack.fx9cp4/_new  2014-02-24 10:59:04.0 +0100
@@ -16,12 +16,10 @@
 #
 
 
-%define efl_release 1.7.8
-
 %define generate_manpages 0
 
 Name:   e17
-Version:0.17.3
+Version:0.17.6
 Release:0
 Summary:The window manager
 License:BSD-2-Clause
@@ -39,17 +37,9 @@
 BuildRequires:  alsa-devel
 BuildRequires:  dbus-1-devel
 BuildRequires:  doxygen
-BuildRequires:  e_dbus-devel = %efl_release
-BuildRequires:  ecore-devel = %efl_release
-BuildRequires:  edje-devel = %efl_release
-BuildRequires:  eet-devel = %efl_release
-BuildRequires:  eeze-devel = %efl_release
-BuildRequires:  efreet-devel = %efl_release
-BuildRequires:  eina-devel = %efl_release
-BuildRequires:  eio-devel = %efl_release
-BuildRequires:  embryo-devel = %efl_release
-BuildRequires:  emotion-devel = %efl_release
-BuildRequires:  evas-devel = %efl_release
+BuildRequires:  e_dbus-devel
+BuildRequires:  efl-devel
+BuildRequires:  elementary-devel
 BuildRequires:  freetype2-devel = 2.1.7
 BuildRequires:  gettext-devel
 BuildRequires:  libtool
@@ -66,10 +56,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   e17-branding = 0.1
 Requires:   e17-theme
-Requires:   edje-utils = %efl_release
-Requires:   efreet = %efl_release
-Requires:   libeina1 = %efl_release
-Requires:   libeio1 = %efl_release
+Requires:   edje-utils
+Requires:   efl
 %if 0%{?suse_version}
 # to have working automounting we need udisks
 Recommends: udisks
@@ -83,17 +71,8 @@
 Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
 Requires:   dbus-1-devel
-Requires:   e_dbus-devel = %efl_release
-Requires:   ecore-devel = %efl_release
-Requires:   edje-devel = %efl_release
-Requires:   eet-devel = %efl_release
-Requires:   eeze-devel = %efl_release
-Requires:   efreet-devel = %efl_release
-Requires:   eina-devel = %efl_release
-Requires:   eio-devel = %efl_release
-Requires:   embryo-devel = %efl_release
-Requires:   emotion-devel = %efl_release
-Requires:   evas-devel = %efl_release
+Requires:   efl-devel
+Requires:   elementary-devel
 Requires:   freetype2-devel = 2.1.7
 Requires:   pam-devel
 Requires:   xorg-x11-libXext-devel
@@ -109,17 +88,19 @@
 Conflicts:  otherproviders(e17-branding)
 %endif
 Provides:   e17-branding = 0.1
-Requires:   e-theme-default = %version
+Requires:   e17-theme-default = %version
+Requires:  enlightenment-theme-upstream
+Conflicts: terminology-theme-openSUSE
 
 %description branding-upstream
 Various files for E17 provided by upstream but altered by openSUSE or Petite 
Linux.
 
-%package -n e-theme-default
+%package -n e17-theme-default
 Summary:Default E17 theme
 Group:  System/GUI/Other
 Provides:   e17-theme
 
-%description -n e-theme-default
+%description -n e17-theme-default
 Default theme for E17 window 

commit enlightenment for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package enlightenment for openSUSE:Factory 
checked in at 2014-02-24 11:00:13

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


Package is enlightenment

Changes:

New Changes file:

--- /dev/null   2014-02-13 01:09:38.344032506 +0100
+++ /work/SRC/openSUSE:Factory/.enlightenment.new/enlightenment.changes 
2014-02-24 11:00:15.0 +0100
@@ -0,0 +1,97 @@
+---
+Fri Feb 21 11:43:09 UTC 2014 - si...@simotek.net
+
+- conflicts should only be for above 0.17.3 as we obsolete older versions
+  use version 0.1 of branding to see if that fixes other complants
+
+---
+Wed Feb 12 21:45:25 UTC 2014 - si...@simotek.net
+
+- Make enlightenment-devel explicity conflict with e17-devel and 
+  provide obsoletes
+- Do the same for doc-html
+
+---
+Wed Feb 12 06:26:58 UTC 2014 - si...@simotek.net
+
+- Enlightenment now provides and obsoletes e17 = 0.17.3
+  This should migrate 12.3 and 13.1 users to enlightenment (e18)
+  but leave 13.2 users (0.17.6) with e17
+
+---
+Tue Dec 31 04:52:45 UTC 2013 - si...@simotek.net
+
+- bump to 0.18.2
+  * Fix for lock screen
+  * Fix for excessive logging to .xsession-errors
+  * Fixed display of version info
+
+---
+Tue Dec 24 03:40:59 UTC 2013 - si...@simotek.net
+
+- Requires branding
+
+---
+Tue Dec 24 03:33:15 UTC 2013 - si...@simotek.net
+
+- Upstream branding change for terminology
+
+---
+Sun Dec 22 04:12:17 UTC 2013 - si...@simotek.net
+
+- e18.0 RELEASE !!
+ * Compositing merged into core
+   * No longer (as) optional
+   * No longer (as) buggy
+   * Wayland client support added
+   * Teamwork module added
+ * Fixed at least 10 crashes
+   * User experience while crashing improved; some users have reported over a 
200% improvement here
+ * New modules for improving desktop integration:
+   * music-control - Control your music!
+   * bluez4 - Control your bluetooth!
+   * appmenu - Control your DBus application menus!
+   * conf_comp - Control your compositor settings!
+ * Improved systemd integration
+ * Internal theme merged into Elementary
+   * Theme migration guide for themers looking to update their E17 themes to 
work with E18
+ * RandR and binding config domains have been split into separate files to 
make copying and updating easier
+ * MANY filemanager improvements
+   * udisks2 support
+   * Directory listing is now more accurate
+   * Seriously, too many improvements to name
+
+
+---
+Fri Dec 20 17:42:15 UTC 2013 - sleep_wal...@suse.cz
+
+- bump to 0.18.0 pre-release
+
+---
+Thu Dec 19 18:32:42 UTC 2013 - sleep_wal...@suse.cz
+
+- refresh patches
+- beutify spec a bit
+- change to pkgconfig based dependencies
+- simplify dependencies
+
+---
+Thu Dec 19 16:58:34 UTC 2013 - sleep_wal...@suse.cz
+
+- buildrequire systemd-devel instead of systemd
+
+---
+Fri Dec 13 23:19:11 UTC 2013 - sleep_wal...@suse.cz
+
+- bumped to 0.18.0 rc2
+
+---
+Mon Dec  9 10:42:30 UTC 2013 - si...@simotek.net
+
+- 0.18.0 RC1 full changelogs will come with the release
+
+---
+Thu Nov 28 00:17:26 UTC 2013 - si...@simotek.net
+
+- Create new enlightenment package by merging e17 from factory and nightly 
repo's
+

New:

  dont_offer_updates.patch
  e17
  enlightenment-0.16.999.65256-dont_require_suidbit.patch
  enlightenment-0.18.2.tar.bz2
  enlightenment.changes
  enlightenment.spec
  set_default_system_language.patch
  sysactions.conf-oS12.2



Other differences:
--
++ enlightenment.spec ++
#
# spec file for package enlightenment
#
# Copyright (c) 2010 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 

commit ibus for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package ibus for openSUSE:13.1:Update 
checked in at 2014-02-24 11:15:02

Comparing /work/SRC/openSUSE:13.1:Update/ibus (Old)
 and  /work/SRC/openSUSE:13.1:Update/.ibus.new (New)


Package is ibus

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.vIeoy8/_old  2014-02-24 11:15:03.0 +0100
+++ /var/tmp/diff_new_pack.vIeoy8/_new  2014-02-24 11:15:03.0 +0100
@@ -1 +1 @@
-link package='ibus.2302' cicount='copy' /
+link package='ibus.2579' cicount='copy' /

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



commit OpenLP.2576 for openSUSE:12.3:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package OpenLP.2576 for openSUSE:12.3:Update 
checked in at 2014-02-24 11:18:21

Comparing /work/SRC/openSUSE:12.3:Update/OpenLP.2576 (Old)
 and  /work/SRC/openSUSE:12.3:Update/.OpenLP.2576.new (New)


Package is OpenLP.2576

Changes:

New Changes file:

--- /dev/null   2014-02-13 01:09:38.344032506 +0100
+++ /work/SRC/openSUSE:12.3:Update/.OpenLP.2576.new/OpenLP.changes  
2014-02-24 11:18:23.0 +0100
@@ -0,0 +1,175 @@
+---
+Sat Feb 15 16:59:53 EST 2014 - jos...@mulloy.me
+
+- Updated to 2.0.4 (bnc#864175)
+  * Upstream bugfix/stabilization release
+- Bugs fixed in this release
+  * lp#1154467: Web download bible db's getting locked
+  * lp#1173749: Songs with mismatching formatting tags still throw
+an exception
+  * lp#1252477: Changing theme on bible settings tab causes an
+error when saving service
+  * lp#1012110: pptviewlib does not accept unicode filename
+  * lp#1199639: Formatting tags opened and closed in different
+verses throw an exception
+  * lp#1206886: HTTP Server gets deleted
+  * lp#1222534: KeyError when Allow presentation application to be
+overridden and Spanish language is selected
+  * lp#1223841: Transition does not work if texts are the same
+  * lp#1225763: Replacing background with video unblank screen even
+if Blanked to Theme
+  * lp#1251437: BibleGateway importer crashes on non unicode urls
+  * lp#1258634: TypeError when saving service from previous versions
+with notes
+  * lp#1259606: Clicking Verse Button doesn't alter live slide
+  * lp#1266271: Output display returns after pressing esc when
+looping slides
+  * lp#1157938: Alt + Tab = some pixelated icons and missing icons
+  * lp#1211049: Can no long download bible verses
+  * lp#1216234: Layout style has not effect when using a second bible
+  * lp#1240942: Troubleshooting guide is outdated
+  * lp#1265368: [regression] Traceback in web remote
+  * lp#1163874: Add Slovak bible to First Run Wizard
+
+---
+Fri Sep 20 01:45:39 UTC 2013 - jdmul...@gmail.com
+
+- Update to 2.0.3 (bnc#841394)
+  * Fixes regression introduced in 2.0.2 that prevents saving 
+service files with notes in them (lp#1216785)
+
+---
+Fri Aug 30 02:44:13 UTC 2013 - jdmul...@gmail.com
+
+- Update to 2.0.2 (bnc#837706):
+  * Upstream bugfix/stabilization release
+  * Improvements/Bugfixes for UI, Song Importers and more
+
+---
+Mon Jan  7 13:56:35 UTC 2013 - alexan...@exatati.com.br
+
+- Update to 2.0.1:
+  * Song export and import now works correctly
+  * Transparent themes are once again transparent
+  * PowerPoint/lmpress files with unicode characters in the filename
+can be imported
+  * OpenLP is now more usable with the XFCE desktop on Linux
+
+---
+Fri Dec  7 02:44:26 UTC 2012 - jdmul...@gmail.com
+
+- Updated to OpenLP 2.0
+  * Stable release of OpenLP 2.0
+
+---
+Tue Sep 25 03:09:32 UTC 2012 - jdmul...@gmail.com
+
+- Updated from version 1.9.11 (2.0 RC1) to version 1.9.12 (2.0 RC2)
+  * Includes various bugfixes
+- Added rpmlintrc to suppress spurious RPMLINT warnings
+- Deleted obsolete patch file uno-path.patch 
+
+---
+Wed Aug  8 03:32:58 UTC 2012 - jdmul...@gmail.com
+
+- Bumped version from 1.9.10 (2.0 RC1) to 1.9.11 (2.0 RC2)
+- Includes various bugfixes
+
+---
+Sun Jul  8 19:21:39 UTC 2012 - jdmul...@gmail.com
+
+- Bumped version from 1.9.9 to 1.9.10 
+- Removed uno-path.patch as libreoffice-pyuno has been fixed
+- Fixed missing translations bug (lp#1007148)
+- Fixed error in %suse_update_desktop_file argument order
+
+---
+Sat Mar 24 17:21:05 UTC 2012 - jdmul...@gmail.com
+
+- Bumped version from 1.9.8 to 1.9.9
+- Removed openlp-1.9.8-impress-segfault-backport.patch because the
+  upstream release incorporates the fix
+
+---
+Mon Mar 19 03:44:31 UTC 2012 - jdmul...@gmail.com
+
+- Added python-xdg as a dependency so that data files are always
+  stored in ~/.local/share/openlp
+
+---
+Sun Mar 11 02:43:12 UTC 2012 - jdmul...@gmail.com
+
+- Changed download_files service mode to localonly to comply with
+  Factory 

commit OpenLP for openSUSE:12.3:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package OpenLP for openSUSE:12.3:Update 
checked in at 2014-02-24 11:18:23

Comparing /work/SRC/openSUSE:12.3:Update/OpenLP (Old)
 and  /work/SRC/openSUSE:12.3:Update/.OpenLP.new (New)


Package is OpenLP

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.N0ZqjH/_old  2014-02-24 11:18:23.0 +0100
+++ /var/tmp/diff_new_pack.N0ZqjH/_new  2014-02-24 11:18:24.0 +0100
@@ -1 +1 @@
-link package='OpenLP.2032' cicount='copy' /
+link package='OpenLP.2576' cicount='copy' /

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



commit OpenLP.2576 for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package OpenLP.2576 for openSUSE:13.1:Update 
checked in at 2014-02-24 11:18:23

Comparing /work/SRC/openSUSE:13.1:Update/OpenLP.2576 (Old)
 and  /work/SRC/openSUSE:13.1:Update/.OpenLP.2576.new (New)


Package is OpenLP.2576

Changes:

New Changes file:

--- /dev/null   2014-02-13 01:09:38.344032506 +0100
+++ /work/SRC/openSUSE:13.1:Update/.OpenLP.2576.new/OpenLP.changes  
2014-02-24 11:18:25.0 +0100
@@ -0,0 +1,175 @@
+---
+Sat Feb 15 16:59:53 EST 2014 - jos...@mulloy.me
+
+- Updated to 2.0.4 (bnc#864175)
+  * Upstream bugfix/stabilization release
+- Bugs fixed in this release
+  * lp#1154467: Web download bible db's getting locked
+  * lp#1173749: Songs with mismatching formatting tags still throw
+an exception
+  * lp#1252477: Changing theme on bible settings tab causes an
+error when saving service
+  * lp#1012110: pptviewlib does not accept unicode filename
+  * lp#1199639: Formatting tags opened and closed in different
+verses throw an exception
+  * lp#1206886: HTTP Server gets deleted
+  * lp#1222534: KeyError when Allow presentation application to be
+overridden and Spanish language is selected
+  * lp#1223841: Transition does not work if texts are the same
+  * lp#1225763: Replacing background with video unblank screen even
+if Blanked to Theme
+  * lp#1251437: BibleGateway importer crashes on non unicode urls
+  * lp#1258634: TypeError when saving service from previous versions
+with notes
+  * lp#1259606: Clicking Verse Button doesn't alter live slide
+  * lp#1266271: Output display returns after pressing esc when
+looping slides
+  * lp#1157938: Alt + Tab = some pixelated icons and missing icons
+  * lp#1211049: Can no long download bible verses
+  * lp#1216234: Layout style has not effect when using a second bible
+  * lp#1240942: Troubleshooting guide is outdated
+  * lp#1265368: [regression] Traceback in web remote
+  * lp#1163874: Add Slovak bible to First Run Wizard
+
+---
+Fri Sep 20 01:45:39 UTC 2013 - jdmul...@gmail.com
+
+- Update to 2.0.3 (bnc#841394)
+  * Fixes regression introduced in 2.0.2 that prevents saving
+service files with notes in them (lp#1216785)
+
+---
+Fri Aug 30 02:44:13 UTC 2013 - jdmul...@gmail.com
+
+- Update to 2.0.2 (bnc#837706):
+  * Upstream bugfix/stabilization release
+  * Improvements/Bugfixes for UI, Song Importers and more
+
+---
+Mon Jan  7 13:56:35 UTC 2013 - alexan...@exatati.com.br
+
+- Update to 2.0.1:
+  * Song export and import now works correctly
+  * Transparent themes are once again transparent
+  * PowerPoint/Impress files with unicode characters in the filename
+can be imported
+  * OpenLP is now more usable with the XFCE desktop on Linux
+
+---
+Fri Dec  7 02:44:26 UTC 2012 - jdmul...@gmail.com
+
+- Updated to OpenLP 2.0
+  * Stable release of OpenLP 2.0
+
+---
+Tue Sep 25 03:09:32 UTC 2012 - jdmul...@gmail.com
+
+- Updated from version 1.9.11 (2.0 RC1) to version 1.9.12 (2.0 RC2)
+  * Includes various bugfixes
+- Added rpmlintrc to suppress spurious RPMLINT warnings
+- Deleted obsolete patch file uno-path.patch 
+
+---
+Wed Aug  8 03:32:58 UTC 2012 - jdmul...@gmail.com
+
+- Bumped version from 1.9.10 (2.0 RC1) to 1.9.11 (2.0 RC2)
+- Includes various bugfixes
+
+---
+Sun Jul  8 19:21:39 UTC 2012 - jdmul...@gmail.com
+
+- Bumped version from 1.9.9 to 1.9.10 
+- Removed uno-path.patch as libreoffice-pyuno has been fixed
+- Fixed missing translations bug (lp#1007148)
+- Fixed error in %suse_update_desktop_file argument order
+
+---
+Sat Mar 24 17:21:05 UTC 2012 - jdmul...@gmail.com
+
+- Bumped version from 1.9.8 to 1.9.9
+- Removed openlp-1.9.8-impress-segfault-backport.patch because the
+  upstream release incorporates the fix
+
+---
+Mon Mar 19 03:44:31 UTC 2012 - jdmul...@gmail.com
+
+- Added python-xdg as a dependency so that data files are always
+  stored in ~/.local/share/openlp
+
+---
+Sun Mar 11 02:43:12 UTC 2012 - jdmul...@gmail.com
+
+- Changed download_files service mode to localonly to comply with
+  Factory 

commit rygel for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rygel for openSUSE:13.1:Update 
checked in at 2014-02-24 11:19:14

Comparing /work/SRC/openSUSE:13.1:Update/rygel (Old)
 and  /work/SRC/openSUSE:13.1:Update/.rygel.new (New)


Package is rygel

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.WKED9k/_old  2014-02-24 11:19:15.0 +0100
+++ /var/tmp/diff_new_pack.WKED9k/_new  2014-02-24 11:19:15.0 +0100
@@ -1 +1 @@
-link package='rygel.2254' cicount='copy' /
+link package='rygel.2575' cicount='copy' /

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



commit gnome-shell for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:13.1:Update 
checked in at 2014-02-24 11:22:04

Comparing /work/SRC/openSUSE:13.1:Update/gnome-shell (Old)
 and  /work/SRC/openSUSE:13.1:Update/.gnome-shell.new (New)


Package is gnome-shell

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.uMQ4jw/_old  2014-02-24 11:22:05.0 +0100
+++ /var/tmp/diff_new_pack.uMQ4jw/_new  2014-02-24 11:22:05.0 +0100
@@ -1 +1 @@
-link package='gnome-shell.2254' cicount='copy' /
+link package='gnome-shell.2564' cicount='copy' /

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



commit gnome-control-center for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:13.1:Update checked in at 2014-02-24 11:22:01

Comparing /work/SRC/openSUSE:13.1:Update/gnome-control-center (Old)
 and  /work/SRC/openSUSE:13.1:Update/.gnome-control-center.new (New)


Package is gnome-control-center

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.dNOELX/_old  2014-02-24 11:22:02.0 +0100
+++ /var/tmp/diff_new_pack.dNOELX/_new  2014-02-24 11:22:02.0 +0100
@@ -1 +1 @@
-link package='gnome-control-center.2254' cicount='copy' /
+link package='gnome-control-center.2564' cicount='copy' /

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



commit kdebase4-runtime for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package kdebase4-runtime for 
openSUSE:13.1:Update checked in at 2014-02-24 11:22:07

Comparing /work/SRC/openSUSE:13.1:Update/kdebase4-runtime (Old)
 and  /work/SRC/openSUSE:13.1:Update/.kdebase4-runtime.new (New)


Package is kdebase4-runtime

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.qFItGN/_old  2014-02-24 11:22:08.0 +0100
+++ /var/tmp/diff_new_pack.qFItGN/_new  2014-02-24 11:22:08.0 +0100
@@ -1 +1 @@
-link package='kdebase4-runtime.2510' cicount='copy' /
+link package='kdebase4-runtime.2564' cicount='copy' /

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



commit pulseaudio for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package pulseaudio for openSUSE:13.1:Update 
checked in at 2014-02-24 11:22:10

Comparing /work/SRC/openSUSE:13.1:Update/pulseaudio (Old)
 and  /work/SRC/openSUSE:13.1:Update/.pulseaudio.new (New)


Package is pulseaudio

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.SErJSA/_old  2014-02-24 11:22:11.0 +0100
+++ /var/tmp/diff_new_pack.SErJSA/_new  2014-02-24 11:22:11.0 +0100
@@ -1 +1 @@
-link package='pulseaudio.2276' cicount='copy' /
+link package='pulseaudio.2564' cicount='copy' /

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



commit gnome-settings-daemon for openSUSE:13.1:Update

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:13.1:Update checked in at 2014-02-24 11:22:03

Comparing /work/SRC/openSUSE:13.1:Update/gnome-settings-daemon (Old)
 and  /work/SRC/openSUSE:13.1:Update/.gnome-settings-daemon.new (New)


Package is gnome-settings-daemon

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.p8kYJM/_old  2014-02-24 11:22:04.0 +0100
+++ /var/tmp/diff_new_pack.p8kYJM/_new  2014-02-24 11:22:04.0 +0100
@@ -1 +1 @@
-link package='gnome-settings-daemon.2254' cicount='copy' /
+link package='gnome-settings-daemon.2564' cicount='copy' /

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



commit libcaca for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package libcaca for openSUSE:Factory checked 
in at 2014-02-24 14:12:12

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


Package is libcaca

Changes:

--- /work/SRC/openSUSE:Factory/libcaca/libcaca.changes  2013-06-05 
13:28:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.libcaca.new/libcaca.changes 2014-02-24 
14:12:13.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 20 14:27:28 UTC 2014 - co...@suse.com
+
+- remove SUSE prefix from license
+
+---



Other differences:
--
++ libcaca.spec ++
--- /var/tmp/diff_new_pack.X0MF8R/_old  2014-02-24 14:12:13.0 +0100
+++ /var/tmp/diff_new_pack.X0MF8R/_new  2014-02-24 14:12:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libcaca
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -45,7 +45,7 @@
 Version:0.99.beta18
 Release:0
 Summary:Library for Colour ASCII Art, text mode graphics
-License:SUSE-WTFPL-2.0
+License:WTFPL
 Group:  Development/Languages/C and C++
 Url:http://sam.zoy.org/projects/libcaca/
 Source0:http://caca.zoy.org/files/libcaca/%{name}-%{version}.tar.gz

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



commit libyui for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package libyui for openSUSE:Factory checked 
in at 2014-02-24 14:11:59

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


Package is libyui

Changes:

--- /work/SRC/openSUSE:Factory/libyui/libyui.changes2014-02-21 
13:48:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.libyui.new/libyui.changes   2014-02-24 
14:12:00.0 +0100
@@ -1,0 +2,7 @@
+Fri Feb 21 14:54:17 UTC 2014 - mvid...@suse.com
+
+- now building on https://ci.opensuse.org/view/libyui/ !
+  - adapted CMake macros for PREFIX != /usr
+  - use Rakefile for making srcpackage for OBS
+
+---



Other differences:
--
libyui.spec: same change
++ libyui-3.0.13.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/CMakeLists.txt 
new/libyui-3.0.13/CMakeLists.txt
--- old/libyui-3.0.13/CMakeLists.txt2014-02-24 14:12:01.0 +0100
+++ new/libyui-3.0.13/CMakeLists.txt2014-02-24 14:12:01.0 +0100
@@ -1 +1 @@
-symbolic link to ./buildtools/CMakeLists.common
+symbolic link to ../libyui-master/buildtools/CMakeLists.common
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/ChangeLog new/libyui-3.0.13/ChangeLog
--- old/libyui-3.0.13/ChangeLog 2014-02-18 17:12:09.0 +0100
+++ new/libyui-3.0.13/ChangeLog 2014-02-21 16:22:51.0 +0100
@@ -1,4 +1,11 @@
 ---
+Fri Feb 21 14:54:17 UTC 2014 - mvid...@suse.com
+
+- now building on https://ci.opensuse.org/view/libyui/ !
+  - adapted CMake macros for PREFIX != /usr
+  - use Rakefile for making srcpackage for OBS
+
+---
 Fri Feb  7 11:43:20 UTC 2014 - jsr...@suse.cz
 
 - use text version of release notes with NCurses (bnc#862578)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/Rakefile new/libyui-3.0.13/Rakefile
--- old/libyui-3.0.13/Rakefile  2014-02-18 17:12:09.0 +0100
+++ new/libyui-3.0.13/Rakefile  2014-02-21 14:45:21.0 +0100
@@ -16,10 +16,12 @@
   conf.package_name = Dir.glob(*.spec.in).first.chomp(.spec.in)
   conf.package_dir = #{BUILDDIR}/package
 
+  conf.skip_license_check  /.*/ if conf.package_name =~ /^libyui-gtk/
   conf.skip_license_check  /bootstrap.sh|ChangeLog|Makefile.cvs/
   conf.skip_license_check  /^buildtools\/.*/
   conf.skip_license_check  /\.(cmake|gv|ui|xpm)$/
   conf.skip_license_check  /^src\/lang_fonts$/
+  conf.skip_license_check  /\.mng$/ # binary
 end
 
 desc 'Pretend to run the test suite'
@@ -27,13 +29,29 @@
   puts 'No tests yet' if verbose
 end
 
+LIBYUI_PREFIX = ENV[HOME] + /libyui-prefix
+LIBYUI_BASE = ENV.fetch(LIBYUI_BASE, ../libyui)
+
 # build the gem package
 desc 'Build a tarball for OBS'
 task :tarball do
-  sh make -f Makefile.cvs
+  rm_rf BUILDDIR
+  ln_sf #{LIBYUI_BASE}/buildtools/CMakeLists.common, CMakeLists.txt
+  lib_dir = `rpm --eval '%{_lib}'`.chomp
+  mkdir_p BUILDDIR
   chdir BUILDDIR do
+# unfortunately buildtools are set up in such a way that
+# for making a package, all dependencies need to be present and installed 
:-/
+sh(cmake,
+   -DCMAKE_BUILD_TYPE=RELEASE,
+   -DLIB_DIR=#{lib_dir},
+   -DPREFIX=#{LIBYUI_PREFIX},
+   -DCMAKE_PREFIX_PATH=#{LIBYUI_PREFIX},
+   -DENABLE_WERROR=OFF, # gtk needs this
+   ..)
 sh make clean
-#sh make   # river jenkins does it; should not be needed
+sh make -j$(nproc)
+sh make install
 sh make srcpackage
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/buildtools/Config.cmake.in 
new/libyui-3.0.13/buildtools/Config.cmake.in
--- old/libyui-3.0.13/buildtools/Config.cmake.in2014-02-18 
17:12:09.0 +0100
+++ new/libyui-3.0.13/buildtools/Config.cmake.in2014-02-21 
11:30:58.0 +0100
@@ -21,7 +21,7 @@
# In build tree
INCLUDE( 
${@PROJECTNAME_UC_UPPER@_CMAKE_DIR}/@PROJECTNAME_UC@BuildTreeSettings.cmake )
 ELSE()
-   SET( @PROJECTNAME_UC_UPPER@_INCLUDE_DIRS @INSTALL_INCLUDE_DIR_PREFIX@ )
+   SET( @PROJECTNAME_UC_UPPER@_INCLUDE_DIRS @INSTALL_INCLUDE_DIR_PREFIX@ 
@INSTALL_INCLUDE_DIR_PREFIX@/.. )
 ENDIF()
 
 # Our library dependencies (contains definitions for IMPORTED targets)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.0.13/buildtools/LibyuiCommon.cmake 
new/libyui-3.0.13/buildtools/LibyuiCommon.cmake
--- 

commit perl-Apache-Session for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Apache-Session for 
openSUSE:Factory checked in at 2014-02-24 14:12:19

Comparing /work/SRC/openSUSE:Factory/perl-Apache-Session (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Apache-Session.new (New)


Package is perl-Apache-Session

Changes:

--- /work/SRC/openSUSE:Factory/perl-Apache-Session/perl-Apache-Session.changes  
2013-06-06 12:18:50.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Apache-Session.new/perl-Apache-Session.changes 
2014-02-24 14:12:20.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb 24 06:08:02 UTC 2014 - co...@suse.com
+
+- updated to 1.91
+  - Add a test for RT#50896
+  - 99mysql.t will work more correctly in some corner cases
+
+---

Old:

  Apache-Session-1.90.tar.gz

New:

  Apache-Session-1.91.tar.gz



Other differences:
--
++ perl-Apache-Session.spec ++
--- /var/tmp/diff_new_pack.dVWLFn/_old  2014-02-24 14:12:21.0 +0100
+++ /var/tmp/diff_new_pack.dVWLFn/_new  2014-02-24 14:12:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Apache-Session
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -24,7 +24,10 @@
 BuildRequires:  pcre-devel
 BuildRequires:  perl-DBI
 BuildRequires:  perl-macros
-Version:1.90
+BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Test::Deep) = 0.082
+BuildRequires:  perl(Test::Exception) = 0.15
+Version:1.91
 Release:0
 Provides:   Apache-Session
 Requires:   apache2
@@ -35,7 +38,7 @@
 Url:http://cpan.org/modules/by-module/Apache/
 Source: Apache-Session-%{version}.tar.gz
 Summary:persistent storage for arbitrary data
-License:Artistic-1.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #BuildRequires: perl(Test::Database)

++ Apache-Session-1.90.tar.gz - Apache-Session-1.91.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Apache-Session-1.90/Build.PL 
new/Apache-Session-1.91/Build.PL
--- old/Apache-Session-1.90/Build.PL2012-12-24 22:50:55.0 +0100
+++ new/Apache-Session-1.91/Build.PL2014-01-06 23:34:54.0 +0100
@@ -8,6 +8,8 @@
 Please use Test::Reporter to report test results - it's the only way to measure
 popularity of distribution.
 
+Or you can add it to stack (means that you use it) on Ohloh: 
https://www.ohloh.net/p/Apache-Session
+
 EOT
 
 if ($]5.006) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Apache-Session-1.90/CHANGES 
new/Apache-Session-1.91/CHANGES
--- old/Apache-Session-1.90/CHANGES 2013-01-27 14:26:32.0 +0100
+++ new/Apache-Session-1.91/CHANGES 2014-01-06 23:38:53.0 +0100
@@ -3,6 +3,10 @@
 and tell me what version do you use, why and will you need newer versions
 of Apache::Session.
 
+1.91  2014-01-07 by Alexandr Ciornii, Perl 26th birthday version
+  - Add a test for RT#50896
+  - 99mysql.t will work more correctly in some corner cases
+
 1.90   2013-01-27 by Alexandr Ciornii, Perl 25th birthday version
   - Allow specifying table for Oracle
   - Use Test::Database for tests
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Apache-Session-1.90/META.json 
new/Apache-Session-1.91/META.json
--- old/Apache-Session-1.90/META.json   2013-01-27 14:34:41.0 +0100
+++ new/Apache-Session-1.91/META.json   2014-01-06 23:42:56.0 +0100
@@ -4,7 +4,7 @@
   Casey West casey[at]geeknest.com
],
dynamic_config : 1,
-   generated_by : Module::Build version 0.4003, CPAN::Meta::Converter 
version 2.112150,
+   generated_by : Module::Build version 0.4007, CPAN::Meta::Converter 
version 2.131490,
keywords : [
   CGI,
   session,
@@ -28,11 +28,11 @@
   },
   runtime : {
  requires : {
-Digest::MD5 : 0,
-File::Temp : 0,
-IO::File : 0,
+Digest::MD5 : 0,
+File::Temp : 0,
+IO::File : 0,
 Storable : 0.6,
-constant : 0,
+constant : 0,
 perl : 5.005
  }
   }
@@ -40,7 +40,7 @@
provides : {
   Apache::Session : {
  file : lib/Apache/Session.pm,
- version : 1.90
+ version : 1.91
   },
   Apache::Session::DB_File : {
  file : 

commit git for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package git for openSUSE:Factory checked in 
at 2014-02-24 14:12:01

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


Package is git

Changes:

--- /work/SRC/openSUSE:Factory/git/git.changes  2014-02-07 10:25:53.0 
+0100
+++ /work/SRC/openSUSE:Factory/.git.new/git.changes 2014-02-24 
14:12:05.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb 22 20:01:02 UTC 2014 - bur...@net-b.de
+
+- update to version 1.9.0
+- Rediffed git-zsh-completion-fixes.diff
+
+  https://raw.github.com/git/git/master/Documentation/RelNotes/1.9.0.txt
+---

Old:

  git-1.8.5.2.tar.gz

New:

  git-1.9.0.tar.gz



Other differences:
--
++ git.spec ++
--- /var/tmp/diff_new_pack.TLEjVx/_old  2014-02-24 14:12:06.0 +0100
+++ /var/tmp/diff_new_pack.TLEjVx/_new  2014-02-24 14:12:06.0 +0100
@@ -20,7 +20,7 @@
 %define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
 
 Name:   git
-Version:1.8.5.2
+Version:1.9.0
 Release:0
 Summary:Fast, scalable, distributed revision control system
 License:GPL-2.0

++ git-1.8.5.2.tar.gz - git-1.9.0.tar.gz ++
 75520 lines of diff (skipped)

++ git-zsh-completion-fixes.diff ++
--- /var/tmp/diff_new_pack.TLEjVx/_old  2014-02-24 14:12:07.0 +0100
+++ /var/tmp/diff_new_pack.TLEjVx/_new  2014-02-24 14:12:07.0 +0100
@@ -4,10 +4,10 @@
 
 --- a/contrib/completion/git-completion.zsh
 +++ b/contrib/completion/git-completion.zsh
-@@ -30,6 +30,7 @@ if [ -z $script ]; then
-   local -a locations
+@@ -31,6 +31,7 @@ if [ -z $script ]; then
local e
locations=(
+   $(dirname ${funcsourcetrace[1]%:*})/git-completion.bash
 +  '/etc/bash_completion.d/git.sh' # suse
'/etc/bash_completion.d/git' # fedora, old debian
'/usr/share/bash-completion/completions/git' # arch, ubuntu, 
new debian

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



commit python-lxml for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package python-lxml for openSUSE:Factory 
checked in at 2014-02-24 14:11:59

Comparing /work/SRC/openSUSE:Factory/python-lxml (Old)
 and  /work/SRC/openSUSE:Factory/.python-lxml.new (New)


Package is python-lxml

Changes:

--- /work/SRC/openSUSE:Factory/python-lxml/python-lxml.changes  2014-02-12 
17:32:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-lxml.new/python-lxml.changes 
2014-02-24 14:12:02.0 +0100
@@ -1,0 +2,20 @@
+Sat Feb 22 10:33:42 UTC 2014 - t...@opensuse.org
+
+- Update to version 3.3.1:
+  ** Features added
+ n/a
+  ** Bugs fixed
+ - LP#1014290: HTML documents parsed with parser.feed() failed to 
+   find elements during tag iteration.
+ - LP#1273709: Building in PyPy failed due to missing support for 
+   PyUnicode_Compare() and PyByteArray_*() in PyPy's C-API.
+ - LP#1274413: Compilation in MSVC failed due to missing stdint.h
+   standard header file.
+ - LP#1274118: iterparse() failed to parse BOM prefixed files.
+
+  ** Other changes
+ n/a
+
+See also http://lxml.de/3.3/changes-3.3.1.html
+
+---

Old:

  lxml-3.3.0.tar.gz
  lxmldoc-3.3.0.pdf

New:

  lxml-3.3.1.tar.gz
  lxmldoc-3.3.1.pdf



Other differences:
--
++ python-lxml.spec ++
--- /var/tmp/diff_new_pack.Mcbgw1/_old  2014-02-24 14:12:03.0 +0100
+++ /var/tmp/diff_new_pack.Mcbgw1/_new  2014-02-24 14:12:03.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-lxml
-Version:3.3.0
+Version:3.3.1
 Release:0
 Summary:Powerful and Pythonic XML processing library
 License:BSD-3-Clause and GPL-2.0+
@@ -29,6 +29,7 @@
 BuildRequires:  libxslt-devel
 BuildRequires:  python-Cython = 0.20
 BuildRequires:  python-devel
+BuildRequires:  python-setuptools
 Requires:   python-cssselect
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110

++ lxml-3.3.0.tar.gz - lxml-3.3.1.tar.gz ++
 65206 lines of diff (skipped)

++ lxmldoc-3.3.0.pdf - lxmldoc-3.3.1.pdf ++
(binary differes)

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



commit perl-Devel-StackTrace for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-StackTrace for 
openSUSE:Factory checked in at 2014-02-24 14:12:22

Comparing /work/SRC/openSUSE:Factory/perl-Devel-StackTrace (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Devel-StackTrace.new (New)


Package is perl-Devel-StackTrace

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Devel-StackTrace/perl-Devel-StackTrace.changes  
2013-06-07 10:06:22.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-StackTrace.new/perl-Devel-StackTrace.changes
 2014-02-24 14:12:23.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb 24 06:08:43 UTC 2014 - co...@suse.com
+
+- updated to 1.31
+ - No code changes, just doc updates, including documenting the as_string()
+   method in Devel::StackTrace::Frame. Requested by Skef. RT #91575.
+- remove Devel-StackTrace-1.27_Test_More.patch
+
+---

Old:

  Devel-StackTrace-1.27_Test_More.patch
  Devel-StackTrace-1.30.tar.gz

New:

  Devel-StackTrace-1.31.tar.gz



Other differences:
--
++ perl-Devel-StackTrace.spec ++
--- /var/tmp/diff_new_pack.DrX9dC/_old  2014-02-24 14:12:24.0 +0100
+++ /var/tmp/diff_new_pack.DrX9dC/_new  2014-02-24 14:12:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-StackTrace
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   perl-Devel-StackTrace
-Version:1.30
+Version:1.31
 Release:0
 %define cpan_name Devel-StackTrace
 Summary:An object representing a stack trace
@@ -30,24 +30,21 @@
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(Test::More) = 0.88
-#BuildRequires: perl(Devel::StackTrace)
-#BuildRequires: perl(Devel::StackTrace::Frame)
-#BuildRequires: perl(Test::Pod::Coverage) = 1.04
-#BuildRequires: perl(Test::Spelling)
 %{perl_requires}
 
 %description
-The Devel::StackTrace module contains two classes, Devel::StackTrace and
-Devel::StackTrace::Frame. The goal of this object is to encapsulate the
-information that can found through using the caller() function, as well as
+The 'Devel::StackTrace' module contains two classes, C,Devel::StackTrace
+and the Devel::StackTrace::Frame manpage. These objects encapsulate the
+information that can retrieved via Perl's 'caller()' function, as well as
 providing a simple interface to this data.
 
-The Devel::StackTrace object contains a set of Devel::StackTrace::Frame
+The 'Devel::StackTrace' object contains a set of 'Devel::StackTrace::Frame'
 objects, one for each level of the stack. The frames contain all the data
 available from 'caller()'.
 
 This code was created to support my the Exception::Class::Base manpage
-class (part of Exception::Class) but may be useful in other contexts.
+class (part of the Exception::Class manpage) but may be useful in other
+contexts.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}

++ Devel-StackTrace-1.30.tar.gz - Devel-StackTrace-1.31.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-StackTrace-1.30/Changes 
new/Devel-StackTrace-1.31/Changes
--- old/Devel-StackTrace-1.30/Changes   2012-11-20 06:06:36.0 +0100
+++ new/Devel-StackTrace-1.31/Changes   2014-01-16 23:35:53.0 +0100
@@ -1,3 +1,9 @@
+1.31   2014-01-16
+
+- No code changes, just doc updates, including documenting the as_string()
+  method in Devel::StackTrace::Frame. Requested by Skef. RT #91575.
+
+
 1.30   2012-11-19
 
 - There was an eval which did not first localize $@ and $SIG{__DIE__}. This
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-StackTrace-1.30/LICENSE 
new/Devel-StackTrace-1.31/LICENSE
--- old/Devel-StackTrace-1.30/LICENSE   2012-11-20 06:06:36.0 +0100
+++ new/Devel-StackTrace-1.31/LICENSE   2014-01-16 23:35:53.0 +0100
@@ -1,4 +1,4 @@
-This software is Copyright (c) 2012 by Dave Rolsky.
+This software is Copyright (c) 2014 by Dave Rolsky.
 
 This is free software, licensed under:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Devel-StackTrace-1.30/MANIFEST 
new/Devel-StackTrace-1.31/MANIFEST
--- old/Devel-StackTrace-1.30/MANIFEST  2012-11-20 06:06:36.0 +0100
+++ new/Devel-StackTrace-1.31/MANIFEST  2014-01-16 23:35:53.0 +0100
@@ -1,3 +1,4 @@
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v5.012.
 Changes
 INSTALL
 

commit perl-MooseX-Getopt for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-MooseX-Getopt for 
openSUSE:Factory checked in at 2014-02-24 14:12:35

Comparing /work/SRC/openSUSE:Factory/perl-MooseX-Getopt (Old)
 and  /work/SRC/openSUSE:Factory/.perl-MooseX-Getopt.new (New)


Package is perl-MooseX-Getopt

Changes:

--- /work/SRC/openSUSE:Factory/perl-MooseX-Getopt/perl-MooseX-Getopt.changes
2013-12-12 11:21:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Getopt.new/perl-MooseX-Getopt.changes   
2014-02-24 14:12:36.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb 24 06:10:12 UTC 2014 - co...@suse.com
+
+- updated to 0.61
+  - fix potentially-broken check-breaks test when a conflicting module fails to
+compile
+  - avoid failing an optional test when YAML is not installed
+
+---

Old:

  MooseX-Getopt-0.59.tar.gz

New:

  MooseX-Getopt-0.61.tar.gz



Other differences:
--
++ perl-MooseX-Getopt.spec ++
--- /var/tmp/diff_new_pack.W2aGE2/_old  2014-02-24 14:12:36.0 +0100
+++ /var/tmp/diff_new_pack.W2aGE2/_new  2014-02-24 14:12:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Getopt
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   perl-MooseX-Getopt
-Version:0.59
+Version:0.61
 Release:0
 %define cpan_name MooseX-Getopt
 Summary:A Moose role for processing command line options
@@ -31,7 +31,7 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Getopt::Long) = 2.37
 BuildRequires:  perl(Getopt::Long::Descriptive) = 0.081
-BuildRequires:  perl(Module::Build::Tiny) = 0.030
+BuildRequires:  perl(Module::Build::Tiny) = 0.034
 BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose)
 BuildRequires:  perl(Moose::Meta::Attribute)
@@ -48,25 +48,8 @@
 BuildRequires:  perl(Test::Trap)
 BuildRequires:  perl(Test::Warnings)
 BuildRequires:  perl(Try::Tiny)
-#BuildRequires: perl(App)
-#BuildRequires: perl(BaseApp::WithConfig)
-#BuildRequires: perl(MooseX::ConfigFromFile)
-#BuildRequires: perl(MooseX::Getopt)
-#BuildRequires: perl(MooseX::Getopt::Basic)
-#BuildRequires: perl(MooseX::Getopt::Dashes)
-#BuildRequires: perl(MooseX::Getopt::GLD)
-#BuildRequires: perl(MooseX::Getopt::Meta::Attribute)
-#BuildRequires: perl(MooseX::Getopt::Meta::Attribute::NoGetopt)
-#BuildRequires: perl(MooseX::Getopt::Meta::Attribute::Trait)
-#BuildRequires: perl(MooseX::Getopt::Meta::Attribute::Trait::NoGetopt)
-#BuildRequires: perl(MooseX::Getopt::OptionTypeMap)
-#BuildRequires: perl(MooseX::Getopt::ProcessedArgv)
-#BuildRequires: perl(MooseX::Getopt::Strict)
-#BuildRequires: perl(MooseX::SimpleConfig)
-#BuildRequires: perl(Pod::Wordlist)
-#BuildRequires: perl(Test::Kwalitee)
-#BuildRequires: perl(Test::NoTabs)
-#BuildRequires: perl(Test::Spelling) = 0.12
+BuildRequires:  perl(namespace::autoclean)
+BuildRequires:  perl(version)
 Requires:   perl(Getopt::Long) = 2.37
 Requires:   perl(Getopt::Long::Descriptive) = 0.081
 Requires:   perl(Moose)
@@ -75,6 +58,7 @@
 Requires:   perl(Moose::Util::TypeConstraints)
 Requires:   perl(MooseX::Role::Parameterized)
 Requires:   perl(Try::Tiny)
+Requires:   perl(namespace::autoclean)
 %{perl_requires}
 
 %description

++ MooseX-Getopt-0.59.tar.gz - MooseX-Getopt-0.61.tar.gz ++
 2785 lines of diff (skipped)

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



commit perl-Text-CSV_XS for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Text-CSV_XS for 
openSUSE:Factory checked in at 2014-02-24 14:13:01

Comparing /work/SRC/openSUSE:Factory/perl-Text-CSV_XS (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Text-CSV_XS.new (New)


Package is perl-Text-CSV_XS

Changes:

--- /work/SRC/openSUSE:Factory/perl-Text-CSV_XS/perl-Text-CSV_XS.changes
2013-11-26 19:33:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Text-CSV_XS.new/perl-Text-CSV_XS.changes   
2014-02-24 14:13:03.0 +0100
@@ -1,0 +2,12 @@
+Mon Feb 24 06:08:10 UTC 2014 - co...@suse.com
+
+- updated to 1.04
+* get_columnd () with no argument now returns the empty list
+  instead of undef when no columns defined
+* fragments (rcf7111) now also support AoH (was AoA only)
+* Error code conflict for fragments resolved to 2013
+* New function csv (not a method)
+* Update copyright to 2014
+* Implement RCF7111
+
+---

Old:

  Text-CSV_XS-1.02.tgz

New:

  Text-CSV_XS-1.04.tgz



Other differences:
--
++ perl-Text-CSV_XS.spec ++
--- /var/tmp/diff_new_pack.A9Z9A8/_old  2014-02-24 14:13:03.0 +0100
+++ /var/tmp/diff_new_pack.A9Z9A8/_new  2014-02-24 14:13:03.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Text-CSV_XS
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   perl-Text-CSV_XS
-Version:1.02
+Version:1.04
 Release:0
 %define cpan_name Text-CSV_XS
 Summary:comma-separated values manipulation routines
@@ -28,8 +28,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-#BuildRequires: perl(Text::CSV_XS)
-Recommends: perl(Encode) = 2.55
+Recommends: perl(Encode) = 2.57
 %{perl_requires}
 
 %description

++ Text-CSV_XS-1.02.tgz - Text-CSV_XS-1.04.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Text-CSV_XS-1.02/CSV_XS.pm 
new/Text-CSV_XS-1.04/CSV_XS.pm
--- old/Text-CSV_XS-1.02/CSV_XS.pm  2013-09-25 17:48:31.0 +0200
+++ new/Text-CSV_XS-1.04/CSV_XS.pm  2014-02-06 07:37:44.0 +0100
@@ -1,6 +1,6 @@
 package Text::CSV_XS;
 
-# Copyright (c) 2007-2013 H.Merijn Brand.  All rights reserved.
+# Copyright (c) 2007-2014 H.Merijn Brand.  All rights reserved.
 # Copyright (c) 1998-2001 Jochen Wiedmann. All rights reserved.
 # Copyright (c) 1997 Alan Citterman.   All rights reserved.
 #
@@ -23,12 +23,14 @@
 use strict;
 use warnings;
 
+require Exporter;
 use DynaLoader ();
 use Carp;
 
-use vars   qw( $VERSION @ISA );
-$VERSION = 1.02;
-@ISA = qw( DynaLoader );
+use vars   qw( $VERSION @ISA @EXPORT_OK );
+$VERSION   = 1.04;
+@ISA   = qw( DynaLoader Exporter );
+@EXPORT_OK = qw( csv );
 bootstrap Text::CSV_XS $VERSION;
 
 sub PV { 0 }
@@ -377,6 +379,25 @@
 return $self-{_EOF};
 } # status
 
+sub types
+{
+my $self = shift;
+if (@_) {
+   if (my $types = shift) {
+   $self-{_types} = join , map { chr $_ } @{$types};
+   $self-{types}  = $types;
+   }
+   else {
+   delete $self-{types};
+   delete $self-{_types};
+   undef;
+   }
+   }
+else {
+   $self-{types};
+   }
+} # types
+
 # erro_diag
 #
 #   If (and only if) an error occurred, this function returns a code that
@@ -556,7 +577,7 @@
 {
 my ($self, @keys) = @_;
 @keys or
-   return defined $self-{_COLUMN_NAMES} ? @{$self-{_COLUMN_NAMES}} : 
undef;
+   return defined $self-{_COLUMN_NAMES} ? @{$self-{_COLUMN_NAMES}} : ();
 
 @keys == 1  ! defined $keys[0] and
return $self-{_COLUMN_NAMES} = undef;
@@ -625,24 +646,178 @@
 $self-print ($io, [ map { $hr-{$_} } $self-column_names ]);
 } # print_hr
 
-sub types
+sub fragment
 {
-my $self = shift;
-if (@_) {
-   if (my $types = shift) {
-   $self-{_types} = join , map { chr $_ } @{$types};
-   $self-{types}  = $types;
+my ($self, $io, $spec) = @_;
+
+my $qd = qr{\s* [0-9]+ \s* }x;
+my $qr = qr{$qd (?: - (?: $qd | \s* \* \s* ))?}x;
+my $qc = qr{$qr (?: ; $qr)*}x;
+defined $spec  $spec =~ m{^ \s*
+   \x23 ? \s*  # optional leading #
+   ( row | col | cell ) \s* =
+   ( $qc   # for row and col
+   | $qd , $qd (?: - $qd , $qd)?   # for cell
+   ) \s* $}xi or 

commit perl-XML-SemanticDiff for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-XML-SemanticDiff for 
openSUSE:Factory checked in at 2014-02-24 14:15:08

Comparing /work/SRC/openSUSE:Factory/perl-XML-SemanticDiff (Old)
 and  /work/SRC/openSUSE:Factory/.perl-XML-SemanticDiff.new (New)


Package is perl-XML-SemanticDiff

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-XML-SemanticDiff/perl-XML-SemanticDiff.changes  
2013-10-06 14:56:29.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-XML-SemanticDiff.new/perl-XML-SemanticDiff.changes
 2014-02-24 14:15:09.0 +0100
@@ -1,0 +2,8 @@
+Mon Feb 24 06:10:31 UTC 2014 - co...@suse.com
+
+- updated to 1.0004
+- Update the contact info for Shlomi Fish from the old one.
+- Add separate LICENSE file (CPANTS).
+- Add inc/Test/Run/Builder.pm .
+
+---

Old:

  XML-SemanticDiff-1.0002.tar.gz

New:

  XML-SemanticDiff-1.0004.tar.gz



Other differences:
--
++ perl-XML-SemanticDiff.spec ++
--- /var/tmp/diff_new_pack.GWwIxA/_old  2014-02-24 14:15:10.0 +0100
+++ /var/tmp/diff_new_pack.GWwIxA/_new  2014-02-24 14:15:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-XML-SemanticDiff
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   perl-XML-SemanticDiff
-Version:1.0002
+Version:1.0004
 Release:0
 %define cpan_name XML-SemanticDiff
 Summary:Perl extension for comparing XML documents.
@@ -31,8 +31,6 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(Module::Build) = 0.39
 BuildRequires:  perl(XML::Parser)
-#BuildRequires: perl(XML::SemanticDiff)
-#BuildRequires: perl(XML::SemanticDiff::BasicHandler)
 Requires:   perl(XML::Parser)
 %{perl_requires}
 
@@ -57,6 +55,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes eg README
+%doc Changes eg LICENSE README
 
 %changelog

++ XML-SemanticDiff-1.0002.tar.gz - XML-SemanticDiff-1.0004.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-SemanticDiff-1.0002/Build.PL 
new/XML-SemanticDiff-1.0004/Build.PL
--- old/XML-SemanticDiff-1.0002/Build.PL2013-08-17 16:03:26.0 
+0200
+++ new/XML-SemanticDiff-1.0004/Build.PL2014-02-04 12:55:45.0 
+0100
@@ -1,9 +1,13 @@
 use strict;
+use strict;
 use warnings;
 
-use Module::Build;
+use File::Spec;
+use lib File::Spec-catdir(File::Spec-curdir(), inc);
+
+use Test::Run::Builder;
 
-my $builder = Module::Build-new(
+my $builder = Test::Run::Builder-new(
 module_name = 'XML::SemanticDiff',
 license = 'perl',
 dist_author = 'Kip Hampton khamp...@cpan.org',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-SemanticDiff-1.0002/Changes 
new/XML-SemanticDiff-1.0004/Changes
--- old/XML-SemanticDiff-1.0002/Changes 2013-08-17 16:03:26.0 +0200
+++ new/XML-SemanticDiff-1.0004/Changes 2014-02-04 12:55:45.0 +0100
@@ -1,5 +1,12 @@
 Revision history for Perl module XML::SemanticDiff
 
+1.0004 2014-02-04
+- Update the contact info for Shlomi Fish from the old one.
+
+1.0003 2014-02-01
+- Add separate LICENSE file (CPANTS).
+- Add inc/Test/Run/Builder.pm .
+
 1.0002 2013-08-17
 - Convert Changes (this file) to CPAN::Changes.
 - Thanks to https://bitbucket.org/sromanov .
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-SemanticDiff-1.0002/LICENSE 
new/XML-SemanticDiff-1.0004/LICENSE
--- old/XML-SemanticDiff-1.0002/LICENSE 1970-01-01 01:00:00.0 +0100
+++ new/XML-SemanticDiff-1.0004/LICENSE 2014-02-04 12:55:45.0 +0100
@@ -0,0 +1,396 @@
+Terms of Perl itself
+
+a) the GNU General Public License as published by the Free
+   Software Foundation; either version 1, or (at your option) any
+   later version, or
+b) the Artistic License
+
+
+
+GNU GENERAL PUBLIC LICENSE
+   Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+Preamble
+
+  The licenses for most software are designed to take away your
+freedom to 

commit killswitch-applet for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package killswitch-applet for 
openSUSE:Factory checked in at 2014-02-24 15:50:26

Comparing /work/SRC/openSUSE:Factory/killswitch-applet (Old)
 and  /work/SRC/openSUSE:Factory/.killswitch-applet.new (New)


Package is killswitch-applet

Changes:

--- /work/SRC/openSUSE:Factory/killswitch-applet/killswitch-applet.changes  
2012-06-06 16:07:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.killswitch-applet.new/killswitch-applet.changes 
2014-02-24 15:50:30.0 +0100
@@ -1,0 +2,10 @@
+Mon Feb 24 12:22:21 UTC 2014 - seife+...@b1-systems.com
+
+- add COPYING to doc, as requested by SUSE legal
+
+---
+Sat Feb 22 11:28:06 UTC 2014 - zai...@opensuse.org
+
+- Correct license to WTFPL, the SUSE prefix is not valid.
+
+---



Other differences:
--
++ killswitch-applet.spec ++
--- /var/tmp/diff_new_pack.13usTO/_old  2014-02-24 15:50:30.0 +0100
+++ /var/tmp/diff_new_pack.13usTO/_new  2014-02-24 15:50:30.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package killswitch-applet (Version 0.2.3)
+# spec file for package killswitch-applet
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -16,12 +16,11 @@
 #
 
 
-
 Name:   killswitch-applet
 Version:0.2.3
-Release:1
-License:SUSE-WTFPL-2.0
+Release:0
 Summary:Manage Killswitches
+License:WTFPL
 Group:  Productivity/Other
 Source: killswitch-applet-%{version}.tar.gz
 BuildRequires:  dbus-1-python
@@ -56,6 +55,7 @@
 
 %files
 %defattr(-,root,root)
+%doc COPYING
 %{_bindir}/killswitch-applet
 %{_datadir}/icons/hicolor/32x32/apps/killswitch-applet.png
 %{_datadir}/icons/hicolor/scalable/apps/killswitch-applet.svg

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



commit icinga for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package icinga for openSUSE:Factory checked 
in at 2014-02-24 15:50:22

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


Package is icinga

Changes:

--- /work/SRC/openSUSE:Factory/icinga/icinga.changes2014-02-11 
11:58:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.icinga.new/icinga.changes   2014-02-24 
15:50:25.0 +0100
@@ -1,0 +2,29 @@
+Wed Feb 19 08:24:58 UTC 2014 - thard...@suse.com
+
+- optimized order of icinga-exec-start-pre script
+
+---
+Tue Feb 18 17:36:16 UTC 2014 - thard...@suse.com
+
+- update to upstream version 1.10.3
+  * initscript: implement IcingaPrecacheFallback option for the init script 
(thx Immobilienscout24) #4968 - GB
+  * core: fix passive host check commands check service's passive check 
acceptance (thx Naemon) #5568 - MF
+  * core: fix host state translation for passive host check results #5575 - MF
+  * classic ui: aggressively check for possible buffer overflows in cmd.cgi 
(thx GitHub) #5434 - MF
+  * classic ui: add missing jquery and jquery-ui-timepicker-addon sources 
#5564 - MF
+  * idoutils: wait for child processes on exit preventing zombies (thx Laurent 
Bigonville) #4427 - MF
+  * initscript: fix ido2db returning invalid lsb codes (Marco Hoyer) #4825 - MF
+  * spec: only add apache user to the icingacmd group if existing #5263 - MF
+  * spec: fix usermod error on SUSE #5430 - GB
+  * spec: backport fedora spec file fixes (thx Fedora  Shawn Starr) #5545 - MF
+- add systemd service files on systemd systems (the init scripts will be 
removed in the future on these systems)
+- added icinga-exec-start-pre and ido2db-exec-start-pre scripts to set up the 
environment before the icinga processes are started by systemd
+- added icinga-fix-systemd-services.patch - make sure that the ExecStartPre 
script are called and there is no need for a separate sysconfig file for the 
icinga systemd service
+- added icinga-fix-apache-issues-by-using-old-conf.patch - Apache 2.4 has 
issues with the new Icinga apache conf.d file so staying with the old for now
+- removed 0001-classic-ui-fix-CVE-2013-7107.patch - because of upstream fix
+- removed icinga-fix-create-mysql-script.patch - because of upstream fix
+- removed icinga-add-ifdefine-to-apache.patch - superseeded by 
icinga-fix-apache-issues-by-using-old-conf.patch
+- icinga-www now requires icinga-doc to provide the language flag images and 
documentation
+- consistently use spaces instead of tabs in icinga.spec
+
+---

Old:

  0001-classic-ui-fix-CVE-2013-7107.patch
  icinga-1.10.2.tar.gz
  icinga-add-ifdefine-to-apache.patch
  icinga-fix-create-mysql-script.patch

New:

  icinga-1.10.3.tar.gz
  icinga-exec-start-pre
  icinga-fix-apache-issues-by-using-old-conf.patch
  icinga-fix-systemd-services.patch
  ido2db-exec-start-pre



Other differences:
--
++ icinga.spec ++
--- /var/tmp/diff_new_pack.mewwBy/_old  2014-02-24 15:50:26.0 +0100
+++ /var/tmp/diff_new_pack.mewwBy/_new  2014-02-24 15:50:26.0 +0100
@@ -16,8 +16,14 @@
 #
 
 
+%if 0%{?suse_version} = 1210
+%define using_systemd 1
+%else
+%define using_sysvinit 1
+%endif
+
 Name:   icinga
-Version:1.10.2
+Version:1.10.3
 Release:0
 
 Summary:Host/service/network monitoring program
@@ -42,12 +48,12 @@
 Source15:   mini_epn.8
 Source16:   log2ido.8
 Source17:   icinga-favicon.ico
-# PATCH-FIX-OPENSUSE icinga-add-ifdefine-to-apache.patch
-Patch0: icinga-add-ifdefine-to-apache.patch
-# PATCH-FIX-OPENSUSE icinga-fix-create-mysql-script.patch
-Patch1: icinga-fix-create-mysql-script.patch
-# PATCH-FIX-UPSTREAM 0001-classic-ui-fix-CVE-2013-7107.patch bnc#859424
-Patch2: 0001-classic-ui-fix-CVE-2013-7107.patch
+Source18:   icinga-exec-start-pre
+Source19:   ido2db-exec-start-pre
+# PATCH-FIX-OPENSUSE icinga-fix-apache-issues-by-using-old-conf.patch
+Patch0: icinga-fix-apache-issues-by-using-old-conf.patch
+# PATCH-FIX-OPENSUSE icinga-fix-systemd-services.patch
+Patch1: icinga-fix-systemd-services.patch
 Provides:   monitoring_daemon
 BuildRequires:  apache2-devel
 BuildRequires:  nagios-rpm-macros = 0.08
@@ -68,6 +74,9 @@
 BuildRequires:  openssl
 BuildRequires:  pcre-devel
 BuildRequires:  zlib-devel
+%if 0%{?using_systemd}
+BuildRequires:  systemd
+%endif
 Requires:   net-tools
 Requires(pre):  %fillup_prereq
 Requires(pre):  %insserv_prereq
@@ -83,6 +92,9 @@
 %{perl_requires}
 %endif
 %{?libperl_requires}
+%if 0%{?using_systemd}
+%{?systemd_requires}
+%endif
 

commit perl-Devel-PatchPerl for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Devel-PatchPerl for 
openSUSE:Factory checked in at 2014-02-24 15:51:02

Comparing /work/SRC/openSUSE:Factory/perl-Devel-PatchPerl (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Devel-PatchPerl.new (New)


Package is perl-Devel-PatchPerl

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Devel-PatchPerl/perl-Devel-PatchPerl.changes
2013-11-26 19:25:20.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-PatchPerl.new/perl-Devel-PatchPerl.changes
   2014-02-24 15:51:04.0 +0100
@@ -1,0 +2,13 @@
+Mon Feb 24 06:45:27 UTC 2014 - co...@suse.com
+
+- updated to 1.18
+ Update included hints to v5.19.9 level
+
+---
+Mon Feb 24 06:10:14 UTC 2014 - co...@suse.com
+
+- updated to 1.16
+add extra phony targets to help case insensitive file systems 
+Configure should check same Berkeley DB header DB_File uses 
+
+---

Old:

  Devel-PatchPerl-1.14.tar.gz

New:

  Devel-PatchPerl-1.18.tar.gz



Other differences:
--
++ perl-Devel-PatchPerl.spec ++
--- /var/tmp/diff_new_pack.ZcTJDH/_old  2014-02-24 15:51:05.0 +0100
+++ /var/tmp/diff_new_pack.ZcTJDH/_new  2014-02-24 15:51:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-PatchPerl
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   perl-Devel-PatchPerl
-Version:1.14
+Version:1.18
 Release:0
 %define cpan_name Devel-PatchPerl
 Summary:Patch perl source a la Devel::PPPort's buildperl.pl
@@ -30,10 +30,6 @@
 BuildRequires:  perl-macros
 BuildRequires:  perl(File::pushd) = 1.00
 BuildRequires:  perl(Module::Pluggable)
-#BuildRequires: perl(Devel::PatchPerl)
-#BuildRequires: perl(Devel::PatchPerl::Hints)
-#BuildRequires: perl(feature)
-#BuildRequires: perl(Text::Diff)
 Requires:   perl(File::pushd) = 1.00
 Requires:   perl(Module::Pluggable)
 %{perl_requires}
@@ -62,6 +58,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README tools
+%doc Changes LICENSE README
 
 %changelog

++ Devel-PatchPerl-1.14.tar.gz - Devel-PatchPerl-1.18.tar.gz ++
 3527 lines of diff (skipped)

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



commit perl-Task-Kensho-Dates for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Task-Kensho-Dates for 
openSUSE:Factory checked in at 2014-02-24 15:51:58

Comparing /work/SRC/openSUSE:Factory/perl-Task-Kensho-Dates (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Task-Kensho-Dates.new (New)


Package is perl-Task-Kensho-Dates

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Task-Kensho-Dates/perl-Task-Kensho-Dates.changes
2012-01-09 11:16:39.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Task-Kensho-Dates.new/perl-Task-Kensho-Dates.changes
   2014-02-24 15:51:59.0 +0100
@@ -1,0 +2,41 @@
+Mon Feb 24 06:10:42 UTC 2014 - co...@suse.com
+
+- updated to 0.35
+   - updated recommendations for Async, CLI, ModuleDev, Scalability,
+ WebDev
+ 
+ 0.34004   2014-01-22 (TRIAL RELEASE)
+   - still more pod and metadata tweaks
+ 
+ 0.34003   2014-01-22 (TRIAL RELEASE)
+   - more pod and metadata tweaks
+ 
+ 0.34002   2014-01-21 (TRIAL RELEASE)
+   - fix mangled abstract in META.*
+   - fixed missing list of recommendations in Task::Kensho pod
+ 
+ 0.34001   2014-01-21 (TRIAL RELEASE)
+   - fix munging of ::Hackery preamble into stopwords
+   - fixed bugtracker metadata (now indicating github issues)
+   - distributions split apart again, with new! and enhanced!
+ Dist::Zilla generation magic
+ 
+ 0.34  2013-08-20 01:27:07Z (TRIAL RELEASE)
+   - distributions reunified under Task-Kensho, and now auto-generated
+ from a master YAML file using Dist::Zilla
+ 
+ 0.33  2012-06-24
+   - Task::Kensho::Testing:
+ - Retired Test::Exception and replaced with Test::Fatal
+ - added Test::Deep, Test::Requires and Test::NoWarnings
+   - Task::Kensho::WebDev: added Plack
+ 
+ 0.32  2012-06-08
+   - Fix reference to Module::CoreList (RT#65948)
+   - Add Plack to Task::Kensho::WebDev
+ 
+ 0.31  2011-04-11
+   - Fix Task::Kensho::Logging version, thanks kent
+ 
+
+---

Old:

  Task-Kensho-Dates-0.28.tar.gz

New:

  Task-Kensho-Dates-0.35.tar.gz



Other differences:
--
++ perl-Task-Kensho-Dates.spec ++
--- /var/tmp/diff_new_pack.xsOwSR/_old  2014-02-24 15:52:00.0 +0100
+++ /var/tmp/diff_new_pack.xsOwSR/_new  2014-02-24 15:52:00.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Task-Kensho-Dates
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,15 +17,14 @@
 
 
 Name:   perl-Task-Kensho-Dates
-Version:0.28
+Version:0.35
 Release:0
 %define cpan_name Task-Kensho-Dates
-Summary:A Glimpse at an Enlightened Perl (Dates)
-License:GPL-1.0+ or Artistic-1.0
+Summary:A Glimpse at an Enlightened Perl: Date Modules
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Task-Kensho-Dates/
-#Source: 
http://www.cpan.org/authors/id/A/AP/APEIRON/Task-Kensho-Dates-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -33,38 +32,67 @@
 BuildRequires:  perl(Date::Tiny)
 BuildRequires:  perl(DateTime)
 BuildRequires:  perl(DateTime::Tiny)
+BuildRequires:  perl(Module::Build::Tiny) = 0.034
 BuildRequires:  perl(Time::ParseDate)
 BuildRequires:  perl(Time::Tiny)
-Requires:   perl(DateTime)
-Requires:   perl(DateTime::Tiny)
-Requires:   perl(Date::Tiny)
-Requires:   perl(Time::ParseDate)
-Requires:   perl(Time::Tiny)
+BuildRequires:  perl(version)
+Recommends: perl(DateTime)
+Recommends: perl(DateTime::Tiny)
+Recommends: perl(Date::Tiny)
+Recommends: perl(Time::ParseDate)
+Recommends: perl(Time::Tiny)
 %{perl_requires}
 
 %description
-sorry, no description found
+From the http://en.wikipedia.org/wiki/Kensho manpage:
+
+Kenshō (見性) (C. Wu) is a Japanese term for enlightenment experiences -
+most commonly used within the confines of Zen Buddhism - literally
+meaning seeing one's nature[1] or true self.[2] It generally
+refers to the realization of nonduality of subject and object.[3]
+
+the Task::Kensho manpage is a first cut at building a list of recommended
+modules for Enlightened Perl 

commit perl-Log-Dispatch-Array for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Log-Dispatch-Array for 
openSUSE:Factory checked in at 2014-02-24 15:51:37

Comparing /work/SRC/openSUSE:Factory/perl-Log-Dispatch-Array (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Log-Dispatch-Array.new (New)


Package is perl-Log-Dispatch-Array

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Log-Dispatch-Array/perl-Log-Dispatch-Array.changes
  2013-07-30 12:06:22.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Log-Dispatch-Array.new/perl-Log-Dispatch-Array.changes
 2014-02-24 15:51:38.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 24 06:10:56 UTC 2014 - co...@suse.com
+
+- updated to 1.003
+ fix github links
+
+---

Old:

  Log-Dispatch-Array-1.002.tar.gz

New:

  Log-Dispatch-Array-1.003.tar.gz



Other differences:
--
++ perl-Log-Dispatch-Array.spec ++
--- /var/tmp/diff_new_pack.XI4MJK/_old  2014-02-24 15:51:39.0 +0100
+++ /var/tmp/diff_new_pack.XI4MJK/_new  2014-02-24 15:51:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Log-Dispatch-Array
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   perl-Log-Dispatch-Array
-Version:1.002
+Version:1.003
 Release:0
 %define cpan_name Log-Dispatch-Array
 Summary:log events to an array (reference)

++ Log-Dispatch-Array-1.002.tar.gz - Log-Dispatch-Array-1.003.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Dispatch-Array-1.002/Changes 
new/Log-Dispatch-Array-1.003/Changes
--- old/Log-Dispatch-Array-1.002/Changes2013-07-07 14:07:31.0 
+0200
+++ new/Log-Dispatch-Array-1.003/Changes2013-12-26 04:38:15.0 
+0100
@@ -1,5 +1,8 @@
 Revision history for Log-Dispatch-Array
 
+1.003 2013-12-25 22:38:11-0500 America/New_York
+  fix github links
+
 1.002 2013-07-07 08:07:29 America/New_York
   repackage, update bugtracker
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Dispatch-Array-1.002/MANIFEST 
new/Log-Dispatch-Array-1.003/MANIFEST
--- old/Log-Dispatch-Array-1.002/MANIFEST   2013-07-07 14:07:31.0 
+0200
+++ new/Log-Dispatch-Array-1.003/MANIFEST   2013-12-26 04:38:15.0 
+0100
@@ -7,7 +7,6 @@
 README
 dist.ini
 lib/Log/Dispatch/Array.pm
-t/00-compile.t
 t/000-report-versions-tiny.t
 t/simple.t
 xt/release/changes_has_content.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Dispatch-Array-1.002/META.json 
new/Log-Dispatch-Array-1.003/META.json
--- old/Log-Dispatch-Array-1.002/META.json  2013-07-07 14:07:31.0 
+0200
+++ new/Log-Dispatch-Array-1.003/META.json  2013-12-26 04:38:15.0 
+0100
@@ -4,7 +4,7 @@
   Ricardo SIGNES r...@cpan.org
],
dynamic_config : 0,
-   generated_by : Dist::Zilla version 4.300036, CPAN::Meta::Converter 
version 2.131560,
+   generated_by : Dist::Zilla version 5.007, CPAN::Meta::Converter version 
2.133380,
license : [
   perl_5
],
@@ -35,8 +35,6 @@
   },
   test : {
  requires : {
-File::Find : 0,
-File::Temp : 0,
 Test::Deep : 0,
 Test::More : 0.96
  }
@@ -45,125 +43,155 @@
release_status : stable,
resources : {
   bugtracker : {
- web : https://github.com/rjbs/log-dispatch-array/issues;
+ web : https://github.com/rjbs/Log-Dispatch-Array/issues;
   },
-  homepage : https://github.com/rjbs/log-dispatch-array;,
+  homepage : https://github.com/rjbs/Log-Dispatch-Array;,
   repository : {
  type : git,
- url : https://github.com/rjbs/log-dispatch-array.git;,
- web : https://github.com/rjbs/log-dispatch-array;
+ url : https://github.com/rjbs/Log-Dispatch-Array.git;,
+ web : https://github.com/rjbs/Log-Dispatch-Array;
   }
},
-   version : 1.002,
+   version : 1.003,
x_Dist_Zilla : {
   perl : {
- version : 5.019001
+ version : 5.018001
   },
   plugins : [
  {
 class : Dist::Zilla::Plugin::Git::GatherDir,
 name : @RJBS/Git::GatherDir,
-version : 2.014
+version : 2.019
  },
  {
 class : Dist::Zilla::Plugin::CheckPrereqsIndexed,
 name : 

commit perl-Task-Kensho-Exceptions for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Task-Kensho-Exceptions for 
openSUSE:Factory checked in at 2014-02-24 15:53:02

Comparing /work/SRC/openSUSE:Factory/perl-Task-Kensho-Exceptions (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Task-Kensho-Exceptions.new (New)


Package is perl-Task-Kensho-Exceptions

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Task-Kensho-Exceptions/perl-Task-Kensho-Exceptions.changes
  2012-01-09 11:16:47.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Task-Kensho-Exceptions.new/perl-Task-Kensho-Exceptions.changes
 2014-02-24 15:53:03.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 24 06:07:49 UTC 2014 - co...@suse.com
+
+- updated to 0.35
+
+---

Old:

  Task-Kensho-Exceptions-0.28.tar.gz

New:

  Task-Kensho-Exceptions-0.35.tar.gz



Other differences:
--
++ perl-Task-Kensho-Exceptions.spec ++
--- /var/tmp/diff_new_pack.xzPB5q/_old  2014-02-24 15:53:04.0 +0100
+++ /var/tmp/diff_new_pack.xzPB5q/_new  2014-02-24 15:53:04.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Task-Kensho-Exceptions
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,48 +17,78 @@
 
 
 Name:   perl-Task-Kensho-Exceptions
-Version:0.28
+Version:0.35
 Release:0
 %define cpan_name Task-Kensho-Exceptions
-Summary:A Glimpse at an Enlightened Perl (Exceptions)
-License:GPL-1.0+ or Artistic-1.0
+Summary:A Glimpse at an Enlightened Perl: Exception Handling
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Task-Kensho-Exceptions/
-#Source: 
http://www.cpan.org/authors/id/A/AP/APEIRON/Task-Kensho-Exceptions-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Module::Build::Tiny) = 0.034
 BuildRequires:  perl(Try::Tiny)
 BuildRequires:  perl(TryCatch)
-Requires:   perl(TryCatch)
-Requires:   perl(Try::Tiny)
+BuildRequires:  perl(autodie)
+BuildRequires:  perl(version)
+Recommends: perl(autodie)
+Recommends: perl(TryCatch)
+Recommends: perl(Try::Tiny)
 %{perl_requires}
 
 %description
-sorry, no description found
+From the http://en.wikipedia.org/wiki/Kensho manpage:
+
+Kenshō (見性) (C. Wu) is a Japanese term for enlightenment experiences -
+most commonly used within the confines of Zen Buddhism - literally
+meaning seeing one's nature[1] or true self.[2] It generally
+refers to the realization of nonduality of subject and object.[3]
+
+the Task::Kensho manpage is a first cut at building a list of recommended
+modules for Enlightened Perl development. CPAN is wonderful, but there are
+too many wheels and you have to pick and choose amongst the various
+competing technologies.
+
+The plan is for the Task::Kensho manpage to be a rough testing ground for
+ideas that go into among other things the Enlightened Perl Organisation
+Extended Core (EPO-EC).
+
+The modules that are bundled by the Task::Kensho manpage are broken down
+into several categories and are still being considered. They are all taken
+from various top 100 most used perl modules lists and from discussions with
+various subject matter experts in the Perl Community. That said, this
+bundle does _not_ follow the guidelines established for the EPO-EC for peer
+review via industry advisers.
+
+Starting in 2011, the Task::Kensho manpage split its sub-groups of modules
+into individually-installable tasks. Each the Task::Kensho manpage sub-task
+is listed at the beginning of its section in this documentation.
+
+When installing the Task::Kensho manpage itself, you will be asked to
+install each sub-task in turn, or you can install individual tasks
+separately. These individual tasks will always install all their modules by
+default. This facilitates the ease and simplicity the distribution aims to
+achieve.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+%{__perl} Build.PL --installdirs=vendor
+./Build build --flags=%{?_smp_mflags}
 
 %check
-%{__make} test
+./Build test
 
 %install
-%perl_make_install
-%perl_process_packlist
+./Build install 

commit rubygem-tins for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-tins for openSUSE:Factory 
checked in at 2014-02-24 15:53:31

Comparing /work/SRC/openSUSE:Factory/rubygem-tins (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-tins.new (New)


Package is rubygem-tins

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-tins/rubygem-tins.changes
2014-02-12 20:29:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-tins.new/rubygem-tins.changes   
2014-02-24 15:53:32.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 1.0.0, no changelog
+
+---

Old:

  tins-0.13.2.gem

New:

  tins-1.0.0.gem



Other differences:
--
++ rubygem-tins.spec ++
--- /var/tmp/diff_new_pack.uTQqGO/_old  2014-02-24 15:53:33.0 +0100
+++ /var/tmp/diff_new_pack.uTQqGO/_new  2014-02-24 15:53:33.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-tins
-Version:0.13.2
+Version:1.0.0
 Release:0
 %define mod_name tins
 %define mod_full_name %{mod_name}-%{version}

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



commit perl-Task-Kensho-OOP for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package perl-Task-Kensho-OOP for 
openSUSE:Factory checked in at 2014-02-24 15:53:05

Comparing /work/SRC/openSUSE:Factory/perl-Task-Kensho-OOP (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Task-Kensho-OOP.new (New)


Package is perl-Task-Kensho-OOP

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Task-Kensho-OOP/perl-Task-Kensho-OOP.changes
2012-01-09 11:16:48.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Task-Kensho-OOP.new/perl-Task-Kensho-OOP.changes
   2014-02-24 15:53:07.0 +0100
@@ -1,0 +2,48 @@
+Mon Feb 24 06:10:41 UTC 2014 - co...@suse.com
+
+- updated to 0.35
+   - updated recommendations for Async, CLI, ModuleDev, Scalability,
+ WebDev
+ 
+ 0.34004   2014-01-22 (TRIAL RELEASE)
+   - still more pod and metadata tweaks
+ 
+ 0.34003   2014-01-22 (TRIAL RELEASE)
+   - more pod and metadata tweaks
+ 
+ 0.34002   2014-01-21 (TRIAL RELEASE)
+   - fix mangled abstract in META.*
+   - fixed missing list of recommendations in Task::Kensho pod
+ 
+ 0.34001   2014-01-21 (TRIAL RELEASE)
+   - fix munging of ::Hackery preamble into stopwords
+   - fixed bugtracker metadata (now indicating github issues)
+   - distributions split apart again, with new! and enhanced!
+ Dist::Zilla generation magic
+ 
+ 0.34  2013-08-20 01:27:07Z (TRIAL RELEASE)
+   - distributions reunified under Task-Kensho, and now auto-generated
+ from a master YAML file using Dist::Zilla
+ 
+ 0.33  2012-06-24
+   - Task::Kensho::Testing:
+ - Retired Test::Exception and replaced with Test::Fatal
+ - added Test::Deep, Test::Requires and Test::NoWarnings
+   - Task::Kensho::WebDev: added Plack
+ 
+ 0.32  2012-06-08
+   - Fix reference to Module::CoreList (RT#65948)
+   - Add Plack to Task::Kensho::WebDev
+ 
+ 0.31  2011-04-11
+   - Fix Task::Kensho::Logging version, thanks kent
+ 
+ 0.30  2011-04-11
+   - new group, Task::Kensho::Logging
+ 
+ 0.29  2011-03-25
+   - Task::Kensho::CLI: Fix Module::CoreList link in POD, thanks 
alis...@alisterwest.com.
+   - Task::Kensho::WebCrawling: Bundle::LWP is gone; replace with
+ LWP::UserAgent. Thanks, ken...@cpan.org.
+
+---

Old:

  Task-Kensho-OOP-0.28.tar.gz

New:

  Task-Kensho-OOP-0.35.tar.gz



Other differences:
--
++ perl-Task-Kensho-OOP.spec ++
--- /var/tmp/diff_new_pack.vUniDA/_old  2014-02-24 15:53:08.0 +0100
+++ /var/tmp/diff_new_pack.vUniDA/_new  2014-02-24 15:53:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Task-Kensho-OOP
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,52 +15,76 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   perl-Task-Kensho-OOP
-Version:0.28
+Version:0.35
 Release:0
 %define cpan_name Task-Kensho-OOP
-Summary:A Glimpse at an Enlightened Perl (OOP)
+Summary:A Glimpse at an Enlightened Perl: Object Oriented Programming
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Task-Kensho-OOP/
-Source: 
http://www.cpan.org/authors/id/A/AP/APEIRON/%{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Module::Build::Tiny) = 0.034
 BuildRequires:  perl(Task::Moose)
-#BuildRequires: perl(CPANPLUS::Backend)
-#BuildRequires: perl(inc::Module::Install)
-#BuildRequires: perl(JSON)
-#BuildRequires: perl(LWP::Simple)
-#BuildRequires: perl(Module::AutoInstall)
-#BuildRequires: perl(Module::Build)
-#BuildRequires: perl(Module::Install::Base)
-#BuildRequires: perl(Parse::CPAN::Meta)
-#BuildRequires: perl(YAML::Tiny)
-Requires:   perl(Task::Moose)
+BuildRequires:  perl(version)
+Recommends: perl(Task::Moose)
 %{perl_requires}
 
 %description
-A Glimpse at an Enlightened Perl (OOP)
+From the http://en.wikipedia.org/wiki/Kensho manpage:
+
+Kenshō (見性) (C. Wu) is a Japanese term for enlightenment experiences -
+most commonly used within the confines of Zen Buddhism - literally
+meaning seeing 

commit python3-logilab-common for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package python3-logilab-common for 
openSUSE:Factory checked in at 2014-02-24 15:53:16

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


Package is python3-logilab-common

Changes:

--- 
/work/SRC/openSUSE:Factory/python3-logilab-common/python3-logilab-common.changes
2013-11-23 08:14:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-logilab-common.new/python3-logilab-common.changes
   2014-02-24 15:53:17.0 +0100
@@ -1,0 +2,17 @@
+Mon Feb 24 10:40:11 UTC 2014 - p.drou...@gmail.com
+
+- Do not requires explicitely python3
+- Use source from indicated Url
+
+---
+Sun Feb 23 16:55:55 UTC 2014 - a...@gmx.de
+
+- update to version 0.61.0, below are the changed taken from Changelog
+   * pdf_ext: removed, it had no known users (CVE-2014-1838)
+   * shellutils: fix tempfile issue in Execute, and deprecate it
+ (CVE-2014-1839)
+   * pytest: use 'env' to run the python interpreter
+   * graph: ensure output is ordered on node and graph ids (#202314)
+
+
+---

Old:

  logilab-common-0.60.0.tar.gz

New:

  logilab-common-0.61.0.tar.gz



Other differences:
--
++ python3-logilab-common.spec ++
--- /var/tmp/diff_new_pack.rg3zQd/_old  2014-02-24 15:53:18.0 +0100
+++ /var/tmp/diff_new_pack.rg3zQd/_new  2014-02-24 15:53:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-logilab-common
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,17 +17,15 @@
 
 
 Name:   python3-logilab-common
-Version:0.60.0
+Version:0.61.0
 Release:0
 Url:http://www.logilab.org/projects/common/
 Summary:Python lowlevel functionality shared by logilab projects
 License:LGPL-2.1+
 Group:  Development/Languages/Python
 Source: 
http://download.logilab.org/pub/common/logilab-common-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
-Requires:   python3 = %{py3_ver}
 BuildArch:  noarch
 
 %description

++ logilab-common-0.60.0.tar.gz - logilab-common-0.61.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/logilab-common-0.60.0/ChangeLog 
new/logilab-common-0.61.0/ChangeLog
--- old/logilab-common-0.60.0/ChangeLog 2013-07-26 12:18:50.0 +0200
+++ new/logilab-common-0.61.0/ChangeLog 2014-02-11 16:02:26.0 +0100
@@ -1,6 +1,34 @@
 ChangeLog for logilab.common
 
 
+2014-02-11  --  0.61.0
+   * pdf_ext: removed, it had no known users (CVE-2014-1838)
+
+   * shellutils: fix tempfile issue in Execute, and deprecate it
+ (CVE-2014-1839)
+
+   * pytest: use 'env' to run the python interpreter
+
+   * graph: ensure output is ordered on node and graph ids (#202314)
+
+
+2013-16-12  --  0.60.1
+* modutils:
+
+  * don't propagate IOError when package's __init__.py file doesn't
+ exist (#174606)
+
+  * ensure file is closed, may cause pb depending on the interpreter, eg
+   pypy) (#180876)
+  
+  * fix support for `extend_path` based nested namespace packages ;
+   Report and patch by John Johnson (#177651)
+
+* fix some cases of failing python3 install on windows platform / cross
+ compilation (#180836)
+
+
+
 2013-07-26  --  0.60.0
 * configuration: rename option_name method into option_attrname (#140667)
 
@@ -8,10 +36,9 @@
 
 * modutils:
 
-  - fix typo causing name error in python3 / bad message in python2
+- fix typo causing name error in python3 / bad message in python2
(#136037)
-
-  - fix python3.3 crash in file_from_modpath due to implementation
+- fix python3.3 crash in file_from_modpath due to implementation
 change of imp.find_module wrt builtin modules (#137244)
 
 * testlib: use assertCountEqual instead of 
assertSameElements/assertItemsEqual
@@ -30,10 +57,9 @@
 
 * registry:
 
-  - select_or_none should not silent ObjectNotFound exception
+- select_or_none should not silent ObjectNotFound exception
 (closes #119819)
-
-  - remove 2 accidentally introduced tabs breaking python 3 compat
+- remove 2 accidentally introduced tabs breaking python 

commit installation-images-openSUSE for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package installation-images-openSUSE for 
openSUSE:Factory checked in at 2014-02-24 17:28:13

Comparing /work/SRC/openSUSE:Factory/installation-images-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.installation-images-openSUSE.new (New)


Package is installation-images-openSUSE

Changes:

--- 
/work/SRC/openSUSE:Factory/installation-images-openSUSE/installation-images-openSUSE.changes
2014-02-21 13:48:28.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images-openSUSE.new/installation-images-openSUSE.changes
   2014-02-24 17:28:15.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 21 16:22:49 CET 2014 - snw...@suse.de
+
+- replace sles11.exec with sles12.exec (bnc #865109)
+- link gawk also in initrd or we get dangling symlinks
+
+---

Old:

  gawk.patch
  installation-images-14.46.tar.bz2

New:

  installation-images-14.47.tar.bz2



Other differences:
--
++ installation-images-openSUSE.spec ++
--- /var/tmp/diff_new_pack.1Swwlt/_old  2014-02-24 17:28:15.0 +0100
+++ /var/tmp/diff_new_pack.1Swwlt/_new  2014-02-24 17:28:15.0 +0100
@@ -353,10 +353,9 @@
 Summary:Installation Image Files for %theme
 License:GPL-2.0+
 Group:  Metapackages
-Version:14.46
+Version:14.47
 Release:0
-Source: installation-images-14.46.tar.bz2
-Patch0:  gawk.patch
+Source: installation-images-14.47.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 
@@ -393,7 +392,6 @@
 %prep
 %setup -n installation-images-%{version}
 rm -f /usr/lib/build/checks/04-check-filelist
-%patch0 -p1
 
 %build
 unset MALLOC_CHECK_

++ installation-images-14.46.tar.bz2 - installation-images-14.47.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.46/VERSION 
new/installation-images-14.47/VERSION
--- old/installation-images-14.46/VERSION   2014-02-19 08:53:43.0 
+0100
+++ new/installation-images-14.47/VERSION   2014-02-21 16:22:41.0 
+0100
@@ -1 +1 @@
-14.46
+14.47
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.46/changelog 
new/installation-images-14.47/changelog
--- old/installation-images-14.46/changelog 2014-02-19 08:53:47.0 
+0100
+++ new/installation-images-14.47/changelog 2014-02-21 16:22:45.0 
+0100
@@ -1,4 +1,8 @@
-2014-02-19:HEAD
+2014-02-21:HEAD
+   - replace sles11.exec with sles12.exec (bnc #865109)
+   - link gawk also in initrd or we get dangling symlinks
+
+2014-02-19:14.46
- add all tools from xorg-x11-Xvnc (bnc #855246)
 
 2014-02-18:14.45
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-14.46/data/initrd/initrd.file_list 
new/installation-images-14.47/data/initrd/initrd.file_list
--- old/installation-images-14.46/data/initrd/initrd.file_list  2014-02-18 
16:57:19.0 +0100
+++ new/installation-images-14.47/data/initrd/initrd.file_list  2014-02-21 
15:27:04.0 +0100
@@ -318,6 +318,10 @@
   /usr/bin/gzip
   /usr/bin/gunzip
 
+gawk:
+  /usr/bin/gawk
+  s gawk usr/bin/awk
+
 nscd:
   # remaining files are in root image
   d /var/run/nscd
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/installation-images-14.46/data/initrd/s390/sles11.exec 
new/installation-images-14.47/data/initrd/s390/sles11.exec
--- old/installation-images-14.46/data/initrd/s390/sles11.exec  2013-11-18 
11:49:20.0 +0100
+++ new/installation-images-14.47/data/initrd/s390/sles11.exec  1970-01-01 
01:00:00.0 +0100
@@ -1,11 +0,0 @@
-/* REXX LOAD EXEC FOR SUSE LINUX S/390 VM GUESTS   */  
 
-/* LOADS SUSE LINUX S/390 FILES INTO READER*/  
 
-SAY '' 
 
-SAY 'LOADING SLES11 FILES INTO READER...'  

-'CP CLOSE RDR' 
 
-'PURGE RDR ALL'
 
-'SPOOL PUNCH * RDR'
 
-'PUNCH SLES11 IMAGE A (NOH'

-'PUNCH SLES11 PARMFILE A (NOH'   
-'PUNCH SLES11 INITRD A (NOH'  
-'I 00C'  

commit tigervnc for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package tigervnc for openSUSE:Factory 
checked in at 2014-02-24 18:25:52

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


Package is tigervnc

Changes:

--- /work/SRC/openSUSE:Factory/tigervnc/tigervnc.changes2014-02-15 
08:07:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.tigervnc.new/tigervnc.changes   2014-02-24 
18:25:52.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 24 14:42:50 UTC 2014 - m...@suse.com
+
+- u_arch-Fix-image-and-bitmap-byte-order-for-ppc64le.patch:
+  arch: Fix image and bitmap byte order for ppc64le (bnc#865069)
+
+---

New:

  u_arch-Fix-image-and-bitmap-byte-order-for-ppc64le.patch



Other differences:
--
++ tigervnc.spec ++
--- /var/tmp/diff_new_pack.icKuZy/_old  2014-02-24 18:25:53.0 +0100
+++ /var/tmp/diff_new_pack.icKuZy/_new  2014-02-24 18:25:53.0 +0100
@@ -105,6 +105,7 @@
 Patch11:u_aarch64-support.patch
 Patch12:N_xorg-server-xdmcp.patch
 Patch13:n_tigervnc-dont-build-gtf.patch
+Patch14:u_arch-Fix-image-and-bitmap-byte-order-for-ppc64le.patch
 
 %description
 TigerVNC is a high-performance, platform-neutral implementation of VNC 
(Virtual Network Computing), 
@@ -142,6 +143,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch13 -p1
+%patch14 -p1
 popd
 
 %build

++ u_arch-Fix-image-and-bitmap-byte-order-for-ppc64le.patch ++
From: Dinar Valeev dval...@suse.com
Date: Mon Feb 24 10:48:22 2014 +0100
Subject: [PATCH]arch: Fix image and bitmap byte order for ppc64le
Patch-Mainline: to be upstreamed
Git-commit: 3874826e84151917a443f8efb46ea7414c990243
Git-repo: git://anongit.freedesktop.org/git/xorg/xserver
References: bnc#865069
Signed-off-by: Egbert Eich e...@suse.com

So far PPC was big endian for sure. For ppc64le this is no longer
true.

Signed-off-by: Egbert Eich e...@freedesktop.org
---
 include/servermd.h | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/include/servermd.h b/include/servermd.h
index 11f6c10..256d84b 100644
--- a/include/servermd.h
+++ b/include/servermd.h
@@ -114,8 +114,13 @@ SOFTWARE.
 
 #if defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__)
 
-#define IMAGE_BYTE_ORDERMSBFirst
-#define BITMAP_BIT_ORDERMSBFirst
+#if defined(__LITTLE_ENDIAN__)
+#define IMAGE_BYTE_ORDER  LSBFirst
+#define BITMAP_BIT_ORDER  LSBFirst
+#else
+#define IMAGE_BYTE_ORDER  MSBFirst
+#define BITMAP_BIT_ORDER  MSBFirst
+#endif
 #define GLYPHPADBYTES   4
 
 #endif  /* PowerPC */

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



commit audacity for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package audacity for openSUSE:Factory 
checked in at 2014-02-25 07:32:07

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


Package is audacity

Changes:

--- /work/SRC/openSUSE:Factory/audacity/audacity.changes2013-09-26 
07:02:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.audacity.new/audacity.changes   2014-02-25 
07:32:08.0 +0100
@@ -1,0 +2,12 @@
+Sat Feb 22 10:58:59 UTC 2014 - dap.darkn...@gmail.com
+
+- Update to 2.0.5:
+  * Audacity 2.0.4 to hang or the computer to crash. WDM-KS has
+been removed from Audacity 2.0.5 while we work on safely
+enabling this host.
+  * You can now navigate through an effect or other dialog using
+keyboard TAB.
+  * See more at
+http://wiki.audacityteam.org/wiki/Release_Notes_2.0.5
+
+---

Old:

  audacity-minsrc-2.0.4.tar.xz

New:

  audacity-minsrc-2.0.5.tar.xz



Other differences:
--
++ audacity.spec ++
--- /var/tmp/diff_new_pack.LL1hjR/_old  2014-02-25 07:32:09.0 +0100
+++ /var/tmp/diff_new_pack.LL1hjR/_new  2014-02-25 07:32:09.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package audacity
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -54,7 +54,7 @@
 %if %{with twolame}
 BuildRequires:  pkgconfig(twolame)
 %endif
-Version:2.0.4
+Version:2.0.5
 Release:0
 Summary:A Free, Cross-Platform Digital Audio Editor
 License:GPL-2.0+

++ audacity-minsrc-2.0.4.tar.xz - audacity-minsrc-2.0.5.tar.xz ++
 101474 lines of diff (skipped)

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



commit libcmpiutil for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package libcmpiutil for openSUSE:Factory 
checked in at 2014-02-25 07:32:42

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


Package is libcmpiutil

Changes:

--- /work/SRC/openSUSE:Factory/libcmpiutil/libcmpiutil.changes  2013-04-23 
11:32:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.libcmpiutil.new/libcmpiutil.changes 
2014-02-25 07:32:43.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 17 12:54:08 UTC 2014 - kkae...@suse.com
+
+- add upstream patch
+  0001-libcmpiutil-Fix-endianness-issues-in-embedded-object.patch
+
+---

New:

  0001-libcmpiutil-Fix-endianness-issues-in-embedded-object.patch



Other differences:
--
++ libcmpiutil.spec ++
--- /var/tmp/diff_new_pack.akM9z3/_old  2014-02-25 07:32:43.0 +0100
+++ /var/tmp/diff_new_pack.akM9z3/_new  2014-02-25 07:32:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libcmpiutil
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -38,6 +38,7 @@
 Group:  Development/Libraries/C and C++
 Source: %{name}-%{version}.tar.bz2
 Patch1: fix-arm.patch
+Patch2: 0001-libcmpiutil-Fix-endianness-issues-in-embedded-object.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -76,16 +77,12 @@
 standardizing method dispatch and argument checking.
 
 
-
-Authors:
-
-Dan Smith da...@us.ibm.com
-
 %prep
 %setup -q
 %ifarch %arm
 %patch1 -p1
 %endif
+%patch2 -p1
 chmod -x *.c *.y *.h *.l
 
 %build

++ 0001-libcmpiutil-Fix-endianness-issues-in-embedded-object.patch ++
From 8c25b49b05065ce90c83b2102bd8462a7bb18d69 Mon Sep 17 00:00:00 2001
From: Thilo Boehm tbo...@linux.vnet.ibm.com
Date: Thu, 8 Aug 2013 15:27:53 +0200
Subject: [PATCH] libcmpiutil: Fix endianness issues in embedded object parsing

The auxiliary functions _set_int_prop/parse_int_property only
worked on little-endian archs as they performed an incorrect
reinterpretation of 64bit integers. Fixed by using the proper
CMPIValue union fields.

Signed-off-by: Thilo Boehm tbo...@linux.vnet.ibm.com
Signed-off-by: Viktor Mihajlovski mihaj...@linux.vnet.ibm.com
---
 eo_parser.c | 35 ++-
 eo_parser_xml.c | 49 +++--
 2 files changed, 61 insertions(+), 23 deletions(-)

diff --git a/eo_parser.c b/eo_parser.c
index 36106fddc99d..4c5b0ee229dd 100644
--- a/eo_parser.c
+++ b/eo_parser.c
@@ -113,31 +113,40 @@ static int _set_int_prop(CMPISint64 value,
  CMPIInstance *inst)
 {
 CMPIStatus s;
-uint64_t unsigned_val = 0;
-int64_t signed_val = 0;
+CMPIValue val;
 
-switch(type) {
+switch (type) {
 case CMPI_uint64:
+val.uint64 = (uint64_t) value;
+break;
 case CMPI_uint32:
+val.uint32 = (uint32_t) value;
+break;
 case CMPI_uint16:
+val.uint16 = (uint16_t) value;
+break;
 case CMPI_uint8:
-unsigned_val = (uint64_t) value;
-s = CMSetProperty(inst,
-  prop,
-  (CMPIValue *) (unsigned_val),
-  type);
+val.uint8 = (uint8_t) value;
 break;
 case CMPI_sint64:
+val.sint64 = (int64_t) value;
+break;
 case CMPI_sint32:
+val.sint32 = (int32_t) value;
+break;
 case CMPI_sint16:
+val.sint16 = (int16_t) value;
+break;
 case CMPI_sint8:
+val.sint8 = (int8_t) value;
+break;
 default:
-signed_val = (int64_t) value;
-s = CMSetProperty(inst,
-  prop,
-  (CMPIValue *) (signed_val),
-  type);
+return 0;
 }
+s = CMSetProperty(inst,
+  prop,
+  val,
+  type);
 
 if (s.rc == CMPI_RC_OK)
return 1;
diff --git a/eo_parser_xml.c b/eo_parser_xml.c
index c8b28cc63289..551a87be8a8d 100644
--- a/eo_parser_xml.c
+++ b/eo_parser_xml.c
@@ -90,11 +90,48 @@ 

commit leechcraft for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package leechcraft for openSUSE:Factory 
checked in at 2014-02-25 07:32:36

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


Package is leechcraft

Changes:

--- /work/SRC/openSUSE:Factory/leechcraft/leechcraft.changes2014-01-15 
10:12:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.leechcraft.new/leechcraft.changes   
2014-02-25 07:32:37.0 +0100
@@ -1,0 +2,8 @@
+Sun Feb 23 14:57:17 UTC 2014 - dap.darkn...@gmail.com
+
+- New plugins were enabled:
+  * Azoth Astrality: telepathy framework (Factory);
+  * Qrosp: scripting support;
+  * Textogroose: scripted lyrics finder.
+
+---



Other differences:
--
++ leechcraft.spec ++
--- /var/tmp/diff_new_pack.moqPyn/_old  2014-02-25 07:32:38.0 +0100
+++ /var/tmp/diff_new_pack.moqPyn/_new  2014-02-25 07:32:38.0 +0100
@@ -39,6 +39,7 @@
 # error: the value of 'w' is not usable in a constant expression.
 Patch1: leechcraft-azoth-gcc47.patch
 
+BuildRequires:  Qross-devel
 %if 0%{?suse_version}  1230
 BuildRequires:  boost-devel = 1.50
 %else
@@ -69,6 +70,9 @@
 %endif
 %endif
 BuildRequires:  qwt6-devel
+%if 0%{?suse_version}  1310
+BuildRequires:  pkgconfig(TelepathyQt4)
+%endif
 BuildRequires:  pkgconfig(QJson) = 0.8.1
 BuildRequires:  pkgconfig(QtCore) = 4.8
 BuildRequires:  pkgconfig(QtWebKit)
@@ -190,6 +194,7 @@
 Group:  Productivity/Networking/Other
 Requires:   %{name} = %{version}
 Requires:   %{name}-aggregator
+Recommends: %{name}-qrosp
 
 %description aggregator-bodyfetch
 This package provides a body fetch plugin for LeechCraft Aggregator.
@@ -286,6 +291,28 @@
 This package provides an Adium styles support plugin for LeechCraft Azoth.
 
 
+%if 0%{?suse_version}  1310
+%package azoth-astrality
+Summary:LeechCraft Azoth - Telepathy Module
+Group:  Productivity/Networking/Other
+Requires:   %{name}-azoth = %{version}
+Requires:   telepathy-haze
+Requires:   telepathy-mission-control
+Provides:   %{name}-azoth-protocolplugin
+
+%description azoth-astrality
+This package provides a telepathy plugin for LeechCraft Azoth.
+
+It supportes various protocols provided by telepathy framework.
+
+Features:
+ * Telepathy account creation.
+ * In-band account registration.
+ * Standard one-to-one chats.
+ * Nick resolution.
+%endif
+
+
 %package azoth-autoidler
 Summary:LeechCraft Azoth - Automatic Change of Status Module
 License:BSL-1.0
@@ -1750,6 +1777,16 @@
 It provides support for the Read it Later service.
 
 
+%package qrosp
+Summary:LeechCraft Qross Module
+Group:  Productivity/Networking/Other
+Requires:   %{name} = %{version}
+Requires:   libqrosspython1
+
+%description qrosp
+This package contains a scripting support plugin for Leechcraft.
+
+
 %package sb2
 Summary:LeechCraft SideBar2 Module
 License:BSL-1.0
@@ -1919,6 +1956,21 @@
 and allows to quickly navigate between them.
 
 
+%package textogroose
+Summary:LeechCraft Script-Based Lyrics Module
+Group:  Productivity/Networking/Other
+Requires:   %{name}-http = %{version}
+Requires:   %{name}-summaryrepresentation = %{version}
+Requires:   %{name}-qrosp
+Provides:   %{name}-lyricsprovider
+
+%description textogroose
+This package provides a lyrics finder plugin for LeechCraft.
+
+Textogroose is a kind of supplement to DeadLyrics for sites
+too complex to be described by DeadLyrics rules.
+
+
 %if 0%{?suse_version}  1230
 %package touchstreams
 Summary:LeechCraft VK.com Streaming Module
@@ -2045,7 +2097,11 @@
 -DENABLE_ADVANCEDNOTIFICATIONS=True \
 -DENABLE_AUSCRIE=True \
 -DENABLE_AZOTH=True \
+%if 0%{?suse_version}  1310
+-DENABLE_AZOTH_ASTRALITY=True \
+%else
 -DENABLE_AZOTH_ASTRALITY=False \
+%endif
 -DENABLE_AZOTH_OTROID=True \
 -DENABLE_AZOTH_SHX=True \
 %ifarch %ix86 x86_64 ppc ppc64 %arm aarch
@@ -2118,7 +2174,7 @@
 -DENABLE_POPISHU=True \
 -DENABLE_POSHUKU_AUTOSEARCH=True \
 -DUSE_POSHUKU_CLEANWEB_PCRE=True \
--DENABLE_QROSP=False \
+-DENABLE_QROSP=True \
 -DENABLE_SB2=True \
 -DENABLE_SECMAN=True \
 -DENABLE_SHAITAN=False \
@@ -2127,7 +2183,7 @@
 -DENABLE_SYNCER=False \
 -DENABLE_TABSESSMANAGER=True \
 -DENABLE_TABSLIST=True \
--DENABLE_TEXTOGROOSE=False \
+-DENABLE_TEXTOGROOSE=True \
 -DENABLE_TORRENT=True \
 -DENABLE_BITTORRENT_GEOIP=True \
 %if 0%{?suse_version}  1230

commit python-pywbem for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package python-pywbem for openSUSE:Factory 
checked in at 2014-02-25 07:34:08

Comparing /work/SRC/openSUSE:Factory/python-pywbem (Old)
 and  /work/SRC/openSUSE:Factory/.python-pywbem.new (New)


Package is python-pywbem

Changes:

--- /work/SRC/openSUSE:Factory/python-pywbem/python-pywbem.changes  
2014-01-09 15:34:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-pywbem.new/python-pywbem.changes 
2014-02-25 07:34:10.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 21 13:51:20 UTC 2014 - kkae...@suse.com
+
+- provide 'pywbem' for upstream compatibility
+
+---



Other differences:
--
++ python-pywbem.spec ++
--- /var/tmp/diff_new_pack.6KqvNC/_old  2014-02-25 07:34:10.0 +0100
+++ /var/tmp/diff_new_pack.6KqvNC/_new  2014-02-25 07:34:10.0 +0100
@@ -29,6 +29,7 @@
 BuildRequires:  python-devel
 BuildRequires:  python-xml
 Requires:   python-xml
+Provides:   pywbem = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

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



commit liboggz for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package liboggz for openSUSE:Factory checked 
in at 2014-02-25 07:33:23

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


Package is liboggz

Changes:

--- /work/SRC/openSUSE:Factory/liboggz/liboggz.changes  2011-09-23 
02:09:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.liboggz.new/liboggz.changes 2014-02-25 
07:33:24.0 +0100
@@ -1,0 +2,7 @@
+Sun Feb 23 20:07:05 UTC 2014 - andreas.stie...@gmx.de
+
+- fix build
+- remove source service
+- add source URL
+
+---

Old:

  _service
  _service:recompress:download_url:liboggz-1.1.1.tar.bz2
  _service:set_version:liboggz.spec

New:

  liboggz-1.1.1.tar.gz



Other differences:
--
++ liboggz.spec ++
--- /var/tmp/diff_new_pack.YMCrU1/_old  2014-02-25 07:33:25.0 +0100
+++ /var/tmp/diff_new_pack.YMCrU1/_new  2014-02-25 07:33:25.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package liboggz
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -19,16 +19,16 @@
 %define _SO_nr 2
 
 Name:   liboggz
-Version:to_be_filled_by_service
-Release:3
-License:BSD-3-Clause
+Version:1.1.1
+Release:0
 Summary:Shared libraries for oggz
-Url:http://xiph.org/oggz/
+License:BSD-3-Clause
 Group:  System/Libraries
-Source0:%{name}-%{version}.tar.bz2
+Url:http://xiph.org/oggz/
+Source0:
http://downloads.xiph.org/releases/liboggz/%name-%{version}.tar.gz
 Source1:baselibs.conf
-# PATCH-FIX-UPSTREAM %{name}-1.1.1-docdir.patch 
https://trac.xiph.org/ticket/1758 reddw...@opensuse.org -- This patch makes 
configure honor --docdir
-Patch0: %{name}-1.1.1-docdir.patch
+# PATCH-FIX-UPSTREAM liboggz-1.1.1-docdir.patch 
https://trac.xiph.org/ticket/1758 reddw...@opensuse.org -- This patch makes 
configure honor --docdir
+Patch0: liboggz-1.1.1-docdir.patch
 BuildRequires:  doxygen
 BuildRequires:  libogg-devel
 BuildRequires:  pkg-config
@@ -71,8 +71,8 @@
 
 Summary:Include Files and Libraries mandatory for Development
 Group:  Development/Libraries/C and C++
-Requires:   libogg-devel
 Requires:   %{name}%{_SO_nr} = %{version}
+Requires:   libogg-devel
 
 %description devel
 This package contains all necessary include files and libraries

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



commit phonon4qt5-backend-vlc for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package phonon4qt5-backend-vlc for 
openSUSE:Factory checked in at 2014-02-25 07:33:50

Comparing /work/SRC/openSUSE:Factory/phonon4qt5-backend-vlc (Old)
 and  /work/SRC/openSUSE:Factory/.phonon4qt5-backend-vlc.new (New)


Package is phonon4qt5-backend-vlc

Changes:

--- 
/work/SRC/openSUSE:Factory/phonon4qt5-backend-vlc/phonon4qt5-backend-vlc.changes
2014-02-24 06:53:39.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.phonon4qt5-backend-vlc.new/phonon4qt5-backend-vlc.changes
   2014-02-25 07:33:51.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 24 18:46:59 UTC 2014 - hrvoje.sen...@gmail.com
+
+- Added pkgconfig(Qt5Core), pkgconfig(Qt5Gui) and pkgconfig(Qt5Widgets)
+  BuildRequires instead of relying on phonon4qt5-devel Requires
+
+---



Other differences:
--
++ phonon4qt5-backend-vlc.spec ++
--- /var/tmp/diff_new_pack.qf3r5B/_old  2014-02-25 07:33:51.0 +0100
+++ /var/tmp/diff_new_pack.qf3r5B/_new  2014-02-25 07:33:51.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package phonon-backend-vlc
+# spec file for package phonon4qt5-backend-vlc
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -29,9 +29,12 @@
 BuildRequires:  alsa-devel
 BuildRequires:  cmake
 BuildRequires:  kf5-filesystem
-BuildRequires:  pkgconfig(phonon4qt5) = %{_phonon4qt5_version}
 BuildRequires:  pkgconfig
 BuildRequires:  vlc-devel = 2.0.1
+BuildRequires:  pkgconfig(Qt5Core)
+BuildRequires:  pkgconfig(Qt5Gui)
+BuildRequires:  pkgconfig(Qt5Widgets)
+BuildRequires:  pkgconfig(phonon4qt5) = %{_phonon4qt5_version}
 Requires:   libphonon4qt5 = %{_phonon4qt5_version}
 Requires:   vlc-noX = %( echo `rpm -q --queryformat '%{VERSION}' 
vlc-devel`)
 Provides:   phonon4qt5-backend = %{version}

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



commit libyui-gtk for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package libyui-gtk for openSUSE:Factory 
checked in at 2014-02-25 07:33:34

Comparing /work/SRC/openSUSE:Factory/libyui-gtk (Old)
 and  /work/SRC/openSUSE:Factory/.libyui-gtk.new (New)


Package is libyui-gtk

Changes:

--- /work/SRC/openSUSE:Factory/libyui-gtk/libyui-gtk.changes2014-01-09 
17:24:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.libyui-gtk.new/libyui-gtk.changes   
2014-02-25 07:33:35.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb 19 20:58:13 CET 2014 - anase...@linux.it
+
+- Added seconds to YTimeField as for Qt
+- Fixed BusyCursor
+- Fixed YTree item selection during items population,
+  old implementation ignored selected items.
+- Aligned dialog title behavior to QT
+- 2.44.1
+
+---

Old:

  libyui-gtk-2.44.0.tar.bz2

New:

  libyui-gtk-2.44.1.tar.bz2



Other differences:
--
++ libyui-gtk-doc.spec ++
--- /var/tmp/diff_new_pack.LaVbEO/_old  2014-02-25 07:33:35.0 +0100
+++ /var/tmp/diff_new_pack.LaVbEO/_new  2014-02-25 07:33:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libyui-gtk-doc
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   libyui-gtk-doc
-Version:2.44.0
+Version:2.44.1
 Release:0
 Source: libyui-gtk-%{version}.tar.bz2
 

++ libyui-gtk.spec ++
--- /var/tmp/diff_new_pack.LaVbEO/_old  2014-02-25 07:33:35.0 +0100
+++ /var/tmp/diff_new_pack.LaVbEO/_new  2014-02-25 07:33:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libyui-gtk
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   libyui-gtk
-Version:2.44.0
+Version:2.44.1
 Release:0
 Source: libyui-gtk-%{version}.tar.bz2
 

++ libyui-gtk-2.44.0.tar.bz2 - libyui-gtk-2.44.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-gtk-2.44.0/CMakeLists.txt 
new/libyui-gtk-2.44.1/CMakeLists.txt
--- old/libyui-gtk-2.44.0/CMakeLists.txt2014-02-25 07:33:36.0 
+0100
+++ new/libyui-gtk-2.44.1/CMakeLists.txt2014-02-25 07:33:36.0 
+0100
@@ -1 +1 @@
-symbolic link to /usr/share/libyui/buildtools/CMakeLists.common
+symbolic link to ../libyui-master/buildtools/CMakeLists.common
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-gtk-2.44.0/ChangeLog 
new/libyui-gtk-2.44.1/ChangeLog
--- old/libyui-gtk-2.44.0/ChangeLog 2013-12-05 18:54:08.0 +0100
+++ new/libyui-gtk-2.44.1/ChangeLog 2014-02-24 14:55:54.0 +0100
@@ -1,4 +1,14 @@
 ---
+Wed Feb 19 20:58:13 CET 2014 - anase...@linux.it
+
+- Added seconds to YTimeField as for Qt
+- Fixed BusyCursor
+- Fixed YTree item selection during items population,
+  old implementation ignored selected items.
+- Aligned dialog title behavior to QT
+- 2.44.1
+
+---
 Thu Dec  5 16:36:33 UTC 2013 - mvid...@suse.com
 
 - adjusted to libyui so version 6
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-gtk-2.44.0/VERSION.cmake 
new/libyui-gtk-2.44.1/VERSION.cmake
--- old/libyui-gtk-2.44.0/VERSION.cmake 2013-12-05 18:54:08.0 +0100
+++ new/libyui-gtk-2.44.1/VERSION.cmake 2014-02-24 14:55:54.0 +0100
@@ -1,6 +1,6 @@
 SET( VERSION_MAJOR 2 )
 SET( VERSION_MINOR 44 )
-SET( VERSION_PATCH 0 )
+SET( VERSION_PATCH 1 )
 SET( VERSION 
${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${VERSION_SHA1} )
 
 # This is need for the libyui core, ONLY.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-gtk-2.44.0/libyui-gtk.spec.in 
new/libyui-gtk-2.44.1/libyui-gtk.spec.in
--- old/libyui-gtk-2.44.0/libyui-gtk.spec.in2013-12-05 18:54:08.0 
+0100
+++ new/libyui-gtk-2.44.1/libyui-gtk.spec.in2014-02-24 11:39:44.0 
+0100
@@ -1,7 +1,7 @@
 #
-# spec file for package @PROJECTNAME@ (Version @VERSION@)
+# spec file for package @PROJECTNAME@
 #
-# Copyright (c) 2012 SUSE LINUX 

commit percona-toolkit for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package percona-toolkit for openSUSE:Factory 
checked in at 2014-02-25 07:33:45

Comparing /work/SRC/openSUSE:Factory/percona-toolkit (Old)
 and  /work/SRC/openSUSE:Factory/.percona-toolkit.new (New)


Package is percona-toolkit

Changes:

--- /work/SRC/openSUSE:Factory/percona-toolkit/percona-toolkit.changes  
2014-02-19 07:22:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.percona-toolkit.new/percona-toolkit.changes 
2014-02-25 07:33:46.0 +0100
@@ -1,0 +2,11 @@
+Mon Feb 24 19:29:34 UTC 2014 - andreas.stie...@gmx.de
+
+- Percona Toolkit 2.2.7  [bnc#864194] CVE-2014-2029
+  Improves sanitisation of input and output for commands run when
+  performing a version check.
+  As this would still transmit data to an external entity without
+  prompting, the automatic version check remains disabled in this
+  package unless requested via command line or global/tool specific
+  or user configuratoin. (--version-check)
+
+---
@@ -4 +15,2 @@
-- disable automatic version check for all tools  [bnc#864194]
+- disable automatic version check for all tools
+  [bnc#864194] CVE-2014-2029

Old:

  percona-toolkit-2.2.6.tar.gz

New:

  percona-toolkit-2.2.7.tar.gz



Other differences:
--
++ percona-toolkit.spec ++
--- /var/tmp/diff_new_pack.2wppio/_old  2014-02-25 07:33:46.0 +0100
+++ /var/tmp/diff_new_pack.2wppio/_new  2014-02-25 07:33:46.0 +0100
@@ -20,7 +20,7 @@
 Summary:Advanced MySQL and system command-line tools
 License:GPL-2.0
 Group:  Productivity/Databases/Tools
-Version:2.2.6
+Version:2.2.7
 Release:0
 Url:https://www.percona.com/software/percona-toolkit/
 Source: 
https://www.percona.com/redir/downloads/%{name}/%{version}/%{name}-%{version}.tar.gz

++ percona-toolkit-2.2.6.tar.gz - percona-toolkit-2.2.7.tar.gz ++
 12707 lines of diff (skipped)

++ percona-toolkit-2.2.x-disable-default-version-check.patch ++
--- /var/tmp/diff_new_pack.2wppio/_old  2014-02-25 07:33:47.0 +0100
+++ /var/tmp/diff_new_pack.2wppio/_new  2014-02-25 07:33:47.0 +0100
@@ -40,11 +40,11 @@
  bin/pt-variable-advisor  |2 --
  18 files changed, 36 deletions(-)
 
-Index: percona-toolkit-2.2.6/bin/pt-archiver
+Index: percona-toolkit-2.2.7/bin/pt-archiver
 ===
 percona-toolkit-2.2.6.orig/bin/pt-archiver 2013-12-20 03:10:55.0 
+
-+++ percona-toolkit-2.2.6/bin/pt-archiver  2014-02-16 23:14:22.0 
+
-@@ -7482,8 +7482,6 @@ Show version and exit.
+--- percona-toolkit-2.2.7.orig/bin/pt-archiver 2014-02-20 07:20:28.0 
+
 percona-toolkit-2.2.7/bin/pt-archiver  2014-02-24 19:09:48.0 
+
+@@ -7465,8 +7465,6 @@ Show version and exit.
  
  =item --[no]version-check
  
@@ -53,11 +53,11 @@
  Check for the latest version of Percona Toolkit, MySQL, and other programs.
  
  This is a standard check for updates automatically feature, with two
-Index: percona-toolkit-2.2.6/bin/pt-config-diff
+Index: percona-toolkit-2.2.7/bin/pt-config-diff
 ===
 percona-toolkit-2.2.6.orig/bin/pt-config-diff  2013-12-20 
03:10:55.0 +
-+++ percona-toolkit-2.2.6/bin/pt-config-diff   2014-02-16 23:14:22.0 
+
-@@ -5580,8 +5580,6 @@ Show version and exit.
+--- percona-toolkit-2.2.7.orig/bin/pt-config-diff  2014-02-20 
07:20:28.0 +
 percona-toolkit-2.2.7/bin/pt-config-diff   2014-02-24 19:09:48.0 
+
+@@ -5563,8 +5563,6 @@ Show version and exit.
  
  =item --[no]version-check
  
@@ -66,11 +66,11 @@
  Check for the latest version of Percona Toolkit, MySQL, and other programs.
  
  This is a standard check for updates automatically feature, with two
-Index: percona-toolkit-2.2.6/bin/pt-deadlock-logger
+Index: percona-toolkit-2.2.7/bin/pt-deadlock-logger
 ===
 percona-toolkit-2.2.6.orig/bin/pt-deadlock-logger  2013-12-20 
03:10:55.0 +
-+++ percona-toolkit-2.2.6/bin/pt-deadlock-logger   2014-02-16 
23:14:22.0 +
-@@ -5349,8 +5349,6 @@ Show version and exit.
+--- percona-toolkit-2.2.7.orig/bin/pt-deadlock-logger  2014-02-20 
07:20:28.0 +
 percona-toolkit-2.2.7/bin/pt-deadlock-logger   2014-02-24 
19:09:48.0 +
+@@ -5332,8 +5332,6 @@ Show version and exit.
  
  =item --[no]version-check
  
@@ -79,11 +79,11 @@
  Check for the latest version of Percona Toolkit, MySQL, and other programs.
  
  This is a standard 

commit libHX for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package libHX for openSUSE:Factory checked 
in at 2014-02-25 07:33:17

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


Package is libHX

Changes:

--- /work/SRC/openSUSE:Factory/libHX/libHX.changes  2014-02-18 
14:44:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.libHX.new/libHX.changes 2014-02-25 
07:33:18.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 21 19:13:11 UTC 2014 - jeng...@inai.de
+
+- Update to new upstream release 3.19
+* string: add the HXQUOTE_SQLSQUOTE quoting variant
+
+---

Old:

  libHX-3.18.tar.xz
  libHX-3.18.tar.xz.asc

New:

  libHX-3.19.tar.xz
  libHX-3.19.tar.xz.asc



Other differences:
--
++ libHX.spec ++
--- /var/tmp/diff_new_pack.3exXEH/_old  2014-02-25 07:33:19.0 +0100
+++ /var/tmp/diff_new_pack.3exXEH/_new  2014-02-25 07:33:19.0 +0100
@@ -21,7 +21,7 @@
 Summary:Useful collection of routines for C and C++ programming
 License:LGPL-2.1 or LGPL-3.0
 Group:  Development/Libraries/C and C++
-Version:3.18
+Version:3.19
 Release:0
 Url:http://libhx.sf.net/
 
@@ -43,18 +43,6 @@
 linked lists, string formatting and autoresizing, option and config
 file parsing, type checking casts and more.
 
-libHX aids in quickly writing up C and C++ data processing programs,
-by consolidating tasks that often happen to be open-coded, such as
-(simple) config file reading, option parsing, directory traversal,
-and others, into a library. The focus is on reducing the amount of
-time (and secondarily, the amount of code) a developer has to spend
-for otherwise implementing such.
-
-
-Authors:
-
-   Jan Engelhardt jengelh [at] medozas de
-
 %package -n %lname
 Summary:Useful collection of routines for C and C++ programming
 Group:  System/Libraries
@@ -72,11 +60,6 @@
 time (and secondarily, the amount of code) a developer has to spend
 for otherwise implementing such.
 
-
-Authors:
-
-   Jan Engelhardt jengelh [at] medozas de
-
 %package devel
 Summary:Useful collection of routines for C and C++ programming
 Group:  Development/Libraries/C and C++
@@ -88,18 +71,6 @@
 linked lists, string formatting and autoresizing, option and config
 file parsing, type checking casts and more.
 
-libHX aids in quickly writing up C and C++ data processing programs,
-by consolidating tasks that often happen to be open-coded, such as
-(simple) config file reading, option parsing, directory traversal,
-and others, into a library. The focus is on reducing the amount of
-time (and secondarily, the amount of code) a developer has to spend
-for otherwise implementing such.
-
-
-Authors:
-
-   Jan Engelhardt jengelh [at] medozas de
-
 %prep
 %{?gpg_verify: %gpg_verify %{S:2}}
 %if 0%{?__xz:1}
@@ -110,23 +81,19 @@
 %endif
 
 %build
-%define _configure ../configure
-mkdir obj;
-pushd obj/
 %configure --includedir=%_includedir/pkg/%name --docdir=%_docdir/%name
 make %{?_smp_mflags}
-popd
 
 %install
 b=%buildroot;
-make -C obj DESTDIR=$b install
+make DESTDIR=$b install
 mkdir -p $b/%_docdir/%name
 install -pm0644 doc/* $b/%_docdir/%name
 rm -f $b/%_docdir/%name/Makefile*
 find $b/%_libdir -type f -name *.la -delete;
 
 %check
-make -C obj check %{?_smp_mflags}
+make check %{?_smp_mflags}
 
 %post   -n %lname -p /sbin/ldconfig
 %postun -n %lname -p /sbin/ldconfig

++ libHX-3.18.tar.xz - libHX-3.19.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libHX-3.18/Makefile.in new/libHX-3.19/Makefile.in
--- old/libHX-3.18/Makefile.in  2014-01-03 10:23:31.0 +0100
+++ new/libHX-3.19/Makefile.in  2014-02-21 19:39:43.0 +0100
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.13.4 from Makefile.am.
+# Makefile.in generated by automake 1.14.1 from Makefile.am.
 # @configure_input@
 
 # Copyright (C) 1994-2013 Free Software Foundation, Inc.
@@ -408,8 +408,8 @@
 $(am__aclocal_m4_deps):
 
 config.h: stamp-h1
-   @if test ! -f $@; then rm -f stamp-h1; else :; fi
-   @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
+   @test -f $@ || rm -f stamp-h1
+   @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
 
 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
@@ -640,10 +640,16 @@
$(am__post_remove_distdir)
 
 dist-tarZ: distdir
+   @echo WARNING: Support for shar distribution archives is \
+  deprecated. 2
+   @echo WARNING: It will be removed altogether in Automake 2.0 2
tardir=$(distdir)  

commit mokutil for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package mokutil for openSUSE:Factory checked 
in at 2014-02-25 07:33:40

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


Package is mokutil

Changes:

--- /work/SRC/openSUSE:Factory/mokutil/mokutil.changes  2014-02-13 
15:01:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.mokutil.new/mokutil.changes 2014-02-25 
07:33:41.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 21 10:10:15 UTC 2014 - g...@suse.com
+
+- Add mokutil-support-revoke-builtin-cert.patch to add an option to
+  revoke the built-in certificate in shim
+
+---

New:

  mokutil-support-revoke-builtin-cert.patch



Other differences:
--
++ mokutil.spec ++
--- /var/tmp/diff_new_pack.U3huTO/_old  2014-02-25 07:33:42.0 +0100
+++ /var/tmp/diff_new_pack.U3huTO/_new  2014-02-25 07:33:42.0 +0100
@@ -32,6 +32,8 @@
 Patch3: mokutil-fix-hash-list-size.patch
 # PATCH-FIX-UPSTREAM mokutil-clean-request.patch g...@suse.com -- Clear the 
request if all keys are removed
 Patch4: mokutil-clean-request.patch
+# PATCH-FIX-OPENSUSE mokutil-support-revoke-builtin-cert.patch g...@suse.com 
-- Add an option to revoke the built-in certificate
+Patch100:   mokutil-support-revoke-builtin-cert.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libopenssl-devel = 0.9.8
@@ -55,6 +57,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch100 -p1
 
 %build
 %configure

++ mokutil-support-revoke-builtin-cert.patch ++
From 0ebfada39e35d3366dfce45158a33f7624907d1f Mon Sep 17 00:00:00 2001
From: Gary Ching-Pang Lin g...@suse.com
Date: Fri, 21 Feb 2014 17:56:55 +0800
Subject: [PATCH] Add the option to revoke the built-in certificate

This is an openSUSE-only patch.

This commit adds an option to create ClearVerify which contains
the password hash to notify MokManager to show the option to
revoke the built-in certificate.
---
 src/mokutil.c | 82 +++
 1 file changed, 82 insertions(+)

diff --git a/src/mokutil.c b/src/mokutil.c
index 1c32313..14adae7 100644
--- a/src/mokutil.c
+++ b/src/mokutil.c
@@ -83,6 +83,7 @@ EFI_GUID (0x605dab50, 0xe046, 0x4300, 0xab, 0xb6, 0x3d, 0xd8, 
0x10, 0xdd, 0x8b,
 #define IMPORT_HASH(1  21)
 #define DELETE_HASH(1  22)
 #define VERBOSITY  (1  23)
+#define REVOKE_CERT(1  24)
 
 #define DEFAULT_CRYPT_METHOD SHA512_BASED
 #define DEFAULT_SALT_SIZESHA512_SALT_MAX
@@ -151,6 +152,7 @@ print_help ()
printf (  --kek\t\t\t\t\tList the keys in KEK\n);
printf (  --db\t\t\t\t\tList the keys in db\n);
printf (  --dbx\t\t\t\t\tList the keys in dbx\n);
+   printf (  --revoke-cert\t\t\t\tRevoke the built-in certificate in 
shim\n);
printf (\n);
printf (Supplimentary Options:\n);
printf (  --hash-file hash file\t\tUse the specific password 
hash\n);
@@ -1903,6 +1905,79 @@ set_verbosity (uint8_t verbosity)
return 0;
 }
 
+static int
+revoke_builtin_cert (void)
+{
+   efi_variable_t var;
+   pw_crypt_t pw_crypt;
+   uint8_t auth[SHA256_DIGEST_LENGTH];
+   char *password = NULL;
+   int pw_len;
+   int auth_ret;
+   int ret = -1;
+
+   /* Check use_openSUSE_cert */
+   memset (var, 0, sizeof(var));
+   var.VariableName = use_openSUSE_cert;
+   var.VendorGuid = SHIM_LOCK_GUID;
+
+   if (read_variable (var) != EFI_SUCCESS)
+   return 0;
+
+   if ((uint8_t)*var.Data != 1) {
+   free (var.Data);
+   fprintf (stderr, The built-in certificate is already 
revoked.\n);
+   return 0;
+   }
+   free (var.Data);
+
+   memset (pw_crypt, 0, sizeof(pw_crypt_t));
+   memset (auth, 0, SHA256_DIGEST_LENGTH);
+
+   if (get_password (password, pw_len, PASSWORD_MIN, PASSWORD_MAX)  0) {
+   fprintf (stderr, Abort\n);
+   goto error;
+   }
+
+   if (!use_simple_hash) {
+   pw_crypt.method = DEFAULT_CRYPT_METHOD;
+   auth_ret = generate_hash (pw_crypt, password, pw_len);
+   } else {
+   auth_ret = generate_auth (NULL, 0, password, pw_len,
+ auth);
+   }
+   if (auth_ret  0) {
+   fprintf (stderr, Couldn't generate hash\n);
+   goto error;
+   }
+
+   if (!use_simple_hash) {
+   var.Data = (void *)pw_crypt;
+   var.DataSize = PASSWORD_CRYPT_SIZE;
+   } else {
+   var.Data = (void *)auth;
+   var.DataSize = SHA256_DIGEST_LENGTH;
+   }
+  

commit libvirt-cim for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package libvirt-cim for openSUSE:Factory 
checked in at 2014-02-25 07:33:28

Comparing /work/SRC/openSUSE:Factory/libvirt-cim (Old)
 and  /work/SRC/openSUSE:Factory/.libvirt-cim.new (New)


Package is libvirt-cim

Changes:

--- /work/SRC/openSUSE:Factory/libvirt-cim/libvirt-cim.changes  2014-02-15 
08:06:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.libvirt-cim.new/libvirt-cim.changes 
2014-02-25 07:33:29.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 17 11:22:40 UTC 2014 - kkae...@suse.com
+
+- re-add COPYING and README to documentation
+
+---



Other differences:
--
++ libvirt-cim.spec ++
--- /var/tmp/diff_new_pack.csyNoT/_old  2014-02-25 07:33:29.0 +0100
+++ /var/tmp/diff_new_pack.csyNoT/_new  2014-02-25 07:33:29.0 +0100
@@ -181,6 +181,7 @@
 %dir %attr(0700, root, root) %{_sysconfdir}/libvirt/cim
 %if 0%{?suse_version}
 %doc %{_docdir}/%{name}
+%doc COPYING README
 %else
 %doc %{_docdir}/%{name}-%{version}
 %endif

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



commit rubygem-bcrypt-ruby for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bcrypt-ruby for 
openSUSE:Factory checked in at 2014-02-25 07:34:26

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt-ruby (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt-ruby.new (New)


Package is rubygem-bcrypt-ruby

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt-ruby/rubygem-bcrypt-ruby.changes  
2014-02-18 20:24:49.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-bcrypt-ruby.new/rubygem-bcrypt-ruby.changes 
2014-02-25 07:34:27.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb 22 06:25:41 UTC 2014 - co...@suse.com
+
+- updated to version 3.1.5
+  - Add support for Ruby 2.1 in compiled Windows binaries
+  - Rename gem from bcrypt-ruby to just bcrypt. [GH #86 by @sferik]
+
+---

Old:

  bcrypt-ruby-3.1.2.gem

New:

  bcrypt-ruby-3.1.5.gem



Other differences:
--
++ rubygem-bcrypt-ruby.spec ++
--- /var/tmp/diff_new_pack.tNBZmT/_old  2014-02-25 07:34:28.0 +0100
+++ /var/tmp/diff_new_pack.tNBZmT/_new  2014-02-25 07:34:28.0 +0100
@@ -17,18 +17,15 @@
 
 
 Name:   rubygem-bcrypt-ruby
-Version:3.1.2
+Version:3.1.5
 Release:0
 %define mod_name bcrypt-ruby
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-devel
 BuildRequires:  ruby-macros = 3
-%if 0%{?suse_version}  1110
 BuildRequires:  rubygem(rdoc)  3.10
-%endif
-Url:http://bcrypt-ruby.rubyforge.org
+Url:https://github.com/codahale/bcrypt-ruby
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:OpenBSD's bcrypt() password hashing algorithm
 License:MIT
@@ -37,7 +34,7 @@
 %description
 bcrypt() is a sophisticated and secure hash algorithm designed by The
 OpenBSD project
-for hashing passwords. bcrypt-ruby provides a simple, humane wrapper for
+for hashing passwords. The bcrypt Ruby gem provides a simple wrapper for
 safely handling
 passwords.
 
@@ -50,14 +47,6 @@
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
 
-%package testsuite
-Summary:Test suite for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description testsuite
-Test::Unit or RSpec files, useful for developers.
-
 %prep
 #gem_unpack
 #if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
@@ -67,7 +56,6 @@
 
 %install
 %gem_install -f
-%gem_cleanup
 mkdir -p %{buildroot}%{_docdir}/%{name}
 ln -s %{gem_base}/gems/%{mod_full_name}/CHANGELOG 
%buildroot/%{_docdir}/%{name}/CHANGELOG
 ln -s %{gem_base}/gems/%{mod_full_name}/COPYING 
%buildroot/%{_docdir}/%{name}/COPYING
@@ -78,16 +66,10 @@
 %{_docdir}/%{name}
 %{gem_base}/cache/%{mod_full_name}.gem
 %{gem_base}/gems/%{mod_full_name}/
-%{gem_extensions}/%{mod_full_name}
-%exclude %{gem_base}/gems/%{mod_full_name}/spec
 %{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
 %doc %{gem_base}/doc
 
-%files testsuite
-%defattr(-,root,root,-)
-%{gem_base}/gems/%{mod_full_name}/spec
-
 %changelog

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



commit qemu for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package qemu for openSUSE:Factory checked in 
at 2014-02-25 07:34:19

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


Package is qemu

Changes:

--- /work/SRC/openSUSE:Factory/qemu/qemu.changes2014-02-19 
07:51:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.qemu.new/qemu.changes   2014-02-25 
07:34:20.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 20 16:51:37 UTC 2014 - afaer...@suse.de
+
+- Split out KVM architectures to per-architecture subpackages
+- Suggest qemu-lang package
+
+---



Other differences:
--
++ qemu.spec ++
--- /var/tmp/diff_new_pack.NH9vhZ/_old  2014-02-25 07:34:21.0 +0100
+++ /var/tmp/diff_new_pack.NH9vhZ/_new  2014-02-25 07:34:21.0 +0100
@@ -171,12 +171,28 @@
 %endif
 Requires:   /usr/sbin/groupadd
 Requires:   pwdutils
-Requires:   qemu-ipxe
-Requires:   qemu-seabios
-Requires:   qemu-sgabios
-Requires:   qemu-vgabios
 Requires:   timezone
 Recommends: qemu-tools
+Recommends: qemu-x86
+%ifarch ppc ppc64 ppc64le
+Recommends: qemu-ppc
+%else
+Suggests:   qemu-ppc
+%endif
+%ifarch s390x
+Recommends: qemu-s390
+%else
+Suggests:   qemu-s390
+%endif
+%ifarch %arm aarch64
+Recommends: qemu-arm
+%else
+Suggests:   qemu-arm
+%endif
+Suggests:   qemu-extra
+%if 0%{?suse_version} = 1210
+Suggests:   qemu-lang
+%endif
 
 %define firmware_files {acpi-dsdt.aml bios.bin q35-acpi-dsdt.aml sgabios.bin 
vgabios.bin vgabios-cirrus.bin vgabios-stdvga.bin vgabios-vmware.bin 
vgabios-qxl.bin optionrom/linuxboot.bin optionrom/multiboot.bin 
optionrom/kvmvapic.bin pxe-e1000.rom pxe-pcnet.rom pxe-ne2k_pci.rom 
pxe-rtl8139.rom pxe-eepro100.rom pxe-virtio.rom}
 
@@ -187,15 +203,91 @@
 system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well
 as PC and PowerMac systems.
 
+%package x86
+Summary:Universal CPU emulator -- x86
+Group:  System/Emulators/PC
+Requires:   qemu = %version
+Requires:   qemu-ipxe
+Requires:   qemu-seabios
+Requires:   qemu-sgabios
+Requires:   qemu-vgabios
+
+%description x86
+QEMU is an extremely well-performing CPU emulator that allows you to
+choose between simulating an entire system and running userspace
+binaries for different architectures under your native operating
+system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well
+as PC and PowerMac systems.
+
+This sub-package provides i386 and x86_64 emulation.
+
+%package ppc
+Summary:Universal CPU emulator -- Power Architecture
+Group:  System/Emulators/PC
+Requires:   qemu = %version
+
+%description ppc
+QEMU is an extremely well-performing CPU emulator that allows you to
+choose between simulating an entire system and running userspace
+binaries for different architectures under your native operating
+system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well
+as PC and PowerMac systems.
+
+This sub-package provides ppc and ppc64 emulation.
+
+%package s390
+Summary:Universal CPU emulator -- S/390
+Group:  System/Emulators/PC
+Requires:   qemu = %version
+
+%description s390
+QEMU is an extremely well-performing CPU emulator that allows you to
+choose between simulating an entire system and running userspace
+binaries for different architectures under your native operating
+system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well
+as PC and PowerMac systems.
+
+This sub-package provides s390x emulation.
+
+%package arm
+Summary:Universal CPU emulator -- ARM
+Group:  System/Emulators/PC
+Requires:   qemu = %version
+
+%description arm
+QEMU is an extremely well-performing CPU emulator that allows you to
+choose between simulating an entire system and running userspace
+binaries for different architectures under your native operating
+system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well
+as PC and PowerMac systems.
+
+This sub-package provides arm emulation.
+
+%package extra
+Summary:Universal CPU emulator -- extra architectures
+Group:  System/Emulators/PC
+Requires:   qemu = %version
+
+%description extra
+QEMU is an extremely well-performing CPU emulator that allows you to
+choose between simulating an entire system and running userspace
+binaries for different architectures under your native operating
+system. It currently emulates x86, ARM, PowerPC and SPARC CPUs as well
+as PC and PowerMac systems.
+
+This sub-package provides some lesser used emulations, such as moxie and 
xtensa.
+
 %ifarch %ix86 x86_64 s390x
 %package kvm
 Url:   

commit rubygem-bunny for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bunny for openSUSE:Factory 
checked in at 2014-02-25 07:34:38

Comparing /work/SRC/openSUSE:Factory/rubygem-bunny (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bunny.new (New)


Package is rubygem-bunny

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bunny/rubygem-bunny.changes  
2013-12-17 10:05:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-bunny.new/rubygem-bunny.changes 
2014-02-25 07:34:39.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb 22 06:25:44 UTC 2014 - co...@suse.com
+
+- updated to version 1.1.3
+ ### Nagle's Algorithm Disabled Correctly
+ Bunny now properly disables [Nagle's 
algorithm](http://boundary.com/blog/2012/05/02/know-a-delay-nagles-algorithm-and-you/)
+ on the sockets it opens. This likely means
+ significantly lower latency for workloads that involve
+ sending a lot of small messages very frequently.
+
+---

Old:

  bunny-1.0.6.gem

New:

  bunny-1.1.3.gem



Other differences:
--
++ rubygem-bunny.spec ++
--- /var/tmp/diff_new_pack.wqQOMO/_old  2014-02-25 07:34:40.0 +0100
+++ /var/tmp/diff_new_pack.wqQOMO/_new  2014-02-25 07:34:40.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bunny
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   rubygem-bunny
-Version:1.0.6
+Version:1.1.3
 Release:0
 %define mod_name bunny
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:http://rubybunny.info
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Popular easy to use Ruby client for RabbitMQ
@@ -60,24 +60,24 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/ChangeLog.md 
%buildroot/%{_docdir}/%{name}/ChangeLog.md
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/ChangeLog.md 
%buildroot/%{_docdir}/%{name}/ChangeLog.md
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit rubygem-childprocess for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-childprocess for 
openSUSE:Factory checked in at 2014-02-25 07:35:17

Comparing /work/SRC/openSUSE:Factory/rubygem-childprocess (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-childprocess.new (New)


Package is rubygem-childprocess

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-childprocess/rubygem-childprocess.changes
2014-01-23 15:55:51.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-childprocess.new/rubygem-childprocess.changes
   2014-02-25 07:35:18.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 0.5.1
+
+---

Old:

  childprocess-0.4.0.gem

New:

  childprocess-0.5.1.gem



Other differences:
--
++ rubygem-childprocess.spec ++
--- /var/tmp/diff_new_pack.AKazyN/_old  2014-02-25 07:35:18.0 +0100
+++ /var/tmp/diff_new_pack.AKazyN/_new  2014-02-25 07:35:18.0 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   rubygem-childprocess
-Version:0.4.0
+Version:0.5.1
 Release:0
 %define mod_name childprocess
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:http://github.com/jarib/childprocess
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:This gem aims at being a simple and reliable solution for
@@ -61,23 +61,23 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit rubygem-coffee-script-source for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-coffee-script-source for 
openSUSE:Factory checked in at 2014-02-25 07:35:51

Comparing /work/SRC/openSUSE:Factory/rubygem-coffee-script-source (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-coffee-script-source.new (New)


Package is rubygem-coffee-script-source

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-coffee-script-source/rubygem-coffee-script-source.changes
2013-07-25 15:17:46.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-coffee-script-source.new/rubygem-coffee-script-source.changes
   2014-02-25 07:35:53.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 1.7.0
+
+---

Old:

  coffee-script-source-1.6.3.gem

New:

  coffee-script-source-1.7.0.gem



Other differences:
--
++ rubygem-coffee-script-source.spec ++
--- /var/tmp/diff_new_pack.D5ZgO8/_old  2014-02-25 07:35:54.0 +0100
+++ /var/tmp/diff_new_pack.D5ZgO8/_new  2014-02-25 07:35:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-coffee-script-source
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   rubygem-coffee-script-source
-Version:1.6.3
+Version:1.7.0
 Release:0
 %define mod_name coffee-script-source
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:http://jashkenas.github.com/coffee-script/
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:The CoffeeScript Compiler
@@ -58,12 +58,12 @@
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %changelog

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



commit rubygem-commander for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-commander for 
openSUSE:Factory checked in at 2014-02-25 07:35:59

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


Package is rubygem-commander

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-commander/rubygem-commander.changes  
2013-09-27 18:06:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-commander.new/rubygem-commander.changes 
2014-02-25 07:36:00.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb 22 06:25:41 UTC 2014 - co...@suse.com
+
+- updated to version 4.1.6
+ * Respect environment setting for $LESS (@ellemenno)
+ * Add ability to hide trace flags and globally enable tracing (#16, #17) 
(@jamesrwhite)
+
+---

Old:

  commander-4.1.5.gem

New:

  commander-4.1.6.gem



Other differences:
--
++ rubygem-commander.spec ++
--- /var/tmp/diff_new_pack.0IEIt9/_old  2014-02-25 07:36:01.0 +0100
+++ /var/tmp/diff_new_pack.0IEIt9/_new  2014-02-25 07:36:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-commander
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,15 +17,15 @@
 
 
 Name:   rubygem-commander
-Version:4.1.5
+Version:4.1.6
 Release:0
 %define mod_name commander
 %define mod_full_name %{mod_name}-%{version}
 %define mod_branch -%{version}
-%define mod_weight 40105
+%define mod_weight 40106
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 BuildRequires:  update-alternatives
 Url:http://visionmedia.github.com/commander
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
@@ -71,8 +71,9 @@
 ln -s %{_sysconfdir}/alternatives/commander %{buildroot}%{_bindir}/commander
 
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/History.rdoc 
%buildroot/%{_docdir}/%{name}/History.rdoc
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
+ln -s %{gem_base}/gems/%{mod_full_name}/History.rdoc 
%buildroot/%{_docdir}/%{name}/History.rdoc
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %post
 /usr/sbin/update-alternatives --install \
@@ -89,17 +90,17 @@
 %{_bindir}/commander%{mod_branch}
 %{_bindir}/commander
 %ghost %{_sysconfdir}/alternatives/commander
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit rubygem-librarian for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-librarian for 
openSUSE:Factory checked in at 2014-02-25 07:37:00

Comparing /work/SRC/openSUSE:Factory/rubygem-librarian (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-librarian.new (New)


Package is rubygem-librarian

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-librarian/rubygem-librarian.changes  
2013-09-27 18:07:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-librarian.new/rubygem-librarian.changes 
2014-02-25 07:37:01.0 +0100
@@ -1,0 +2,17 @@
+Sat Feb 22 06:25:44 UTC 2014 - co...@suse.com
+
+- updated to version 0.1.2
+ * \#153. Mark the license in the gemspec.
+ 
+ * \#158, \#160, \#159. Handle cyclic dependencies for adapters which opt in to
+   cyclic dependencies.
+ 
+ * \#154. Cache git repository sources which are identical but for their :path
+   attributes (where to look inside the repository for the manifest). Thanks
+   @bcatlin.
+ 
+ * \#161. Fix JRuby exception in posix run! method. Thanks @justenwalker.
+ 
+ * \#163. Don't fetch git repositories multiple times per run. Thanks @njam.
+
+---

Old:

  librarian-0.1.1.gem

New:

  librarian-0.1.2.gem



Other differences:
--
++ rubygem-librarian.spec ++
--- /var/tmp/diff_new_pack.QB5i1w/_old  2014-02-25 07:37:02.0 +0100
+++ /var/tmp/diff_new_pack.QB5i1w/_new  2014-02-25 07:37:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-librarian
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,14 @@
 
 
 Name:   rubygem-librarian
-Version:0.1.1
+Version:0.1.2
 Release:0
 %define mod_name librarian
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
+Url:https://github.com/applicationsonline/librarian
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:A Framework for Bundlers
 License:MIT
@@ -59,24 +60,24 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/CHANGELOG.md 
%buildroot/%{_docdir}/%{name}/CHANGELOG.md
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE.txt 
%buildroot/%{_docdir}/%{name}/LICENSE.txt
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/CHANGELOG.md 
%buildroot/%{_docdir}/%{name}/CHANGELOG.md
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE.txt 
%buildroot/%{_docdir}/%{name}/LICENSE.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit rubygem-devise for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-devise for openSUSE:Factory 
checked in at 2014-02-25 07:36:26

Comparing /work/SRC/openSUSE:Factory/rubygem-devise (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-devise.new (New)


Package is rubygem-devise

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-devise/rubygem-devise.changes
2013-11-28 16:53:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-devise.new/rubygem-devise.changes   
2014-02-25 07:36:27.0 +0100
@@ -1,0 +2,11 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 3.2.3
+ * enhancements
+   * Devise will use the `secret_key_base` on Rails 4+ applications as its 
`secret_key`.
+ You can change this and use your own secret by changing the `devise.rb` 
initializer.
+ 
+ * bug fix
+   * Migrations will be properly generated when using rails 4.1.0.
+
+---

Old:

  devise-3.2.2.gem

New:

  devise-3.2.3.gem



Other differences:
--
++ rubygem-devise.spec ++
--- /var/tmp/diff_new_pack.W3wXEu/_old  2014-02-25 07:36:27.0 +0100
+++ /var/tmp/diff_new_pack.W3wXEu/_new  2014-02-25 07:36:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-devise
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,14 +17,14 @@
 
 
 Name:   rubygem-devise
-Version:3.2.2
+Version:3.2.3
 Release:0
 %define mod_name devise
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
-Url:http://github.com/plataformatec/devise
+BuildRequires:  ruby-macros = 3
+Url:https://github.com/plataformatec/devise
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Flexible authentication solution for Rails with Warden
 License:MIT
@@ -60,24 +60,24 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/CHANGELOG.md 
%buildroot/%{_docdir}/%{name}/CHANGELOG.md
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/MIT-LICENSE 
%buildroot/%{_docdir}/%{name}/MIT-LICENSE
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/CHANGELOG.md 
%buildroot/%{_docdir}/%{name}/CHANGELOG.md
+ln -s %{gem_base}/gems/%{mod_full_name}/MIT-LICENSE 
%buildroot/%{_docdir}/%{name}/MIT-LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/test
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{gem_base}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-metaclass for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-metaclass for 
openSUSE:Factory checked in at 2014-02-25 07:37:12

Comparing /work/SRC/openSUSE:Factory/rubygem-metaclass (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-metaclass.new (New)


Package is rubygem-metaclass

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-metaclass/rubygem-metaclass.changes  
2014-01-23 15:56:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-metaclass.new/rubygem-metaclass.changes 
2014-02-25 07:37:13.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 08:47:49 UTC 2014 - co...@suse.com
+
+- updated to version 0.0.4
+
+---

Old:

  metaclass-0.0.2.gem

New:

  metaclass-0.0.4.gem



Other differences:
--
++ rubygem-metaclass.spec ++
--- /var/tmp/diff_new_pack.KTlLG4/_old  2014-02-25 07:37:13.0 +0100
+++ /var/tmp/diff_new_pack.KTlLG4/_new  2014-02-25 07:37:13.0 +0100
@@ -17,14 +17,14 @@
 
 
 Name:   rubygem-metaclass
-Version:0.0.2
+Version:0.0.4
 Release:0
 %define mod_name metaclass
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
-Url:https://github.com/floehopper/metaclass
+BuildRequires:  ruby-macros = 3
+Url:http://github.com/floehopper/metaclass
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Adds a metaclass method to all Ruby objects
 License:MIT
@@ -42,6 +42,14 @@
 Documentation generated at gem installation time.
 Usually in RDoc and RI formats.
 
+%package testsuite
+Summary:Test suite for %{mod_name}
+Group:  Development/Languages/Ruby
+Requires:   %{name} = %{version}
+
+%description testsuite
+Test::Unit or RSpec files, useful for developers.
+
 %prep
 #gem_unpack
 #if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
@@ -51,15 +59,24 @@
 
 %install
 %gem_install -f
+mkdir -p %{buildroot}%{_docdir}/%{name}
+ln -s %{gem_base}/gems/%{mod_full_name}/COPYING.txt 
%buildroot/%{_docdir}/%{name}/COPYING.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{_docdir}/%{name}
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/test
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
+
+%files testsuite
+%defattr(-,root,root,-)
+%{gem_base}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-log4r for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-log4r for openSUSE:Factory 
checked in at 2014-02-25 07:37:08

Comparing /work/SRC/openSUSE:Factory/rubygem-log4r (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-log4r.new (New)


Package is rubygem-log4r

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-log4r/rubygem-log4r.changes  
2014-02-21 06:57:45.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-log4r.new/rubygem-log4r.changes 
2014-02-25 07:37:09.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:43 UTC 2014 - co...@suse.com
+
+- use new macros
+
+---



Other differences:
--
++ rubygem-log4r.spec ++
--- /var/tmp/diff_new_pack.F5bUZg/_old  2014-02-25 07:37:09.0 +0100
+++ /var/tmp/diff_new_pack.F5bUZg/_new  2014-02-25 07:37:09.0 +0100
@@ -23,7 +23,7 @@
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:http://log4r.rubyforge.org
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Log4r, logging framework for ruby
@@ -54,12 +54,12 @@
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %changelog


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



commit rubygem-hoe for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-hoe for openSUSE:Factory 
checked in at 2014-02-25 07:36:38

Comparing /work/SRC/openSUSE:Factory/rubygem-hoe (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-hoe.new (New)


Package is rubygem-hoe

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-hoe/rubygem-hoe.changes  2014-02-12 
20:32:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-hoe.new/rubygem-hoe.changes 
2014-02-25 07:36:39.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb 22 06:25:43 UTC 2014 - co...@suse.com
+
+- updated to version 3.9.0
+ * 1 minor enhancement:
+   * Added irb task.
+ 
+ * 1 bug fix:
+   * Properly constrain rubyforge dependency to avoid warnings. Prolly remove 
entirely soon. (halostatue)
+
+---

Old:

  hoe-3.8.1.gem

New:

  hoe-3.9.0.gem



Other differences:
--
++ rubygem-hoe.spec ++
--- /var/tmp/diff_new_pack.JLj5Pq/_old  2014-02-25 07:36:39.0 +0100
+++ /var/tmp/diff_new_pack.JLj5Pq/_new  2014-02-25 07:36:39.0 +0100
@@ -17,12 +17,12 @@
 
 
 Name:   rubygem-hoe
-Version:3.8.1
+Version:3.9.0
 Release:0
 %define mod_name hoe
 %define mod_full_name %{mod_name}-%{version}
 %define mod_branch -%{version}
-%define mod_weight 30801
+%define mod_weight 30900
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros = 3

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



commit rubygem-factory_girl for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-factory_girl for 
openSUSE:Factory checked in at 2014-02-25 07:36:33

Comparing /work/SRC/openSUSE:Factory/rubygem-factory_girl (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-factory_girl.new (New)


Package is rubygem-factory_girl

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-factory_girl/rubygem-factory_girl.changes
2013-11-24 18:12:32.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-factory_girl.new/rubygem-factory_girl.changes
   2014-02-25 07:36:34.0 +0100
@@ -1,0 +2,8 @@
+Sat Feb 22 06:25:43 UTC 2014 - co...@suse.com
+
+- updated to version 4.4.0
+   Add FactoryGirl.lint
+   Fix memory leak in duplicate traits
+   Update documentation
+
+---
@@ -4 +12,8 @@
-- updated to version 4.3.0, no changelog provided
+- updated to version 4.3.0
+   Start testing against Rails 4.0 and Ruby 2.0.0
+   Stop testing against Rails 3.0 and Ruby 1.9.2
+   Add *_pair methods to only build two objects
+   Raise if a method is defined with a FactoryGirl block (factory or trait)
+   Allow use of Symbol#to_proc in callbacks
+   Add global callbacks
+   Improve GETTING_STARTED and README

Old:

  factory_girl-4.3.0.gem

New:

  factory_girl-4.4.0.gem



Other differences:
--
++ rubygem-factory_girl.spec ++
--- /var/tmp/diff_new_pack.JrCe1v/_old  2014-02-25 07:36:35.0 +0100
+++ /var/tmp/diff_new_pack.JrCe1v/_new  2014-02-25 07:36:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-factory_girl
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,15 +17,15 @@
 
 
 Name:   rubygem-factory_girl
-Version:4.3.0
+Version:4.4.0
 Release:0
 %define mod_name factory_girl
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Requires:   ruby = 1.9.2
-BuildRequires:  ruby-devel = 1.9.2
+BuildRequires:  ruby = 1.9.2
 Url:https://github.com/thoughtbot/factory_girl
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:factory_girl provides a framework and DSL for defining and 
using
@@ -64,23 +64,23 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit rubygem-open4 for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-open4 for openSUSE:Factory 
checked in at 2014-02-25 07:38:03

Comparing /work/SRC/openSUSE:Factory/rubygem-open4 (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-open4.new (New)


Package is rubygem-open4

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-open4/rubygem-open4.changes  
2012-12-05 14:07:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-open4.new/rubygem-open4.changes 
2014-02-25 07:38:05.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:44 UTC 2014 - co...@suse.com
+
+- updated to version 1.3.1
+
+---

Old:

  open4-1.3.0.gem

New:

  open4-1.3.1.gem



Other differences:
--
++ rubygem-open4.spec ++
--- /var/tmp/diff_new_pack.AjrsiZ/_old  2014-02-25 07:38:05.0 +0100
+++ /var/tmp/diff_new_pack.AjrsiZ/_new  2014-02-25 07:38:05.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-open4
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,21 +17,22 @@
 
 
 Name:   rubygem-open4
-Version:1.3.0
+Version:1.3.1
 Release:0
 %define mod_name open4
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:https://github.com/ahoward/open4
-Source: %{mod_full_name}.gem
+Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:open4
 License:Ruby
 Group:  Development/Languages/Ruby
 
 %description
-description: open4 kicks the ass
+open child process with handles on pid, stdin, stdout, and stderr: manage
+child processes and their io handles easily.
 
 %package doc
 Summary:RDoc documentation for %{mod_name}
@@ -59,20 +60,24 @@
 
 %install
 %gem_install -f
+mkdir -p %{buildroot}%{_docdir}/%{name}
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README 
%buildroot/%{_docdir}/%{name}/README
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{_docdir}/%{name}
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/test
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{gem_base}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-polyglot for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-polyglot for 
openSUSE:Factory checked in at 2014-02-25 07:38:15

Comparing /work/SRC/openSUSE:Factory/rubygem-polyglot (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-polyglot.new (New)


Package is rubygem-polyglot

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-polyglot/rubygem-polyglot.changes
2012-08-05 00:04:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-polyglot.new/rubygem-polyglot.changes   
2014-02-25 07:38:16.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:41 UTC 2014 - co...@suse.com
+
+- updated to version 0.3.4
+
+---

Old:

  polyglot-0.3.3.gem

New:

  polyglot-0.3.4.gem



Other differences:
--
++ rubygem-polyglot.spec ++
--- /var/tmp/diff_new_pack.gW94NI/_old  2014-02-25 07:38:16.0 +0100
+++ /var/tmp/diff_new_pack.gW94NI/_new  2014-02-25 07:38:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-polyglot
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,15 +17,15 @@
 
 
 Name:   rubygem-polyglot
-Version:0.3.3
+Version:0.3.4
 Release:0
 %define mod_name polyglot
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:http://github.com/cjheath/polyglot
-Source: %{mod_full_name}.gem
+Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Augment 'require' to load non-Ruby file types
 License:MIT
 Group:  Development/Languages/Ruby
@@ -53,15 +53,20 @@
 
 %install
 %gem_install -f
+mkdir -p %{buildroot}%{_docdir}/%{name}
+ln -s %{gem_base}/gems/%{mod_full_name}/History.txt 
%buildroot/%{_docdir}/%{name}/History.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/License.txt 
%buildroot/%{_docdir}/%{name}/License.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/README.txt 
%buildroot/%{_docdir}/%{name}/README.txt
 
 %files
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{_docdir}/%{name}
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %changelog

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



commit rubygem-net-ssh for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-net-ssh for openSUSE:Factory 
checked in at 2014-02-25 07:37:16

Comparing /work/SRC/openSUSE:Factory/rubygem-net-ssh (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-net-ssh.new (New)


Package is rubygem-net-ssh

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-net-ssh/rubygem-net-ssh.changes  
2013-09-27 18:07:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-net-ssh.new/rubygem-net-ssh.changes 
2014-02-25 07:37:17.0 +0100
@@ -1,0 +2,19 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 2.8.0
+ * Handle ssh-rsa and ssh-dss certificate files [bobveznat]
+ * Correctly interpret /etc/ssh_config Authentication settings based on 
openssh /etc/ssh_config system defaults [therealjessesanford, liggitt]
+ * Fixed pageant support for Windows [jarredholman]
+ * Support %r in ProxyCommand configuration in ssh_config files as defined in 
OpenSSH [yugui]
+ * Don't use ssh-agent if :keys_only is true [SFEley]
+ * Fix the bug in keys with comments [bobtfish]
+ * Add a failing tests for options in pub keys [bobtfish]
+ * Assert that the return value from ssh block is returned [carlhoerberg]
+ * Don't close the connection it's already closed [carlhoerberg]
+ * Ensure the connection closes even on exception [carlhoerberg]
+ * Make the authentication error message more useful [deric]
+ * Fix ConnectionError typo in lib/net/ssh/proxy/socks5.rb [mirakui]
+ * Allow KeyManager to recover from incompatible agents [ecki, delano]
+ * Fix for Authentication Method determination can pick up a class from the 
root namespace [dave.sieh]
+
+---

Old:

  net-ssh-2.7.0.gem

New:

  net-ssh-2.8.0.gem



Other differences:
--
++ rubygem-net-ssh.spec ++
--- /var/tmp/diff_new_pack.fvGLCB/_old  2014-02-25 07:37:18.0 +0100
+++ /var/tmp/diff_new_pack.fvGLCB/_new  2014-02-25 07:37:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-net-ssh
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   rubygem-net-ssh
-Version:2.7.0
+Version:2.8.0
 Release:0
 %define mod_name net-ssh
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:https://github.com/net-ssh/net-ssh
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:Net::SSH: a pure-Ruby implementation of the SSH2 client 
protocol
@@ -62,24 +62,24 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/CHANGES.txt 
%buildroot/%{_docdir}/%{name}/CHANGES.txt
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE.txt 
%buildroot/%{_docdir}/%{name}/LICENSE.txt
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
+ln -s %{gem_base}/gems/%{mod_full_name}/CHANGES.txt 
%buildroot/%{_docdir}/%{name}/CHANGES.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE.txt 
%buildroot/%{_docdir}/%{name}/LICENSE.txt
+ln -s %{gem_base}/gems/%{mod_full_name}/README.rdoc 
%buildroot/%{_docdir}/%{name}/README.rdoc
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/test
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/test
+%{gem_base}/gems/%{mod_full_name}/test
 
 %changelog

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



commit rubygem-pry for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-pry for openSUSE:Factory 
checked in at 2014-02-25 07:39:58

Comparing /work/SRC/openSUSE:Factory/rubygem-pry (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-pry.new (New)


Package is rubygem-pry

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-pry/rubygem-pry.changes  2013-11-27 
15:33:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-pry.new/rubygem-pry.changes 
2014-02-25 07:40:00.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 0.9.12.6
+
+---

Old:

  pry-0.9.12.4.gem

New:

  pry-0.9.12.6.gem



Other differences:
--
++ rubygem-pry.spec ++
--- /var/tmp/diff_new_pack.QX8xbU/_old  2014-02-25 07:40:01.0 +0100
+++ /var/tmp/diff_new_pack.QX8xbU/_new  2014-02-25 07:40:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-pry
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,22 +17,21 @@
 
 
 Name:   rubygem-pry
-Version:0.9.12.4
+Version:0.9.12.6
 Release:0
 %define mod_name pry
 %define mod_full_name %{mod_name}-%{version}
+%define mod_branch -%{version}
+%define mod_weight 912
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
-# MANUAL
-BuildRequires:  rubygem(rdoc) = 3.12
+BuildRequires:  ruby-macros = 3
+BuildRequires:  update-alternatives
 Url:http://pry.github.com
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:An IRB alternative and runtime developer console
 License:MIT
 Group:  Development/Languages/Ruby
-%define mod_branch -0.9.12
-%define mod_weight 0
 PreReq: update-alternatives
 
 %description
@@ -58,10 +57,14 @@
 
 %install
 %gem_install -f
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
 mv %{buildroot}%{_bindir}/pry{,%{mod_branch}}
-ln -s pry%{mod_branch} %{buildroot}%{_bindir}/pry
+touch %{buildroot}%{_sysconfdir}/alternatives/pry
+ln -s %{_sysconfdir}/alternatives/pry %{buildroot}%{_bindir}/pry
+
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/CHANGELOG 
%buildroot/%{_docdir}/%{name}/CHANGELOG
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
 
 # MANUAL
 rm -rf %{buildroot}%{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
@@ -79,14 +82,15 @@
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
 %{_bindir}/pry%{mod_branch}
-%ghost %{_bindir}/pry
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%exclude %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{_bindir}/pry
+%ghost %{_sysconfdir}/alternatives/pry
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%exclude %{gem_base}/gems/%{mod_full_name}/spec
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files testsuite
 %defattr(-,root,root,-)
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/spec
+%{gem_base}/gems/%{mod_full_name}/spec
 
 %changelog

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



commit rubygem-ruby_parser for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-ruby_parser for 
openSUSE:Factory checked in at 2014-02-25 07:41:38

Comparing /work/SRC/openSUSE:Factory/rubygem-ruby_parser (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-ruby_parser.new (New)


Package is rubygem-ruby_parser

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-ruby_parser/rubygem-ruby_parser.changes  
2014-02-12 21:51:59.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-ruby_parser.new/rubygem-ruby_parser.changes 
2014-02-25 07:41:39.0 +0100
@@ -1,0 +2,10 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 3.4.1
+ * 1 minor enhancement:
+   * Added StackState#store and #restore.
+ 
+ * 1 bug fix:
+   * 1.8/1.9/2.0: Fixed tSTRING_DBEG w/ f'd up amounts of nesting + braces + 
do/end. yeah. I'm as confused as you are.
+
+---

Old:

  ruby_parser-3.4.0.gem

New:

  ruby_parser-3.4.1.gem



Other differences:
--
++ rubygem-ruby_parser.spec ++
--- /var/tmp/diff_new_pack.gi1hYX/_old  2014-02-25 07:41:40.0 +0100
+++ /var/tmp/diff_new_pack.gi1hYX/_new  2014-02-25 07:41:40.0 +0100
@@ -17,12 +17,12 @@
 
 
 Name:   rubygem-ruby_parser
-Version:3.4.0
+Version:3.4.1
 Release:0
 %define mod_name ruby_parser
 %define mod_full_name %{mod_name}-%{version}
 %define mod_branch -%{version}
-%define mod_weight 30400
+%define mod_weight 30401
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros = 3

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



commit rubygem-sprockets for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sprockets for 
openSUSE:Factory checked in at 2014-02-25 07:42:00

Comparing /work/SRC/openSUSE:Factory/rubygem-sprockets (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-sprockets.new (New)


Package is rubygem-sprockets

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sprockets/rubygem-sprockets.changes  
2013-11-30 16:22:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-sprockets.new/rubygem-sprockets.changes 
2014-02-25 07:42:01.0 +0100
@@ -1,0 +2,6 @@
+Sat Feb 22 06:25:42 UTC 2014 - co...@suse.com
+
+- updated to version 2.11.0
+ * Support for `.bower.json`
+
+---

Old:

  sprockets-2.10.1.gem

New:

  sprockets-2.11.0.gem



Other differences:
--
++ rubygem-sprockets.spec ++
--- /var/tmp/diff_new_pack.OkTLJ1/_old  2014-02-25 07:42:01.0 +0100
+++ /var/tmp/diff_new_pack.OkTLJ1/_new  2014-02-25 07:42:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-sprockets
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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,15 +17,15 @@
 
 
 Name:   rubygem-sprockets
-Version:2.10.1
+Version:2.11.0
 Release:0
 %define mod_name sprockets
 %define mod_full_name %{mod_name}-%{version}
 %define mod_branch -%{version}
-%define mod_weight 21001
+%define mod_weight 21100
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 BuildRequires:  update-alternatives
 Url:http://getsprockets.org/
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
@@ -62,8 +62,8 @@
 ln -s %{_sysconfdir}/alternatives/sprockets %{buildroot}%{_bindir}/sprockets
 
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %post
 /usr/sbin/update-alternatives --install \
@@ -80,12 +80,12 @@
 %{_bindir}/sprockets%{mod_branch}
 %{_bindir}/sprockets
 %ghost %{_sysconfdir}/alternatives/sprockets
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %changelog

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



commit rubygem-factory_girl_rails for openSUSE:Factory

2014-02-24 Thread h_root
Hello community,

here is the log from the commit of package rubygem-factory_girl_rails for 
openSUSE:Factory checked in at 2014-02-25 08:24:32

Comparing /work/SRC/openSUSE:Factory/rubygem-factory_girl_rails (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-factory_girl_rails.new (New)


Package is rubygem-factory_girl_rails

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-factory_girl_rails/rubygem-factory_girl_rails.changes
2013-11-24 18:58:22.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-factory_girl_rails.new/rubygem-factory_girl_rails.changes
   2014-02-25 08:24:33.0 +0100
@@ -1,0 +2,5 @@
+Sat Feb 22 06:25:45 UTC 2014 - co...@suse.com
+
+- updated to version 4.4.0
+
+---

Old:

  factory_girl_rails-4.3.0.gem

New:

  factory_girl_rails-4.4.0.gem



Other differences:
--
++ rubygem-factory_girl_rails.spec ++
--- /var/tmp/diff_new_pack.zmGzHN/_old  2014-02-25 08:24:33.0 +0100
+++ /var/tmp/diff_new_pack.zmGzHN/_new  2014-02-25 08:24:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-factory_girl_rails
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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:   rubygem-factory_girl_rails
-Version:4.3.0
+Version:4.4.0
 Release:0
 %define mod_name factory_girl_rails
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 1
+BuildRequires:  ruby-macros = 3
 Url:http://github.com/thoughtbot/factory_girl_rails
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:factory_girl_rails provides integration between factory_girl 
and
@@ -54,18 +54,18 @@
 %install
 %gem_install -f
 mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
-ln -s %{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
+ln -s %{gem_base}/gems/%{mod_full_name}/LICENSE 
%buildroot/%{_docdir}/%{name}/LICENSE
+ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
 
 %files
 %defattr(-,root,root,-)
 %{_docdir}/%{name}
-%{_libdir}/ruby/gems/%{rb_ver}/cache/%{mod_full_name}.gem
-%{_libdir}/ruby/gems/%{rb_ver}/gems/%{mod_full_name}/
-%{_libdir}/ruby/gems/%{rb_ver}/specifications/%{mod_full_name}.gemspec
+%{gem_base}/cache/%{mod_full_name}.gem
+%{gem_base}/gems/%{mod_full_name}/
+%{gem_base}/specifications/%{mod_full_name}.gemspec
 
 %files doc
 %defattr(-,root,root,-)
-%doc %{_libdir}/ruby/gems/%{rb_ver}/doc/%{mod_full_name}/
+%doc %{gem_base}/doc
 
 %changelog

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