commit virtualbox for openSUSE:Factory
Hello community, here is the log from the commit of package virtualbox for openSUSE:Factory checked in at 2013-11-08 08:46:25 Comparing /work/SRC/openSUSE:Factory/virtualbox (Old) and /work/SRC/openSUSE:Factory/.virtualbox.new (New) Package is "virtualbox" Changes: --- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes2013-09-26 20:07:40.0 +0200 +++ /work/SRC/openSUSE:Factory/.virtualbox.new/virtualbox.changes 2013-11-08 08:46:26.0 +0100 @@ -1,0 +2,5 @@ +Thu Oct 24 23:34:41 UTC 2013 - mgo...@suse.com + +- added vbox-shared-folder.diff to fix shared folders (bnc#841673). + +--- New: vbox-shared-folder.diff Other differences: -- ++ virtualbox.spec ++ --- /var/tmp/diff_new_pack.OFlHtJ/_old 2013-11-08 08:46:30.0 +0100 +++ /var/tmp/diff_new_pack.OFlHtJ/_new 2013-11-08 08:46:30.0 +0100 @@ -146,6 +146,8 @@ Patch103: vbox-disable-updates.diff #use pie/fPIE for setuid binaries (bnc#743143) Patch104: vbox-fpie.diff +# Fix shared folders for 3.11, taken from upstream (bnc#841673) +Patch105: vbox-shared-folder.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build PreReq: pwdutils permissions Requires: %{name}-host-kmp = %version @@ -270,6 +272,7 @@ %patch101 %patch103 %patch104 -p1 +%patch105 #copy user manual %__cp %{S:1} UserManual.pdf #copy kbuild config ++ vbox-shared-folder.diff ++ Index: src/VBox/Additions/linux/sharedfolders/dirops.c === --- src/VBox/Additions/linux/sharedfolders/dirops.c (revision 48528) +++ src/VBox/Additions/linux/sharedfolders/dirops.c (revision 48529) @@ -282,10 +282,13 @@ } #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0) -err = dir_emit(ctx, d_name, strlen(d_name), fake_ino, DT_UNKNOWN); +if (!dir_emit(ctx, d_name, strlen(d_name), fake_ino, DT_UNKNOWN)) +{ +LogFunc(("dir_emit failed\n")); +return 0; +} #else err = filldir(opaque, d_name, strlen(d_name), dir->f_pos, fake_ino, DT_UNKNOWN); -#endif if (err) { LogFunc(("filldir returned error %d\n", err)); @@ -293,6 +296,7 @@ only when it runs out of space in opaque */ return 0; } +#endif dir->f_pos += 1; #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit valgrind for openSUSE:Factory
Hello community, here is the log from the commit of package valgrind for openSUSE:Factory checked in at 2013-11-08 08:45:06 Comparing /work/SRC/openSUSE:Factory/valgrind (Old) and /work/SRC/openSUSE:Factory/.valgrind.new (New) Package is "valgrind" Changes: --- /work/SRC/openSUSE:Factory/valgrind/valgrind.changes2013-08-14 22:41:20.0 +0200 +++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes 2013-11-08 08:45:07.0 +0100 @@ -1,0 +2,31 @@ +Wed Nov 6 19:43:17 UTC 2013 - bur...@net-b.de + +- update to 3.9.0: +* Support for Intel AVX2 instructions. This is available only on 64 + bit code. +* Support for POWER8 (Power ISA 2.07) instructions. +* Initial support for Intel Transactional Synchronization Extensions, + both RTM and HLE. +* Initial support for Hardware Transactional Memory on POWER. +* Improvements in handling of vectorised code, leading to + significantly fewer false error reports. You need to use the flag + --partial-loads-ok=yes to get the benefits of these changes. +* Better control over the leak checker. It is now possible to + specify which leak kinds (definite/indirect/possible/reachable) + should be displayed. +* Reduced "possible leak" reports from the leak checker by the use + of better heuristics. +* Better control of stacktrace acquisition for heap-allocated + blocks. +* Better reporting of leak suppression usage. +* New and modified GDB server monitor features. +* New flag --sigill-diagnostics to control whether a diagnostic + message is printed when the JIT encounters an instruction it can't + translate. +* The maximum amount of memory that Valgrind can use on 64 bit + targets has been increased from 32GB to 64GB. +* Additional smaller new features and many bug fixes. +- Remove obsolete raise-segnames-limit.diff, + valgrind-glibc-2.17.patch and valgrind-glibc-2.18.patch. + +--- Old: raise-segnames-limit.diff valgrind-3.8.1.tar.bz2 valgrind-glibc-2.17.patch valgrind-glibc-2.18.patch New: valgrind-3.9.0.tar.bz2 Other differences: -- ++ valgrind.spec ++ --- /var/tmp/diff_new_pack.fMDdTR/_old 2013-11-08 08:45:09.0 +0100 +++ /var/tmp/diff_new_pack.fMDdTR/_new 2013-11-08 08:45:09.0 +0100 @@ -33,15 +33,12 @@ License:GPL-2.0+ Group: Development/Tools/Debuggers BuildRoot: %{_tmppath}/%{name}-%{version}-build -Version:3.8.1 +Version:3.9.0 Release:0 Source0:http://valgrind.org/downloads/%{name}-%{version}.tar.bz2 # svn di svn://svn.valgrind.org/valgrind/tags/VALGRIND_3_5_0 svn://svn.valgrind.org/valgrind/branches/VALGRIND_3_5_BRANCH > 3_5_BRANCH.diff # svn di svn://svn.valgrind.org/vex/tags/VEX_3_5_0 svn://svn.valgrind.org/vex/branches/VEX_3_5_BRANCH > VEX_3_5_BRANCH.diff Patch1: jit-register-unregister.diff -Patch2: raise-segnames-limit.diff -Patch3: valgrind-glibc-2.17.patch -Patch4: valgrind-glibc-2.18.patch # during building the major version of glibc is built into the suppression file %define glibc_main_version %(getconf GNU_LIBC_VERSION | cut -d' ' -f2 | cut -d. -f1) %define glibc_major_version %(getconf GNU_LIBC_VERSION | cut -d' ' -f2 | cut -d. -f2) @@ -139,9 +136,6 @@ cd VEX cd .. %patch1 -%patch2 -%patch3 -p1 -%patch4 -p1 %build %ifarch %arm @@ -153,7 +147,9 @@ RPM_OPT_FLAGS="${RPM_OPT_FLAGS/-D_FORTIFY_SOURCE=2/}" export CFLAGS="$RPM_OPT_FLAGS" export CXXFLAGS="$RPM_OPT_FLAGS" +%if %suse_version > 1100 autoreconf -fi +%endif export GDB=/usr/bin/gdb %configure make %{?jobs:-j%jobs} @@ -251,6 +247,14 @@ %_libdir/valgrind/mips-fpu.xml %_libdir/valgrind/mips-linux-valgrind.xml %_libdir/valgrind/mips-linux.xml +%_libdir/valgrind/mips64-cp0-valgrind-s*.xml +%_libdir/valgrind/mips64-cp0.xml +%_libdir/valgrind/mips64-cpu-valgrind-s*.xml +%_libdir/valgrind/mips64-cpu.xml +%_libdir/valgrind/mips64-fpu-valgrind-s*.xml +%_libdir/valgrind/mips64-fpu.xml +%_libdir/valgrind/mips64-linux-valgrind.xml +%_libdir/valgrind/mips64-linux.xml %_libdir/valgrind/power-core-valgrind-s*.xml %_libdir/valgrind/s390-acr-valgrind-s*.xml %_libdir/valgrind/s390-acr.xml ++ jit-register-unregister.diff ++ --- /var/tmp/diff_new_pack.fMDdTR/_old 2013-11-08 08:45:09.0 +0100 +++ /var/tmp/diff_new_pack.fMDdTR/_new 2013-11-08 08:45:09.0 +0100 @@ -1,5 +1,6 @@ coregrind/m_debuginfo/debuginfo.c -+++ coregrind/m_debuginfo/debuginfo.c +diff -u -r ../valgrind-3.9.0.orig/coregrind/m_debuginfo/debuginfo.c ./coregrind/m_debuginfo/debuginfo.c +--- ../valgrind-3.9.0.orig/coregrind/m_debuginfo/debuginfo.c 2013-10-23 12:50:10.0 +0200 ./coregrind/m_debuginfo/debu
commit SDL2 for openSUSE:Factory
Hello community, here is the log from the commit of package SDL2 for openSUSE:Factory checked in at 2013-11-08 08:40:06 Comparing /work/SRC/openSUSE:Factory/SDL2 (Old) and /work/SRC/openSUSE:Factory/.SDL2.new (New) Package is "SDL2" Changes: --- /work/SRC/openSUSE:Factory/SDL2/SDL2.changes2013-11-07 09:03:04.0 +0100 +++ /work/SRC/openSUSE:Factory/.SDL2.new/SDL2.changes 2013-11-08 08:40:07.0 +0100 @@ -1,0 +2,18 @@ +Thu Nov 7 10:56:36 UTC 2013 - mailaen...@opensuse.org + +- Update to version 2.0.1: + * Added an API to get common filesystem paths in SDL_filesystem.h: +SDL_GetBasePath(), SDL_GetPrefPath() + * Added an API to do optimized YV12 and IYUV texture updates: +SDL_UpdateYUVTexture() + * Added an API to get the amount of RAM on the system: +SDL_GetSystemRAM() + * Added a macro to perform timestamp comparisons with SDL_GetTicks(): +SDL_TICKS_PASSED() + * Dramatically improved OpenGL ES 2.0 rendering performance + * Added OpenGL attribute SDL_GL_FRAMEBUFFER_SRGB_CAPABLE + * Fixed float audio support with the PulseAudio driver + * Fixed missing line endpoints in the OpenGL renderer on some drivers + * X11 symbols are no longer defined to avoid collisions when linking statically + +--- Old: SDL2-2.0.0.tar.gz SDL2-2.0.0.tar.gz.sig New: SDL2-2.0.1.tar.gz SDL2-2.0.1.tar.gz.sig Other differences: -- ++ SDL2.spec ++ --- /var/tmp/diff_new_pack.7TLWAS/_old 2013-11-08 08:40:08.0 +0100 +++ /var/tmp/diff_new_pack.7TLWAS/_new 2013-11-08 08:40:08.0 +0100 @@ -18,7 +18,7 @@ Name: SDL2 %define lname libSDL2-2_0-0 -Version:2.0.0 +Version:2.0.1 Release:0 Summary:Simple DirectMedia Layer Library License:Zlib @@ -36,6 +36,7 @@ BuildRequires: Mesa-libGLESv1_CM-devel BuildRequires: Mesa-libGLESv2-devel BuildRequires: alsa-devel >= 0.9.0 +BuildRequires: dos2unix BuildRequires: esound-devel >= 0.2.8 BuildRequires: libICE-devel BuildRequires: libX11-devel @@ -90,6 +91,13 @@ %prep %{?gpg_verify: %gpg_verify %{S:2}} %setup -q +dos2unix WhatsNew.txt +dos2unix TODO.txt +dos2unix BUGS.txt +dos2unix README-SDL.txt +dos2unix README.txt +dos2unix CREDITS.txt +dos2unix COPYING.txt %build %configure \ ++ SDL2-2.0.0.tar.gz -> SDL2-2.0.1.tar.gz ++ 33194 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-requests for openSUSE:Factory
Hello community, here is the log from the commit of package python-requests for openSUSE:Factory checked in at 2013-11-08 08:39:07 Comparing /work/SRC/openSUSE:Factory/python-requests (Old) and /work/SRC/openSUSE:Factory/.python-requests.new (New) Package is "python-requests" Changes: --- /work/SRC/openSUSE:Factory/python-requests/python-requests.changes 2013-10-25 11:31:03.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-requests.new/python-requests.changes 2013-11-08 08:39:08.0 +0100 @@ -1,0 +2,45 @@ +Thu Nov 7 10:07:58 UTC 2013 - mci...@suse.cz + +- update to 2.0.1 +- changes in 2.0.1: + - Updated included CA Bundle with new mistrusts and automated process for the future + - Added MD5-sess to Digest Auth + - Accept per-file headers in multipart file POST messages. + - Fixed: Don't send the full URL on CONNECT messages. + - Fixed: Correctly lowercase a redirect scheme. + - Fixed: Cookies not persisted when set via functional API. + - Fixed: Translate urllib3 ProxyError into a requests ProxyError derived from ConnectionError. + - Updated internal urllib3 and chardet. +- changes in 2.0.0: + - Keys in the Headers dictionary are now native strings on all Python versions, + i.e. bytestrings on Python 2, unicode on Python 3. + - Proxy URLs now *must* have an explicit scheme. A ``MissingSchema`` exception + will be raised if they don't. + - Timeouts now apply to read time if ``Stream=False``. + - ``RequestException`` is now a subclass of ``IOError``, not ``RuntimeError``. + - Added new method to ``PreparedRequest`` objects: ``PreparedRequest.copy()``. + - Added new method to ``Session`` objects: ``Session.update_request()``. This + method updates a ``Request`` object with the data (e.g. cookies) stored on + the ``Session``. + - Added new method to ``Session`` objects: ``Session.prepare_request()``. This + method updates and prepares a ``Request`` object, and returns the + corresponding ``PreparedRequest`` object. + - Added new method to ``HTTPAdapter`` objects: ``HTTPAdapter.proxy_headers()``. + This should not be called directly, but improves the subclass interface. + - ``httplib.IncompleteRead`` exceptions caused by incorrect chunked encoding + will now raise a Requests ``ChunkedEncodingError`` instead. + - Invalid percent-escape sequences now cause a Requests ``InvalidURL`` + exception to be raised. + - HTTP 208 no longer uses reason phrase ``"im_used"``. Correctly uses + ``"already_reported"``. + - HTTP 226 reason added (``"im_used"``). + - Vastly improved proxy support, including the CONNECT verb. Special thanks to + the many contributors who worked towards this improvement. + - Cookies are now properly managed when 401 authentication responses are + received. + - Chunked encoding fixes. + - Support for mixed case schemes. + - Better handling of streaming downloads. + - Retrieve environment proxies from more locations. + +--- Old: requests-1.2.3.tar.gz New: requests-2.0.1.tar.gz Other differences: -- ++ python-requests.spec ++ --- /var/tmp/diff_new_pack.bA2q0O/_old 2013-11-08 08:39:09.0 +0100 +++ /var/tmp/diff_new_pack.bA2q0O/_new 2013-11-08 08:39:09.0 +0100 @@ -17,7 +17,7 @@ Name: python-requests -Version:1.2.3 +Version:2.0.1 Release:0 Url:http://python-requests.org Summary:Awesome Python HTTP Library That's Actually Usable ++ no-default-cacert.patch ++ --- /var/tmp/diff_new_pack.bA2q0O/_old 2013-11-08 08:39:09.0 +0100 +++ /var/tmp/diff_new_pack.bA2q0O/_new 2013-11-08 08:39:09.0 +0100 @@ -1,8 +1,6 @@ -Index: requests-1.2.3/requests/adapters.py -=== requests-1.2.3.orig/requests/adapters.py -+++ requests-1.2.3/requests/adapters.py -@@ -129,9 +129,6 @@ class HTTPAdapter(BaseAdapter): +--- a/requests/adapters.py b/requests/adapters.py +@@ -132,9 +132,6 @@ if not cert_loc: cert_loc = DEFAULT_CA_BUNDLE_PATH @@ -12,11 +10,9 @@ conn.cert_reqs = 'CERT_REQUIRED' conn.ca_certs = cert_loc else: -Index: requests-1.2.3/requests/certs.py -=== requests-1.2.3.orig/requests/certs.py -+++ requests-1.2.3/requests/certs.py -@@ -18,7 +18,7 @@ import os.path +--- a/requests/certs.py b/requests/certs.py +@@ -18,7 +18,7 @@ def where(): """Return the preferred certificate bundle.""" # vendored bundle inside Requests @@ -25,18 +21,14 @@ if __name__ == '__main__': print(where()) -Index: requests-1.2.
commit kernel-source for openSUSE:Factory
Hello community, here is the log from the commit of package kernel-source for openSUSE:Factory checked in at 2013-11-08 08:37:12 Comparing /work/SRC/openSUSE:Factory/kernel-source (Old) and /work/SRC/openSUSE:Factory/.kernel-source.new (New) Package is "kernel-source" Changes: --- /work/SRC/openSUSE:Factory/kernel-source/kernel-cubox.changes 2013-11-01 07:33:53.0 +0100 +++ /work/SRC/openSUSE:Factory/.kernel-source.new/kernel-cubox.changes 2013-11-08 08:37:13.0 +0100 @@ -1,0 +2,7 @@ +Wed Nov 6 14:54:28 CET 2013 - mho...@suse.cz + +- Fix a few incorrectly checked [io_]remap_pfn_range() calls + (bnc#849021, CVE-2013-4511). +- commit 2607707 + +--- kernel-debug.changes: same change kernel-default.changes: same change kernel-desktop.changes: same change kernel-docs.changes: same change kernel-ec2.changes: same change kernel-exynos.changes: same change kernel-lpae.changes: same change kernel-pae.changes: same change kernel-source.changes: same change kernel-syms.changes: same change kernel-trace.changes: same change kernel-vanilla.changes: same change kernel-xen.changes: same change Other differences: -- ++ kernel-cubox.spec ++ --- /var/tmp/diff_new_pack.zbf8IS/_old 2013-11-08 08:37:20.0 +0100 +++ /var/tmp/diff_new_pack.zbf8IS/_new 2013-11-08 08:37:20.0 +0100 @@ -61,7 +61,7 @@ Summary:Kernel for SolidRun Cubox Version:3.11.6 %if 0%{?is_kotd} -Release:.ge6d4a27 +Release:.g2607707 %else Release:0 %endif kernel-debug.spec: same change kernel-default.spec: same change kernel-desktop.spec: same change kernel-docs.spec: same change kernel-ec2.spec: same change kernel-exynos.spec: same change kernel-lpae.spec: same change kernel-pae.spec: same change kernel-source.spec: same change ++ kernel-syms.spec ++ --- /var/tmp/diff_new_pack.zbf8IS/_old 2013-11-08 08:37:20.0 +0100 +++ /var/tmp/diff_new_pack.zbf8IS/_new 2013-11-08 08:37:20.0 +0100 @@ -26,7 +26,7 @@ Version:3.11.6 %if %using_buildservice %if 0%{?is_kotd} -Release:.ge6d4a27 +Release:.g2607707 %else Release:0 %endif ++ kernel-trace.spec ++ --- /var/tmp/diff_new_pack.zbf8IS/_old 2013-11-08 08:37:20.0 +0100 +++ /var/tmp/diff_new_pack.zbf8IS/_new 2013-11-08 08:37:20.0 +0100 @@ -61,7 +61,7 @@ Summary:The Standard Kernel with Tracing Features Version:3.11.6 %if 0%{?is_kotd} -Release:.ge6d4a27 +Release:.g2607707 %else Release:0 %endif kernel-vanilla.spec: same change kernel-xen.spec: same change ++ patches.fixes.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/patches.fixes/Fix-a-few-incorrectly-checked-io_-remap_pfn_range-ca.patch new/patches.fixes/Fix-a-few-incorrectly-checked-io_-remap_pfn_range-ca.patch --- old/patches.fixes/Fix-a-few-incorrectly-checked-io_-remap_pfn_range-ca.patch 1970-01-01 01:00:00.0 +0100 +++ new/patches.fixes/Fix-a-few-incorrectly-checked-io_-remap_pfn_range-ca.patch 2013-11-06 14:54:28.0 +0100 @@ -0,0 +1,52 @@ +From 7314e613d5ff9f0934f7a0f74ed7973b903315d1 Mon Sep 17 00:00:00 2001 +From: Linus Torvalds +Date: Tue, 29 Oct 2013 10:21:34 -0700 +Subject: [PATCH] Fix a few incorrectly checked [io_]remap_pfn_range() calls +Git-commit: 7314e613d5ff9f0934f7a0f74ed7973b903315d1 +Patch-mainline: 3.12 +References: bnc#849021, CVE-2013-4511 + +mho...@suse.cz: +drop au1100fb and au1200fb as they are not relevant for us because they are +MIPS specific. They also depend on the helped introduced by b4cbb197c7e7a (vm: +add vm_iomap_memory() helper function) + +Nico Golde reports a few straggling uses of [io_]remap_pfn_range() that +really should use the vm_iomap_memory() helper. This trivially converts +two of them to the helper, and comments about why the third one really +needs to continue to use remap_pfn_range(), and adds the missing size +check. + +Reported-by: Nico Golde +Cc: sta...@kernel.org +Signed-off-by: Linus Torvalds + +--- + drivers/uio/uio.c |8 +++- + 1 file changed, 7 insertions(+), 1 deletion(-) + +--- a/drivers/uio/uio.c b/drivers/uio/uio.c +@@ -650,14 +650,20 @@ static int uio_mmap_physical(struct vm_a + { + struct uio_device *idev = vma->vm_private_data; + int mi = uio_find_mem_index(vma); ++ struct uio_mem *mem; + if (mi < 0) + return -EINVAL; + ++ mem = idev->info->mem + mi; ++ ++ if (vma->vm_end - vma->vm_start > mem->size) ++ return -EINVAL; ++ + vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); + +
commit kdelibs3 for openSUSE:Factory
Hello community, here is the log from the commit of package kdelibs3 for openSUSE:Factory checked in at 2013-11-08 08:36:18 Comparing /work/SRC/openSUSE:Factory/kdelibs3 (Old) and /work/SRC/openSUSE:Factory/.kdelibs3.new (New) Package is "kdelibs3" Changes: --- /work/SRC/openSUSE:Factory/kdelibs3/kdelibs3.changes2013-08-07 20:58:31.0 +0200 +++ /work/SRC/openSUSE:Factory/.kdelibs3.new/kdelibs3.changes 2013-11-08 08:36:19.0 +0100 @@ -1,0 +2,6 @@ +Thu Nov 7 10:51:25 UTC 2013 - an...@opensuse.org + +- disable debug code that was slowing down the operation + see here: http://comments.gmane.org/gmane.comp.kde.devel.core/60591 + +--- Other differences: -- ++ kdelibs3.spec ++ --- /var/tmp/diff_new_pack.SZv7F4/_old 2013-11-08 08:36:21.0 +0100 +++ /var/tmp/diff_new_pack.SZv7F4/_new 2013-11-08 08:36:21.0 +0100 @@ -401,6 +401,9 @@ %patch226 -p1 %patch227 -p1 +# disable a debug feature +sed -i 's|#define KICONLOADER_CHECKS||g' kdecore/kiconloader.cpp + tar xfvj %SOURCE12 # # define KDE version exactly -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit fcitx-m17n for openSUSE:Factory
Hello community, here is the log from the commit of package fcitx-m17n for openSUSE:Factory checked in at 2013-11-08 08:34:50 Comparing /work/SRC/openSUSE:Factory/fcitx-m17n (Old) and /work/SRC/openSUSE:Factory/.fcitx-m17n.new (New) Package is "fcitx-m17n" Changes: --- /work/SRC/openSUSE:Factory/fcitx-m17n/fcitx-m17n.changes2013-07-08 13:35:07.0 +0200 +++ /work/SRC/openSUSE:Factory/.fcitx-m17n.new/fcitx-m17n.changes 2013-11-08 08:34:51.0 +0100 @@ -1,0 +2,7 @@ +Wed Nov 6 15:44:44 UTC 2013 - i...@marguerite.su + +- update version 0.2.2 + * fix problem under non-utf8 locale + * fix key translation with two modifier + +--- Old: fcitx-m17n-0.2.1.tar.xz New: fcitx-m17n-0.2.2.tar.xz Other differences: -- ++ fcitx-m17n.spec ++ --- /var/tmp/diff_new_pack.S6d67A/_old 2013-11-08 08:34:51.0 +0100 +++ /var/tmp/diff_new_pack.S6d67A/_new 2013-11-08 08:34:51.0 +0100 @@ -17,7 +17,7 @@ Name: fcitx-m17n -Version:0.2.1 +Version:0.2.2 Release:0 Summary:M17N engine for fcitx License:GPL-2.0+ ++ fcitx-m17n-0.2.1.tar.xz -> fcitx-m17n-0.2.2.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.2.1/im/fcitx-m17n.c new/fcitx-m17n-0.2.2/im/fcitx-m17n.c --- old/fcitx-m17n-0.2.1/im/fcitx-m17n.c2013-06-03 20:02:57.0 +0200 +++ new/fcitx-m17n-0.2.2/im/fcitx-m17n.c2013-11-03 12:33:26.0 +0100 @@ -342,29 +342,32 @@ mask |= state & (FcitxKeyState_UsedMask); -const char* prefix = ""; +// we have 7 possible below, then 20 is long enough (7 x 2 = 14 < 20) +char prefix[20] = ""; -if (mask & FcitxKeyState_Hyper) { -prefix = "H-"; +// and we use reverse order here comparing with other implementation since strcat is append. +// I don't know if it matters, but it's just to make sure it works. +if (mask & FcitxKeyState_Shift) { +strcat(prefix, "S-"); } -if (mask & FcitxKeyState_Super) { -prefix = "s-"; +if (mask & FcitxKeyState_Ctrl) { +strcat(prefix, "C-"); } -// This is mysterious. - xiaq -if (mask & FcitxKeyState_ScrollLock) { -prefix = "G-"; +if (mask & FcitxKeyState_Meta) { +strcat(prefix, "M-"); } if (mask & FcitxKeyState_Alt) { -prefix = "A-"; +strcat(prefix, "A-"); } -if (mask & FcitxKeyState_Meta) { -prefix = "M-"; +// This is mysterious. - xiaq +if (mask & FcitxKeyState_ScrollLock) { +strcat(prefix, "G-"); } -if (mask & FcitxKeyState_Ctrl) { -prefix = "C-"; +if (mask & FcitxKeyState_Super) { +strcat(prefix, "s-"); } -if (mask & FcitxKeyState_Shift) { -prefix = "S-"; +if (mask & FcitxKeyState_Hyper) { +strcat(prefix, "H-"); } char* keystr; @@ -410,7 +413,6 @@ FcitxIRV FcitxM17NDoInputInternal(IM* im, FcitxKeySym sym, unsigned state) { FcitxInstance* inst = im->owner->owner; -FcitxInputState* is = FcitxInstanceGetInputState(inst); FcitxInputContext* ic = FcitxInstanceGetCurrentIC(inst); MSymbol msym = KeySymToSymbol(sym, state); @@ -507,6 +509,7 @@ void *FcitxM17NCreate(FcitxInstance* inst) { bindtextdomain(TEXTDOMAIN, LOCALEDIR); +bind_textdomain_codeset(TEXTDOMAIN, "UTF-8"); Addon* addon = (Addon*) fcitx_utils_malloc0(sizeof(Addon)); addon->owner = inst; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.2.1/po/ja.po new/fcitx-m17n-0.2.2/po/ja.po --- old/fcitx-m17n-0.2.1/po/ja.po 2013-06-03 20:02:57.0 +0200 +++ new/fcitx-m17n-0.2.2/po/ja.po 2013-11-03 12:33:26.0 +0100 @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# しろう <>, 2013 +# しろう, 2013 +# しろう, 2013 msgid "" msgstr "" "Project-Id-Version: fcitx\n" "Report-Msgid-Bugs-To: fcitx-...@googlegroups.com\n" -"POT-Creation-Date: 2013-04-25 00:02-0400\n" -"PO-Revision-Date: 2013-04-14 08:32+\n" -"Last-Translator: しろう <>\n" +"POT-Creation-Date: 2013-08-07 12:02-0400\n" +"PO-Revision-Date: 2013-08-07 14:55+\n" +"Last-Translator: しろう\n" "Language-Team: Japanese (http://www.transifex.com/projects/p/fcitx/language/"; "ja/)\n" "Language: ja\n" @@ -45,6 +46,8 @@ "Enable deprecated input method provided M17N, usually this means something " "better is already out (Need restart)" msgstr "" +"M17Nによって提供されていた廃止予定の入力メソッを有効化します。廃止予定とは、" +"今はもっといい入力メソッドがあることを通常意味します(再起動が必要)" #: im/i18nname.c:14 msgid "Hanja
commit claws-mail for openSUSE:Factory
Hello community, here is the log from the commit of package claws-mail for openSUSE:Factory checked in at 2013-11-08 08:34:40 Comparing /work/SRC/openSUSE:Factory/claws-mail (Old) and /work/SRC/openSUSE:Factory/.claws-mail.new (New) Package is "claws-mail" Changes: --- /work/SRC/openSUSE:Factory/claws-mail/claws-mail.changes2013-09-11 11:12:50.0 +0200 +++ /work/SRC/openSUSE:Factory/.claws-mail.new/claws-mail.changes 2013-11-08 08:34:41.0 +0100 @@ -1,0 +2,7 @@ +Wed Nov 6 01:21:22 UTC 2013 - malcolmle...@opensuse.org + +- Add claws-mail-fix-address-quotes.patch: Fix quotes all + addresses which need quoting just before writting the + message to the queue folder, claws#2210. + +--- New: claws-mail-fix-address-quotes.patch Other differences: -- ++ claws-mail.spec ++ --- /var/tmp/diff_new_pack.G67sJJ/_old 2013-11-08 08:34:42.0 +0100 +++ /var/tmp/diff_new_pack.G67sJJ/_new 2013-11-08 08:34:42.0 +0100 @@ -31,6 +31,8 @@ Source0: http://downloads.sourceforge.net/project/sylpheed-claws/Claws%20Mail/3.9.2/%{name}-%{version}.tar.bz2 # PATCH-FIX-UPSTREAM claws-mail-missing-include.patch dims...@opensuse.org -- Add missing includes; patch given to upstream Patch0: claws-mail-missing-include.patch +# PATCH-FIX-UPSTREAM claws-mail-fix-address-quotes.patch claws#2210 rica...@mones.org -- Fix quotes all addresses which need quoting just before writting the message to the queue folder. +Patch1: claws-mail-fix-address-quotes.patch BuildRequires: NetworkManager-devel BuildRequires: compface BuildRequires: db-devel @@ -123,6 +125,7 @@ %prep %setup -q %patch0 -p1 +%patch1 -p1 %build %configure \ ++ claws-mail-fix-address-quotes.patch ++ >From d07722d7d00132463f5a86266c22140a69aa477a Mon Sep 17 00:00:00 2001 From: Ricardo Mones Date: Fri, 25 Oct 2013 14:09:00 +0200 Subject: [PATCH] Fix bug #2210, but not on Address Book MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Bug report is titled 'Display name with invalid addresses not quoted when inserted from address book', but the real problem is not the AB. AB doesn't care about the address format or validity, the problem is sending those addresses to the SMTP server, which, as seen in the wild¹, might care. Fix quotes all addresses which need quoting just before writting the message to the queue folder. ¹http://lists.claws-mail.org/pipermail/users/2013-October/007485.html --- src/compose.c | 46 +++--- 1 files changed, 43 insertions(+), 3 deletions(-) diff --git a/src/compose.c b/src/compose.c index b5cec4f..1c8b05b 100644 --- a/src/compose.c +++ b/src/compose.c @@ -6129,6 +6129,44 @@ static int compose_add_attachments(Compose *compose, MimeInfo *parent) return 0; } +static gchar *compose_quote_list_of_addresses(gchar *str) +{ + GSList *list = NULL, *item = NULL; + gchar *qname = NULL, *faddr = NULL, *result = NULL; + + list = address_list_append_with_comments(list, str); + for (item = list; item != NULL; item = item->next) { + gchar *spec = item->data; + gchar *endofname = strstr(spec, " <"); + *endofname = '\0'; + QUOTE_IF_REQUIRED_NORMAL(qname, spec, return NULL); + *endofname = ' '; + if (*qname != *spec) { /* has been quoted, compute new */ + gchar *addr = g_strdup(endofname); + gchar *name = g_strdup(qname); + faddr = g_strconcat(name, addr, NULL); + g_free(name); + g_free(addr); + debug_print("new auto-quoted address: '%s'", faddr); + } + if (result == NULL) + result = g_strdup((faddr != NULL)? faddr: spec); + else { + result = g_strconcat(result, +", ", +(faddr != NULL)? faddr: spec, +NULL); + } + if (faddr != NULL) { + g_free(faddr); + faddr = NULL; + } + } + slist_free_strings_full(list); + + return result; +} + #define IS_IN_CUSTOM_HEADER(header) \ (compose->account->add_customhdr && \ custom_header_find(compose->account->customhdr_list, header) != NULL) @@ -6161,9 +6199,11 @@ static void compose_add_headerfield_from_headerlist(Compose *compose, headerentry
commit harfbuzz for openSUSE:Factory
Hello community, here is the log from the commit of package harfbuzz for openSUSE:Factory checked in at 2013-11-08 08:34:56 Comparing /work/SRC/openSUSE:Factory/harfbuzz (Old) and /work/SRC/openSUSE:Factory/.harfbuzz.new (New) Package is "harfbuzz" Changes: --- /work/SRC/openSUSE:Factory/harfbuzz/harfbuzz.changes2013-09-23 09:30:48.0 +0200 +++ /work/SRC/openSUSE:Factory/.harfbuzz.new/harfbuzz.changes 2013-11-08 08:34:57.0 +0100 @@ -1,0 +2,22 @@ +Wed Nov 6 21:54:05 UTC 2013 - dims...@opensuse.org + +- Update to version 0.9.23: + + Fix (Chain)Context recursion with non-monotone lookup +positions. + + Misc Indic bug fixes. + + New Javanese / Buginese shaping, similar to Windows 8.1. +- Drop harfbuzz-fix-non-return-in-nonvoid.patch: fixed upstream. + +--- +Sun Oct 20 16:16:57 UTC 2013 - zai...@opensuse.org + +- Update to version 0.9.22: + + Fix use-after-end-of-scope in hb_language_from_string(). + + Fix hiding of default_ignorables if font doesn't have space +glyph. + + Protect against out-of-range lookup indices. + + API Changes: Added hb_ot_layout_table_get_lookup_count(). +- Add harfbuzz-fix-non-return-in-nonvoid.patch, fix a missing + return. Patch taken from upstream git. + +--- Old: harfbuzz-0.9.21.tar.bz2 New: harfbuzz-0.9.23.tar.bz2 Other differences: -- ++ harfbuzz.spec ++ --- /var/tmp/diff_new_pack.dHD8cS/_old 2013-11-08 08:34:58.0 +0100 +++ /var/tmp/diff_new_pack.dHD8cS/_new 2013-11-08 08:34:58.0 +0100 @@ -17,7 +17,7 @@ Name: harfbuzz -Version:0.9.21 +Version:0.9.23 Release:0 Summary:An OpenType text shaping engine License:MIT ++ harfbuzz-0.9.21.tar.bz2 -> harfbuzz-0.9.23.tar.bz2 ++ 40682 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit check for openSUSE:Factory
Hello community, here is the log from the commit of package check for openSUSE:Factory checked in at 2013-11-08 08:34:17 Comparing /work/SRC/openSUSE:Factory/check (Old) and /work/SRC/openSUSE:Factory/.check.new (New) Package is "check" Changes: --- /work/SRC/openSUSE:Factory/check/check.changes 2013-04-26 15:38:21.0 +0200 +++ /work/SRC/openSUSE:Factory/.check.new/check.changes 2013-11-08 08:34:18.0 +0100 @@ -1,0 +2,12 @@ +Wed Nov 6 21:58:35 UTC 2013 - dims...@opensuse.org + +- Update to version 0.9.11: + + Check's unit tests pass when compiled out of the source tree. + + Check compiles for Windows using the MinGW/msys environment +(without using fork), and all unit tests pass. + + Check compiles for Windows using the Cygwin environment, and +all unit tests pass. + + Check compiles for Windows using MinGW in Linux (without using +fork), and all unit tests pass using wine 1.4. + +--- Old: check-0.9.10.tar.gz New: check-0.9.11.tar.gz Other differences: -- ++ check.spec ++ --- /var/tmp/diff_new_pack.gaRIqX/_old 2013-11-08 08:34:20.0 +0100 +++ /var/tmp/diff_new_pack.gaRIqX/_new 2013-11-08 08:34:20.0 +0100 @@ -17,13 +17,13 @@ Name: check -Version:0.9.10 +Version:0.9.11 Release:0 Summary:Unit Test Framework for C License:LGPL-2.1+ Group: Development/Libraries/C and C++ Url:http://check.sourceforge.net/ -Source: http://downloads.sourceforge.net/project/check/check/0.9.10/%{name}-%{version}.tar.gz +Source: http://downloads.sourceforge.net/project/check/check/0.9.11/%{name}-%{version}.tar.gz Source99: baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: pkg-config ++ check-0.9.10.tar.gz -> check-0.9.11.tar.gz ++ 38827 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit clanlib for openSUSE:Factory
Hello community, here is the log from the commit of package clanlib for openSUSE:Factory checked in at 2013-11-08 08:34:26 Comparing /work/SRC/openSUSE:Factory/clanlib (Old) and /work/SRC/openSUSE:Factory/.clanlib.new (New) Package is "clanlib" Changes: --- /work/SRC/openSUSE:Factory/clanlib/clanlib-doc.changes 2012-08-08 11:09:44.0 +0200 +++ /work/SRC/openSUSE:Factory/.clanlib.new/clanlib-doc.changes 2013-11-08 08:34:28.0 +0100 @@ -1,0 +2,5 @@ +Thu Nov 7 15:25:14 UTC 2013 - sch...@suse.de + +- Remove obsolete options + +--- --- /work/SRC/openSUSE:Factory/clanlib/clanlib.changes 2013-03-21 22:02:15.0 +0100 +++ /work/SRC/openSUSE:Factory/.clanlib.new/clanlib.changes 2013-11-08 08:34:28.0 +0100 @@ -1,0 +2,7 @@ +Thu Nov 7 15:23:35 UTC 2013 - sch...@suse.de + +- clanlib-cpuid.patch: use cpuid only on x86 +- Remove obsolete clanlib-ppc.patch +- Remove obsolete options + +--- @@ -52 +58,0 @@ - Old: clanlib-ppc.patch New: clanlib-cpuid.patch Other differences: -- ++ clanlib-doc.spec ++ --- /var/tmp/diff_new_pack.b7avE1/_old 2013-11-08 08:34:31.0 +0100 +++ /var/tmp/diff_new_pack.b7avE1/_new 2013-11-08 08:34:31.0 +0100 @@ -77,17 +77,7 @@ Examples/Game/TileMap/Resources/tileset.txt %build -export CFLAGS="%{optflags}" -export CXXFLAGS="$CFLAGS" -%ifarch %arm -export CFLAGS="$CFLAGS -DCL_ARM_PLATFORM" -export CXXFLAGS="$CFLAGS -DCL_ARM_PLATFORM" -%endif -%ifarch %ix86 -%configure --with-pic --disable-static --enable-asm386 --enable-docs -%else -%configure --with-pic --disable-static --disable-asm386 --enable-docs -%endif +%configure --with-pic --disable-static --enable-docs make %{?_smp_mflags} html %install ++ clanlib.spec ++ --- /var/tmp/diff_new_pack.b7avE1/_old 2013-11-08 08:34:31.0 +0100 +++ /var/tmp/diff_new_pack.b7avE1/_new 2013-11-08 08:34:31.0 +0100 @@ -28,8 +28,8 @@ Source: ClanLib-%{version}.tgz # PATCH-FIX-UPSTREAM -- fix compilation with new Mesa, co...@suse.de Patch0: ClanLib-2.3.6-fix-opengl.patch -# PATCH-FIX-OPENSUSE -- fix ppc build, dval...@suse.com -Patch1: clanlib-ppc.patch +# PATCH-FIX-UPSTREAM -- Use cpuid only on x86, sch...@suse.de +Patch1: clanlib-cpuid.patch BuildRequires: Mesa-devel BuildRequires: alsa-devel BuildRequires: dos2unix @@ -79,21 +79,7 @@ %patch1 -p1 %build -export CFLAGS="%{optflags}" -export CXXFLAGS="$CFLAGS" -%ifarch %arm aarch64 -export CFLAGS="$CFLAGS -DCL_ARM_PLATFORM" -export CXXFLAGS="$CFLAGS -DCL_ARM_PLATFORM" -%endif -%ifarch ppc ppc64 -export CFLAGS="$CFLAGS -DCL_PPC_PLATFORM" -export CXXFLAGS="$CFLAGS -DCL_PPC_PLATFORM" -%endif -%ifarch %ix86 -%configure --with-pic --disable-static --enable-asm386 --disable-docs -%else -%configure --with-pic --disable-static --disable-asm386 --disable-docs -%endif +%configure --with-pic --disable-static --disable-docs make %{?_smp_mflags} %install ++ clanlib-cpuid.patch ++ Index: ClanLib-2.3.6/Sources/Core/System/detect_cpu_ext.cpp === --- ClanLib-2.3.6.orig/Sources/Core/System/detect_cpu_ext.cpp +++ ClanLib-2.3.6/Sources/Core/System/detect_cpu_ext.cpp @@ -30,18 +30,6 @@ #include "Core/precomp.h" #include "API/Core/System/system.h" -#ifdef CL_ARM_PLATFORM -bool CL_System::detect_cpu_extension(CL_CPU_ExtensionPPC ext) -{ - throw ("Congratulations, you've just been selected to code this feature!"); -} - -bool CL_System::detect_cpu_extension(CL_CPU_ExtensionX86 ext) -{ -return false; -} -#else - #if (defined(WIN32) || defined(_WIN32) || defined(_WIN64)) && !defined __MINGW32__ #include #endif @@ -72,6 +60,7 @@ bool CL_System::detect_cpu_extension(CL_ bool CL_System::detect_cpu_extension(CL_CPU_ExtensionX86 ext) { +#if defined(__amd64__) || defined(__i386__) unsigned int cpuinfo[4] = {0}; if(ext == mmx) @@ -179,7 +168,6 @@ bool CL_System::detect_cpu_extension(CL_ __cpuid((int*)cpuinfo, 0x8001); return ((cpuinfo[2] & (1 << 16)) != 0); } +#endif return false; } - -#endif -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit anthy for openSUSE:Factory
Hello community, here is the log from the commit of package anthy for openSUSE:Factory checked in at 2013-11-08 07:03:11 Comparing /work/SRC/openSUSE:Factory/anthy (Old) and /work/SRC/openSUSE:Factory/.anthy.new (New) Package is "anthy" Changes: --- /work/SRC/openSUSE:Factory/anthy/anthy.changes 2013-07-12 20:41:53.0 +0200 +++ /work/SRC/openSUSE:Factory/.anthy.new/anthy.changes 2013-11-08 07:03:13.0 +0100 @@ -1,0 +2,6 @@ +Wed Nov 6 15:32:43 CET 2013 - ti...@suse.de + +- Fix breakage on GNU Emacs on openSUSE 13.1 (bnc#849211) +- Added patch: anthy-use-last-command-event.diff + +--- New: anthy-use-last-command-event.diff Other differences: -- ++ anthy.spec ++ --- /var/tmp/diff_new_pack.QjJwOs/_old 2013-11-08 07:03:14.0 +0100 +++ /var/tmp/diff_new_pack.QjJwOs/_new 2013-11-08 07:03:14.0 +0100 @@ -45,6 +45,8 @@ Source2:baselibs.conf Patch2: anthy-last-command-char-xemacs.patch Patch3: bugzilla-224463-comparison-with-string-literal.patch +# PATCH-FIX-OPENSUSE anthy-use-last-command-event.diff bnc#849211 ti...@suse.de +Patch4: anthy-use-last-command-event.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build Summary:Kana-Kanji Conversion Engine License:GPL-2.0+ and LGPL-2.1+ @@ -88,6 +90,9 @@ %setup -q %patch2 -p 1 %patch3 -p 1 +%if 0%{?suse_version} > 1230 +%patch4 -p 1 +%endif %build autoreconf --force --install ++ anthy-use-last-command-event.diff ++ --- src-util/anthy.el |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/src-util/anthy.el +++ b/src-util/anthy.el @@ -892,7 +892,7 @@ ((equal event (character-to-event 'backspace)) 8) (t (char-to-int (event-to-character event) -last-command-char)) +last-command-event)) ;; ;; -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit lightdm for openSUSE:Factory
Hello community, here is the log from the commit of package lightdm for openSUSE:Factory checked in at 2013-11-07 17:37:33 Comparing /work/SRC/openSUSE:Factory/lightdm (Old) and /work/SRC/openSUSE:Factory/.lightdm.new (New) Package is "lightdm" Changes: --- /work/SRC/openSUSE:Factory/lightdm/lightdm.changes 2013-11-04 12:46:09.0 +0100 +++ /work/SRC/openSUSE:Factory/.lightdm.new/lightdm.changes 2013-11-07 17:37:35.0 +0100 @@ -1,0 +2,16 @@ +Thu Nov 7 12:16:56 UTC 2013 - g...@opensuse.org + +- add manpage dm-tool from trunk + +--- +Thu Nov 7 12:07:10 UTC 2013 - g...@opensuse.org + +- update to version 1.8.5 + - Don't pass system user accounts from AccountsService to +greeters + - Fix crash if switching to greeter and it isn't installed + - Implement missing guest-wrapper functionality and enable it for +Ubuntu + - Update AppArmor scripts to work in Ubuntu 13.10 + +--- Old: lightdm-1.8.3.tar.xz New: dm-tool.1 lightdm-1.8.5.tar.xz Other differences: -- ++ lightdm.spec ++ --- /var/tmp/diff_new_pack.RKLVF0/_old 2013-11-07 17:37:36.0 +0100 +++ /var/tmp/diff_new_pack.RKLVF0/_new 2013-11-07 17:37:36.0 +0100 @@ -28,7 +28,7 @@ %endif Name: lightdm -Version:1.8.3 +Version:1.8.5 Release:0 Summary:Lightweight, Cross-desktop Display Manager License:GPL-3.0+ @@ -37,6 +37,7 @@ Source0: https://launchpad.net/lightdm/1.8/%{version}/+download/%{name}-%{version}.tar.xz Source1:%{name}-greeter.pamd Source2:X11-displaymanagers-%{name} +Source3:dm-tool.1 Source100: %{name}-rpmlintrc # PATCH-FEATURE-OPENSUSE lightdm-sysconfig-support.patch g...@opensuse.org -- Adds support for reading configuration options from /etc/sysconfig/displaymanager and /etc/sysconfig/windowmanager Patch0: lightdm-sysconfig-support.patch @@ -169,6 +170,8 @@ install -D -m 644 -p %{SOURCE1} %{buildroot}%{_sysconfdir}/pam.d/lightdm-greeter install -D -m 644 -p %{SOURCE2} %{buildroot}%{_libexecdir}/X11/displaymanagers/lightdm +install -D -m 644 -p %{SOURCE3} %{buildroot}%{_mandir}/man1/dm-tool.1 + install -d %{buildroot}%{_datadir}/lightdm/greeters install -d %{buildroot}%{_datadir}/xgreeters install -d %{buildroot}%{_datadir}/lightdm/sessions @@ -220,8 +223,9 @@ %attr(750,lightdm,lightdm) %dir %{_localstatedir}/log/lightdm %attr(750,lightdm,lightdm) %dir %{_localstatedir}/lib/lightdm %ghost %attr(711,root,root) %dir %{_localstatedir}/cache/lightdm -%doc %{_mandir}/man1/lightdm.1* -%doc %{_mandir}/man1/lightdm-set-defaults.1* +%{_mandir}/man1/lightdm.1* +%{_mandir}/man1/lightdm-set-defaults.1* +%{_mandir}/man1/dm-tool.1* %files lang -f %{name}.lang ++ dm-tool.1 ++ .TH DM-TOOL 1 "7 November 2013" .SH NAME dm-tool \- a tool to control the display manager .SH SYNOPSIS .B dm-tool [ .I OPTIONS ] .I COMMAND [ .I ARGS ] .SH DESCRIPTION .B dm-tool is a tool to communicate with the LightDM display manager. .SH OPTIONS .TP .B \-h, \-\-help Show help options .TP .B \-\-version Show release version .TP .B \-\-session-bus Attempt to connect to the display manager using the session bus. This is useful if you are running a display manager in a test mode. If this option is not present dm-tool will connect using the system bus. .TP The following commands are available: .TP .B switch-to-greeter Switch to the greeter suitable for logging into a new session. .TP .B switch-to-user USERNAME [SESSION] Switch to a user session. If this user is already logged in then the display manager will switch to that session, otherwise a new session is started. If authentication is required a greeter will start to collect this. If the session option is provided then this session type will be used, otherwise the default for this user is used. .TP .B switch-to-guest [SESSION] Switch to a guest session. If the guest session is already active the display manager will switch to that session, otherwise the guest session is started. If the session option is provided then this session type will be used, otherwise the default for the guest user is used. .TP .B lock Lock the current seat. This will swith to a greeter with a hint that the screen is locked. You can return to this session by authenticating in the greeter. .TP .B list-seats List the active seats and sessions that are running. .TP .B add-nested-seat Start an X server inside a session and connect it to a display manager. .TP .B add-local-x-seat DISPLAY_NUMBER Connect an existing X server to the display manager. .TP .B add-seat TYPE [NAME=VALUE...] Add
commit premake4 for openSUSE:Factory
Hello community, here is the log from the commit of package premake4 for openSUSE:Factory checked in at 2013-11-07 17:37:56 Comparing /work/SRC/openSUSE:Factory/premake4 (Old) and /work/SRC/openSUSE:Factory/.premake4.new (New) Package is "premake4" Changes: --- /work/SRC/openSUSE:Factory/premake4/premake4.changes2012-02-14 11:26:22.0 +0100 +++ /work/SRC/openSUSE:Factory/.premake4.new/premake4.changes 2013-11-07 17:37:57.0 +0100 @@ -1,0 +2,7 @@ +Mon Nov 4 19:50:03 UTC 2013 - mailaen...@opensuse.org + +- update to version 4.4-beta4 +- https://en.opensuse.org/SourceUrls +- rebased patch and moved some changes to make parameters + +--- Old: premake-4.3.patch premake-4.3.tar.bz2 New: premake-4.4-beta4-src.zip premake-4.4.patch Other differences: -- ++ premake4.spec ++ --- /var/tmp/diff_new_pack.Nzi3Nr/_old 2013-11-07 17:37:58.0 +0100 +++ /var/tmp/diff_new_pack.Nzi3Nr/_new 2013-11-07 17:37:58.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package premake4 # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,15 +20,12 @@ Summary:Powerfully simple build configuration License:BSD-3-Clause Group: Development/Tools/Building -Version:4.3 +Version:4.4beta4 Release:0 Url:http://industriousone.com/premake -# file http://sourceforge.net/projects/premake/files/Premake/4.3/premake-4.3-src.zip/download -# removed src/host/lua-5.1.4 -# repacked to tar.bz2 -Source: premake-%{version}.tar.bz2 -# PATCH-FIX-OPENSUSE premake-4.3.patch a...@mizerski.pl -- use shared lua; use RPM_OPT_FLAGS; don't strip; -Patch0: premake-4.3.patch +Source: http://downloads.sourceforge.net/project/premake/Premake/4.4/premake-4.4-beta4-src.zip +# PATCH-FIX-OPENSUSE premake-4.4.patch mailaen...@opensuse.org -- use shared lua; +Patch0: premake-4.4.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} > 1210 BuildRequires: lua51-devel @@ -36,11 +33,12 @@ BuildRequires: lua-devel %endif BuildRequires: pkg-config +BuildRequires: unzip %description -Premake is a build configuration tool. Describe your C, C++, or C# software project using a simple, easy to read syntax and let Premake generate the project files for: - -* Microsoft Visual Studio 2002, 2003, 2005, and 2008, including the Express editions +Premake is a build configuration tool. Describe your C, C++, or C# software project +using a simple, easy to read syntax and let Premake generate the project files for: + * Microsoft Visual Studio including the Express editions * GNU Make, including Cygwin and MinGW * Apple Xcode * Code::Blocks @@ -49,19 +47,17 @@ * MonoDevelop %prep -%setup -q -n premake-%{version} +%setup -q -n premake-4.4-beta4 %patch0 -p1 +rm -rf src/host/lua-5.1.4 %build pushd build/gmake.unix -%__make verbose=1 %{?_smp_mflags} +make Premake4 config=debug DEFINES="-DNDEBUG" INCLUDES="" CFLAGS="\`pkg-config lua --cflags\` \$(CPPFLAGS) \$(ARCH) \$(RPM_OPT_FLAGS)" LDFLAGS="-rdynamic" LIBS="\`pkg-config lua --libs\`" verbose=1 %{?_smp_mflags} popd %install -%__install -D -m755 bin/release/premake4 %buildroot%{_bindir}/%{name} - -%clean -%__rm -rf %buildroot +install -D -m755 bin/debug/premake4 %{buildroot}%{_bindir}/%{name} %files %defattr(-,root,root) ++ premake-4.3.patch -> premake-4.4.patch ++ --- /work/SRC/openSUSE:Factory/premake4/premake-4.3.patch 2011-09-23 12:41:55.0 +0200 +++ /work/SRC/openSUSE:Factory/.premake4.new/premake-4.4.patch 2013-11-07 17:37:57.0 +0100 @@ -1,28 +1,7 @@ -diff -rupN premake-4.3/build/gmake.unix/Premake4.make premake-4.3_mod/build/gmake.unix/Premake4.make premake-4.3/build/gmake.unix/Premake4.make 2011-02-05 11:40:45.0 +0100 -+++ premake-4.3_mod/build/gmake.unix/Premake4.make 2011-02-05 12:32:35.131094488 +0100 -@@ -23,13 +23,13 @@ ifeq ($(config),release) - OBJDIR = obj/Release - TARGETDIR = ../../bin/release - TARGET = $(TARGETDIR)/premake4 -- DEFINES += -DNDEBUG -DLUA_USE_POSIX -DLUA_USE_DLOPEN -- INCLUDES += -I../../src/host/lua-5.1.4/src -+ DEFINES += -DNDEBUG -+ INCLUDES += - CPPFLAGS += -MMD -MP $(DEFINES) $(INCLUDES) -- CFLAGS+= $(CPPFLAGS) $(ARCH) -Wall -Os -- CXXFLAGS += $(CFLAGS) -- LDFLAGS += -s -rdynamic -- LIBS += -lm -ldl -+ CFLAGS+=
commit openmpi for openSUSE:Factory
Hello community, here is the log from the commit of package openmpi for openSUSE:Factory checked in at 2013-11-07 17:37:41 Comparing /work/SRC/openSUSE:Factory/openmpi (Old) and /work/SRC/openSUSE:Factory/.openmpi.new (New) Package is "openmpi" Changes: --- /work/SRC/openSUSE:Factory/openmpi/openmpi.changes 2013-10-14 09:30:36.0 +0200 +++ /work/SRC/openSUSE:Factory/.openmpi.new/openmpi.changes 2013-11-07 17:37:43.0 +0100 @@ -1,0 +2,6 @@ +Sun Oct 20 12:04:38 UTC 2013 - jeng...@inai.de + +- Split libraries into subpackage to satisfy program dependencies + without requiring the development environment + +--- Other differences: -- ++ openmpi.spec ++ --- /var/tmp/diff_new_pack.L5LA2I/_old 2013-11-07 17:37:43.0 +0100 +++ /var/tmp/diff_new_pack.L5LA2I/_new 2013-11-07 17:37:43.0 +0100 @@ -71,6 +71,17 @@ This RPM contains all the tools necessary to compile, link, and run Open MPI jobs. +%package libs +Summary:OpenMPI runtime libraries +Group: System/Libraries + +%description libs +Open MPI is a project combining technologies and resources from several +other projects (FT-MPI, LA-MPI, LAM/MPI, and PACX-MPI) in order to +build the best MPI library available. + +This subpackage contains the OpenMPI shared libraries. + %packagedevel Summary:SDK for openMPI Group: Development/Libraries/Parallel @@ -124,7 +135,7 @@ %install -%make_install +make install DESTDIR="%buildroot" # make and install mpivars files sed -e 's,prefix,%{mpi_prefix},g' -e 's,libdir,%{mpi_libdir},g' %{SOURCE1} \ > %{buildroot}%{mpi_bindir}/mpivars.sh @@ -174,7 +185,6 @@ EOF %post -/sbin/ldconfig /usr/bin/mpi-selector \ --register %{name}-%{version} \ --source-dir %{mpi_bindir} \ @@ -191,7 +201,8 @@ /usr/bin/mpi-selector --system --unset --yes %{name}-%{version} fi -%postun -p /sbin/ldconfig +%post libs -p /sbin/ldconfig +%postun libs -p /sbin/ldconfig %files %defattr(-, root, root) @@ -204,13 +215,18 @@ %{mpi_bindir}/ %{mpi_mandir}/man1/ -%{mpi_libdir}/*.so.* %{mpi_libdir}/*.mod %{mpi_datadir}/%{name} %config %{_sysconfdir}/* %{_datadir}/modules/gnu-openmpi/ +%files libs +%defattr(-,root,root) +%dir %mpi_prefix/ +%dir %mpi_libdir/ +%mpi_libdir/*.so.* + %files devel %defattr(-,root,root) %doc %{mpi_datadir}/vampirtrace ++ baselibs.conf ++ --- /var/tmp/diff_new_pack.L5LA2I/_old 2013-11-07 17:37:43.0 +0100 +++ /var/tmp/diff_new_pack.L5LA2I/_new 2013-11-07 17:37:43.0 +0100 @@ -1 +1 @@ -openmpi +openmpi-libs -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit libsemanage for openSUSE:Factory
Hello community, here is the log from the commit of package libsemanage for openSUSE:Factory checked in at 2013-11-07 17:37:25 Comparing /work/SRC/openSUSE:Factory/libsemanage (Old) and /work/SRC/openSUSE:Factory/.libsemanage.new (New) Package is "libsemanage" Changes: --- /work/SRC/openSUSE:Factory/libsemanage/libsemanage.changes 2013-07-02 07:38:56.0 +0200 +++ /work/SRC/openSUSE:Factory/.libsemanage.new/libsemanage.changes 2013-11-07 17:37:26.0 +0100 @@ -1,0 +2,12 @@ +Thu Oct 31 13:55:06 UTC 2013 - p.drou...@gmail.com + +- Update to version 2.2 + * Avoid duplicate list entries + * Add audit support to libsemanage + * Remove policy.kern and replace with symlink + * Apply a MAX_UID check for genhomedircon + * Fix man pages +- Add audit-devel BuildRequires; new dependency +- Add fdupes BuildRequires and use it to symlink duplicate manpages + +--- python-semanage.changes: same change Old: libsemanage-2.1.10.tar.gz New: libsemanage-2.2.tar.gz Other differences: -- ++ libsemanage.spec ++ --- /var/tmp/diff_new_pack.WOHiT3/_old 2013-11-07 17:37:33.0 +0100 +++ /var/tmp/diff_new_pack.WOHiT3/_new 2013-11-07 17:37:33.0 +0100 @@ -16,7 +16,9 @@ # +BuildRequires: audit-devel BuildRequires: bison +BuildRequires: fdupes BuildRequires: flex BuildRequires: libbz2-devel BuildRequires: libselinux-devel @@ -24,13 +26,13 @@ BuildRequires: libustr-devel Name: libsemanage -Version:2.1.10 +Version:2.2 Release:0 Summary:SELinux binary policy manipulation library License:LGPL-2.1+ Group: System/Libraries Url:http://userspace.selinuxproject.org/ -Source: http://userspace.selinuxproject.org/releases/20130423/%{name}-%{version}.tar.gz +Source: http://userspace.selinuxproject.org/releases/20131030/%{name}-%{version}.tar.gz Source1:baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -104,6 +106,8 @@ mkdir -p %{buildroot}%{_includedir} make DESTDIR=%{buildroot} LIBDIR="%{buildroot}%{_libdir}" SHLIBDIR="%{buildroot}/%{_lib}" install ln -sf /%{_lib}/libsemanage.so.1 %{buildroot}/%{_libdir}/libsemanage.so +# Remove duplicate files +%fdupes -s %{buildroot}%{_mandir} %post -n libsemanage1 -p /sbin/ldconfig ++ python-semanage.spec ++ --- /var/tmp/diff_new_pack.WOHiT3/_old 2013-11-07 17:37:33.0 +0100 +++ /var/tmp/diff_new_pack.WOHiT3/_new 2013-11-07 17:37:33.0 +0100 @@ -16,6 +16,7 @@ # +BuildRequires: audit-devel BuildRequires: bison BuildRequires: flex BuildRequires: libbz2-devel @@ -26,13 +27,13 @@ BuildRequires: swig Name: python-semanage -Version:2.1.10 +Version:2.2 Release:0 Summary:Python bindings for libsemanage License:LGPL-2.1 Group: Development/Languages/Python Url:http://www.nsa.gov/selinux/ -Source: http://userspace.selinuxproject.org/releases/20130423/libsemanage-%{version}.tar.gz +Source: http://userspace.selinuxproject.org/releases/20131030/libsemanage-%{version}.tar.gz Source1:baselibs.conf BuildRoot: %{_tmppath}/%{name}-%{version}-build Requires: libsemanage1 = %{version} ++ libsemanage-2.1.10.tar.gz -> libsemanage-2.2.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsemanage-2.1.10/ChangeLog new/libsemanage-2.2/ChangeLog --- old/libsemanage-2.1.10/ChangeLog2013-02-06 02:43:22.0 +0100 +++ new/libsemanage-2.2/ChangeLog 2013-10-30 17:51:19.0 +0100 @@ -1,3 +1,10 @@ +2.2 2013-10-30 + * Avoid duplicate list entries from Dan Walsh. + * Add audit support to libsemanage from Dan Walsh. + * Remove policy.kern and replace with symlink from Dan Walsh. + * Apply a MAX_UID check for genhomedircon from Laurent Bigonville. + * Fix man pages from Laurent Bigonville. + 2.1.10 2013-02-01 * Add sefcontext_compile to compile regex everytime policy is rebuilt * Cleanup/fix enable/disable/remove module. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsemanage-2.1.10/VERSION new/libsemanage-2.2/VERSION --- old/libsemanage-2.1.10/VERSION 2013-02-06 02:43:22.0 +0100 +++ new/libsemanage-2.2/VERSION 2013-10-30 17:51:19.0 +0100 @@ -1 +1 @@ -2.1.10 +2.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsemanage-2.1.10/man/man3/semanage_bool_set_active.3 new/libsemanage-2.2/man/man3/semanage_bool_set_active.3 -
commit cluster-glue for openSUSE:Factory
Hello community, here is the log from the commit of package cluster-glue for openSUSE:Factory checked in at 2013-11-07 17:36:58 Comparing /work/SRC/openSUSE:Factory/cluster-glue (Old) and /work/SRC/openSUSE:Factory/.cluster-glue.new (New) Package is "cluster-glue" Changes: --- /work/SRC/openSUSE:Factory/cluster-glue/cluster-glue.changes 2013-10-21 19:51:43.0 +0200 +++ /work/SRC/openSUSE:Factory/.cluster-glue.new/cluster-glue.changes 2013-11-07 17:37:00.0 +0100 @@ -1,0 +2,8 @@ +Thu Oct 31 13:40:45 UTC 2013 - dmuhameda...@suse.com + +- disable building ipmilan +- move the bladehpi stonith agent into a separate package + (FATE#316529) +- enable fatal warnings + +--- Other differences: -- ++ cluster-glue.spec ++ --- /var/tmp/diff_new_pack.tGqw8W/_old 2013-11-07 17:37:05.0 +0100 +++ /var/tmp/diff_new_pack.tGqw8W/_new 2013-11-07 17:37:05.0 +0100 @@ -29,8 +29,8 @@ %define warnings_fatal yes %endif %else -# Disable warnings for Factory -%define warnings_fatal no +# Enable warnings for Factory +%define warnings_fatal yes %endif # Directory where we install documentation %global glue_docdir %{_defaultdocdir}/%{name} @@ -107,6 +107,24 @@ A collection of libraries that are useful for writing cluster managers such as Pacemaker. +# %package -n stonith-snmp +# Summary:Stonith agents based on SNMP +# Group: Productivity/Clustering/HA + +# %description -n stonith-snmp +# All stonith plugins which require libnetsnmp (apcmastersnmp and +# wti_mpc). + +%package -n stonith-bladehpi +Summary:Stonith agent for IBM bladecenter +Group: Productivity/Clustering/HA + +%description -n stonith-bladehpi +This STONITH module talks to IBM BladeCenters via SNMP through +use of the OpenHPI BladeCenter plugin (snmp_bc). For more information +about installing OpenHPI, setting up the BladeCenter SNMP agent, etc. +please visit http://www.openhpi.org/. + %package -n libglue-devel Summary:Headers and libraries for writing cluster managers Group: Productivity/Clustering/HA @@ -137,12 +155,14 @@ %if 0%{?suse_version} < 1020 export docdir=%{glue_docdir} %configure \ +--enable-ipmilan=no \ --enable-fatal-warnings=%{warnings_fatal} \ --with-package-name=%{name} \ --with-daemon-group=%{gname} \ --with-daemon-user=%{uname} %else %configure \ +--enable-ipmilan=no \ --enable-fatal-warnings=%{warnings_fatal} \ --with-package-name=%{name} \ --with-daemon-group=%{gname} \ @@ -235,7 +255,6 @@ %doc AUTHORS %doc COPYING %doc logd/logd.cf -%doc doc/stonith/README* /sbin/rclogd #%{_libdir}/heartbeat/lrmd %{_libdir}/heartbeat/ha_logd @@ -246,6 +265,9 @@ %exclude %{_libdir}/stonith/plugins/stonith2/null.so %exclude %{_libdir}/stonith/plugins/stonith2/ssh.so %exclude %{_libdir}/stonith/plugins/external/ssh +%exclude %{_libdir}/stonith/plugins/stonith2/bladehpi.so +# %exclude %{_libdir}/stonith/plugins/stonith2/apcmastersnmp.so +# %exclude %{_libdir}/stonith/plugins/stonith2/wti_mpc.so %{_libdir}/stonith/plugins/stonith2/*.so %{_libdir}/stonith/plugins/stonith2/*.py %{_libdir}/stonith/plugins/xen0-ha-dom0-stonith-helper @@ -256,6 +278,19 @@ %doc AUTHORS %doc COPYING.LIB +# %files -n stonith-snmp +# %defattr(-,root,root) +# %{_libdir}/stonith/plugins/stonith2/apcmastersnmp.so +# %{_libdir}/stonith/plugins/stonith2/wti_mpc.so +# %doc AUTHORS +# %doc COPYING.LIB + +%files -n stonith-bladehpi +%defattr(-,root,root) +%{_libdir}/stonith/plugins/stonith2/bladehpi.so +%doc AUTHORS +%doc COPYING.LIB + %files -n libglue-devel %defattr(-,root,root) %dir %{_libdir}/heartbeat ++ cluster-glue.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cluster-glue/.hg_archival.txt new/cluster-glue/.hg_archival.txt --- old/cluster-glue/.hg_archival.txt 2013-10-03 23:16:07.0 +0200 +++ new/cluster-glue/.hg_archival.txt 2013-10-31 13:09:50.0 +0100 @@ -1,5 +1,5 @@ repo: e3ffdd7ae81c596b2be7e1e110d2c1255161340e -node: 5e7ce9f5535788db962f3a1335d0ee374d22aebd +node: b5f1605097857b8b96bd517282ab300e2ad7af99 branch: default latesttag: glue-1.0.12-rc1 -latesttagdistance: 3 +latesttagdistance: 4 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cluster-glue/doc/stonith/Makefile.am new/cluster-glue/doc/stonith/Makefile.am --- old/cluster-glue/doc/stonith/Makefile.am2013-10-03 23:16:07.0 +0200 +++ new/cluster-glue/doc/stonith/Makefile.am2013-10-31 13:09:50.0 +0100 @@ -23,7 +23,6 @@ README.external \
commit scite for openSUSE:Factory
Hello community, here is the log from the commit of package scite for openSUSE:Factory checked in at 2013-11-07 14:48:05 Comparing /work/SRC/openSUSE:Factory/scite (Old) and /work/SRC/openSUSE:Factory/.scite.new (New) Package is "scite" Changes: --- /work/SRC/openSUSE:Factory/scite/scite.changes 2013-03-21 22:15:24.0 +0100 +++ /work/SRC/openSUSE:Factory/.scite.new/scite.changes 2013-11-07 14:48:06.0 +0100 @@ -1,0 +2,165 @@ +Mon Oct 28 03:41:58 UTC 2013 - malcolmle...@opensuse.org + +- Updated to version 3.3.6: + + Added functions to help convert between substyles and base +styles and between secondary and primary styles. + + Lexer added for Rust language. Feature #1024. + + Avoid false matches in errorlist lexer which is used for the +SciTE output pane by stricter checking of ctags lines. + + Perl lexer fixes bugs with multi-byte characters, including in +HEREDOCs and PODs (sf#1528). + + SQL folder folds 'create view' statements. Feature #1020. + + Visual Prolog lexer updated with better support for string +literals and Unicode. Feature #1025. + + For SCI_SETIDENTIFIERS, \t, \r, and \n are allowed as well as +space between identifiers (sf#1521). + + Gaining and losing focus is now reported as a notification +with the code set to SCN_FOCUSIN or SCN_FOCUSOUT. + + On Qt, turn off idle events on destruction to prevent +repeatedly calling idle. + + Qt bindings in ScintillaEdit changed to use signed first +parameter. + + Compilation errors fixed on GTK+ with SCI_NAMESPACE. + + Avoid attempts to redraw empty areas when lexing beyond the +currently visible lines. + + Control more attributes of indicators in SciTE with +find.mark.indicator and highlight.current.word.indicator +properties. + + Fix SciTE bug with buffers becoming read-only (sf#1525). + + Fix SciTE on GTK+ 3.x incremental search to change foreground +colour when no match as changing background colour is +difficult. +- Updates from 3.3.5: + + Characters may be represented by strings. In Unicode mode C1 +control characters are represented by their mnemonics. + + Added SCI_POSITIONRELATIVE to optimize navigation by +character. + + Option to allow mouse selection to switch to rectangular by +pressing Alt after start of gesture. Feature #1007. + + Lexer added for KVIrc script. Feature #1008. + + Bash lexer fixed quoted HereDoc delimiters (sf#1500). + + Structured Text lexer fixed styling of enumeration members +(sf#1508). + + Fixed bug with horizontal caret position when margin changed +(sf#1512). + + Ensure selection redrawn correctly in two cases. When +switching from stream to rectangular selection with +Alt+Shift+Up. When reducing the range of an additional +selection by moving mouse up. Feature #1007. + + Initialize extended styles to the default style. + + Qt bindings in ScintillaEdit made to work on 64-bit Unix +systems. + + Easier access to printing on Qt with formatRange method. + + Fixed SciTE failure to save initial buffer in single buffer +mode (sf#1339). + + SciTE crash fixed for negative line.margin.width (sf#1504). + + SciTE fix for infinite dialog boxes when failing to +automatically save a file (sf#1503). + + SciTE settings buffered.draw, two.phase.draw, and technology +are applied to the output pane as well as the edit pane. +- Updates from 3.3.4: + + Handling of UTF-8 and DBCS text in lexers improved with +methods ForwardBytes and GetRelativeCharacter added to +StyleContext (sf#1483). + + For Unicode text, case-insensitive searching and making text +upper or lower case is now compliant with Unicode standards +on all platforms and is much faster for non-ASCII characters. + + A CategoriseCharacter function was added to return the Unicode +general category of a character which can be useful in lexers. + + SciTE 'immediate' subsystem added to allow scripts that work +while tools are executed. + + Font quality exposed in SciTE as font.quality setting. + + ECL lexer regular expression code fixed (sf#1491). + + Haskell lexer fixed to avoid unnecessary full redraws. Don't +highlight CPP inside comments when styling.within.preprocessor +is on (sf#1459). + + Lua lexer fixes bug in labels with UTF-8 text (sf#1483). + + Perl lexer fixes bug in string interpolation with UTF-8 text +(sf#1483). + + Fixed bugs with case conversion when the result was longer or +shorter than the original text. Could access past end of +string potentially crashing. Selection now updated to result +length. + + Fixed bug where data being inserted and removed was not being +reported in notification messages. Bug introduced in 3.3.2. + + Word wrap bug fixed where the last line could be shown twice. +
commit libsepol for openSUSE:Factory
Hello community, here is the log from the commit of package libsepol for openSUSE:Factory checked in at 2013-11-07 14:44:54 Comparing /work/SRC/openSUSE:Factory/libsepol (Old) and /work/SRC/openSUSE:Factory/.libsepol.new (New) Package is "libsepol" Changes: --- /work/SRC/openSUSE:Factory/libsepol/libsepol.changes2013-07-02 07:39:07.0 +0200 +++ /work/SRC/openSUSE:Factory/.libsepol.new/libsepol.changes 2013-11-07 14:44:55.0 +0100 @@ -1,0 +2,13 @@ +Thu Oct 31 13:36:48 UTC 2013 - p.drou...@gmail.com + +- Update to version 2.2 + * Allow constraint denial cause to be determined + - Add kernel policy version 29. + - Add modular policy version 17. + - Add sepol_compute_av_reason_buffer(), sepol_string_to_security + _class(), sepol_string_to_av_perm(). + * Support overriding Makefile RANLIB + * Fix man pages +- Remove libsepol-rhat.patch; merged on upstream + +--- Old: libsepol-2.1.9.tar.gz libsepol-rhat.patch New: libsepol-2.2.tar.gz Other differences: -- ++ libsepol.spec ++ --- /var/tmp/diff_new_pack.2xq4of/_old 2013-11-07 14:45:01.0 +0100 +++ /var/tmp/diff_new_pack.2xq4of/_new 2013-11-07 14:45:01.0 +0100 @@ -17,16 +17,15 @@ Name: libsepol -Version:2.1.9 +Version:2.2 Release:0 Url:http://www.nsa.gov/selinux/ Summary:SELinux binary policy manipulation library License:LGPL-2.1+ Group: System/Libraries -Source: http://userspace.selinuxproject.org/releases/20130423/%{name}-%{version}.tar.gz +Source: http://userspace.selinuxproject.org/releases/20131030/%{name}-%{version}.tar.gz Source2:baselibs.conf Patch: libsepol-2.1.4-role_fix_callback.patch -Patch2: libsepol-rhat.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: pkg-config @@ -101,7 +100,6 @@ %prep %setup -q %patch -p1 -%patch2 -p2 %build make %{?_smp_mflags} CC="%{__cc}" CFLAGS="$RPM_OPT_FLAGS $(getconf LFS_CFLAGS)" ++ libsepol-2.1.9.tar.gz -> libsepol-2.2.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsepol-2.1.9/ChangeLog new/libsepol-2.2/ChangeLog --- old/libsepol-2.1.9/ChangeLog2013-02-06 02:43:22.0 +0100 +++ new/libsepol-2.2/ChangeLog 2013-10-30 17:51:19.0 +0100 @@ -1,3 +1,11 @@ +2.2 2013-10-30 + * Allow constraint denial cause to be determined from Richard Haines. + - Add kernel policy version 29. + - Add modular policy version 17. + - Add sepol_compute_av_reason_buffer(), sepol_string_to_security_class(), sepol_string_to_av_perm(). + * Support overriding Makefile RANLIB from Sven Vermeulen. + * Fix man pages from Laurent Bigonville. + 2.1.9 2013-02-01 * filename_trans: use some better sorting to compare and merge * coverity fixes diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsepol-2.1.9/VERSION new/libsepol-2.2/VERSION --- old/libsepol-2.1.9/VERSION 2013-02-06 02:43:22.0 +0100 +++ new/libsepol-2.2/VERSION2013-10-30 17:51:19.0 +0100 @@ -1 +1 @@ -2.1.9 +2.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsepol-2.1.9/include/sepol/policydb/policydb.h new/libsepol-2.2/include/sepol/policydb/policydb.h --- old/libsepol-2.1.9/include/sepol/policydb/policydb.h2013-02-06 02:43:22.0 +0100 +++ new/libsepol-2.2/include/sepol/policydb/policydb.h 2013-10-30 17:51:19.0 +0100 @@ -683,10 +683,11 @@ #define POLICYDB_VERSION_ROLETRANS 26 #define POLICYDB_VERSION_NEW_OBJECT_DEFAULTS 27 #define POLICYDB_VERSION_DEFAULT_TYPE 28 +#define POLICYDB_VERSION_CONSTRAINT_NAMES 29 /* Range of policy versions we understand*/ #define POLICYDB_VERSION_MIN POLICYDB_VERSION_BASE -#define POLICYDB_VERSION_MAX POLICYDB_VERSION_DEFAULT_TYPE +#define POLICYDB_VERSION_MAX POLICYDB_VERSION_CONSTRAINT_NAMES /* Module versions and specific changes*/ #define MOD_POLICYDB_VERSION_BASE 4 @@ -704,9 +705,10 @@ #define MOD_POLICYDB_VERSION_TUNABLE_SEP 14 #define MOD_POLICYDB_VERSION_NEW_OBJECT_DEFAULTS 15 #define MOD_POLICYDB_VERSION_DEFAULT_TYPE 16 +#define MOD_POLICYDB_VERSION_CONSTRAINT_NAMES 17 #define MOD_POLICYDB_VERSION_MIN MOD_POLICYDB_VERSION_BASE -#define MOD_POLICYDB_VERSION_MAX MOD_POLICYDB_VERSION_DEFAULT_TYPE +#define MOD_POLICYDB_VERSION_MAX MOD_POLICYDB_VERSION_CONSTRAINT_NAMES #define POLICYDB_CONFIG_MLS1 diff -urN '--exclude=CVS' '--exclu
commit kdebase3 for openSUSE:Factory
Hello community, here is the log from the commit of package kdebase3 for openSUSE:Factory checked in at 2013-11-07 14:44:38 Comparing /work/SRC/openSUSE:Factory/kdebase3 (Old) and /work/SRC/openSUSE:Factory/.kdebase3.new (New) Package is "kdebase3" Changes: --- /work/SRC/openSUSE:Factory/kdebase3/kdebase3.changes2013-09-11 12:16:24.0 +0200 +++ /work/SRC/openSUSE:Factory/.kdebase3.new/kdebase3.changes 2013-11-07 14:44:39.0 +0100 @@ -1,0 +2,7 @@ +Thu Nov 7 09:10:57 UTC 2013 - an...@opensuse.org + +- fix kcontrol mouse module crash which happens in rare circumstances + (patch from Trinity) + kdebase3-trinity-fix-mouse-module-crash.diff + +--- New: kdebase3-trinity-fix-mouse-module-crash.diff Other differences: -- ++ kdebase3.spec ++ --- /var/tmp/diff_new_pack.WRSoi6/_old 2013-11-07 14:44:42.0 +0100 +++ /var/tmp/diff_new_pack.WRSoi6/_new 2013-11-07 14:44:42.0 +0100 @@ -305,6 +305,7 @@ Patch284: udisks2-unmount.patch Patch285: nsplugin-aarch64.diff Patch286: kioslave-fix-memcpy.patch +Patch287: kdebase3-trinity-fix-mouse-module-crash.diff %description This package contains kdebase, one of the basic packages of the K @@ -678,6 +679,7 @@ popd %patch285 -p1 %patch286 -p1 +%patch287 -p1 %define _mandir /opt/kde3/share/man ++ kdebase3-trinity-fix-mouse-module-crash.diff ++ commit d1324133ee949acedcbf1776c8a80d3e28218c23 Author: Slávek Banko Date: 1382954873 +0100 Fix kcm mouse module crash This resolves Bug 1688 diff --git a/kcontrol/input/logitechmouse.cpp b/kcontrol/input/logitechmouse.cpp index 0e2f6f1..1b77896 100644 --- a/kcontrol/input/logitechmouse.cpp +++ b/kcontrol/input/logitechmouse.cpp @@ -115,7 +115,9 @@ LogitechMouse::LogitechMouse( struct usb_device *usbDev, int mouseCapabilityFlag LogitechMouse::~LogitechMouse() { -usb_close( m_usbDeviceHandle ); +if (m_usbDeviceHandle != 0) { +usb_close( m_usbDeviceHandle ); +} } void LogitechMouse::initCordlessStatusReporting() -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit checkpolicy for openSUSE:Factory
Hello community, here is the log from the commit of package checkpolicy for openSUSE:Factory checked in at 2013-11-07 14:42:12 Comparing /work/SRC/openSUSE:Factory/checkpolicy (Old) and /work/SRC/openSUSE:Factory/.checkpolicy.new (New) Package is "checkpolicy" Changes: --- /work/SRC/openSUSE:Factory/checkpolicy/checkpolicy.changes 2013-07-02 06:44:41.0 +0200 +++ /work/SRC/openSUSE:Factory/.checkpolicy.new/checkpolicy.changes 2013-11-07 14:42:14.0 +0100 @@ -1,0 +2,10 @@ +Thu Oct 31 13:41:13 UTC 2013 - p.drou...@gmail.com + +- Update to version 2.2 + * Fix hyphen usage in man pages + * handle-unknown / -U required argument fix + * Support overriding Makefile PATH and LIBDIR + * Support space and : in filenames +- Remove checkpolicy-rhat.patch; fixed on upstream + +--- Old: checkpolicy-2.1.12.tar.gz checkpolicy-rhat.patch New: checkpolicy-2.2.tar.gz Other differences: -- ++ checkpolicy.spec ++ --- /var/tmp/diff_new_pack.gfjSkI/_old 2013-11-07 14:42:15.0 +0100 +++ /var/tmp/diff_new_pack.gfjSkI/_new 2013-11-07 14:42:15.0 +0100 @@ -16,21 +16,20 @@ # -%define libsepol_ver 2.1.9 +%define libsepol_ver 2.2 BuildRequires: bison BuildRequires: flex-old BuildRequires: libselinux-devel BuildRequires: libsepol-devel-static >= %{libsepol_ver} Name: checkpolicy -Version:2.1.12 +Version:2.2 Release:0 Url:http://userspace.selinuxproject.org/ Summary:SELinux policy compiler License:GPL-2.0+ Group: Productivity/Security -Source: http://userspace.selinuxproject.org/releases/20130423/%{name}-%{version}.tar.gz -Patch0: %{name}-rhat.patch +Source: http://userspace.selinuxproject.org/releases/20131030/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -51,7 +50,6 @@ %prep %setup -q -%patch0 -p1 %build make clean ++ checkpolicy-2.1.12.tar.gz -> checkpolicy-2.2.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/checkpolicy-2.1.12/ChangeLog new/checkpolicy-2.2/ChangeLog --- old/checkpolicy-2.1.12/ChangeLog2013-02-06 02:43:22.0 +0100 +++ new/checkpolicy-2.2/ChangeLog 2013-10-30 17:51:19.0 +0100 @@ -1,3 +1,9 @@ +2.2 2013-10-30 + * Fix hyphen usage in man pages from Laurent Bigonville. + * handle-unknown / -U required argument fix from Laurent Bigonville. + * Support overriding Makefile PATH and LIBDIR from Laurent Bigonville. + * Support space and : in filenames from Dan Walsh. + 2.1.12 2013-02-01 * Fix errors found by coverity * implement default type policy syntax diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/checkpolicy-2.1.12/VERSION new/checkpolicy-2.2/VERSION --- old/checkpolicy-2.1.12/VERSION 2013-02-06 02:43:22.0 +0100 +++ new/checkpolicy-2.2/VERSION 2013-10-30 17:51:19.0 +0100 @@ -1 +1 @@ -2.1.12 +2.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/checkpolicy-2.1.12/checkmodule.8 new/checkpolicy-2.2/checkmodule.8 --- old/checkpolicy-2.1.12/checkmodule.82013-02-06 02:43:22.0 +0100 +++ new/checkpolicy-2.2/checkmodule.8 2013-10-30 17:51:19.0 +0100 @@ -3,7 +3,7 @@ checkmodule \- SELinux policy module compiler .SH SYNOPSIS .B checkmodule -.I "[-h] [-b] [-m] [-M] [-U handle_unknown ] [-V] [-o output_file] [input_file]" +.I "[\-h] [\-b] [\-m] [\-M] [\-U handle_unknown ] [\-V] [\-o output_file] [input_file]" .SH "DESCRIPTION" This manual page describes the .BR checkmodule @@ -12,7 +12,7 @@ .B checkmodule is a program that checks and compiles a SELinux security policy module into a binary representation. It can generate either a base policy -module (default) or a non-base policy module (-m option); typically, +module (default) or a non-base policy module (\-m option); typically, you would build a non-base policy module to add to an existing module store that already has a base module provided by the base policy. Use semodule_package to combine this module with its optional file @@ -48,7 +48,7 @@ .SH EXAMPLE .nf # Build a MLS/MCS-enabled non-base policy module. -$ checkmodule -M -m httpd.te -o httpd.mod +$ checkmodule \-M \-m httpd.te \-o httpd.mod .fi .SH "SEE ALSO" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/checkpolicy-2.1.12/checkmodule.c new/checkpolicy-2.2/checkmodule.c --- old/checkpolicy-2.1.12/checkmodule.c2013-02-06 02:43:2
commit uClibc for openSUSE:Factory
Hello community, here is the log from the commit of package uClibc for openSUSE:Factory checked in at 2013-11-07 12:54:01 Comparing /work/SRC/openSUSE:Factory/uClibc (Old) and /work/SRC/openSUSE:Factory/.uClibc.new (New) Package is "uClibc" Changes: --- /work/SRC/openSUSE:Factory/uClibc/uClibc.changes2012-12-21 15:03:38.0 +0100 +++ /work/SRC/openSUSE:Factory/.uClibc.new/uClibc.changes 2013-11-07 12:54:02.0 +0100 @@ -1,0 +2,10 @@ +Wed Nov 6 09:30:00 UTC 2013 - idon...@suse.com + +- Fix spec file encoding to be UTF-8 + +--- +Mon Oct 28 15:33:02 UTC 2013 - sch...@suse.de + +- config.m68k: config file for m68k + +--- New: config.m68k Other differences: -- ++ uClibc.spec ++ --- /var/tmp/diff_new_pack.NV1cJR/_old 2013-11-07 12:54:04.0 +0100 +++ /var/tmp/diff_new_pack.NV1cJR/_new 2013-11-07 12:54:04.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package uClibc # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -47,6 +47,9 @@ %ifarch armv7hl armv7l Source1:config.armhl %endif +%ifarch m68k +Source1:config.m68k +%endif Source2:gcc-uClibc.in Source3:README.SUSE Patch0: uClibc.Makefile-gcc-uClibc-wrapper.patch @@ -107,7 +110,7 @@ Group: System/Libraries %description -n uClibc-devel -uClibc (aka �Clibc/pronounced yew-see-lib-see) is a C library for +uClibc (aka µClibc/pronounced yew-see-lib-see) is a C library for developing embedded Linux systems. It is much smaller than the GNU C Library, but nearly all applications supported by glibc also work perfectly with uClibc. Porting applications from glibc to uClibc ++ config.m68k ++ # # Automatically generated make config: don't edit # Version: 0.9.33.2 # Sat Oct 26 12:19:10 2013 # # TARGET_alpha is not set # TARGET_arm is not set # TARGET_avr32 is not set # TARGET_bfin is not set # TARGET_c6x is not set # TARGET_cris is not set # TARGET_e1 is not set # TARGET_frv is not set # TARGET_h8300 is not set # TARGET_hppa is not set # TARGET_i386 is not set # TARGET_i960 is not set # TARGET_ia64 is not set TARGET_m68k=y # TARGET_microblaze is not set # TARGET_mips is not set # TARGET_nios is not set # TARGET_nios2 is not set # TARGET_powerpc is not set # TARGET_sh is not set # TARGET_sh64 is not set # TARGET_sparc is not set # TARGET_v850 is not set # TARGET_vax is not set # TARGET_x86_64 is not set # TARGET_xtensa is not set # # Target Architecture Features and Options # TARGET_ARCH="m68k" FORCE_OPTIONS_FOR_ARCH=y TARGET_SUBARCH="" # # Using ELF file format # ARCH_BIG_ENDIAN=y # # Using Big Endian # ARCH_HAS_MMU=y ARCH_USE_MMU=y UCLIBC_HAS_FLOATS=y UCLIBC_HAS_FPU=y # DO_C99_MATH is not set # DO_XSI_MATH is not set # UCLIBC_HAS_FENV is not set KERNEL_HEADERS="/usr/include" HAVE_DOT_CONFIG=y # # General Library Settings # DOPIC=y # HAVE_SHARED is not set UCLIBC_CTOR_DTOR=y # HAS_NO_THREADS is not set LINUXTHREADS_OLD=y # LINUXTHREADS_NEW is not set # UCLIBC_HAS_THREADS_NATIVE is not set UCLIBC_HAS_THREADS=y # PTHREADS_DEBUG_SUPPORT is not set UCLIBC_HAS_SYSLOG=y UCLIBC_HAS_LFS=y # MALLOC is not set # MALLOC_SIMPLE is not set MALLOC_STANDARD=y # MALLOC_GLIBC_COMPAT is not set UCLIBC_DYNAMIC_ATEXIT=y # COMPAT_ATEXIT is not set UCLIBC_SUSV3_LEGACY=y UCLIBC_SUSV3_LEGACY_MACROS=y UCLIBC_SUSV4_LEGACY=y # UCLIBC_STRICT_HEADERS is not set # UCLIBC_HAS_STUBS is not set UCLIBC_HAS_SHADOW=y # UCLIBC_HAS_PROGRAM_INVOCATION_NAME is not set UCLIBC_HAS_PTY=y ASSUME_DEVPTS=y UNIX98PTY_ONLY=y # UCLIBC_HAS_GETPT is not set # UCLIBC_HAS_LIBUTIL is not set UCLIBC_HAS_TM_EXTENSIONS=y UCLIBC_HAS_TZ_CACHING=y UCLIBC_HAS_TZ_FILE=y UCLIBC_HAS_TZ_FILE_READ_MANY=y UCLIBC_TZ_FILE_PATH="/etc/TZ" UCLIBC_FALLBACK_TO_ETC_LOCALTIME=y # # Advanced Library Settings # UCLIBC_PWD_BUFFER_SIZE=256 UCLIBC_GRP_BUFFER_SIZE=256 # # Support various families of functions # UCLIBC_LINUX_MODULE_26=y UCLIBC_LINUX_MODULE_24=y UCLIBC_LINUX_SPECIFIC=y UCLIBC_HAS_GNU_ERROR=y UCLIBC_BSD_SPECIFIC=y UCLIBC_HAS_BSD_ERR=y # UCLIBC_HAS_OBSOLETE_BSD_SIGNAL is not set # UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL is not set # UCLIBC_NTP_LEGACY is not set # UCLIBC_SV4_DEPRECATED is not set UCLIBC_HAS_REALTIME=y UCLIBC_HAS_ADVANCED_REALTIME=y UCLIBC_HAS_EPOLL=y UCLIBC_HAS_XATTR=y UCLIBC_HAS_PROFILING=y UCLIBC_HAS_CRYPT_IMPL=y # UCLIBC_HAS_SHA256_CRYPT_IMPL is not set # UCLIBC_HAS_SHA512_CRYPT_IMPL is no
commit libzypp-bindings for openSUSE:Factory
Hello community, here is the log from the commit of package libzypp-bindings for openSUSE:Factory checked in at 2013-11-07 12:53:29 Comparing /work/SRC/openSUSE:Factory/libzypp-bindings (Old) and /work/SRC/openSUSE:Factory/.libzypp-bindings.new (New) Package is "libzypp-bindings" Changes: --- /work/SRC/openSUSE:Factory/libzypp-bindings/libzypp-bindings.changes 2013-10-02 17:56:55.0 +0200 +++ /work/SRC/openSUSE:Factory/.libzypp-bindings.new/libzypp-bindings.changes 2013-11-07 12:53:31.0 +0100 @@ -1,0 +2,12 @@ +Wed Nov 6 15:58:55 CET 2013 - m...@suse.de + +- Wrap Changelog class. +- 0.5.17 + +--- +Tue Nov 5 16:53:35 CET 2013 - m...@suse.de + +- Fix no attribute access via PoolItem::resolvable +- 0.5.16 + +--- Old: libzypp-bindings-0.5.15.tar.bz2 New: libzypp-bindings-0.5.17.tar.bz2 Other differences: -- ++ libzypp-bindings.spec ++ --- /var/tmp/diff_new_pack.CpbVcw/_old 2013-11-07 12:53:40.0 +0100 +++ /var/tmp/diff_new_pack.CpbVcw/_new 2013-11-07 12:53:40.0 +0100 @@ -18,7 +18,7 @@ Name: libzypp-bindings -Version:0.5.15 +Version:0.5.17 Release:0 Summary:Bindings for libzypp License:GPL-2.0+ ++ libzypp-bindings-0.5.15.tar.bz2 -> libzypp-bindings-0.5.17.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libzypp-bindings-0.5.15/VERSION.cmake new/libzypp-bindings-0.5.17/VERSION.cmake --- old/libzypp-bindings-0.5.15/VERSION.cmake 2013-09-30 12:56:32.0 +0200 +++ new/libzypp-bindings-0.5.17/VERSION.cmake 2013-11-06 16:01:43.0 +0100 @@ -1,3 +1,3 @@ SET(VERSION_MAJOR "0") SET(VERSION_MINOR "5") -SET(VERSION_PATCH "15") +SET(VERSION_PATCH "17") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libzypp-bindings-0.5.15/examples/ruby/parse1.rb new/libzypp-bindings-0.5.17/examples/ruby/parse1.rb --- old/libzypp-bindings-0.5.15/examples/ruby/parse1.rb 2013-03-19 14:01:39.0 +0100 +++ new/libzypp-bindings-0.5.17/examples/ruby/parse1.rb 2013-11-06 16:01:43.0 +0100 @@ -3,51 +3,56 @@ require 'zypp' include Zypp -tmp_cache_path = TmpDir.new() -tmp_raw_cache_path = TmpDir.new() -tmp_known_repos_path = TmpDir.new() - -opts = RepoManagerOptions.new() -opts.repoCachePath = tmp_cache_path.path() -opts.repoRawCachePath = tmp_raw_cache_path.path() -opts.knownReposPath = tmp_known_repos_path.path() +# Load installed packages +z = ZYppFactory::instance.getZYpp +z.initializeTarget( Pathname.new("/") ) +z.target.load; +tmp_dir = TmpDir.new() +opts = RepoManagerOptions.new(tmp_dir.path()) repo_manager = RepoManager.new(opts) repo_info = RepoInfo.new() - -repo_info.set_alias("factorytest") -repo_info.set_name("Test Repo for Factory.") -repo_info.set_enabled(true) -repo_info.set_autorefresh(false) -# repo_info.add_base_url("ftp://dist.suse.de/install/stable-x86/";) -# repo_info.add_base_url("http://software.opensuse.org/download/home:/Arvin42/openSUSE_Factory/";) -repo_info.add_base_url("file:///suse/aschnell/tmp") - -repo_manager.add_repository(repo_info) - -z = ZYppFactory::instance.get_zypp -pool = z.pool() - -repos = repo_manager.known_repositories() +repo_info.setAlias("factorytest") +repo_info.setName("Test Repo for Factory.") +repo_info.setEnabled(true) +repo_info.setAutorefresh(false) +url = Url.new("http://download.opensuse.org/factory-tested/repo/oss/";) +repo_info.addBaseUrl(url) +#repo_manager.addRepository(repo_info) + +KeyRing.setDefaultAccept( KeyRing::ACCEPT_UNKNOWNKEY | +KeyRing::ACCEPT_VERIFICATION_FAILED | KeyRing::ACCEPT_UNSIGNED_FILE | +KeyRing::TRUST_KEY_TEMPORARILY) +repos = repo_manager.knownRepositories() repos.each do | repo | -repo_manager.refresh_metadata(repo) -repo_manager.build_cache(repo) -rep = repo_manager.create_from_cache(repo) -store = rep.resolvables() -z.add_resolvables(store) +repo_manager.refreshMetadata(repo) +repo_manager.buildCache(repo) +repo_manager.loadFromCache(repo) end # puts pool.class +pool = z.pool() pool.each do | p | -# puts p.class +#puts p.class r = p.resolvable -# puts r.class -puts "#{r.kind} #{r.name} #{r.edition.to_s} #{r.arch.to_s}" +#puts r.class +puts "#{r.kind} #{r.name} #{r.edition} #{r.arch}" + +if isKindPackage(p) + changes = asKindPackage(p).changelog + puts changes.class + puts changes.size + changes.each do | c | + puts c.date + puts c.author + puts c.text + end +end puts
commit perl-Tie-Cycle for openSUSE:Factory
Hello community, here is the log from the commit of package perl-Tie-Cycle for openSUSE:Factory checked in at 2013-11-07 12:53:34 Comparing /work/SRC/openSUSE:Factory/perl-Tie-Cycle (Old) and /work/SRC/openSUSE:Factory/.perl-Tie-Cycle.new (New) Package is "perl-Tie-Cycle" Changes: --- /work/SRC/openSUSE:Factory/perl-Tie-Cycle/perl-Tie-Cycle.changes 2013-07-01 15:59:33.0 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Tie-Cycle.new/perl-Tie-Cycle.changes 2013-11-07 12:53:40.0 +0100 @@ -1,0 +2,8 @@ +Fri Oct 4 09:15:18 UTC 2013 - co...@suse.com + +- updated to 1.19 + * Update for modern usage, better code + * I use this as an example in Mastering Perl, so I shouldn't + leave embarrassing practices in the code. :) + +--- Old: Tie-Cycle-1.17.tar.gz New: Tie-Cycle-1.19.tar.gz Other differences: -- ++ perl-Tie-Cycle.spec ++ --- /var/tmp/diff_new_pack.rGUQ4P/_old 2013-11-07 12:53:42.0 +0100 +++ /var/tmp/diff_new_pack.rGUQ4P/_new 2013-11-07 12:53:42.0 +0100 @@ -17,7 +17,7 @@ Name: perl-Tie-Cycle -Version:1.17 +Version:1.19 Release:0 %define cpan_name Tie-Cycle Summary:Cycle through a list of values via a scalar. @@ -29,7 +29,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl BuildRequires: perl-macros +BuildRequires: perl(Test::More) >= 0.95 #BuildRequires: perl(Tie::Cycle) +Requires: perl(Test::More) >= 0.95 %{perl_requires} %description @@ -47,7 +49,7 @@ During the tie, this module makes a shallow copy of the array reference. If the array reference contains references, and those references are changed after the tie, the elements of the cycle will change as well. See the -included test.pl script for an example of this effect. +included _test.pl_ script for an example of this effect. %prep %setup -q -n %{cpan_name}-%{version} @@ -66,6 +68,6 @@ %files -f %{name}.files %defattr(-,root,root,755) -%doc Changes examples LICENSE README +%doc Changes examples LICENSE MYMETA.json MYMETA.yml README %changelog ++ Tie-Cycle-1.17.tar.gz -> Tie-Cycle-1.19.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Tie-Cycle-1.17/Changes new/Tie-Cycle-1.19/Changes --- old/Tie-Cycle-1.17/Changes 2009-01-30 10:48:24.0 +0100 +++ new/Tie-Cycle-1.19/Changes 2013-08-27 19:21:17.0 +0200 @@ -1,5 +1,10 @@ Revision history for Perl extension Tie::Cycle. +1.19 - Tue Aug 27 13:20:40 2013 + * Update for modern usage, better code + * I use this as an example in Mastering Perl, so I shouldn't + leave embarrassing practices in the code. :) + 1.17 - Fri Jan 30 01:48:06 2009 * Updated the docs for the move to Github * There aren't any code changes diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Tie-Cycle-1.17/MANIFEST new/Tie-Cycle-1.19/MANIFEST --- old/Tie-Cycle-1.17/MANIFEST 2009-01-30 10:48:25.0 +0100 +++ new/Tie-Cycle-1.19/MANIFEST 2013-08-27 19:21:19.0 +0200 @@ -1,9 +1,11 @@ Changes -lib/Cycle.pm examples/README +lib/Tie/Cycle.pm LICENSE Makefile.PL MANIFEST +MYMETA.json +MYMETA.yml README t/cycle.t t/load.t @@ -11,4 +13,5 @@ t/pod.t t/pod_coverage.t t/test_manifest -META.yml Module meta-data (added by MakeMaker) +META.yml Module YAML meta-data (added by MakeMaker) +META.jsonModule JSON meta-data (added by MakeMaker) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Tie-Cycle-1.17/META.json new/Tie-Cycle-1.19/META.json --- old/Tie-Cycle-1.17/META.json1970-01-01 01:00:00.0 +0100 +++ new/Tie-Cycle-1.19/META.json2013-08-27 19:21:19.0 +0200 @@ -0,0 +1,30 @@ +{ + "abstract" : "Cycle through a list of values via a scalar", + "author" : [ + "brian d foy " + ], + "dynamic_config" : 1, + "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 2.112150", + "license" : [ + "perl_5" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";, + "version" : "2" + }, + "name" : "Tie-Cycle", + "no_index" : { + "directory" : [ + "t", + "inc" + ] + }, + "release_status" : "stable", + "resources" : { + "repository" : { + "type" : "git", + "web" : "https://github.com/briandfoy/tie-cycle"; + } + }, + "version" : "1.19" +} diff -urN '--exclude=CVS' '--exclude=.cvs
commit liblastfm for openSUSE:Factory
Hello community, here is the log from the commit of package liblastfm for openSUSE:Factory checked in at 2013-11-07 12:53:21 Comparing /work/SRC/openSUSE:Factory/liblastfm (Old) and /work/SRC/openSUSE:Factory/.liblastfm.new (New) Package is "liblastfm" Changes: --- /work/SRC/openSUSE:Factory/liblastfm/liblastfm.changes 2013-03-07 07:28:55.0 +0100 +++ /work/SRC/openSUSE:Factory/.liblastfm.new/liblastfm.changes 2013-11-07 12:53:22.0 +0100 @@ -1,0 +2,7 @@ +Thu Nov 7 00:38:12 UTC 2013 - hrvoje.sen...@gmail.com + +- Update to 1.0.8: + * Bugfix release, no changelog provided + * Ability to build the library against Qt5 (disabled for now) + +--- Old: liblastfm-1.0.7.tar.gz New: liblastfm-1.0.8.tar.gz Other differences: -- ++ liblastfm.spec ++ --- /var/tmp/diff_new_pack.zjVU7r/_old 2013-11-07 12:53:22.0 +0100 +++ /var/tmp/diff_new_pack.zjVU7r/_new 2013-11-07 12:53:22.0 +0100 @@ -20,7 +20,7 @@ %define _soversion 1 Name: liblastfm -Version:1.0.7 +Version:1.0.8 Release:0 Summary:A Qt C++ Library for the Last.fm Webservices License:GPL-3.0+ @@ -66,7 +66,7 @@ %setup -q %build -%cmake_kde4 -d build +%cmake_kde4 -d build -- -DBUILD_WITH_QT4=ON %make_jobs %install ++ liblastfm-1.0.7.tar.gz -> liblastfm-1.0.8.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblastfm-1.0.7/CMakeLists.txt new/liblastfm-1.0.8/CMakeLists.txt --- old/liblastfm-1.0.7/CMakeLists.txt 2013-02-27 10:01:06.0 +0100 +++ new/liblastfm-1.0.8/CMakeLists.txt 2013-09-03 17:43:03.0 +0200 @@ -9,7 +9,7 @@ set(LASTFM_MAJOR_VERSION "1") set(LASTFM_MINOR_VERSION "0") -set(LASTFM_PATCH_VERSION "7") +set(LASTFM_PATCH_VERSION "8") set(LASTFM_VERSION_STRING "${LASTFM_MAJOR_VERSION}.${LASTFM_MINOR_VERSION}.${LASTFM_PATCH_VERSION}") # options @@ -26,9 +26,17 @@ # setup qt stuff set(CMAKE_AUTOMOC ON) -find_package(Qt5Core QUIET) + +option(BUILD_WITH_QT4 "Build liblastfm with Qt4 no matter if Qt5 was found" OFF) + +if( NOT BUILD_WITH_QT4 ) +# try Qt5 first, and prefer that if found +find_package(Qt5Core QUIET) +endif() + if(Qt5Core_DIR) message(STATUS "Found Qt5! Please keep in mind, this is highly experimental and not our main development target..") +include_directories(${Qt5Core_INCLUDE_DIRS}) # macro(qt_wrap_ui) # qt5_wrap_ui(${ARGN}) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblastfm-1.0.7/README.md new/liblastfm-1.0.8/README.md --- old/liblastfm-1.0.7/README.md 2013-02-27 10:01:06.0 +0100 +++ new/liblastfm-1.0.8/README.md 2013-09-03 17:43:03.0 +0200 @@ -23,7 +23,6 @@ Additionally, to build it you will need: -* Ruby * cmake ## Mac OS X @@ -36,14 +35,14 @@ Do something like this: -sudo apt-get install qt4-qmake pkg-config ruby g++ libqt4-dev cmake libfftw-dev libsamplerate0-dev +sudo apt-get install qt4-qmake pkg-config g++ libqt4-dev cmake libfftw-dev libsamplerate0-dev Please note, we have only tested on Linux, but we think it'll work on all varieties of UNIX. If it doesn't, report the bug to eartle on GitHub. ## Windows -Install Ruby. Install Visual Studio 2008 or higher. Install Qt. Install the +Install Visual Studio 2008 or higher. Install Qt. Install the Windows Server 2003 Platform SDK r2: http://www.microsoft.com/Downloads/details.aspx?FamilyID=484269e2-3b89-47e3-8eb7-1f2be6d7123a diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblastfm-1.0.7/src/CMakeLists.txt new/liblastfm-1.0.8/src/CMakeLists.txt --- old/liblastfm-1.0.7/src/CMakeLists.txt 2013-02-27 10:01:06.0 +0100 +++ new/liblastfm-1.0.8/src/CMakeLists.txt 2013-09-03 17:43:03.0 +0200 @@ -35,6 +35,7 @@ RadioTuner.cpp RadioStation.cpp XmlQuery.cpp +Url.cpp UrlBuilder.cpp misc.cpp Chart.cpp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/liblastfm-1.0.7/src/InternetConnectionMonitor.cpp new/liblastfm-1.0.8/src/InternetConnectionMonitor.cpp --- old/liblastfm-1.0.7/src/InternetConnectionMonitor.cpp 2013-02-27 10:01:06.0 +0100 +++ new/liblastfm-1.0.8/src/InternetConnectionMonitor.cpp 2013-09-03 17:43:03.0 +0200 @@ -131,11 +131,11 @@ { NetworkConnectionMonitor* ncm = 0; -#ifdef Q_WS_X11 +#ifdef Q_OS_X11 ncm = new LNetworkConnectionMonitor( this ); -#elif defined(Q_WS_WIN) && ! defined __MINGW32__
commit python-etude for openSUSE:Factory
Hello community, here is the log from the commit of package python-etude for openSUSE:Factory checked in at 2013-11-07 12:53:41 Comparing /work/SRC/openSUSE:Factory/python-etude (Old) and /work/SRC/openSUSE:Factory/.python-etude.new (New) Package is "python-etude" Changes: --- /work/SRC/openSUSE:Factory/python-etude/python-etude.changes 2013-03-08 13:26:58.0 +0100 +++ /work/SRC/openSUSE:Factory/.python-etude.new/python-etude.changes 2013-11-07 12:53:43.0 +0100 @@ -1,0 +2,5 @@ +Thu Oct 24 11:05:27 UTC 2013 - speili...@suse.com + +- Require python-setuptools instead of distribute (upstreams merged) + +--- Other differences: -- ++ python-etude.spec ++ --- /var/tmp/diff_new_pack.tzcGVn/_old 2013-11-07 12:53:43.0 +0100 +++ /var/tmp/diff_new_pack.tzcGVn/_new 2013-11-07 12:53:43.0 +0100 @@ -28,11 +28,11 @@ BuildRequires: libvisual-devel BuildRequires: pyrex BuildRequires: python-devel -BuildRequires: python-distribute BuildRequires: python-goocanvas BuildRequires: python-gtk-devel BuildRequires: python-notify BuildRequires: python-opengl +BuildRequires: python-setuptools BuildRequires: python-xdg BuildRequires: python-xmms2 BuildRequires: update-desktop-files -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit ksh for openSUSE:Factory
Hello community, here is the log from the commit of package ksh for openSUSE:Factory checked in at 2013-11-07 12:53:04 Comparing /work/SRC/openSUSE:Factory/ksh (Old) and /work/SRC/openSUSE:Factory/.ksh.new (New) Package is "ksh" Changes: --- /work/SRC/openSUSE:Factory/ksh/ksh.changes 2013-09-23 09:37:27.0 +0200 +++ /work/SRC/openSUSE:Factory/.ksh.new/ksh.changes 2013-11-07 12:53:05.0 +0100 @@ -1,0 +2,27 @@ +Fri Oct 25 14:07:57 UTC 2013 - wer...@suse.de + +- Add missing sfsetbuf() in patch ksh93-fdstatus.dif +- Rework patch ksh93-dttree-crash.dif +- Rework patch ksh93-uninitialized.dif + +--- +Tue Oct 22 11:58:21 UTC 2013 - wer...@suse.de + +- Change patch ksh93-fdstatus.dif by adding some more EINTR wrapper + +--- +Fri Oct 18 12:21:58 UTC 2013 - wer...@suse.de + +- Add patch ksh93-sfio.dif as on overlapping memory areas there + should memmove be used instead of memcopy (backport 2013-10-10) + +--- +Fri Oct 18 10:41:05 UTC 2013 - wer...@suse.de + +- Change patch ksh93-fdstatus.dif which may solve bnc#844071 +- Add patch ksh93-fs3d.dif to avoid crash due dummy function call + fs3d_mount(3ast) during valgrind sessions +- Add patch ksh93-uninitialized.dif to avoid sometimes random + errors on busy systems which may also related to bnc#844071 + +--- New: ksh93-fs3d.dif ksh93-sfio.dif ksh93-uninitialized.dif Other differences: -- ++ ksh.spec ++ --- /var/tmp/diff_new_pack.O5TqHr/_old 2013-11-07 12:53:06.0 +0100 +++ /var/tmp/diff_new_pack.O5TqHr/_new 2013-11-07 12:53:06.0 +0100 @@ -129,6 +129,12 @@ Patch33:ksh93-fdstatus.dif # PATCH-FIX-UPSTREAM ksh93-alias-k.dif [bnc#824187] Patch34:ksh93-alias-k.dif +# PATCH-FIX-SUSE Reduce warnings about uninitialized varaibles (most of them are handled correct) +Patch35:ksh93-uninitialized.dif +# PATCH-FIX-SUSE Do not use mount(2) system call instead of fs3d_mount(3ast) +Patch36:ksh93-fs3d.dif +# PATCH-FIX-UPSTREAM Ouch ... use memmove instead of memcopy on overlapping areas +Patch37:ksh93-sfio.dif Patch42:ksh-locale.patch %description @@ -217,6 +223,9 @@ %patch32 %patch33 %patch34 +%patch35 +%patch36 +%patch37 %build # @@ -245,9 +254,6 @@ test -s $fd -a ! -c $fd && break || true done set -- $(readlink $fd) -grep pts /proc/mounts -ls -ld /dev/ptmx -ls -ld /dev/pts exec ./sigexec $SHELL ${1+"$@"} fi IGNORED=0x$(ps --no-headers -o ignored $$) @@ -324,6 +330,7 @@ cflags -Wno-implicit IGNORE cflags -Wno-unused-value IGNORE cflags -Wno-type-limits IGNORE + cflags -Wclobbered RPM_OPT_FLAGS # # Do not use -DSHOPT_SPAWN=1 and/or -DSHOPT_AMP=1 this would cause # errors due race conditions while executing the test suite. @@ -466,7 +473,7 @@ done nobuiltin=${PWD}/.nobuiltin nm -D ${root}/lib/libast.so | \ - grep -E 'T[[:blank:]](_ast_)?(str|mem|(get|put|set)env|(c|m|re|v)alloc)' | \ + grep -E 'T[[:blank:]](_ast_)?(str|mem|(get|put|set)env|free|(c|m|re|v|vm)alloc)' | \ sed -r 's/[[:xdigit:]]+[[:blank:]]+T[[:blank:]]+(_ast_)?([^[:blank:]]*)/-fno-builtin-\2/' | \ sort -u > $nobuiltin rm -rf $root @@ -481,7 +488,7 @@ *) cflags @$nobuiltinRPM_OPT_FLAGS esac - export > .env + export | grep -vE 'PROFILEREAD|PWD|MAIL|HOME|HOST|HIST|LESS|TMP' > .env bin/package make CCFLAGS="$RPM_OPT_FLAGS -I${root}/include" HOSTTYPE="$HOSTTYPE" AR="$AR" CC="$CC" root=$(echo ${PWD}/arch/linux*) test -d $root || exit 1 @@ -535,7 +542,16 @@ sed -ri '/^L[[:blank:]]/a \t 8000' pty.sh sed -ri 's/(SECONDS[[:blank:]]*>[[:blank:]]*)([[:digit:]]+)/\18/' signal.sh unset ${!LESS*} + printf '\033[1m' + grep -E '^(model name|flags)[[:blank:]]*:' /proc/cpuinfo | sort -ur | fold -s + printf '\033(B\033[m' ${SHELL} shtests + result=$(${SHELL} -k -c 'd=`/bin/echo x y=z`; echo $d x y=z') + test "$result" = 'x x' || exit 1 + result=$(${SHELL} -c 'echo | echo "x`/bin/echo y`"') + test "$result" = xy || exit 1 + result=$(${SHELL} -c 'echo | echo "x$(/bin/echo y)"') + test "$result" = xy || exit 1 exec 3> ${TMPDIR:-/tmp}/log LANG=POSIX strace $MEMORY -o '!%{S:31}' ${SHELL} %{S:10} 400 @@ -567,7 +583,9 @@ fi LANG=POSIX exec 3>&- + printf '\033[1m' uniq -c ${TMPDIR:-/tmp}/lo
commit ipset for openSUSE:Factory
Hello community, here is the log from the commit of package ipset for openSUSE:Factory checked in at 2013-11-07 12:52:46 Comparing /work/SRC/openSUSE:Factory/ipset (Old) and /work/SRC/openSUSE:Factory/.ipset.new (New) Package is "ipset" Changes: --- /work/SRC/openSUSE:Factory/ipset/ipset.changes 2013-05-16 11:06:35.0 +0200 +++ /work/SRC/openSUSE:Factory/.ipset.new/ipset.changes 2013-11-07 12:52:47.0 +0100 @@ -1,0 +2,21 @@ +Mon Oct 28 12:34:04 UTC 2013 - jeng...@inai.de + +- Update to new upstream release 6.20.1 +* build fixes for kernel 3.8 and the userspace library +- Remove 0001-build-fix-incorrect-library-versioning.patch (merged) + +--- +Sun Oct 20 13:03:53 UTC 2013 - jeng...@inai.de + +- Add 0001-build-fix-incorrect-library-versioning.patch + +--- +Sun Oct 20 12:43:51 UTC 2013 - jeng...@inai.de + +- Update to new upstream release 6.20 +* netns support +* new set types: hash:net,net and hash:net,port,net +* new extension: "comment", for annotation of set elements +- Drop sles11.diff (no longer needed, upstream has better fix) + +--- Old: ipset-6.19.tar.xz sles11.diff New: ipset-6.20.1.tar.xz Other differences: -- ++ ipset.spec ++ --- /var/tmp/diff_new_pack.qTlWs4/_old 2013-11-07 12:52:47.0 +0100 +++ /var/tmp/diff_new_pack.qTlWs4/_new 2013-11-07 12:52:47.0 +0100 @@ -18,7 +18,7 @@ Name: ipset %define lname libipset3 -Version:6.19 +Version:6.20.1 Release:0 Summary:Netfilter ipset administration utility License:GPL-2.0 @@ -31,9 +31,11 @@ #Git-Web: http://git.netfilter.org/ Source: %name-%version.tar.xz Source3:%name-preamble -Patch1: sles11.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: libtool BuildRequires: pkgconfig >= 0.21 BuildRequires: xz %if 0%{?suse_version} >= 1140 || 0%{?fedora_version} @@ -122,7 +124,7 @@ tar --use=xz -xf "%{S:0}"; %setup -DTq %endif -%patch -P 1 -p1 +autoreconf -fi %build %if 0%{?with_kmp} @@ -132,12 +134,13 @@ # ksource: it just checks for a header %configure --disable-static \ --with-kbuild="/usr/src/linux-obj/%_target_cpu/$flavor" \ - --with-ksource="/usr/src/linux"; + --with-ksource="/usr/src/linux" \ + --includedir="%_includedir/pkg" make %{?_smp_mflags} all modules; popd; done; %else -%configure --disable-static --with-kmod=no +%configure --disable-static --with-kmod=no --includedir="%_includedir/pkg" make %{?_smp_mflags}; %endif @@ -171,6 +174,7 @@ %files devel %defattr(-,root,root) %_libdir/libipset.so -%_includedir/libipset +%_libdir/pkgconfig/libipset.pc +%_includedir/pkg/ %changelog ++ ipset-6.19.tar.xz -> ipset-6.20.1.tar.xz ++ 40288 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit icinga for openSUSE:Factory
Hello community, here is the log from the commit of package icinga for openSUSE:Factory checked in at 2013-11-07 12:52:15 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.changes2013-10-14 14:29:47.0 +0200 +++ /work/SRC/openSUSE:Factory/.icinga.new/icinga.changes 2013-11-07 12:52:16.0 +0100 @@ -1,0 +2,36 @@ +Wed Oct 30 22:39:34 UTC 2013 - l...@linux-schulserver.de + +- switch to all unhandled problems per default in index.html + +--- +Tue Oct 29 07:47:30 UTC 2013 - thard...@suse.com + +- imported upstream version 1.10.0 + * idoutils: slahistory table must be removed manually after enable_sla removal #4363 +- DROP TABLE icinga_slahistory + * idoutils: timedevents & timedeventqueue tables are deprecated and removed #4482 + * core: allow exclude (!) to work for regexp matches as well (Matthias Kerk) #3720 - MF + * core: make logging of external command errors more verbose (Anton Lofgren, op5 team) #4402 - MF + * core: avoid unnecessary ctime() calls when debugging is disabled, increase performance (Opsview Team) #4681 - MF + * core: add check source to checkresult/status data #4709 - MF + * core: fix check fails when using environment variables (Sven Nierlein) #2647 - MF + * classic ui: add display filter modification for status.cgi #852 - RB + * classic ui: log errors into cgi log (use_logging=1) #4389 - MF + * classic ui: show custom variables in extended info #4390 - MF + * classic ui: allow to exclude custom variable name/value based on pattern #4390 - MF + * classic ui: add make install-classicui-standalone-conf as seperated config installation #4664 - MF + * classic ui: added performance data to extinfo json output #4728 - RB + * classic ui: show backend version info from status file (1.x or 2.x) #4737 - MF + * classic ui: added option for partial servicegroups #2740 - RB + * classic ui: show check source in extinfo #4709 - MF + * classic ui: added live search #1657 - Kepi/RB + * idoutils: add a table trimming option for 'downtime history' #3989 - MF + * idoutils: allow to disable customvar status updates with dump_customvar_status=0|1 in idomod.cfg #4479 - MF + * idoutils: add check_source to status tables #4709 - MF + * idoutils: add object_id (host, service) to logentries status updates/state changes #4754 - MF + * install: allow enable perfdata config switch via configure #3996 - MF + * install: add --enable-debug=yes/no to set specific compiler flags for gdb, valgrind #4387 - MF + * install: detect /etc/apache2/conf-available on debian with apache2.4 #4509 - MF + * install: add manpages from debian upstream #4055 - MF + +--- Old: icinga-1.9.3.tar.gz New: icinga-1.10.0.tar.gz Other differences: -- ++ icinga.spec ++ --- /var/tmp/diff_new_pack.hXpg1y/_old 2013-11-07 12:52:17.0 +0100 +++ /var/tmp/diff_new_pack.hXpg1y/_new 2013-11-07 12:52:17.0 +0100 @@ -17,7 +17,7 @@ Name: icinga -Version:1.9.3 +Version:1.10.0 Release:0 Summary:Host/service/network monitoring program @@ -277,7 +277,7 @@ --with-gd-inc="%{_includedir}" \ --with-htmurl="/%{name}" \ --with-cgiurl="/%{name}/cgi-bin" \ - --with-mainurl="/%{name}/cgi-bin/status.cgi?host=all&type=detail&servicestatustypes=29" \ + --with-mainurl="/%{name}/cgi-bin/status.cgi?allunhandledproblems" \ --with-init-dir="%{_initrddir}" \ --with-lockfile="%{icinga_lockfile}" \ --with-icinga-user="%{icinga_user}" \ ++ icinga-1.9.3.tar.gz -> icinga-1.10.0.tar.gz ++ /work/SRC/openSUSE:Factory/icinga/icinga-1.9.3.tar.gz /work/SRC/openSUSE:Factory/.icinga.new/icinga-1.10.0.tar.gz differ: char 5, line 1 -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit datovka for openSUSE:Factory
Hello community, here is the log from the commit of package datovka for openSUSE:Factory checked in at 2013-11-07 12:51:31 Comparing /work/SRC/openSUSE:Factory/datovka (Old) and /work/SRC/openSUSE:Factory/.datovka.new (New) Package is "datovka" Changes: --- /work/SRC/openSUSE:Factory/datovka/datovka.changes 2013-07-16 17:39:59.0 +0200 +++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2013-11-07 12:51:32.0 +0100 @@ -1,0 +2,5 @@ +Thu Oct 24 10:50:44 UTC 2013 - speili...@suse.com + +- Require python-setuptools instead of distribute (upstreams merged) + +--- Other differences: -- ++ datovka.spec ++ --- /var/tmp/diff_new_pack.bq71Hi/_old 2013-11-07 12:51:33.0 +0100 +++ /var/tmp/diff_new_pack.bq71Hi/_new 2013-11-07 12:51:33.0 +0100 @@ -27,19 +27,19 @@ BuildRequires: dejavu BuildRequires: fdupes BuildRequires: python -BuildRequires: python-distribute BuildRequires: python-dslib >= 3.0 BuildRequires: python-gtk BuildRequires: python-openssl BuildRequires: python-reportlab +BuildRequires: python-setuptools BuildRequires: python-sqlalchemy BuildRequires: update-desktop-files Requires: dejavu -Requires: python-distribute Requires: python-dslib >= 3.0 Requires: python-gtk Requires: python-openssl Requires: python-reportlab +Requires: python-setuptools Requires: python-sqlalchemy BuildRoot: %{_tmppath}/%{name}-%{version}-build %py_requires -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit gnu_parallel for openSUSE:Factory
Hello community, here is the log from the commit of package gnu_parallel for openSUSE:Factory checked in at 2013-11-07 12:51:42 Comparing /work/SRC/openSUSE:Factory/gnu_parallel (Old) and /work/SRC/openSUSE:Factory/.gnu_parallel.new (New) Package is "gnu_parallel" Changes: --- /work/SRC/openSUSE:Factory/gnu_parallel/gnu_parallel.changes 2013-10-08 10:48:55.0 +0200 +++ /work/SRC/openSUSE:Factory/.gnu_parallel.new/gnu_parallel.changes 2013-11-07 12:51:44.0 +0100 @@ -1,0 +2,8 @@ +Mon Oct 28 11:35:36 UTC 2013 - jeng...@inai.de + +- Update to new upstream release 20131022 +* Using --transfer with files containing /./ in the path will copy + the files relative to the --workdir. The maximal command length + is now cached in a file, halving the startup time. + +--- Old: parallel-20130922.tar.bz2 parallel-20130922.tar.bz2.sig New: parallel-20131022.tar.bz2 parallel-20131022.tar.bz2.sig Other differences: -- ++ gnu_parallel.spec ++ --- /var/tmp/diff_new_pack.ouvM9s/_old 2013-11-07 12:51:45.0 +0100 +++ /var/tmp/diff_new_pack.ouvM9s/_new 2013-11-07 12:51:45.0 +0100 @@ -17,7 +17,7 @@ Name: gnu_parallel -Version:20130922 +Version:20131022 Release:0 Summary:Shell tool for executing jobs in parallel License:GPL-3.0+ ++ parallel-20130922.tar.bz2 -> parallel-20131022.tar.bz2 ++ 2503 lines of diff (skipped) ++ parallel-20130922.tar.bz2.sig -> parallel-20131022.tar.bz2.sig ++ --- /work/SRC/openSUSE:Factory/gnu_parallel/parallel-20130922.tar.bz2.sig 2013-10-08 10:48:55.0 +0200 +++ /work/SRC/openSUSE:Factory/.gnu_parallel.new/parallel-20131022.tar.bz2.sig 2013-11-07 12:51:44.0 +0100 @@ -2,7 +2,7 @@ # To check the signature run: # echo | gpg -# gpg --auto-key-locate keyserver --keyserver-options auto-key-retrieve parallel-20130922.tar.bz2.sig +# gpg --auto-key-locate keyserver --keyserver-options auto-key-retrieve parallel-20131022.tar.bz2.sig echo | gpg 2>/dev/null gpg --auto-key-locate keyserver --keyserver-options auto-key-retrieve $0 @@ -11,32 +11,32 @@ -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) -iQTwBAABCgAGBQJSPegxAAoJENGrRRaIiIiIRKEmn3Z51bl+lfxyFDpOIVv+f898 -Eiyi0kb7MK2Dbynjx1RXOYfezKfzkkaDZ6BuI6cAw4FNfq55UdOdl3IIXyz5Klse -RLyDltwPuWgmFqDigXUJQdwuEG5c6QRLzM3DYyFJQigDkhGfz2xlBoRigzBDl6cK -CB+48tq7oywzxCEiH7TpDxJ62p8wYc+VNxx8AnAvnHScClDd/4u4SZTQTkWByuc2 -SD/5NiO9kgNmmh72nViZ/b/N+sUezJjKpFyG1WnLKJkSMXhbyfU6nMJj7clLxYy9 -wVfGrQYCofiegpdBph5fkiF54AEL5yGTzqpT6ighgQgi5/sbQOp8p0MYX4uoxN7q -mlB7AvAL30uI38MC1ZQPJZnRmJAk470jDN7O23npWWOX3LGl4N5ANSeV9jcChPIf -hHUeJO1KMqTaSTWCJz2pOLkoy6hVe4nEQZUQkWzhZorPmTjmbuvlbaK+if8Fj+Yy -9XwdhkF+e6ZPuGqTRLQ+2KhbSU5vC4pWKO2PaVnWYfzmNx7I2soXblxONVwUEPxP -aQN5/ImyhWkRm+6Z2STatQSoB9j7WFUe4Rd8FM50MBKU49JTm9U5OUuwVF0yNgHF -nk1SkivH2ccfeasL2/O+y59wGlqdhvhyU/8B/ykmmB7oFiFHKCkdnWuEWgC1VCHo -ocRCjmyQh2hEacj5mq3Fb2n4j3yhjWtGpfb1h6T3C3JkwGiv025Hk0Z0/sQu3Zk3 -MiZ4XdwhP62ekN8w8Hgft3MnUUiGC3paaHGt76Bd3izUrcD8pj9sEtNx+XKRjTri -sLENVZfZR4337H5hknxOURZ9mbEx+J2WLw0NQQunCoI2l35h8bZfsvgFv+5WEcxX -l5d5vBAigVckU9Jtl7yWNwMao3K1kp/kftbbMykbl7usFmRRh/vVK+JYCCJs+teP -mKMqGt1ovdqfrFzACYv446U2L3Cx+rS/1sLRA5hPJw8QFMgGXsz2l+r6ifpWuTAC -v789GZgAOfjCMxDIyGjwR4wZNc7bSKcsSy7HUSQkXJqfTAAPHl8S90thLlHHRPnD -X4QatkbgBDOTETWh9Su+43CBZ8xPlCcUhKeBe5iKzLwudLwXKiFnu1LObA8I383E -c30yJSE3uCmpl9d/aH6lfv6YnvD9YfeSghPDxCUwpCMv0pQOQ2lHwDTPMHPWvgJI -jU2FDqdvD4IflSQwQU8/yssLzRrzu/tGU6jKj+gu+d6Lohzx8dv3LeziMwx/3jWG -OstuunwX3OH3I+w9+7ROTgyZkdZvSqEE4Kl4fYcvxn4prvEo/ijz3/M5/b3Q2GUr -6LG+2q07htETB/n+PnsYCjEL7mKaRgabAeosUKOIxPal1EhFJQSgLMDjhyTcL+eF -GE+mwJ8AyPNUp0I+RX1LLAhGXXimxf1ZKFdtvjhx+0UYiG1fugonJp4Tf4rM3jl7 -qzwBFEgXliuRaDRNCPoRhZhZO0qww4LKhPAvrulX+t1GCDtsQoT0j0u0StbQ4db5 -cJJUI6TRL/zr93OK0fE5B5H95N4is1vvMdTLFbw+8gfo8TLwouRmBb++ns595om9 -B4UOwHcM21ItFC1bbtgpo84W0WU+gGFnJ0ntddljw5QYPOdqu0yL2ucNrYHIrTdH -X4a7Ybnwxm7PaweZLI7V2AzHiQ== -=a76U +iQTwBAABCgAGBQJSZZCMAAoJENGrRRaIiIiI5i8moMs66RRQZb02k4oclt/1fuJM +36CbX3zrAyz2oKjHYsHnrHtFIicSK64tykX0rlCaK9UkOc2ipZnqSKnxG4PGtdNX +NiZ0KVl8GuB4PIUncD7dHKTnQovXriZhDB+lyXj5Yi0VbUn+geSr2PmPah8VFEc1 +U/PLJPyPTm4DvFBvuQDRlFytGxCeQi/fweegO2NSQ0hi7Pxw4sQNrgDQqguYyr/I +D1S0u4XJz1RUhnGOo2kyMsKaeetYQkskoir+92Z2p3eUanLx0viaEjpijRBQTS9r +iN+irMDWdj/2EKKHFYm59wZu3+5Nv5EV/9IT9z61fKoPUsXHEgElfEmy/diOf51J +0w7JzifOExic6eNIJlFBH0dtkpEeG/9XmxAb+ofzRSzW+f3SvSP+hVZMHGcU+XsB +nTB3yI382ymL27EiRC2F20LueuCwW+CF8db8lMYvNG1I+RbZR5ZTTB9phcbUSknA +IFCY5s947LSmjp+CqHtfXDQ0etkfQiBh0XYif8Zg2r1oO+YWLXp1CadVfy8mnT/g +dW8adapezyK/z0EPDYFCkJ0TN1nmohIGpEeKci5zrqjs0+6qnLzjMFOy1y+EgFYz +39BH+Mb9CDGS9BRIH1PeX0dV50Zo6HBah
commit go-assert for openSUSE:Factory
Hello community, here is the log from the commit of package go-assert for openSUSE:Factory checked in at 2013-11-07 12:51:57 Comparing /work/SRC/openSUSE:Factory/go-assert (Old) and /work/SRC/openSUSE:Factory/.go-assert.new (New) Package is "go-assert" Changes: --- /work/SRC/openSUSE:Factory/go-assert/go-assert.changes 2013-09-25 14:31:18.0 +0200 +++ /work/SRC/openSUSE:Factory/.go-assert.new/go-assert.changes 2013-11-07 12:51:58.0 +0100 @@ -5 +5,7 @@ - + Upstream provides no changelog + + pretty-printuse goinstall-friendly make target + + show diffs when equality test fails + + fix example + + remove Makefiles + + github.com/kr/pretty.go has been renamed to github.com/kr/pretty + + update README + + update output on README Other differences: -- ++ go-assert.spec ++ --- /var/tmp/diff_new_pack.EZkpUu/_old 2013-11-07 12:51:58.0 +0100 +++ /var/tmp/diff_new_pack.EZkpUu/_new 2013-11-07 12:51:58.0 +0100 @@ -1,8 +1,8 @@ # # spec file for package go-assert # +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2011 Sascha Peilicke -# Copyright (c) 2013 SUSE Linux Products GmbH # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,13 +16,14 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + Name: go-assert Version:0.0.0+git20120716.e17e998 Release:0 Summary:Asserts to Go testing -Group: Development/Languages/Other License:MIT -URL:https://github.com/bmizerany/assert +Group: Development/Languages/Other +Url:https://github.com/bmizerany/assert Source0:assert-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: go-devel ++ _service ++ --- /var/tmp/diff_new_pack.EZkpUu/_old 2013-11-07 12:51:58.0 +0100 +++ /var/tmp/diff_new_pack.EZkpUu/_new 2013-11-07 12:51:58.0 +0100 @@ -1,16 +1,19 @@ - + https://github.com/bmizerany/assert.git git .git 0.0.0+git%cd.%h master +e17e99893c - + + assert-*.tar bz2 - + + assert ++ assert-0.0.0+git20120716.e17e998.tar.bz2 ++ -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit xen for openSUSE:12.2:Update
Hello community, here is the log from the commit of package xen for openSUSE:12.2:Update checked in at 2013-11-07 11:33:21 Comparing /work/SRC/openSUSE:12.2:Update/xen (Old) and /work/SRC/openSUSE:12.2:Update/.xen.new (New) Package is "xen" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.SYJhmO/_old 2013-11-07 11:33:33.0 +0100 +++ /var/tmp/diff_new_pack.SYJhmO/_new 2013-11-07 11:33:33.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit MozillaThunderbird for openSUSE:12.3:Update
Hello community, here is the log from the commit of package MozillaThunderbird for openSUSE:12.3:Update checked in at 2013-11-07 09:53:19 Comparing /work/SRC/openSUSE:12.3:Update/MozillaThunderbird (Old) and /work/SRC/openSUSE:12.3:Update/.MozillaThunderbird.new (New) Package is "MozillaThunderbird" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.pTrk74/_old 2013-11-07 09:53:34.0 +0100 +++ /var/tmp/diff_new_pack.pTrk74/_new 2013-11-07 09:53:34.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit xulrunner for openSUSE:12.3:Update
Hello community, here is the log from the commit of package xulrunner for openSUSE:12.3:Update checked in at 2013-11-07 09:53:23 Comparing /work/SRC/openSUSE:12.3:Update/xulrunner (Old) and /work/SRC/openSUSE:12.3:Update/.xulrunner.new (New) Package is "xulrunner" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.xpvgS9/_old 2013-11-07 09:53:45.0 +0100 +++ /var/tmp/diff_new_pack.xpvgS9/_new 2013-11-07 09:53:45.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit python-halite for openSUSE:Factory
Hello community, here is the log from the commit of package python-halite for openSUSE:Factory checked in at 2013-11-07 09:54:14 Comparing /work/SRC/openSUSE:Factory/python-halite (Old) and /work/SRC/openSUSE:Factory/.python-halite.new (New) Package is "python-halite" Changes: --- /work/SRC/openSUSE:Factory/python-halite/python-halite.changes 2013-10-17 17:45:42.0 +0200 +++ /work/SRC/openSUSE:Factory/.python-halite.new/python-halite.changes 2013-11-07 09:54:15.0 +0100 @@ -1,0 +2,8 @@ +Mon Nov 4 21:36:04 UTC 2013 - abo...@gmail.com + +- Updated to halite 0.1.04 +- Removed unnecesary functions and variables +- New feature: Command form now has search docs feature, where it displays + the Salt docs associated with a search string + +--- Old: halite-0.1.02.tar.gz New: halite-0.1.04.tar.gz Other differences: -- ++ python-halite.spec ++ --- /var/tmp/diff_new_pack.WMDMvS/_old 2013-11-07 09:54:16.0 +0100 +++ /var/tmp/diff_new_pack.WMDMvS/_new 2013-11-07 09:54:16.0 +0100 @@ -16,7 +16,7 @@ # Name: python-halite -Version:0.1.02 +Version:0.1.04 Release:1%{?dist} License:MIT Summary:Halite the salt Web UI ++ halite-0.1.02.tar.gz -> halite-0.1.04.tar.gz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/halite-0.1.02/PKG-INFO new/halite-0.1.04/PKG-INFO --- old/halite-0.1.02/PKG-INFO 2013-10-14 23:24:34.0 +0200 +++ new/halite-0.1.04/PKG-INFO 2013-11-01 19:58:04.0 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: halite -Version: 0.1.02 +Version: 0.1.04 Summary: SaltStack Web UI Home-page: https://github.com/saltstack/halite Author: SaltStack Inc diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/halite-0.1.02/README.rst new/halite-0.1.04/README.rst --- old/halite-0.1.02/README.rst2013-09-24 21:50:32.0 +0200 +++ new/halite-0.1.04/README.rst2013-10-31 17:25:11.0 +0100 @@ -298,7 +298,8 @@ If you have problems look for "Halite:" in the saltstack master log output. -2) Customized Deployment +Customized Deployment + The Halite github repository provides a skeleton framework for building your own custom deployment. One can run the default bottle.py framwork form the command line thusly @@ -392,11 +393,34 @@ A multithreaded or asynchronous one will be needed if more than one browser is tested at once. +Make sure that the end to end test is setup to login to Halite + +.. code-block:: bash + $ vim halite/test/mock/loginConf.coffee + +In that file change the following + +.. code-block:: javascript + + loginInfo = + username: 'your_halite_username' + password: 'your_halite_password' + +Now you can run the tests using the following commands + .. code-block:: bash $ cd halite $ karma start karma_e2e.conf.js -.. +You might have to build the distribution (for development) + +.. code-block:: bash + + $ cd halite + $ ./prep_dist.py + + +.. .. _`halite`: https://github.com/saltstack/halite diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/halite-0.1.02/halite/app/appConfigSrvc.js new/halite-0.1.04/halite/app/appConfigSrvc.js --- old/halite-0.1.02/halite/app/appConfigSrvc.js 2013-10-14 23:20:53.0 +0200 +++ new/halite-0.1.04/halite/app/appConfigSrvc.js 2013-11-01 19:56:39.0 +0100 @@ -4,8 +4,8 @@ configuration = { baseUrl: "", -date: "20130709", -version: "0.0.1", +date: "2013-11-01", +version: "0.1.04", views: { home: { label: "home", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/halite-0.1.02/halite/app/main.css new/halite-0.1.04/halite/app/main.css --- old/halite-0.1.02/halite/app/main.css 2013-09-25 23:22:29.0 +0200 +++ new/halite-0.1.04/halite/app/main.css 2013-10-31 17:25:11.0 +0100 @@ -1,3 +1,7 @@ +/* make sure search docs form group is displayed correctly */ +div#table-display { + display: inline-table; +} /* fix up display to not use table*/ .input-group.input-group-fix { display: inline-block; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/halite-0.1.02/halite/app/navbar.html new/halite-0.1.04/halite/app/navbar.html --- old/halite-0.1.02/halite/app/navbar.html2013-09-24 21:21:48.0
commit gtkmm3 for openSUSE:Factory
Hello community, here is the log from the commit of package gtkmm3 for openSUSE:Factory checked in at 2013-11-07 09:54:09 Comparing /work/SRC/openSUSE:Factory/gtkmm3 (Old) and /work/SRC/openSUSE:Factory/.gtkmm3.new (New) Package is "gtkmm3" Changes: --- /work/SRC/openSUSE:Factory/gtkmm3/gtkmm3.changes2013-10-14 13:05:04.0 +0200 +++ /work/SRC/openSUSE:Factory/.gtkmm3.new/gtkmm3.changes 2013-11-07 09:54:10.0 +0100 @@ -1,0 +2,10 @@ +Wed Oct 30 19:06:20 UTC 2013 - dims...@opensuse.org + +- Update to version 3.10.1: + + GTK: +- Avoid including deprecated stockid.h. This lets applications + build with deprecated API disabled. +- RadioAction, RecentAction: Deprecate constructors and methods + that take StockID. + +--- Old: gtkmm-3.10.0.tar.xz New: gtkmm-3.10.1.tar.xz Other differences: -- ++ gtkmm3.spec ++ --- /var/tmp/diff_new_pack.GJl579/_old 2013-11-07 09:54:11.0 +0100 +++ /var/tmp/diff_new_pack.GJl579/_new 2013-11-07 09:54:11.0 +0100 @@ -21,7 +21,7 @@ Name: gtkmm3 %define _name gtkmm -Version:3.10.0 +Version:3.10.1 Release:0 Summary:C++ Interface for GTK3 (a GUI Library for X) License:LGPL-2.1+ ++ gtkmm-3.10.0.tar.xz -> gtkmm-3.10.1.tar.xz ++ /work/SRC/openSUSE:Factory/gtkmm3/gtkmm-3.10.0.tar.xz /work/SRC/openSUSE:Factory/.gtkmm3.new/gtkmm-3.10.1.tar.xz differ: char 26, line 1 -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit gstreamer-plugins-base for openSUSE:Factory
Hello community, here is the log from the commit of package gstreamer-plugins-base for openSUSE:Factory checked in at 2013-11-07 09:53:59 Comparing /work/SRC/openSUSE:Factory/gstreamer-plugins-base (Old) and /work/SRC/openSUSE:Factory/.gstreamer-plugins-base.new (New) Package is "gstreamer-plugins-base" Changes: --- /work/SRC/openSUSE:Factory/gstreamer-plugins-base/gstreamer-plugins-base.changes 2013-11-04 07:06:17.0 +0100 +++ /work/SRC/openSUSE:Factory/.gstreamer-plugins-base.new/gstreamer-plugins-base.changes 2013-11-07 09:54:00.0 +0100 @@ -1,0 +2,5 @@ +Mon Nov 4 21:06:05 UTC 2013 - sch...@suse.de + +- aarch64-no-neon.patch: Disable use of NEON on aarch64 + +--- New: aarch64-no-neon.patch Other differences: -- ++ gstreamer-plugins-base.spec ++ --- /var/tmp/diff_new_pack.gyi9Z7/_old 2013-11-07 09:54:01.0 +0100 +++ /var/tmp/diff_new_pack.gyi9Z7/_new 2013-11-07 09:54:01.0 +0100 @@ -28,6 +28,7 @@ Group: Productivity/Multimedia/Other Source: http://download.gnome.org/sources/gst-plugins-base/1.2/%{_name}-%{version}.tar.xz Source2:baselibs.conf +Patch: aarch64-no-neon.patch BuildRequires: cdparanoia-devel BuildRequires: glib2-devel >= 2.32 BuildRequires: gstreamer-devel >= 1.0.10 @@ -422,6 +423,7 @@ %lang_package %prep %setup -q -n %{_name}-%{version} +%patch -p1 translation-update-upstream po gst-plugins-base-%{gst_branch} %build ++ aarch64-no-neon.patch ++ Index: gst-plugins-base-1.2.0/gst/audioresample/resample.c === --- gst-plugins-base-1.2.0.orig/gst/audioresample/resample.c +++ gst-plugins-base-1.2.0/gst/audioresample/resample.c @@ -92,6 +92,9 @@ #ifndef HAVE_ARM_NEON #undef _USE_NEON #endif +#ifdef __aarch64__ /* Not ported yet */ +#undef _USE_NEON +#endif #endif static inline void * -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit mozilla-nspr for openSUSE:12.3:Update
Hello community, here is the log from the commit of package mozilla-nspr for openSUSE:12.3:Update checked in at 2013-11-07 09:53:22 Comparing /work/SRC/openSUSE:12.3:Update/mozilla-nspr (Old) and /work/SRC/openSUSE:12.3:Update/.mozilla-nspr.new (New) Package is "mozilla-nspr" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.KV3T1V/_old 2013-11-07 09:53:35.0 +0100 +++ /var/tmp/diff_new_pack.KV3T1V/_new 2013-11-07 09:53:35.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texmaker for openSUSE:Factory
Hello community, here is the log from the commit of package texmaker for openSUSE:Factory checked in at 2013-11-07 09:54:24 Comparing /work/SRC/openSUSE:Factory/texmaker (Old) and /work/SRC/openSUSE:Factory/.texmaker.new (New) Package is "texmaker" Changes: --- /work/SRC/openSUSE:Factory/texmaker/texmaker.changes2013-09-04 14:05:47.0 +0200 +++ /work/SRC/openSUSE:Factory/.texmaker.new/texmaker.changes 2013-11-07 09:54:26.0 +0100 @@ -1,0 +2,22 @@ +Tue Nov 5 01:52:54 UTC 2013 - badshah...@gmail.com + +- Update to version 4.1 + + "Beamer presentation" wizard has been added + + LuaLaTeX support has been added + + new predefined "Quick build" modes have been added : +- lualatex + view pdf +- pdflatex + bib(la)tex + pdflatex + pdflatex + view pdf +- latex + bib(la)tex + latex + latex + dvips + ps2pdf + view + pdf +- sweave + pdflatex + view pdf + + Detection of utf8 encoding without BOM has been added + + The "two pages" mode for the pdf viewer is no more reseted +after a new compilation (patch from Andreas Volk) + + "patent" entry to the biblatex menu has been added + + Placeholders have been added to the "Tabbing" wizard + + de, el, it and uk translations have been updated + + A link to the english wikibook about LaTeX has been added to +the "Help" menu (for non french users) + + A trouble about the "most used symbols" panel has been fixed + +--- Old: texmaker-4.0.4.tar.bz2 New: texmaker-4.1.tar.bz2 Other differences: -- ++ texmaker.spec ++ --- /var/tmp/diff_new_pack.83bRcc/_old 2013-11-07 09:54:27.0 +0100 +++ /var/tmp/diff_new_pack.83bRcc/_new 2013-11-07 09:54:27.0 +0100 @@ -17,7 +17,7 @@ Name: texmaker -Version:4.0.4 +Version:4.1 Release:0 Summary:Free cross-platform LaTeX editor License:GPL-2.0 ++ texmaker-4.0.4.tar.bz2 -> texmaker-4.1.tar.bz2 ++ /work/SRC/openSUSE:Factory/texmaker/texmaker-4.0.4.tar.bz2 /work/SRC/openSUSE:Factory/.texmaker.new/texmaker-4.1.tar.bz2 differ: char 11, line 1 -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit clutter-gst for openSUSE:Factory
Hello community, here is the log from the commit of package clutter-gst for openSUSE:Factory checked in at 2013-11-07 09:53:42 Comparing /work/SRC/openSUSE:Factory/clutter-gst (Old) and /work/SRC/openSUSE:Factory/.clutter-gst.new (New) Package is "clutter-gst" Changes: --- /work/SRC/openSUSE:Factory/clutter-gst/clutter-gst.changes 2013-09-23 14:20:57.0 +0200 +++ /work/SRC/openSUSE:Factory/.clutter-gst.new/clutter-gst.changes 2013-11-07 09:53:45.0 +0100 @@ -1,0 +2,7 @@ +Mon Nov 4 21:10:55 UTC 2013 - dims...@opensuse.org + +- Drop pkgconfig(gstreamer-basevideo-1.0) BuildRequires: this was + used for experimental hardware acceleration, but the library is + no longer present in GStreamer 1.2. + +--- Other differences: -- ++ clutter-gst.spec ++ --- /var/tmp/diff_new_pack.SJi00r/_old 2013-11-07 09:53:46.0 +0100 +++ /var/tmp/diff_new_pack.SJi00r/_new 2013-11-07 09:53:46.0 +0100 @@ -31,7 +31,6 @@ BuildRequires: pkgconfig(gstreamer-1.0) >= 1.0.0 BuildRequires: pkgconfig(gstreamer-audio-1.0) BuildRequires: pkgconfig(gstreamer-base-1.0) -BuildRequires: pkgconfig(gstreamer-basevideo-1.0) >= 1.0.0 BuildRequires: pkgconfig(gstreamer-plugins-base-1.0) BuildRequires: pkgconfig(gstreamer-tag-1.0) BuildRequires: pkgconfig(gstreamer-video-1.0) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit MozillaThunderbird for openSUSE:12.2:Update
Hello community, here is the log from the commit of package MozillaThunderbird for openSUSE:12.2:Update checked in at 2013-11-07 09:53:17 Comparing /work/SRC/openSUSE:12.2:Update/MozillaThunderbird (Old) and /work/SRC/openSUSE:12.2:Update/.MozillaThunderbird.new (New) Package is "MozillaThunderbird" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.ZQ0fOU/_old 2013-11-07 09:53:31.0 +0100 +++ /var/tmp/diff_new_pack.ZQ0fOU/_new 2013-11-07 09:53:31.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit mozilla-nspr for openSUSE:12.2:Update
Hello community, here is the log from the commit of package mozilla-nspr for openSUSE:12.2:Update checked in at 2013-11-07 09:53:21 Comparing /work/SRC/openSUSE:12.2:Update/mozilla-nspr (Old) and /work/SRC/openSUSE:12.2:Update/.mozilla-nspr.new (New) Package is "mozilla-nspr" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.MKDJ9i/_old 2013-11-07 09:53:34.0 +0100 +++ /var/tmp/diff_new_pack.MKDJ9i/_new 2013-11-07 09:53:34.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit xulrunner for openSUSE:12.2:Update
Hello community, here is the log from the commit of package xulrunner for openSUSE:12.2:Update checked in at 2013-11-07 09:53:23 Comparing /work/SRC/openSUSE:12.2:Update/xulrunner (Old) and /work/SRC/openSUSE:12.2:Update/.xulrunner.new (New) Package is "xulrunner" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.FtMCe1/_old 2013-11-07 09:53:42.0 +0100 +++ /var/tmp/diff_new_pack.FtMCe1/_new 2013-11-07 09:53:42.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit MozillaFirefox for openSUSE:12.2:Update
Hello community, here is the log from the commit of package MozillaFirefox for openSUSE:12.2:Update checked in at 2013-11-07 09:53:14 Comparing /work/SRC/openSUSE:12.2:Update/MozillaFirefox (Old) and /work/SRC/openSUSE:12.2:Update/.MozillaFirefox.new (New) Package is "MozillaFirefox" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.7NiLQ8/_old 2013-11-07 09:53:21.0 +0100 +++ /var/tmp/diff_new_pack.7NiLQ8/_new 2013-11-07 09:53:21.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit MozillaFirefox for openSUSE:12.3:Update
Hello community, here is the log from the commit of package MozillaFirefox for openSUSE:12.3:Update checked in at 2013-11-07 09:53:16 Comparing /work/SRC/openSUSE:12.3:Update/MozillaFirefox (Old) and /work/SRC/openSUSE:12.3:Update/.MozillaFirefox.new (New) Package is "MozillaFirefox" Changes: New Changes file: NO CHANGES FILE!!! Other differences: -- ++ _link ++ --- /var/tmp/diff_new_pack.2x9aQU/_old 2013-11-07 09:53:26.0 +0100 +++ /var/tmp/diff_new_pack.2x9aQU/_new 2013-11-07 09:53:26.0 +0100 @@ -1 +1 @@ - + -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit ypserv for openSUSE:Factory
Hello community, here is the log from the commit of package ypserv for openSUSE:Factory checked in at 2013-11-07 09:15:39 Comparing /work/SRC/openSUSE:Factory/ypserv (Old) and /work/SRC/openSUSE:Factory/.ypserv.new (New) Package is "ypserv" Changes: --- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2013-04-19 10:04:55.0 +0200 +++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes 2013-11-07 09:15:40.0 +0100 @@ -1,0 +2,9 @@ +Wed Nov 6 15:15:08 CET 2013 - ku...@suse.de + +- Update to version 2.32 + - Update autoconf/automake + - ypserv: remove broken SIGHUP support. + - /var/yp/Makefile: read MINUID/MINGID from /etc/login.defs +- Remove old sysv init scripts + +--- Old: yppasswdd.init ypserv-2.31.diff ypserv-2.31.tar.bz2 ypserv.init ypxfrd.init New: ypserv-2.32.diff ypserv-2.32.tar.bz2 Other differences: -- ++ ypserv.spec ++ --- /var/tmp/diff_new_pack.rGUEFT/_old 2013-11-07 09:15:41.0 +0100 +++ /var/tmp/diff_new_pack.rGUEFT/_new 2013-11-07 09:15:41.0 +0100 @@ -25,7 +25,7 @@ Requires: make Requires: rpcbind BuildRoot: %{_tmppath}/%{name}-%{version}-build -Version:2.31 +Version:2.32 Release:0 Url:http://www.linux-nis.org/nis/ypserv/ Summary:YP - (NIS)-Server @@ -33,9 +33,6 @@ Group: Productivity/Networking/NIS PreReq: %insserv_prereq %fillup_prereq Source: ypserv-%{version}.tar.bz2 -Source1:ypserv.init -Source2:yppasswdd.init -Source3:ypxfrd.init Source4:sysconfig.ypserv Source5:SuSEfirewall2.ypserv Source6:ypserv.service @@ -71,7 +68,6 @@ make %install -mkdir -p $RPM_BUILD_ROOT/etc/init.d mkdir -p $RPM_BUILD_ROOT/etc/sysconfig/SuSEfirewall2.d/services mkdir -p $RPM_BUILD_ROOT/var/adm/fillup-templates mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/yp @@ -83,9 +79,6 @@ #install contrib/ypslave $RPM_BUILD_ROOT/usr/sbin/ install -m 644 etc/ypserv.conf $RPM_BUILD_ROOT/etc/ install -m 644 etc/securenets $RPM_BUILD_ROOT/var/yp -install -m 755 %SOURCE1 $RPM_BUILD_ROOT/etc/init.d/ypserv -install -m 755 %SOURCE2 $RPM_BUILD_ROOT/etc/init.d/yppasswdd -install -m 755 %SOURCE3 $RPM_BUILD_ROOT/etc/init.d/ypxfrd # install sysconfig.ypserv install -m 644 %SOURCE4 $RPM_BUILD_ROOT/var/adm/fillup-templates/ # install SuSEfirewall2 service script @@ -126,9 +119,6 @@ %defattr(-,root,root) %doc NEWS README TODO COPYING ChangeLog /var/adm/fillup-templates/sysconfig.ypserv -%config /etc/init.d/yppasswdd -%config /etc/init.d/ypserv -%config /etc/init.d/ypxfrd %config(noreplace) /var/yp/Makefile %config(noreplace) /var/yp/securenets %config(noreplace) /etc/ypserv.conf ++ ypserv-2.31.diff -> ypserv-2.32.diff ++ ++ ypserv-2.31.tar.bz2 -> ypserv-2.32.tar.bz2 ++ 6487 lines of diff (skipped) retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/ypserv-2.31/ChangeLog new/ypserv-2.32/ChangeLog --- old/ypserv-2.31/ChangeLog 2013-04-11 11:26:51.0 +0200 +++ new/ypserv-2.32/ChangeLog 2013-11-06 15:03:52.0 +0100 @@ -1,3 +1,25 @@ +2013-11-06 Thorsten Kukuk + + * release version 2.32 + + * ypserv/ypserv.c: Remove sig_hup, ignore SIG_HUP. + * ypserv/ypserv.8.xml: Remove SIG HUP section. + * lib/yp_db.c: fix return value for tcbdbopen in error case. + Patch by Edgar Hoch, RHBZ#1004110 + + * scripts/ypMakefile.in: Read MINUID/MINGID from /etc/login.defs + Patch by Honza Horak, RHBZ#1004090 + +2013-10-07 Thorsten Kukuk + + * yppush/yppush.8.xml: Fix typo (reported by +Masatake YAMATO ). + +2013-07-22 Thorsten Kukuk + + * lib/ypserv_conf.c (load_ypserv_conf): Use int instead + of c because of fgetc/EOF. + 2013-04-11 Thorsten Kukuk * release version 2.31 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/ypserv-2.31/Makefile.am new/ypserv-2.32/Makefile.am --- old/ypserv-2.31/Makefile.am 2012-05-30 14:21:30.0 +0200 +++ new/ypserv-2.32/Makefile.am 2013-11-06 15:11:30.0 +0100 @@ -8,7 +8,7 @@ CLEANFILES = *~ -M4_F
commit yast2-ruby-bindings for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-ruby-bindings for openSUSE:Factory checked in at 2013-11-07 09:15:33 Comparing /work/SRC/openSUSE:Factory/yast2-ruby-bindings (Old) and /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new (New) Package is "yast2-ruby-bindings" Changes: --- /work/SRC/openSUSE:Factory/yast2-ruby-bindings/yast2-ruby-bindings.changes 2013-10-19 11:21:00.0 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-ruby-bindings.new/yast2-ruby-bindings.changes 2013-11-07 09:15:34.0 +0100 @@ -1,0 +2,8 @@ +Fri Oct 25 14:26:08 UTC 2013 - jreidin...@suse.com + +- report exceptions via Report.Error so there is no hidden failures +- detect invalid response type from clients + (gh#yast/yast-ruby-bindings#81) +- 3.1.2 + +--- Old: yast2-ruby-bindings-3.1.1.tar.bz2 New: yast2-ruby-bindings-3.1.2.tar.bz2 Other differences: -- ++ yast2-ruby-bindings.spec ++ --- /var/tmp/diff_new_pack.2y7uVk/_old 2013-11-07 09:15:35.0 +0100 +++ /var/tmp/diff_new_pack.2y7uVk/_new 2013-11-07 09:15:35.0 +0100 @@ -17,7 +17,7 @@ Name: yast2-ruby-bindings -Version:3.1.1 +Version:3.1.2 Release:0 BuildRoot: %{_tmppath}/%{name}-%{version}-build Source0:yast2-ruby-bindings-%{version}.tar.bz2 ++ yast2-ruby-bindings-3.1.1.tar.bz2 -> yast2-ruby-bindings-3.1.2.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-ruby-bindings-3.1.1/CONTRIBUTING.md new/yast2-ruby-bindings-3.1.2/CONTRIBUTING.md --- old/yast2-ruby-bindings-3.1.1/CONTRIBUTING.md 1970-01-01 01:00:00.0 +0100 +++ new/yast2-ruby-bindings-3.1.2/CONTRIBUTING.md 2013-11-04 17:05:39.0 +0100 @@ -0,0 +1,87 @@ +YaST Contribution Guidelines + + +YaST is an open source project and as such it welcomes all kinds of +contributions. If you decide to contribute, please follow these guidelines to +ensure the process is effective and pleasant both for you and YaST maintainers. + +There are two main forms of contribution: reporting bugs and performing code +changes. + +Bug Reports +--- + +If you find a problem, please report it either using +[Bugzilla](https://bugzilla.novell.com/enter_bug.cgi?format=guided&product=openSUSE+Factory&component=YaST2) +or [GitHub issues](../../issues). (For Bugzilla, use the [simplified +registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp) +if you don't have an account yet.) + +If you find a problem, please report it either using +[Bugzilla](https://bugzilla.novell.com/) or GitHub issues. We can't guarantee +that every bug will be fixed, but we'll try. + +When creating a bug report, please follow our [bug reporting +guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug). + +Code Changes + + +We welcome all kinds of code contributions, from simple bug fixes to significant +refactorings and implementation of new features. However, before making any +non-trivial contribution, get in touch with us first — this can prevent wasted +effort on both sides. Also, have a look at our [development +documentation](http://en.opensuse.org/openSUSE:YaST_development). + +To send us your code change, use GitHub pull requests. The workflow is as +follows: + + 1. Fork the project. + + 2. Create a topic branch based on `master`. + + 3. Implement your change, including tests (if possible). Make sure you adhere + to the [Ruby style + guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md). + + 4. Make sure your change didn't break anything by building the RPM package + (`rake osc:build`). The build process includes running the full testsuite. + + 5. Publish the branch and create a pull request. + + 6. YaST developers will review your change and possibly point out issues. + Adapt the code under their guidance until they are all resolved. + + 7. Finally, the pull request will get merged or rejected. + +See also [GitHub's guide on +contributing](https://help.github.com/articles/fork-a-repo). + +If you want to do multiple unrelated changes, use separate branches and pull +requests. + +Do not change the `VERSION` and `*.changes` files as this could lead to +conflicts. + +### Commits + +Each commit in the pull request should do only one thing, which is clearly +described by its commit message. Especially avoid mixing formatting changes and +functional changes into one commit. When writing commit messages, adhere to +[widely used +conventions](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). + +If your commit is
commit zypper for openSUSE:Factory
Hello community, here is the log from the commit of package zypper for openSUSE:Factory checked in at 2013-11-07 09:15:56 Comparing /work/SRC/openSUSE:Factory/zypper (Old) and /work/SRC/openSUSE:Factory/.zypper.new (New) Package is "zypper" Changes: --- /work/SRC/openSUSE:Factory/zypper/zypper.changes2013-10-01 08:36:17.0 +0200 +++ /work/SRC/openSUSE:Factory/.zypper.new/zypper.changes 2013-11-07 09:15:58.0 +0100 @@ -1,0 +2,28 @@ +Sun Oct 13 01:14:15 CEST 2013 - m...@suse.de + +- Update zypper-po.tar.bz2 + +--- +Thu Oct 10 01:14:28 CEST 2013 - m...@suse.de + +- Update zypper-po.tar.bz2 + +--- +Mon Oct 7 12:16:18 CEST 2013 - m...@suse.de + +- Avoid duplicated product entries (bnc#841473) +- Bump version for Factory + 13.1 is continued on SuSE-Code-13_1-Branch +- version 1.10.0 + +--- +Sun Oct 6 01:14:52 CEST 2013 - m...@suse.de + +- Update zypper-po.tar.bz2 + +--- +Thu Oct 3 01:15:29 CEST 2013 - m...@suse.de + +- Update zypper-po.tar.bz2 + +--- Old: zypper-1.9.2.tar.bz2 New: zypper-1.10.0.tar.bz2 Other differences: -- ++ zypper.spec ++ --- /var/tmp/diff_new_pack.gCZGTk/_old 2013-11-07 09:15:59.0 +0100 +++ /var/tmp/diff_new_pack.gCZGTk/_new 2013-11-07 09:15:59.0 +0100 @@ -33,7 +33,7 @@ Summary:Command line software manager using libzypp License:GPL-2.0+ Group: System/Packages -Version:1.9.2 +Version:1.10.0 Release:0 Source: %{name}-%{version}.tar.bz2 Source1:%{name}-rpmlintrc ++ zypper-1.9.2.tar.bz2 -> zypper-1.10.0.tar.bz2 ++ /work/SRC/openSUSE:Factory/zypper/zypper-1.9.2.tar.bz2 /work/SRC/openSUSE:Factory/.zypper.new/zypper-1.10.0.tar.bz2 differ: char 11, line 1 -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit weston for openSUSE:Factory
Hello community, here is the log from the commit of package weston for openSUSE:Factory checked in at 2013-11-07 09:14:52 Comparing /work/SRC/openSUSE:Factory/weston (Old) and /work/SRC/openSUSE:Factory/.weston.new (New) Package is "weston" Changes: --- /work/SRC/openSUSE:Factory/weston/weston.changes2013-09-27 19:28:46.0 +0200 +++ /work/SRC/openSUSE:Factory/.weston.new/weston.changes 2013-11-07 09:14:54.0 +0100 @@ -1,0 +2,20 @@ +Thu Oct 17 22:12:31 UTC 2013 - tobias.johannes.klausm...@mni.thm.de + +- Update to version 1.3.0 +* HW accelerated screen capture using libva. This adds realtime + H.264 screen capture to Weston +* Multi-resource input events +* Better touch support: better support in clients, critical bug + fixes in the evdev touch code +* XWM: better fullscreen support, support for drag-and-drop from + X to wayland +* weston-launch: modified behavior, now two modes of operation: run + from a vt after logging in or run from an init script with -u. + setup and restore tty in weston-launch, handle vt switch and + drop/set master in weston-launch. +* Support for RGB565 client buffers in gl and pixman renderers +* New WL_OUTPUT udev attribute for matching touch screen input + devices to their outputs. +* weston-terminal: Better support for wide (CJK) characters + +--- Old: weston-1.2.2.tar.xz New: weston-1.3.0.tar.xz Other differences: -- ++ weston.spec ++ --- /var/tmp/diff_new_pack.UlGJiq/_old 2013-11-07 09:14:58.0 +0100 +++ /var/tmp/diff_new_pack.UlGJiq/_new 2013-11-07 09:14:58.0 +0100 @@ -1,7 +1,7 @@ # # spec file for package weston # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ Name: weston %define lname libweston0 -Version:1.2.2 +Version:1.3.0 Release:0 Summary:Wayland Compositor Infrastructure License:HPND and CC-BY-SA-3.0 @@ -30,10 +30,12 @@ Source: http://wayland.freedesktop.org/releases/%name-%version.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-build #git#BuildRequires:autoconf >= 2.64, automake >= 1.11 -BuildRequires: autoconf >= 2.64, automake >= 1.11, libtool >= 2.2 +BuildRequires: autoconf >= 2.64 +BuildRequires: automake >= 1.11 BuildRequires: freerdp-devel BuildRequires: libexpat-devel BuildRequires: libjpeg-devel +BuildRequires: libtool >= 2.2 #git#BuildRequires: libtool >= 2.2 BuildRequires: libvpx-devel BuildRequires: pam-devel @@ -65,10 +67,10 @@ BuildRequires: pkgconfig(wayland-client) >= 1.0.0 BuildRequires: pkgconfig(wayland-egl) BuildRequires: pkgconfig(wayland-server) >= 1.1.90 -BuildRequires: pkgconfig(xkbcommon) >= 0.0.578 BuildRequires: pkgconfig(xcb) BuildRequires: pkgconfig(xcb-xfixes) BuildRequires: pkgconfig(xcursor) +BuildRequires: pkgconfig(xkbcommon) >= 0.0.578 Requires: xkeyboard-config %description ++ weston-1.2.2.tar.xz -> weston-1.3.0.tar.xz ++ 15406 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit yast2 for openSUSE:Factory
Hello community, here is the log from the commit of package yast2 for openSUSE:Factory checked in at 2013-11-07 09:15:05 Comparing /work/SRC/openSUSE:Factory/yast2 (Old) and /work/SRC/openSUSE:Factory/.yast2.new (New) Package is "yast2" Changes: --- /work/SRC/openSUSE:Factory/yast2/yast2.changes 2013-10-25 11:37:59.0 +0200 +++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2013-11-07 09:15:07.0 +0100 @@ -1,0 +2,22 @@ +Mon Nov 4 16:56:18 CET 2013 - loci...@suse.com + +- Removed obsolete clients: password, remotechooser, remoteinstall + (gh#yast/yast-yast2#100) + +--- +Fri Nov 1 14:54:16 CET 2013 - loci...@suse.com + +- Removed checking for a fallback control file, that file is always + outdated and cannot work for all products + (gh#yast/yast-installation#86) +- 3.1.3 + +--- +Thu Oct 31 21:50:05 CET 2013 - loci...@suse.com + +- Configuration of Kernel modules loaded on boot has been moved + to /etc/modules-load.d/*.conf files. Adapted Kernel library + internal handling (bnc#838185). +- 3.1.2 + +--- Old: yast2-3.1.2.tar.bz2 New: yast2-3.1.3.tar.bz2 Other differences: -- ++ yast2.spec ++ --- /var/tmp/diff_new_pack.fculeO/_old 2013-11-07 09:15:08.0 +0100 +++ /var/tmp/diff_new_pack.fculeO/_new 2013-11-07 09:15:08.0 +0100 @@ -17,7 +17,7 @@ Name: yast2 -Version:3.1.2 +Version:3.1.3 Release:0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -36,6 +36,7 @@ BuildRequires: yast2-ycp-ui-bindings >= 2.18.4 # Needed for tests +BuildRequires: grep BuildRequires: rubygem-rspec # for symlinking yardoc duplicates ++ yast2-3.1.2.tar.bz2 -> yast2-3.1.3.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.2/.yardopts new/yast2-3.1.3/.yardopts --- old/yast2-3.1.2/.yardopts 1970-01-01 01:00:00.0 +0100 +++ new/yast2-3.1.3/.yardopts 2013-11-04 18:12:02.0 +0100 @@ -0,0 +1 @@ +--no-private --markup markdown --protected library/*/src/**/*.rb --readme README.md --output-dir ./doc/autodocs diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-3.1.2/CONTRIBUTING.md new/yast2-3.1.3/CONTRIBUTING.md --- old/yast2-3.1.2/CONTRIBUTING.md 1970-01-01 01:00:00.0 +0100 +++ new/yast2-3.1.3/CONTRIBUTING.md 2013-11-04 18:12:02.0 +0100 @@ -0,0 +1,87 @@ +YaST Contribution Guidelines + + +YaST is an open source project and as such it welcomes all kinds of +contributions. If you decide to contribute, please follow these guidelines to +ensure the process is effective and pleasant both for you and YaST maintainers. + +There are two main forms of contribution: reporting bugs and performing code +changes. + +Bug Reports +--- + +If you find a problem, please report it either using +[Bugzilla](https://bugzilla.novell.com/enter_bug.cgi?format=guided&product=openSUSE+Factory&component=YaST2) +or [GitHub issues](../../issues). (For Bugzilla, use the [simplified +registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp) +if you don't have an account yet.) + +If you find a problem, please report it either using +[Bugzilla](https://bugzilla.novell.com/) or GitHub issues. We can't guarantee +that every bug will be fixed, but we'll try. + +When creating a bug report, please follow our [bug reporting +guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug). + +Code Changes + + +We welcome all kinds of code contributions, from simple bug fixes to significant +refactorings and implementation of new features. However, before making any +non-trivial contribution, get in touch with us first — this can prevent wasted +effort on both sides. Also, have a look at our [development +documentation](http://en.opensuse.org/openSUSE:YaST_development). + +To send us your code change, use GitHub pull requests. The workflow is as +follows: + + 1. Fork the project. + + 2. Create a topic branch based on `master`. + + 3. Implement your change, including tests (if possible). Make sure you adhere + to the [Ruby style + guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md). + + 4. Make sure your change didn't break anything by building the RPM package + (`rake osc:build`). The build process includes running the full testsuite. + + 5. Publish the branch and create a pull request. + + 6. YaST developers will review your change and possibly point out iss
commit yast2-core for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-core for openSUSE:Factory checked in at 2013-11-07 09:15:15 Comparing /work/SRC/openSUSE:Factory/yast2-core (Old) and /work/SRC/openSUSE:Factory/.yast2-core.new (New) Package is "yast2-core" Changes: --- /work/SRC/openSUSE:Factory/yast2-core/yast2-core.changes2013-10-24 14:15:34.0 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-core.new/yast2-core.changes 2013-11-07 09:15:16.0 +0100 @@ -1,0 +2,14 @@ +Mon Nov 4 15:26:11 UTC 2013 - jreidin...@suse.com + +- remove remote libraries support on installed system. It requires + yast2-core on installed system which forbits goal for SLE12 to + not have yast on target system. The last piece that use it was + adapted since perl-Bootloader-0.800 . +- 3.1.4 + +--- +Wed Oct 23 11:32:20 UTC 2013 - lsle...@suse.cz + +- system-agent: handle chroot at more places + +--- @@ -7,0 +22,12 @@ +Fri Oct 18 12:03:31 UTC 2013 - jreidin...@suse.com + +- Do not delete agent outside of component in WFM otherwise + installation segfault + +--- +Thu Oct 17 14:16:09 UTC 2013 - jreidin...@suse.com + +- chdir("/") after chroot otherwise commands fail with unreachable + location after `cd ~` + +--- @@ -15,0 +42,6 @@ +Mon Oct 14 12:40:31 UTC 2013 - jreidin...@suse.com + +- minimal chroot: fixed System:: to actually chroot; hopefully + fixes bootloader setup at installation + +--- @@ -29,0 +62,5 @@ +Wed Sep 25 14:16:30 UTC 2013 - jreidin...@suse.com + +- respect target root in: ag_any(for processes), system_agent + +--- @@ -36,0 +74,6 @@ +Wed Sep 11 12:40:58 UTC 2013 - jreidin...@suse.com + +- respect target root in: ag_any, ag_ini, ag_modules, ag_resolver + + +--- @@ -40,0 +84,8 @@ + +--- +Tue Sep 3 13:28:44 UTC 2013 - jreidin...@suse.com + +- libscr: added "root" attribute to SCRAgent (FATE#314695). Agents + must be adapted to respect it instead of relying on chroot(2) + having been run. + Old: yast2-core-3.1.3.tar.bz2 New: yast2-core-3.1.4.tar.bz2 Other differences: -- ++ yast2-core.spec ++ --- /var/tmp/diff_new_pack.eezopp/_old 2013-11-07 09:15:17.0 +0100 +++ /var/tmp/diff_new_pack.eezopp/_new 2013-11-07 09:15:17.0 +0100 @@ -17,7 +17,7 @@ Name: yast2-core -Version:3.1.3 +Version:3.1.4 Release:0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -128,7 +128,6 @@ %dir %{yast_ybindir} %dir %{yast_plugindir} %dir %{yast_scrconfdir} -%dir %{yast_execcompdir}/servers %dir %{yast_execcompdir}/servers_non_y2 /usr/bin/ycpc @@ -140,7 +139,6 @@ %{yast_ybindir}/elf-arch %{yast_plugindir}/lib*.so.* %{yast_scrconfdir}/*.scr -%{yast_execcompdir}/servers/scr %{yast_execcompdir}/servers_non_y2/ag_* # perl part (stdio agents) # *: regular build compresses them, debug does not ++ yast2-core-3.1.3.tar.bz2 -> yast2-core-3.1.4.tar.bz2 ++ 7377 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit yast2-network for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-network for openSUSE:Factory checked in at 2013-11-07 09:15:27 Comparing /work/SRC/openSUSE:Factory/yast2-network (Old) and /work/SRC/openSUSE:Factory/.yast2-network.new (New) Package is "yast2-network" Changes: --- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes 2013-10-20 10:55:18.0 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 2013-11-07 09:15:28.0 +0100 @@ -1,0 +2,14 @@ +Wed Oct 30 21:43:14 UTC 2013 - mfi...@suse.com + +- bnc#847783 + - do not offer ifplugd devices as bridge port candidate +- 3.1.4 + +--- +Tue Oct 22 12:28:17 UTC 2013 - mfi...@suse.com + +- adapt to removal of NetworkInterfaces.HasAliases from yast2 + since 3.1.2 +- 3.1.3 + +--- Old: yast2-network-3.1.2.tar.bz2 New: yast2-network-3.1.4.tar.bz2 Other differences: -- ++ yast2-network.spec ++ --- /var/tmp/diff_new_pack.qNeWJg/_old 2013-11-07 09:15:29.0 +0100 +++ /var/tmp/diff_new_pack.qNeWJg/_new 2013-11-07 09:15:29.0 +0100 @@ -17,7 +17,7 @@ Name: yast2-network -Version:3.1.2 +Version:3.1.4 Release:0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++ yast2-network-3.1.2.tar.bz2 -> yast2-network-3.1.4.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-network-3.1.2/CONTRIBUTING.md new/yast2-network-3.1.4/CONTRIBUTING.md --- old/yast2-network-3.1.2/CONTRIBUTING.md 1970-01-01 01:00:00.0 +0100 +++ new/yast2-network-3.1.4/CONTRIBUTING.md 2013-11-04 16:42:19.0 +0100 @@ -0,0 +1,87 @@ +YaST Contribution Guidelines + + +YaST is an open source project and as such it welcomes all kinds of +contributions. If you decide to contribute, please follow these guidelines to +ensure the process is effective and pleasant both for you and YaST maintainers. + +There are two main forms of contribution: reporting bugs and performing code +changes. + +Bug Reports +--- + +If you find a problem, please report it either using +[Bugzilla](https://bugzilla.novell.com/enter_bug.cgi?format=guided&product=openSUSE+Factory&component=YaST2) +or [GitHub issues](../../issues). (For Bugzilla, use the [simplified +registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp) +if you don't have an account yet.) + +If you find a problem, please report it either using +[Bugzilla](https://bugzilla.novell.com/) or GitHub issues. We can't guarantee +that every bug will be fixed, but we'll try. + +When creating a bug report, please follow our [bug reporting +guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug). + +Code Changes + + +We welcome all kinds of code contributions, from simple bug fixes to significant +refactorings and implementation of new features. However, before making any +non-trivial contribution, get in touch with us first — this can prevent wasted +effort on both sides. Also, have a look at our [development +documentation](http://en.opensuse.org/openSUSE:YaST_development). + +To send us your code change, use GitHub pull requests. The workflow is as +follows: + + 1. Fork the project. + + 2. Create a topic branch based on `master`. + + 3. Implement your change, including tests (if possible). Make sure you adhere + to the [Ruby style + guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md). + + 4. Make sure your change didn't break anything by building the RPM package + (`rake osc:build`). The build process includes running the full testsuite. + + 5. Publish the branch and create a pull request. + + 6. YaST developers will review your change and possibly point out issues. + Adapt the code under their guidance until they are all resolved. + + 7. Finally, the pull request will get merged or rejected. + +See also [GitHub's guide on +contributing](https://help.github.com/articles/fork-a-repo). + +If you want to do multiple unrelated changes, use separate branches and pull +requests. + +Do not change the `VERSION` and `*.changes` files as this could lead to +conflicts. + +### Commits + +Each commit in the pull request should do only one thing, which is clearly +described by its commit message. Especially avoid mixing formatting changes and +functional changes into one commit. When writing commit messages, adhere to +[widely used +conventions](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html). + +If your commit is related to a bug in Buzgilla or an iss
commit yast2-installation for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-installation for openSUSE:Factory checked in at 2013-11-07 09:15:19 Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old) and /work/SRC/openSUSE:Factory/.yast2-installation.new (New) Package is "yast2-installation" Changes: --- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes 2013-10-25 13:03:27.0 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes 2013-11-07 09:15:20.0 +0100 @@ -1,0 +2,26 @@ +Thu Oct 31 11:32:01 UTC 2013 - lsle...@suse.cz + +- install "perl-Bootloader-YAML" package +- removed "Use Automatic Configuration" option from the + installation mode dialog (the 2nd stage has been removed) +- 3.1.3 + +--- +Tue Oct 29 13:17:59 UTC 2013 - lsle...@suse.cz + +- install only "perl-YAML-LibYAML" and "perl-bootloader" packages + to the target system +- updated scr_switch_debugger.rb client + +--- +Fri Oct 26 11:39:17 UTC 2013 - jsr...@suse.cz + +- show release notes button (fate#314695) + +--- +Fri Oct 25 10:06:07 CEST 2013 - aschn...@suse.de + +- removed long obsolete EVMS entries from control file (see + fate#305007) + +--- @@ -5,0 +32,8 @@ +- 3.1.2 + +--- +Tue Oct 22 16:46:18 CEST 2013 - loci...@suse.com + +- Extended support for ignored_features: They can be also mentioned + in PTOptions and thus not appended to Kernel command line + (FATE#314982) Old: yast2-installation-3.1.1.tar.bz2 New: yast2-installation-3.1.3.tar.bz2 Other differences: -- ++ yast2-installation.spec ++ --- /var/tmp/diff_new_pack.pXqHNc/_old 2013-11-07 09:15:21.0 +0100 +++ /var/tmp/diff_new_pack.pXqHNc/_new 2013-11-07 09:15:21.0 +0100 @@ -17,7 +17,7 @@ Name: yast2-installation -Version:3.1.1 +Version:3.1.3 Release:0 BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -44,8 +44,8 @@ # xmllint BuildRequires: libxml2-tools -# /etc/YaST2/XVersion -BuildRequires: yast2 >= 2.16.52 +# Linuxrc.keys +BuildRequires: yast2 >= 3.1.1 # AutoinstConfig::getProposalList Requires: autoyast2-installation >= 2.17.1 ++ yast2-installation-3.1.1.tar.bz2 -> yast2-installation-3.1.3.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.1/VERSION new/yast2-installation-3.1.3/VERSION --- old/yast2-installation-3.1.1/VERSION2013-10-23 09:40:31.0 +0200 +++ new/yast2-installation-3.1.3/VERSION2013-11-01 13:10:18.0 +0100 @@ -1 +1 @@ -3.1.1 +3.1.3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.1/control/README new/yast2-installation-3.1.3/control/README --- old/yast2-installation-3.1.1/control/README 2013-10-23 09:40:31.0 +0200 +++ new/yast2-installation-3.1.3/control/README 2013-11-01 13:10:18.0 +0100 @@ -5,7 +5,7 @@ products. Those special package are used when creating the CDs and they install the control file into the first CD of the product. -Any modification to the control file in the CVS tree of YaST wont +Any modification to the control file in the YaST Git tree will not appear in the respective products. Such changes have to be done in the following packages instead: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.1/control/control.SLED.xml new/yast2-installation-3.1.3/control/control.SLED.xml --- old/yast2-installation-3.1.1/control/control.SLED.xml 2013-10-23 09:40:31.0 +0200 +++ new/yast2-installation-3.1.3/control/control.SLED.xml 2013-11-01 13:10:18.0 +0100 @@ -309,17 +309,14 @@ -false true 14GB 40 3GB 10GB false - false 15GB 25GB - false 100 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.1/control/control.SLES-for-VMware.xml new/yast2-installation-3.1.3/control/control.SLES-for-VMware.xml --- old/yast2-installation-3.1.1/control/control.SLES-for-VMware.xml 2013-10-23 09:40:31.0 +0200 +++ new/yast2-installation-3.1.3/control/control.SLES-for-VMware.xml 2013-11-01 13:10:18.0
commit timezone for openSUSE:Factory
Hello community, here is the log from the commit of package timezone for openSUSE:Factory checked in at 2013-11-07 09:14:07 Comparing /work/SRC/openSUSE:Factory/timezone (Old) and /work/SRC/openSUSE:Factory/.timezone.new (New) Package is "timezone" Changes: --- /work/SRC/openSUSE:Factory/timezone/timezone-java.changes 2013-10-23 10:14:48.0 +0200 +++ /work/SRC/openSUSE:Factory/.timezone.new/timezone-java.changes 2013-11-07 09:14:09.0 +0100 @@ -2,5 +1,0 @@ -Wed Oct 23 07:36:26 UTC 2013 - wer...@suse.de - -- Re-run pre_checkin.sh to prepare timezone-jave.spec - --- /work/SRC/openSUSE:Factory/timezone/timezone.changes2013-10-23 10:14:48.0 +0200 +++ /work/SRC/openSUSE:Factory/.timezone.new/timezone.changes 2013-11-07 09:14:09.0 +0100 @@ -1,0 +2,8 @@ +Mon Oct 28 09:32:47 UTC 2013 - dmuel...@suse.com + +- update to to 2013h: + * Lybia has switched back to UTC+2 + * Western Sahara uses Morocco's DST rules + * Acre sitches from UTC-4 to UTC-5 on Nov. 10th + +--- Old: tzcode2013g.tar.gz tzdata2013g.tar.gz New: tzcode2013h.tar.gz tzdata2013h.tar.gz Other differences: -- ++ timezone-java.spec ++ --- /var/tmp/diff_new_pack.Em90b8/_old 2013-11-07 09:14:10.0 +0100 +++ /var/tmp/diff_new_pack.Em90b8/_new 2013-11-07 09:14:10.0 +0100 @@ -25,7 +25,7 @@ Group: System/Base # COMMON-BEGIN # COMMON-BEGIN -Version:2013g +Version:2013h Release:0 Source: ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz Source1:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz ++ timezone.spec ++ --- /var/tmp/diff_new_pack.Em90b8/_old 2013-11-07 09:14:10.0 +0100 +++ /var/tmp/diff_new_pack.Em90b8/_new 2013-11-07 09:14:10.0 +0100 @@ -23,7 +23,7 @@ Url:http://www.iana.org/time-zones PreReq: filesystem, coreutils # COMMON-BEGIN -Version:2013g +Version:2013h Release:0 Source: ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz Source1:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-w for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-w for openSUSE:Factory checked in at 2013-11-07 09:13:32 Comparing /work/SRC/openSUSE:Factory/texlive-specs-w (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-w.new (New) Package is "texlive-specs-w" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-w/texlive-specs-w.changes 2013-09-27 18:40:09.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-w.new/texlive-specs-w.changes 2013-11-07 09:13:35.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-z for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-z for openSUSE:Factory checked in at 2013-11-07 09:13:46 Comparing /work/SRC/openSUSE:Factory/texlive-specs-z (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-z.new (New) Package is "texlive-specs-z" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-z/texlive-specs-z.changes 2013-09-27 18:42:00.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-z.new/texlive-specs-z.changes 2013-11-07 09:13:47.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-u for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-u for openSUSE:Factory checked in at 2013-11-07 09:13:20 Comparing /work/SRC/openSUSE:Factory/texlive-specs-u (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-u.new (New) Package is "texlive-specs-u" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-u/texlive-specs-u.changes 2013-09-27 18:37:03.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-u.new/texlive-specs-u.changes 2013-11-07 09:13:28.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-v for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-v for openSUSE:Factory checked in at 2013-11-07 09:13:26 Comparing /work/SRC/openSUSE:Factory/texlive-specs-v (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-v.new (New) Package is "texlive-specs-v" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-v/texlive-specs-v.changes 2013-09-27 18:40:01.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-v.new/texlive-specs-v.changes 2013-11-07 09:13:32.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-y for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-y for openSUSE:Factory checked in at 2013-11-07 09:13:41 Comparing /work/SRC/openSUSE:Factory/texlive-specs-y (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-y.new (New) Package is "texlive-specs-y" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-y/texlive-specs-y.changes 2013-09-27 18:41:37.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-y.new/texlive-specs-y.changes 2013-11-07 09:13:42.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-x for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-x for openSUSE:Factory checked in at 2013-11-07 09:13:37 Comparing /work/SRC/openSUSE:Factory/texlive-specs-x (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-x.new (New) Package is "texlive-specs-x" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-x/texlive-specs-x.changes 2013-09-27 18:40:17.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-x.new/texlive-specs-x.changes 2013-11-07 09:13:38.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-o for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-o for openSUSE:Factory checked in at 2013-11-07 09:12:31 Comparing /work/SRC/openSUSE:Factory/texlive-specs-o (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-o.new (New) Package is "texlive-specs-o" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-o/texlive-specs-o.changes 2013-09-27 18:36:00.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-o.new/texlive-specs-o.changes 2013-11-07 09:12:44.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-r for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-r for openSUSE:Factory checked in at 2013-11-07 09:13:03 Comparing /work/SRC/openSUSE:Factory/texlive-specs-r (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-r.new (New) Package is "texlive-specs-r" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-r/texlive-specs-r.changes 2013-09-27 18:36:29.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-r.new/texlive-specs-r.changes 2013-11-07 09:13:05.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-p for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-p for openSUSE:Factory checked in at 2013-11-07 09:12:47 Comparing /work/SRC/openSUSE:Factory/texlive-specs-p (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-p.new (New) Package is "texlive-specs-p" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-p/texlive-specs-p.changes 2013-09-27 18:36:06.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-p.new/texlive-specs-p.changes 2013-11-07 09:12:48.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-t for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-t for openSUSE:Factory checked in at 2013-11-07 09:13:15 Comparing /work/SRC/openSUSE:Factory/texlive-specs-t (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-t.new (New) Package is "texlive-specs-t" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-t/texlive-specs-t.changes 2013-09-27 18:36:48.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-t.new/texlive-specs-t.changes 2013-11-07 09:13:18.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-s for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-s for openSUSE:Factory checked in at 2013-11-07 09:13:09 Comparing /work/SRC/openSUSE:Factory/texlive-specs-s (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-s.new (New) Package is "texlive-specs-s" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-s/texlive-specs-s.changes 2013-09-27 18:36:37.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-s.new/texlive-specs-s.changes 2013-11-07 09:13:09.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-q for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-q for openSUSE:Factory checked in at 2013-11-07 09:12:54 Comparing /work/SRC/openSUSE:Factory/texlive-specs-q (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-q.new (New) Package is "texlive-specs-q" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-q/texlive-specs-q.changes 2013-09-27 18:36:25.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-q.new/texlive-specs-q.changes 2013-11-07 09:13:02.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-n for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-n for openSUSE:Factory checked in at 2013-11-07 09:12:26 Comparing /work/SRC/openSUSE:Factory/texlive-specs-n (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-n.new (New) Package is "texlive-specs-n" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-n/texlive-specs-n.changes 2013-09-27 18:35:53.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-n.new/texlive-specs-n.changes 2013-11-07 09:12:39.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-m for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-m for openSUSE:Factory checked in at 2013-11-07 09:12:21 Comparing /work/SRC/openSUSE:Factory/texlive-specs-m (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-m.new (New) Package is "texlive-specs-m" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-m/texlive-specs-m.changes 2013-09-27 18:35:39.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-m.new/texlive-specs-m.changes 2013-11-07 09:12:29.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-i for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-i for openSUSE:Factory checked in at 2013-11-07 09:11:58 Comparing /work/SRC/openSUSE:Factory/texlive-specs-i (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-i.new (New) Package is "texlive-specs-i" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-i/texlive-specs-i.changes 2013-09-27 18:35:07.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-i.new/texlive-specs-i.changes 2013-11-07 09:11:59.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-l for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-l for openSUSE:Factory checked in at 2013-11-07 09:12:16 Comparing /work/SRC/openSUSE:Factory/texlive-specs-l (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-l.new (New) Package is "texlive-specs-l" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-l/texlive-specs-l.changes 2013-09-27 18:35:26.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-l.new/texlive-specs-l.changes 2013-11-07 09:12:18.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- New: luaotfload_varfonts.dif Other differences: -- ++ texlive-specs-l.spec ++ --- /var/tmp/diff_new_pack.K3K1SE/_old 2013-11-07 09:12:26.0 +0100 +++ /var/tmp/diff_new_pack.K3K1SE/_new 2013-11-07 09:12:26.0 +0100 @@ -347,25 +347,26 @@ Source1309: luamplib.tar.xz Source1310: luaotfload.doc.tar.xz Source1311: luaotfload.tar.xz -Source1312: luasseq.doc.tar.xz -Source1313: luasseq.tar.xz -Source1314: luatex.doc.tar.xz -Source1315: luatex.requires -Source1316: luatex.tar.xz -Source1317: luatexbase.doc.tar.xz -Source1318: luatexbase.tar.xz -Source1319: luatexja.doc.tar.xz -Source1320: luatexja.tar.xz -Source1321: luatexko.doc.tar.xz -Source1322: luatexko.tar.xz -Source1323: luatextra.doc.tar.xz -Source1324: luatextra.tar.xz -Source1325: luaxml.doc.tar.xz -Source1326: luaxml.tar.xz -Source1327: lxfonts.doc.tar.xz -Source1328: lxfonts.tar.xz -Source1329: ly1.doc.tar.xz -Source1330: ly1.tar.xz +Source1312: luaotfload_varfonts.dif +Source1313: luasseq.doc.tar.xz +Source1314: luasseq.tar.xz +Source1315: luatex.doc.tar.xz +Source1316: luatex.requires +Source1317: luatex.tar.xz +Source1318: luatexbase.doc.tar.xz +Source1319: luatexbase.tar.xz +Source1320: luatexja.doc.tar.xz +Source1321: luatexja.tar.xz +Source1322: luatexko.doc.tar.xz +Source1323: luatexko.tar.xz +Source1324: luatextra.doc.tar.xz +Source1325: luatextra.tar.xz +Source1326: luaxml.doc.tar.xz +Source1327: luaxml.tar.xz +Source1328: lxfonts.doc.tar.xz +Source1329: lxfonts.tar.xz +Source1330: ly1.doc.tar.xz +Source1331: ly1.tar.xz NoSource: 1000 NoSource: 1001 NoSource: 1002 @@ -678,7 +679,7 @@ NoSource: 1312 NoSource: 1313 NoSource: 1314 -NoSource: 1316 +NoSource: 1315 NoSource: 1317 NoSource: 1318 NoSource: 1319 @@ -693,6 +694,7 @@ NoSource: 1328 NoSource: 1329 NoSource: 1330 +NoSource: 1331 BuildRequires: buffer BuildRequires: ed BuildRequires: file ++ luaotfload_varfonts.dif ++ --- texmf-dist/tex/luatex/luaotfload/luaotfload-legacy-merged.lua +++ texmf-dist/tex/luatex/luaotfload/luaotfload-legacy-merged.lua 2013-10-28 13:58:12.0 + @@ -77,11 +77,34 @@ if not caches.namespace or caches.namesp end do local cachepaths + local mktex=kpse.find_file('mktex.cnf','cnf') or "" if kpse.expand_var('$TEXMFCACHE')~='$TEXMFCACHE' then cachepaths=kpse.expand_var('$TEXMFCACHE') elseif kpse.expand_var('$TEXMFVAR')~='$TEXMFVAR' then cachepaths=kpse.expand_var('$TEXMFVAR') end + if mktex~="" then +local varfonts="no" +local features=io.open(mktex,'r') +local cache +for line in features:lines() do + if string.find(line, 'MT_FEATURES=') then + if string.find(line, 'varfonts') then + varfonts="yes" +end +break + end +end +features:close() +cache=kpse.expand_var('$VARTEXFONTS') +if varfonts=="yes" and cache~="" then + if false == file.is_writable(cache) then +cachepaths=os.getenv("HOME") .. "/.cache/texmf/fonts" + else +cachepaths=cache + end +end + end if not cachepaths then cachepaths="." end --- texmf-dist/tex/luatex/luaotfload/luaotfload-merged.lua +++ texmf-dist/tex/luatex/luaotfload/luaotfload-merged.lua 2013-10-28 13:52:09.0 + @@ -3012,6 +3012,28 @@ if not caches.namespace or caches.namesp end do local cachepaths=kpse.expand_var('$TEXMFCACHE') or "" + local mktex=kpse.find_file('mktex.cnf','cnf') or "" + if mktex~="" then +local varfonts="no" +local features=io.open(mktex,'r') +for line in features:lines() do + if string.find(line, 'MT_FEATURES=') then +if string.find(line, 'varfonts') then + varfonts="yes" +end +break + end +end +features:close() +
commit texlive-specs-h for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-h for openSUSE:Factory checked in at 2013-11-07 09:11:41 Comparing /work/SRC/openSUSE:Factory/texlive-specs-h (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-h.new (New) Package is "texlive-specs-h" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-h/texlive-specs-h.changes 2013-09-27 18:35:00.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-h.new/texlive-specs-h.changes 2013-11-07 09:11:44.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-k for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-k for openSUSE:Factory checked in at 2013-11-07 09:12:09 Comparing /work/SRC/openSUSE:Factory/texlive-specs-k (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-k.new (New) Package is "texlive-specs-k" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-k/texlive-specs-k.changes 2013-09-27 18:35:20.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-k.new/texlive-specs-k.changes 2013-11-07 09:12:11.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-j for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-j for openSUSE:Factory checked in at 2013-11-07 09:12:04 Comparing /work/SRC/openSUSE:Factory/texlive-specs-j (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-j.new (New) Package is "texlive-specs-j" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-j/texlive-specs-j.changes 2013-09-27 18:35:15.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-j.new/texlive-specs-j.changes 2013-11-07 09:12:08.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-g for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-g for openSUSE:Factory checked in at 2013-11-07 09:11:28 Comparing /work/SRC/openSUSE:Factory/texlive-specs-g (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-g.new (New) Package is "texlive-specs-g" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-g/texlive-specs-g.changes 2013-09-27 18:34:53.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-g.new/texlive-specs-g.changes 2013-11-07 09:11:39.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-f for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-f for openSUSE:Factory checked in at 2013-11-07 09:11:10 Comparing /work/SRC/openSUSE:Factory/texlive-specs-f (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-f.new (New) Package is "texlive-specs-f" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-f/texlive-specs-f.changes 2013-09-27 18:34:22.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-f.new/texlive-specs-f.changes 2013-11-07 09:11:33.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-e for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-e for openSUSE:Factory checked in at 2013-11-07 09:11:03 Comparing /work/SRC/openSUSE:Factory/texlive-specs-e (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-e.new (New) Package is "texlive-specs-e" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-e/texlive-specs-e.changes 2013-09-27 18:34:13.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-e.new/texlive-specs-e.changes 2013-11-07 09:11:26.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-d for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-d for openSUSE:Factory checked in at 2013-11-07 09:10:58 Comparing /work/SRC/openSUSE:Factory/texlive-specs-d (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-d.new (New) Package is "texlive-specs-d" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-d/texlive-specs-d.changes 2013-09-27 18:33:34.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-d.new/texlive-specs-d.changes 2013-11-07 09:11:17.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-c for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-c for openSUSE:Factory checked in at 2013-11-07 09:10:51 Comparing /work/SRC/openSUSE:Factory/texlive-specs-c (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-c.new (New) Package is "texlive-specs-c" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-c/texlive-specs-c.changes 2013-09-27 18:33:07.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-c.new/texlive-specs-c.changes 2013-11-07 09:11:04.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-b for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-b for openSUSE:Factory checked in at 2013-11-07 09:10:45 Comparing /work/SRC/openSUSE:Factory/texlive-specs-b (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-b.new (New) Package is "texlive-specs-b" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-b/texlive-specs-b.changes 2013-09-27 18:32:06.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-b.new/texlive-specs-b.changes 2013-11-07 09:10:50.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive for openSUSE:Factory
Hello community, here is the log from the commit of package texlive for openSUSE:Factory checked in at 2013-11-07 09:10:32 Comparing /work/SRC/openSUSE:Factory/texlive (Old) and /work/SRC/openSUSE:Factory/.texlive.new (New) Package is "texlive" Changes: --- /work/SRC/openSUSE:Factory/texlive/texlive.changes 2013-09-26 20:04:28.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive.new/texlive.changes 2013-11-07 09:10:33.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:12:33 UTC 2013 - wer...@suse.de + +- Tar is now squeamishly with create and same order option + +--- Other differences: -- ++ texlive.spec ++ --- /var/tmp/diff_new_pack.zaVci6/_old 2013-11-07 09:10:38.0 +0100 +++ /var/tmp/diff_new_pack.zaVci6/_new 2013-11-07 09:10:38.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 77 +%define texlive_noarch 80 %define texlive_source texlive-20130620-source %define __perl_requires%{nil} @@ -2579,25 +2579,25 @@ mkdir -p %{buildroot}/var/adm/update-scripts pushd ${prefix}/bin/ - tar -cspSf - . | tar -xvspSf - -C %{buildroot}%{_bindir}/ + tar -cpSf - . | tar -xvspSf - -C %{buildroot}%{_bindir}/ rm -vf %{buildroot}%{_bindir}/tlmgr rm -vf %{buildroot}%{_bindir}/installfont-tl popd pushd ${prefix}/lib/ - tar -cspSf - *.so* | tar -xvspSf - -C %{buildroot}%{_libdir}/ - tar -cspSf - mktex | tar -xvspSf - -C %{buildroot}%{_libexecdir}/ + tar -cpSf - *.so* | tar -xvspSf - -C %{buildroot}%{_libdir}/ + tar -cpSf - mktex | tar -xvspSf - -C %{buildroot}%{_libexecdir}/ popd %if 0%{texlive_version} < 2013 pushd ${prefix}/lib/ - tar -cspSf - tlpkg | tar -xvspSf - -C %{buildroot}%{_libexecdir}/ + tar -cpSf - tlpkg | tar -xvspSf - -C %{buildroot}%{_libexecdir}/ popd %else pushd ${prefix}/share/ - tar -cspSf - tlpkg | tar -xvspSf - -C %{buildroot}%{_datadir}/ + tar -cpSf - tlpkg | tar -xvspSf - -C %{buildroot}%{_datadir}/ popd %endif pushd ${prefix}/include/ - tar -cspSf - . | tar -xvspSf - -C %{buildroot}%{_includedir}/ + tar -cpSf - . | tar -xvspSf - -C %{buildroot}%{_includedir}/ popd pushd ${prefix}/share/man/ %if %{with buildbiber} @@ -2616,15 +2616,15 @@ # specific spec files # #! pushd ${prefix}/share/info/ -#! tar -cspSf - *.info | tar -xvspSf - -C %{buildroot}%{_infodir}/ +#! tar -cpSf - *.info | tar -xvspSf - -C %{buildroot}%{_infodir}/ #! popd #! pushd ${prefix}/share/man/ -#! tar -cspSf - . | tar -xvspSf - -C %{buildroot}%{_mandir}/ +#! tar -cpSf - . | tar -xvspSf - -C %{buildroot}%{_mandir}/ #! rm -vf %{buildroot}%{_mandir}/man*/tlmgr* #! rm -vf %{buildroot}%{_mandir}/man*/installfont-tl* #! popd pushd ${prefix}/texmf/ - tar -cspSf - . | tar -xvspSf - -C %{buildroot}%{_texmfmaindir}/ + tar -cpSf - . | tar -xvspSf - -C %{buildroot}%{_texmfmaindir}/ rm -vrf %{buildroot}%{_texmfmaindir}/texconfig/g rm -vrf %{buildroot}%{_texmfmaindir}/texconfig/v rm -vrf %{buildroot}%{_texmfmaindir}/texconfig/x @@ -2650,7 +2650,7 @@ #! %{buildroot}%{_appdefdir}/ popd pushd ${prefix}/texmf-dist/ - tar -cspSf - . | tar -xvspSf - -C %{buildroot}%{_texmfdistdir}/ + tar -cpSf - . | tar -xvspSf - -C %{buildroot}%{_texmfdistdir}/ rm -vrf %{buildroot}%{_texmfdistdir}/texconfig/g rm -vrf %{buildroot}%{_texmfdistdir}/texconfig/v rm -vrf %{buildroot}%{_texmfdistdir}/texconfig/x -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit texlive-specs-a for openSUSE:Factory
Hello community, here is the log from the commit of package texlive-specs-a for openSUSE:Factory checked in at 2013-11-07 09:10:38 Comparing /work/SRC/openSUSE:Factory/texlive-specs-a (Old) and /work/SRC/openSUSE:Factory/.texlive-specs-a.new (New) Package is "texlive-specs-a" Changes: --- /work/SRC/openSUSE:Factory/texlive-specs-a/texlive-specs-a.changes 2013-09-27 18:31:38.0 +0200 +++ /work/SRC/openSUSE:Factory/.texlive-specs-a.new/texlive-specs-a.changes 2013-11-07 09:10:40.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 14:07:37 UTC 2013 - wer...@suse.de + +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +--- Other differences: -- ++ texlive-specs.tar.xz ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/texlive-specs/texlive-luaotfload.spec new/texlive-specs/texlive-luaotfload.spec --- old/texlive-specs/texlive-luaotfload.spec 2013-08-02 10:03:59.0 +0200 +++ new/texlive-specs/texlive-luaotfload.spec 2013-10-28 15:31:13.0 +0100 @@ -19,7 +19,7 @@ %define texlive_version 2013 %define texlive_previous 2011 %define texlive_release 20130620 -%define texlive_noarch 72 +%define texlive_noarch 80 %define __perl_requires%{nil} %define __os_install_post /usr/lib/rpm/brp-compress \\\ @@ -49,6 +49,7 @@ # from 20130620 Source0: luaotfload.tar.xz Source1: luaotfload.doc.tar.xz +Patch0: luaotfload_varfonts.dif BuildArch: noarch # skip-check-libtool-deps @@ -104,6 +105,9 @@ %{buildroot}/var/adm/update-scripts/%{name}-%{version}-%{release}-zypper tar --use-compress-program=xz -xf %{S:0} -C %{buildroot}%{_datadir}/texlive tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive +pushd %{buildroot}%{_datadir}/texlive/ + patch --reject-format=unified --quoting-style=literal -f -p0 -F0 -T < %{P:0} +popd rm -v %{buildroot}%{_datadir}/texlive/texmf rm -v %{buildroot}%{_datadir}/texlive/texmf-dist rm -vr %{buildroot}%{_datadir}/texlive @@ -201,6 +205,34 @@ /var/adm/update-scripts/%{name}-%{version}-%{release}-zypper %changelog +* Mon Oct 28 2013 wer...@suse.de +- Make Lua(La)TeX knowing about varfonts from mktex.cnf (bnc#847102) + +* Wed Sep 25 2013 wer...@suse.de +- Be aware that texlive scripts are now in the packages them self + +* Tue Sep 10 2013 wer...@suse.de +- Change /bin/env to /usr/bin/env in latexdiff tool below doc + +* Fri Aug 09 2013 wer...@suse.de +- Be aware that the package texlive-ascii-font is the former + texlive-ascii + +* Thu Aug 08 2013 wer...@suse.de +- Do not override TEXMFLOCAL with TEXMFMAIN as this is now TEXMFDIST + +* Wed Aug 07 2013 wer...@suse.de +- Drop dependency freeglut-devel of texlive-asymptote (bnc#833498) + +* Mon Aug 05 2013 wer...@suse.de +- Make sure that TEXMFMAIN is /usr/share/texmf now +- Replace texmf.cnf if really required that is do not install + as .rpmnew but move the old to .rpmold + +* Fri Aug 02 2013 wer...@suse.de +- Move leipzig.tex from doc/latex/leipzig/leipzig.tex to + tex/latex/leipzig/leipzig.tex + * Tue Jul 30 2013 wer...@suse.de - Update to TeXLive 2013 (timestamp 20130620) + Distribution layout: the top-level texmf/ directory has been -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit syslog-ng for openSUSE:Factory
Hello community, here is the log from the commit of package syslog-ng for openSUSE:Factory checked in at 2013-11-07 09:04:59 Comparing /work/SRC/openSUSE:Factory/syslog-ng (Old) and /work/SRC/openSUSE:Factory/.syslog-ng.new (New) Package is "syslog-ng" Changes: --- /work/SRC/openSUSE:Factory/syslog-ng/syslog-ng.changes 2013-08-21 14:59:51.0 +0200 +++ /work/SRC/openSUSE:Factory/.syslog-ng.new/syslog-ng.changes 2013-11-07 09:05:00.0 +0100 @@ -1,0 +2,10 @@ +Mon Nov 4 12:38:03 CET 2013 - cza...@balabit.hu + +- update 3.4.5 (bugfix release) + +--- +Thu Oct 24 18:39:20 CEST 2013 - cza...@balabit.hu + +- update 3.4.4 (bugfix release) + +--- Old: syslog-ng_3.4.3.tar.gz New: syslog-ng_3.4.5.tar.gz Other differences: -- ++ syslog-ng.spec ++ --- /var/tmp/diff_new_pack.v0pHgp/_old 2013-11-07 09:05:02.0 +0100 +++ /var/tmp/diff_new_pack.v0pHgp/_new 2013-11-07 09:05:02.0 +0100 @@ -19,7 +19,7 @@ Name: syslog-ng %define syslog_ng_rundir %{_localstatedir}/run/syslog-ng %define syslog_ng_sockets_cfg %{syslog_ng_rundir}/additional-log-sockets.conf -Version:3.4.3 +Version:3.4.5 Release:0 Summary:The new-generation syslog-daemon License:GPL-2.0 ++ syslog-ng_3.4.3.tar.gz -> syslog-ng_3.4.5.tar.gz ++ 70444 lines of diff (skipped) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit systemd for openSUSE:Factory
Hello community, here is the log from the commit of package systemd for openSUSE:Factory checked in at 2013-11-07 09:05:11 Comparing /work/SRC/openSUSE:Factory/systemd (Old) and /work/SRC/openSUSE:Factory/.systemd.new (New) Package is "systemd" Changes: systemd-rpm-macros.changes: same change --- /work/SRC/openSUSE:Factory/systemd/systemd.changes 2013-11-05 06:52:18.0 +0100 +++ /work/SRC/openSUSE:Factory/.systemd.new/systemd.changes 2013-11-07 09:05:13.0 +0100 @@ -1,0 +2,8 @@ +Wed Nov 6 09:42:05 UTC 2013 - wer...@suse.de + +- Add patch + 1010-do-not-install-sulogin-unit-with-poweroff.patch + that is do not install console-shell.service in any system target + as this will cause automatic poweroff at boot (bnc#849071) + +--- New: 1010-do-not-install-sulogin-unit-with-poweroff.patch Other differences: -- systemd-rpm-macros.spec: same change ++ systemd.spec ++ --- /var/tmp/diff_new_pack.YQtaOW/_old 2013-11-07 09:05:17.0 +0100 +++ /var/tmp/diff_new_pack.YQtaOW/_new 2013-11-07 09:05:17.0 +0100 @@ -256,6 +256,8 @@ Patch1008: 1008-add-msft-compability-rules.patch # PATCH-FIX-OPENSUSE 1009-make-xsltproc-use-correct-ROFF-links.patch -- Make ROFF links working again in manual pages (bnc#842844) Patch1009: 1009-make-xsltproc-use-correct-ROFF-links.patch +# PATCH-FIX-OPENSUSE 1010-do-not-install-sulogin-unit-with-poweroff.patch -- Avoid installing console-shell.service (bnc#849071) +Patch1010: 1010-do-not-install-sulogin-unit-with-poweroff.patch %description Systemd is a system and service manager, compatible with SysV and LSB @@ -531,6 +533,7 @@ %patch1008 -p1 %endif %patch1009 -p1 +%patch1010 -p1 # ensure generate files are removed rm -f units/emergency.service ++ 1010-do-not-install-sulogin-unit-with-poweroff.patch ++ | | Belongs to bnc#849071 that is do not install console-shell.service | in any system target as this will cause automatic poweroff at boot. | --- systemd-208/units/console-shell.service.m4.in +++ systemd-208/units/console-shell.service.m4.in 2013-11-06 09:35:37.958693570 + @@ -26,6 +26,3 @@ StandardError=inherit KillMode=process IgnoreSIGPIPE=no SendSIGHUP=yes - -[Install] -WantedBy=getty.target -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit sysconfig for openSUSE:Factory
Hello community, here is the log from the commit of package sysconfig for openSUSE:Factory checked in at 2013-11-07 09:04:46 Comparing /work/SRC/openSUSE:Factory/sysconfig (Old) and /work/SRC/openSUSE:Factory/.sysconfig.new (New) Package is "sysconfig" Changes: --- /work/SRC/openSUSE:Factory/sysconfig/sysconfig.changes 2013-10-29 11:04:57.0 +0100 +++ /work/SRC/openSUSE:Factory/.sysconfig.new/sysconfig.changes 2013-11-07 09:04:47.0 +0100 @@ -1,0 +2,13 @@ +Tue Nov 5 14:20:33 UTC 2013 - m...@suse.de + +- version 0.81.7 +- Skip also systemd redirection for ifdown -o ifplugd (bnc#846031). +- Fixed to check restorecon existence before calling it as selinux + is not installed by default (bnc#845792). + +--- +Tue Nov 5 10:16:30 UTC 2013 - ludwig.nus...@suse.de + +- fix starting dhcpcd from ifplugd (bnc#846031) + +--- Old: sysconfig-0.81.6.tar.bz2 New: sysconfig-0.81.7.tar.bz2 Other differences: -- ++ sysconfig.spec ++ --- /var/tmp/diff_new_pack.QF132K/_old 2013-11-07 09:04:47.0 +0100 +++ /var/tmp/diff_new_pack.QF132K/_new 2013-11-07 09:04:47.0 +0100 @@ -17,7 +17,7 @@ Name: sysconfig -Version:0.81.6 +Version:0.81.7 Release:0 Summary:The sysconfig scheme for traditional network scripts License:GPL-2.0+ ++ sysconfig-0.81.6.tar.bz2 -> sysconfig-0.81.7.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sysconfig-0.81.6/ChangeLog new/sysconfig-0.81.7/ChangeLog --- old/sysconfig-0.81.6/ChangeLog 2013-10-29 08:27:15.0 +0100 +++ new/sysconfig-0.81.7/ChangeLog 2013-11-05 15:49:12.0 +0100 @@ -1,10 +1,41 @@ -commit 32895959980dd820c198d29e6e37524d930bcf01 (HEAD, master) +commit 8991517721f222eb22cc940e1d969b4b1ddecc0d (HEAD, origin/master, master) +Author: Marius Tomaschewski +Date: Tue Nov 5 15:35:50 2013 +0100 + +version 0.81.7, updated changes + +commit db2c305904ea3c38ef1899c042162eb6a6b016df +Author: Marius Tomaschewski +Date: Tue Nov 5 15:17:38 2013 +0100 + +Skip also systemd redirection for ifdown -o ifplugd (bnc#846031) + +commit b2a95a41f30e7d0db080dba9b1a891b4043bb3f5 +Author: Marius Tomaschewski +Date: Tue Nov 5 14:48:09 2013 +0100 + +Check restorecon existence before calling it (bnc#845792) + +commit 3e60553cd8f7b7748c1dea2a6ae24174ab16dcf2 +Merge: 3289595 39b8e83 +Author: Marius Tomaschewski +Date: Tue Nov 5 11:46:46 2013 +0100 + +Merge branch 'opensuse-13.1' from github pull #2 + +commit 39b8e8329bb9265e04a3b22fb0b72292d84507bd +Author: Ludwig Nussel +Date: Tue Nov 5 11:16:30 2013 +0100 + +fix starting dhcpcd from ifplugd (bnc#846031) + +commit 32895959980dd820c198d29e6e37524d930bcf01 Author: Marius Tomaschewski Date: Tue Oct 29 08:26:38 2013 +0100 version 0.81.6, updated changes -commit 98a8824657636848edf1d5932a17641092c4ad76 (origin/master) +commit 98a8824657636848edf1d5932a17641092c4ad76 Author: Marius Tomaschewski Date: Wed Oct 16 13:42:52 2013 + @@ -40,7 +71,7 @@ updated changes -commit 312c427ae58ce78297384d1599ac32cce7f29e50 (master-blacklist1) +commit 312c427ae58ce78297384d1599ac32cce7f29e50 Author: Marius Tomaschewski Date: Wed Oct 2 16:21:30 2013 +0200 @@ -149,7 +180,7 @@ the sk98lin driver has been dropped from the kernel in 2.6.26 -commit 2c186e52f27a19406b9ef967520892d45fe5beeb (origin/opensuse-13.1, opensuse-13.1) +commit 2c186e52f27a19406b9ef967520892d45fe5beeb Author: Marius Tomaschewski Date: Fri Sep 27 17:05:40 2013 +0200 @@ -237,7 +268,7 @@ Do not stop the network interfaces, but kill the network and all network@ services to kill all dhcp clients on uninstall. -commit a082860e14e218d5e19a34f05c4b00c1b265d031 (tag: version-0.81.1, master-02) +commit a082860e14e218d5e19a34f05c4b00c1b265d031 (tag: version-0.81.1) Author: Marius Tomaschewski Date: Wed Aug 28 18:51:29 2013 +0200 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sysconfig-0.81.6/VERSION new/sysconfig-0.81.7/VERSION --- old/sysconfig-0.81.6/VERSION2013-10-29 08:25:09.0 +0100 +++ new/sysconfig-0.81.7/VERSION2013-11-05 15:48:48.0 +0100 @@ -1 +1 @@ -0.81.6 +0.81.7 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/sysconfig-0.81.6/configure new/sysconfig-0.81.7/configure --- old/sysconfig-0.81.6/configure 2013-10-29 08:27:04.0 +0100 +++ new/sysconfig-0.81.7/configure 2013-11-05 15:49:06.0
commit snapper for openSUSE:Factory
Hello community, here is the log from the commit of package snapper for openSUSE:Factory checked in at 2013-11-07 09:04:01 Comparing /work/SRC/openSUSE:Factory/snapper (Old) and /work/SRC/openSUSE:Factory/.snapper.new (New) Package is "snapper" Changes: --- /work/SRC/openSUSE:Factory/snapper/snapper.changes 2013-10-20 10:54:04.0 +0200 +++ /work/SRC/openSUSE:Factory/.snapper.new/snapper.changes 2013-11-07 09:04:02.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 21 10:24:43 CEST 2013 - aschn...@suse.de + +- fixed inconsistency with default value for BACKGROUND_COMPARISON + +--- Other differences: -- ++ snapper-0.1.7.tar.bz2 ++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/snapper-0.1.7/client/utils/text.cc new/snapper-0.1.7/client/utils/text.cc --- old/snapper-0.1.7/client/utils/text.cc 2013-04-02 10:11:02.0 +0200 +++ new/snapper-0.1.7/client/utils/text.cc 2013-10-24 17:42:06.0 +0200 @@ -243,17 +243,12 @@ s += bytes_read; } // we're at the end of the string -else if (bytes_read == 0) +else { // print the rest of the text for(; *linep; ++linep) out << *linep; } -else -{ - out << endl << "WCHAR ERROR" << endl; - return; -} } while(bytes_read > 0); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/snapper-0.1.7/doc/snapper-configs.xml.in new/snapper-0.1.7/doc/snapper-configs.xml.in --- old/snapper-0.1.7/doc/snapper-configs.xml.in2013-10-16 17:50:00.0 +0200 +++ new/snapper-0.1.7/doc/snapper-configs.xml.in2013-10-21 10:13:14.0 +0200 @@ -77,7 +77,7 @@ Defines whether pre and post snapshots should be compared in the background after creation. - Default value is "no". + Default value is "yes". diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/snapper-0.1.7/pam/pam_snapper.c new/snapper-0.1.7/pam/pam_snapper.c --- old/snapper-0.1.7/pam/pam_snapper.c 2013-07-26 11:00:18.0 +0200 +++ new/snapper-0.1.7/pam/pam_snapper.c 2013-10-24 16:58:12.0 +0200 @@ -373,20 +373,20 @@ if ( setgid( gid ) != 0 || initgroups( pam_user, gid ) != 0 || setuid( uid ) != 0 ) { munmap( p, sizeof( *snapshot_num_out ) ); - exit( EXIT_FAILURE ); + _exit( EXIT_FAILURE ); } if ( cdbus_create_snapshot( snapper_conf, createmode, cleanup, num_user_data, user_data, snapshot_num_in, snapshot_num_out ) != 0 ) { munmap( p, sizeof( *snapshot_num_out ) ); - exit( EXIT_FAILURE ); + _exit( EXIT_FAILURE ); } memcpy( p, snapshot_num_out, sizeof( *snapshot_num_out ) ); munmap( p, sizeof( *snapshot_num_out ) ); - exit( EXIT_SUCCESS ); + _exit( EXIT_SUCCESS ); } else if ( child > 0 ) { @@ -494,17 +494,22 @@ ( pamh, "pam_snapper_snapshot_num", ( const void ** )&snapshot_num_in ) != PAM_SUCCESS ) { pam_syslog( pamh, LOG_ERR, "getting previous snapshot_num failed" ); + free( snapshot_num_out ); return -1; } } if ( forker( pamh, pam_user, uid, gid, snapper_conf, createmode, cleanup, num_user_data, user_data, snapshot_num_in, snapshot_num_out ) != 0 ) + { + free( snapshot_num_out ); return -1; + } if ( pam_set_data ( pamh, "pam_snapper_snapshot_num", snapshot_num_out, cleanup_snapshot_num ) != PAM_SUCCESS ) { + free( snapshot_num_out ); pam_syslog( pamh, LOG_ERR, "pam_set_data failed" ); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/snapper-0.1.7/server/Client.cc new/snapper-0.1.7/server/Client.cc --- old/snapper-0.1.7/server/Client.cc 2013-10-08 17:05:19.0 +0200 +++ new/snapper-0.1.7/server/Client.cc 2013-10-21 10:20:11.0 +0200 @@ -921,8 +921,9 @@ Snapshots::iterator snap2 = snapper->createPostSnapshot(snap1, conn.get_unix_userid(msg), description, cleanup, userdata); -bool tmp; -if (it->getConfigInfo().getValue("BACKGROUND_
commit SDL2 for openSUSE:Factory
Hello community, here is the log from the commit of package SDL2 for openSUSE:Factory checked in at 2013-11-07 09:03:03 Comparing /work/SRC/openSUSE:Factory/SDL2 (Old) and /work/SRC/openSUSE:Factory/.SDL2.new (New) Package is "SDL2" Changes: --- /work/SRC/openSUSE:Factory/SDL2/SDL2.changes2013-08-27 21:22:32.0 +0200 +++ /work/SRC/openSUSE:Factory/.SDL2.new/SDL2.changes 2013-11-07 09:03:04.0 +0100 @@ -1,0 +2,5 @@ +Mon Oct 28 17:59:05 UTC 2013 - prus...@opensuse.org + +- add SDL2 provides + +--- Other differences: -- ++ SDL2.spec ++ --- /var/tmp/diff_new_pack.7KI2UJ/_old 2013-11-07 09:03:05.0 +0100 +++ /var/tmp/diff_new_pack.7KI2UJ/_new 2013-11-07 09:03:05.0 +0100 @@ -63,6 +63,7 @@ %package -n %lname Summary:Simple DirectMedia Layer Library Group: System/Libraries +Provides: SDL2 = %{version} %description -n %lname This is the "Simple DirectMedia Layer" library. It provides a generic -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit rubygem-sprockets-rails for openSUSE:Factory
Hello community, here is the log from the commit of package rubygem-sprockets-rails for openSUSE:Factory checked in at 2013-11-07 09:02:18 Comparing /work/SRC/openSUSE:Factory/rubygem-sprockets-rails (Old) and /work/SRC/openSUSE:Factory/.rubygem-sprockets-rails.new (New) Package is "rubygem-sprockets-rails" Changes: --- /work/SRC/openSUSE:Factory/rubygem-sprockets-rails/rubygem-sprockets-rails.changes 2013-06-14 15:48:23.0 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-sprockets-rails.new/rubygem-sprockets-rails.changes 2013-11-07 09:02:19.0 +0100 @@ -1,0 +2,5 @@ +Thu Oct 31 05:54:42 UTC 2013 - co...@suse.com + +- updated to version 2.0.1 + +--- Old: sprockets-rails-2.0.0.gem New: sprockets-rails-2.0.1.gem Other differences: -- ++ rubygem-sprockets-rails.spec ++ --- /var/tmp/diff_new_pack.sMBygE/_old 2013-11-07 09:02:19.0 +0100 +++ /var/tmp/diff_new_pack.sMBygE/_new 2013-11-07 09:02:19.0 +0100 @@ -17,7 +17,7 @@ Name: rubygem-sprockets-rails -Version:2.0.0 +Version:2.0.1 Release:0 %define mod_name sprockets-rails %define mod_full_name %{mod_name}-%{version} @@ -53,6 +53,7 @@ %gem_install -f 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 %files %defattr(-,root,root,-) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit rubygem-rspec-core for openSUSE:Factory
Hello community, here is the log from the commit of package rubygem-rspec-core for openSUSE:Factory checked in at 2013-11-07 09:02:09 Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-core (Old) and /work/SRC/openSUSE:Factory/.rubygem-rspec-core.new (New) Package is "rubygem-rspec-core" Changes: --- /work/SRC/openSUSE:Factory/rubygem-rspec-core/rubygem-rspec-core.changes 2013-10-31 15:59:16.0 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-rspec-core.new/rubygem-rspec-core.changes 2013-11-07 09:02:10.0 +0100 @@ -1,0 +2,15 @@ +Fri Nov 1 06:07:21 UTC 2013 - co...@suse.com + +- updated to version 2.14.7 + Bug fixes: + + * Fix regression in 2.14.6 that broke the Fivemat formatter. + It depended upon either + `example.execution_result[:exception].pending_fixed?` (which + was removed in 2.14.6 to fix an issue with frozen error objects) + or `RSpec::Core::PendingExampleFixedError` (which was renamed + to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8. + This fix makes a constant alias for the old error name. + (Myron Marston) + +--- Old: rspec-core-2.14.6.gem New: rspec-core-2.14.7.gem Other differences: -- ++ rubygem-rspec-core.spec ++ --- /var/tmp/diff_new_pack.wupr4i/_old 2013-11-07 09:02:11.0 +0100 +++ /var/tmp/diff_new_pack.wupr4i/_new 2013-11-07 09:02:11.0 +0100 @@ -17,12 +17,12 @@ Name: rubygem-rspec-core -Version:2.14.6 +Version:2.14.7 Release:0 %define mod_name rspec-core %define mod_full_name %{mod_name}-%{version} %define mod_branch -%{version} -%define mod_weight 21406 +%define mod_weight 21407 BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: ruby-macros >= 1 @@ -30,7 +30,7 @@ BuildRequires: rubygem(rdoc) > 3.10 Url:http://github.com/rspec/rspec-core Source: http://rubygems.org/gems/%{mod_full_name}.gem -Summary:rspec-core-2.14.6 +Summary:rspec-core-2.14.7 License:MIT Group: Development/Languages/Ruby PreReq: update-alternatives -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org
commit rubygem-uglifier for openSUSE:Factory
Hello community, here is the log from the commit of package rubygem-uglifier for openSUSE:Factory checked in at 2013-11-07 09:02:24 Comparing /work/SRC/openSUSE:Factory/rubygem-uglifier (Old) and /work/SRC/openSUSE:Factory/.rubygem-uglifier.new (New) Package is "rubygem-uglifier" Changes: --- /work/SRC/openSUSE:Factory/rubygem-uglifier/rubygem-uglifier.changes 2013-09-27 18:19:40.0 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-uglifier.new/rubygem-uglifier.changes 2013-11-07 09:02:25.0 +0100 @@ -1,0 +2,8 @@ +Thu Oct 31 05:54:42 UTC 2013 - co...@suse.com + +- updated to version 2.3.0 + - use JSON gem instead of multi_json + - update UglifyJS to 2.4.1 + - fix issues with some Unicode JS identifiers (#47, #58) + +--- Old: uglifier-2.2.1.gem New: uglifier-2.3.0.gem Other differences: -- ++ rubygem-uglifier.spec ++ --- /var/tmp/diff_new_pack.Qsz0Un/_old 2013-11-07 09:02:25.0 +0100 +++ /var/tmp/diff_new_pack.Qsz0Un/_new 2013-11-07 09:02:25.0 +0100 @@ -17,7 +17,7 @@ Name: rubygem-uglifier -Version:2.2.1 +Version:2.3.0 Release:0 %define mod_name uglifier %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 rubygem-rhc for openSUSE:Factory
Hello community, here is the log from the commit of package rubygem-rhc for openSUSE:Factory checked in at 2013-11-07 09:00:14 Comparing /work/SRC/openSUSE:Factory/rubygem-rhc (Old) and /work/SRC/openSUSE:Factory/.rubygem-rhc.new (New) Package is "rubygem-rhc" Changes: --- /work/SRC/openSUSE:Factory/rubygem-rhc/rubygem-rhc.changes 2013-10-06 18:39:40.0 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-rhc.new/rubygem-rhc.changes 2013-11-07 09:00:16.0 +0100 @@ -1,0 +2,5 @@ +Fri Nov 1 06:07:23 UTC 2013 - co...@suse.com + +- updated to version 1.15.6 + +--- Old: rhc-1.14.7.gem New: rhc-1.15.6.gem Other differences: -- ++ rubygem-rhc.spec ++ --- /var/tmp/diff_new_pack.eeXnXC/_old 2013-11-07 09:00:16.0 +0100 +++ /var/tmp/diff_new_pack.eeXnXC/_new 2013-11-07 09:00:16.0 +0100 @@ -17,12 +17,12 @@ Name: rubygem-rhc -Version:1.14.7 +Version:1.15.6 Release:0 %define mod_name rhc %define mod_full_name %{mod_name}-%{version} %define mod_branch -%{version} -%define mod_weight 11204 +%define mod_weight 11506 BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: ruby-macros >= 1 -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org