commit procps for openSUSE:Factory

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package procps for openSUSE:Factory checked 
in at 2013-10-07 15:58:01

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


Package is "procps"

Changes:

--- /work/SRC/openSUSE:Factory/procps/procps.changes2013-10-01 
08:25:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.procps.new/procps.changes   2013-10-07 
15:58:02.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct  7 13:35:36 UTC 2013 - wer...@suse.de
+
+- Be aware of new VmFlags entry in /proc//smaps
+
+---



Other differences:
--
++ procps.spec ++
--- /var/tmp/diff_new_pack.EXLfAX/_old  2013-10-07 15:58:03.0 +0200
+++ /var/tmp/diff_new_pack.EXLfAX/_new  2013-10-07 15:58:03.0 +0200
@@ -196,7 +196,14 @@
 --with-gnu-ld
 make %{?_smp_mflags}
 
-./pmap $$
+./pmap $$ || {
+uname -a
+echo /proc/$$/maps
+cat  /proc/$$/maps
+echo /proc/$$/smaps
+cat  /proc/$$/smaps
+exit 1
+}
 
 %install
 make DESTDIR=%{buildroot} install

++ procps-pmap-legacy.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/procps-pmap-legacy/pmap.c 
new/procps-pmap-legacy/pmap.c
--- old/procps-pmap-legacy/pmap.c   2013-09-30 15:03:43.0 +0200
+++ new/procps-pmap-legacy/pmap.c   2013-10-07 15:35:23.0 +0200
@@ -51,6 +51,7 @@
{ "KernelPageSize", 0,  0,  0},
{ "MMUPageSize",0,  0,  0},
{ "Locked", 0,  0,  0},
+   { "VmFlags",0,  0,  0},
{ 0 }
 };
 static const size_t SmapLines = sizeof(smap)/sizeof(struct smap)-1;
@@ -70,8 +71,9 @@
KernelPageSize,
MMUPageSize,
Locked,
+   VmFlags,
 };
-static const size_t LastType = (size_t)(Locked+1);
+static const size_t LastType = (size_t)(VmFlags+1);
 
 static unsigned long long range_low;
 static unsigned long long range_high = ~0ULL;
@@ -102,7 +104,7 @@
 static int get_smap_data(struct smap *smap)
 {
unsigned long long data;
-   int assigned;
+   int assigned, count;
char *buff = &lastmap[0];
struct smap* ptr;
 
@@ -120,6 +122,7 @@
if (assigned != 1)
return 1;
 
+   count = 0;
ptr = smap;
while (ptr->name) {
char *colon;
@@ -141,6 +144,7 @@
next:
if (strcmp(ptr->name, buff) != 0) {
if ((ptr+1)->name) {
+   count++;
ptr++;
goto next;
}
@@ -157,10 +161,11 @@
if (assigned == 1) {
ptr->data = data;
ptr->total += data;
-   } else
+   } else if (count != VmFlags)
return 1;
 
*lastmap = '\0';
+   count++;
ptr++;
}
 
@@ -358,7 +363,7 @@
}
 
if (!get_proc_stats(pid, &proc)) {
-   fprintf(stderr, "failed to parse /proc/%d/smaps\n", 
pid);
+   fprintf(stderr, "failed to parse /proc/%d\n", pid);
exit(EXIT_FAILURE);
}
printf("%d: %s\n", pid, proc.cmd);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/procps-pmap-legacy/test new/procps-pmap-legacy/test
--- old/procps-pmap-legacy/test 1970-01-01 01:00:00.0 +0100
+++ new/procps-pmap-legacy/test 2013-10-07 14:46:33.0 +0200
@@ -0,0 +1,272 @@
+1000-100d r-xp  fd:00 1228802
/bin/bash
+Size:832 kB
+Rss: 768 kB
+Pss: 768 kB
+Shared_Clean:  0 kB
+Shared_Dirty:  0 kB
+Private_Clean:   768 kB
+Private_Dirty: 0 kB
+Referenced:  768 kB
+Anonymous: 0 kB
+AnonHugePages: 0 kB
+Swap:  0 kB
+KernelPageSize:   64 kB
+MMUPageSize:  64 kB
+Locked:0 kB
+VmFlags: rd ex mr mw me dw 
+100d-100f rw-p 000c fd:00 1228802
/bin/bash
+Size:128 kB
+Rss: 128 kB
+Pss: 128 kB
+Shared_Clean:  0 kB
+Shared_Dirty:  0 kB
+Private_Clean: 0 kB
+Private_Dirty:   128 kB
+Referenced:  128 kB
+Anonymous:   128 kB
+AnonHugePages: 0 kB
+Swap:  0 kB
+KernelPageSize:   64 kB
+MMUPageSize:  64 kB
+Locked:0 kB
+VmFlags: rd wr mr

commit rpmlint for openSUSE:Factory

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2013-10-07 15:50:38

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


Package is "rpmlint"

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2013-09-26 
07:15:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2013-10-07 
15:50:40.0 +0200
@@ -1,0 +2,5 @@
+Mon Sep 30 09:29:33 UTC 2013 - dmuel...@suse.com
+
+- Sync checks with git (FATE#316521) 
+
+---



Other differences:
--
++ rpmlint-checks-master.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/CheckCommonFiles.py 
new/rpmlint-checks-master/CheckCommonFiles.py
--- old/rpmlint-checks-master/CheckCommonFiles.py   2013-06-28 
18:05:19.0 +0200
+++ new/rpmlint-checks-master/CheckCommonFiles.py   2013-09-30 
11:27:55.0 +0200
@@ -27,7 +27,7 @@
 if pkg.isSource():
 return
 files = pkg.files()
-for f in files.keys():
+for f in files:
 if f in pkg.ghostFiles():
 continue
 md5 = files[f].md5
@@ -79,11 +79,11 @@
 from the licenses package.""",
 'non-linux-readme',
 """Your package contains a file that contains instructions
-for non-linux platforms. They're most likely unneccessary bloat, 
+for non-linux platforms. They're most likely unneccessary bloat,
 consider removing them from your package.""",
 'makefile-junk',
 """Your package contains makefiles that only make sense in a
 source package. Did you package a complete directory from the
-tarball by using %doc? Consider removing Makefile* from this 
+tarball by using %doc? Consider removing Makefile* from this
 directory at the end of your %install section to reduce package bloat."""
 )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/CheckFilelist.py 
new/rpmlint-checks-master/CheckFilelist.py
--- old/rpmlint-checks-master/CheckFilelist.py  2013-09-23 16:18:57.0 
+0200
+++ new/rpmlint-checks-master/CheckFilelist.py  2013-09-30 11:29:23.0 
+0200
@@ -301,7 +301,14 @@
 '/lib/udev/rules.d/*',
 ],
 },
-
+{
+'error': 'suse-wrong-suse-capitalisation',
+'details': """This file should be renamed to README.SUSE or 
README.openSUSE""",
+'bad': [
+'*/README.SuSE',
+],
+'ignorefileif': ghostfile,
+},
 
 ]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/CheckSUIDPermissions.py 
new/rpmlint-checks-master/CheckSUIDPermissions.py
--- old/rpmlint-checks-master/CheckSUIDPermissions.py   2013-06-28 
18:05:19.0 +0200
+++ new/rpmlint-checks-master/CheckSUIDPermissions.py   2013-09-30 
11:27:55.0 +0200
@@ -77,7 +77,7 @@
 
 permfiles = {}
 # first pass, find and parse permissions.d files
-for f in files.keys():
+for f in files:
 if f in pkg.ghostFiles():
 continue
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rpmlint-checks-master/LibraryPolicyCheck.py 
new/rpmlint-checks-master/LibraryPolicyCheck.py
--- old/rpmlint-checks-master/LibraryPolicyCheck.py 2013-06-28 
18:05:19.0 +0200
+++ new/rpmlint-checks-master/LibraryPolicyCheck.py 2013-09-30 
11:27:55.0 +0200
@@ -6,283 +6,282 @@
 # Purpose   : Verify shared library packaging policy rules
 #
 
-from Filter import *
 import AbstractCheck
-import rpm
-import re
-import commands
-import stat
 import Config
+from Filter import printWarning, printError, addDetails
 import os
-import string
 import Pkg
+import rpm
+import stat
+import string
 
 _policy_legacy_exceptions = (
-"libacl1",
-"libaio1",
-"libalut0",
-"libapr-1-0",
-"libaprutil-1-0",
-"libartskde1",
-"libattr1",
-"libcdaudio1",
-"libcdk4",
-"libcheck0",
-"libchewing3",
-"libchm0",
-"libclucene0",
-"libdar4",
-"libdbh-4_5-4",
-"libdbus-qt-1-1",
-"libdm0",
-"libdns_sd1",
-"libefence0",
-"libEMF1",
-"libevolutionglue",
-"libf2c0",
-"libffi4",
-"libflaim5_2",
-"libfontenc1",
-"libfreeradius-client2",
-"libgcc_s1",
-"libgcc_s4",  # only for hppa
-

commit lightdm for openSUSE:Factory

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package lightdm for openSUSE:Factory checked 
in at 2013-10-07 15:49:35

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-09-11 
15:44:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.lightdm.new/lightdm.changes 2013-10-07 
15:49:36.0 +0200
@@ -1,0 +2,18 @@
+Mon Oct  7 09:19:40 UTC 2013 - g...@opensuse.org
+
+- update to version 1.7.18
+  - Set XDG_VTNR=1 as a fallback if using SeatUnity without a
+functioning compositor or working VT switching, so that logind
+will recognize the VT as active
+  - Fix ConsoleKit support broken in 1.7.5
+  - Fix --test-mode
+  - Add support for running Surfaceflinger sessions
+  - surfaceflinger: Set XDG_VTNR=0 if VTs are not available
+  - Allow compiling of liblightdm-qt without liblightdm-gobject
+  - Add missing documentation for xremote seat options
+  - Set session environment variables for guest sessions (1.7
+regression)
+  - Don't fail writing X authority if reading it had an error
+  - Update environment variables that we pass to Mir
+
+---

Old:

  lightdm-1.7.14.tar.xz

New:

  lightdm-1.7.18.tar.xz



Other differences:
--
++ lightdm.spec ++
--- /var/tmp/diff_new_pack.HwHWBX/_old  2013-10-07 15:49:46.0 +0200
+++ /var/tmp/diff_new_pack.HwHWBX/_new  2013-10-07 15:49:46.0 +0200
@@ -28,7 +28,7 @@
 %endif
 
 Name:   lightdm
-Version:1.7.14
+Version:1.7.18
 Release:0
 Summary:Lightweight, Cross-desktop Display Manager
 License:GPL-3.0+

++ lightdm-1.7.14.tar.xz -> lightdm-1.7.18.tar.xz ++
 2803 lines of diff (skipped)

++ lightdm-default-configuration.patch ++
--- /var/tmp/diff_new_pack.HwHWBX/_old  2013-10-07 15:49:46.0 +0200
+++ /var/tmp/diff_new_pack.HwHWBX/_new  2013-10-07 15:49:46.0 +0200
@@ -12,7 +12,7 @@
  #guest-account-script=guest-account
  #log-directory=/var/log/lightdm
  #run-directory=/var/run/lightdm
-@@ -101,6 +101,7 @@
+@@ -103,6 +103,7 @@
  #type=xlocal
  #xdg-seat=seat0
  #xserver-command=X
@@ -20,7 +20,7 @@
  #xserver-layout=
  #xserver-config=
  #xserver-allow-tcp=false
-@@ -118,12 +119,12 @@
+@@ -122,12 +123,12 @@
  #user-session=default
  #allow-guest=true
  #guest-session=UNIMPLEMENTED

++ lightdm-disable-utmp-handling.patch ++
--- /var/tmp/diff_new_pack.HwHWBX/_old  2013-10-07 15:49:46.0 +0200
+++ /var/tmp/diff_new_pack.HwHWBX/_new  2013-10-07 15:49:46.0 +0200
@@ -1,5 +1,5 @@
 # HG changeset patch
-# Parent 6536010682c3beb922502ca9464272a8c19e093d
+# Parent e7b391d67ca5135c48d1aef993e2aedfbce4345e
 disable utmp handling since this is handled in the Xstartup/Xreset scripts
 
 diff --git a/src/session-child.c b/src/session-child.c

++ lightdm-fix-session-setup-script-env.patch ++
--- /var/tmp/diff_new_pack.HwHWBX/_old  2013-10-07 15:49:46.0 +0200
+++ /var/tmp/diff_new_pack.HwHWBX/_new  2013-10-07 15:49:46.0 +0200
@@ -1,5 +1,5 @@
 # HG changeset patch
-# Parent 739a3aed7ff5375aa2192312c133c2f242d9ec56
+# Parent f537e458b1a5e1e92d5030bdc77dfc1540433c70
 Put user information in the environment when running session-setup-script
 
 diff --git a/src/seat.c b/src/seat.c

++ lightdm-sysconfig-support.patch ++
--- /var/tmp/diff_new_pack.HwHWBX/_old  2013-10-07 15:49:46.0 +0200
+++ /var/tmp/diff_new_pack.HwHWBX/_new  2013-10-07 15:49:46.0 +0200
@@ -39,7 +39,7 @@
 diff --git a/src/Makefile.am b/src/Makefile.am
 --- a/src/Makefile.am
 +++ b/src/Makefile.am
-@@ -68,7 +68,9 @@ lightdm_SOURCES = \
+@@ -72,7 +72,9 @@ lightdm_SOURCES = \
xdmcp-server.h \
xdmcp-session.c \
xdmcp-session.h \
@@ -632,7 +632,7 @@
 diff --git a/src/seat.c b/src/seat.c
 --- a/src/seat.c
 +++ b/src/seat.c
-@@ -1087,7 +1087,10 @@ create_greeter_session (Seat *seat)
+@@ -1092,7 +1092,10 @@ create_greeter_session (Seat *seat)
  session_set_argv (SESSION (greeter_session), argv);
  g_strfreev (argv);
  
@@ -644,7 +644,7 @@
  g_signal_connect (greeter_session, "create-session", G_CALLBACK 
(greeter_create_session_cb), seat);
  g_signal_connect (greeter_session, "start-session", G_CALLBACK 
(greeter_start_session_cb), seat);
  
-@@ -1300,7 +1303,10 @@ seat_switch_to_user (Seat *seat, const g
+@@ -1305,7 +1308,10 @@ seat_switch_to_user (Seat *seat, const g
  /* Attempt to authenticate them */
  session = create_user_session (seat, username, FALSE);
  g_signal_connect (session, "authentication-complete", G_CALLBACK 
(switch_authent

commit dracut for openSUSE:Factory

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2013-10-07 15:49:09

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


Package is "dracut"

Changes:

--- /work/SRC/openSUSE:Factory/dracut/dracut.changes2013-10-06 
14:32:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes   2013-10-07 
15:49:10.0 +0200
@@ -1,0 +2,20 @@
+Mon Oct  7 08:58:00 UTC 2013 - tr...@suse.de
+
+- Update to mainline git version 033, b7d1b6f904a5b0bdd9a5ad19149f3.
+- Remove all patches which went mainline:
+generalize_early_cpio.patch
+microcode_cleanup.patch
+acpi_override.patch
+mkinitrd_allow_no_option.patch
+mkinitrd_allow_multiple_args.patch
+quiet_options.patch
+implement_default.patch
+root_fs.patch
+suse_host_only.patch
+- Fix missing root fs slash in lib/udev/rules.d resulting in:
+  /var/tmp/initramfs.Lusf6flib/udev/rules.d
+- bcache: removed, it's in the upstream bcache-tools package
+  mainline git commit: 49268028b90f6344f79e3510d2
+- Fix bad she-bang in mkinitrd_setup_dummy
+
+---

Old:

  acpi_override.patch
  generalize_early_cpio.patch
  implement_default.patch
  microcode_cleanup.patch
  mkinitrd_allow_no_option.patch
  quiet_options.patch
  root_fs.patch
  suse_host_only.patch



Other differences:
--
++ dracut.spec ++
--- /var/tmp/diff_new_pack.zhY7aF/_old  2013-10-07 15:49:11.0 +0200
+++ /var/tmp/diff_new_pack.zhY7aF/_new  2013-10-07 15:49:11.0 +0200
@@ -44,28 +44,10 @@
 Patch2: use_sysconfig_values_correctly.patch
 # PATCH-FIX-OPENSUSE At the moment we have 2 paths that contain udev files 
(/lib/udev and /usr/lib/udev)  - tittiatc...@gmail.com
 Patch3: use_all_paths_udev.patch
-# PATCH-FIX-UPSTREAM ACPI early table override support in early cpio - 
tr...@suse.de
-Patch4: generalize_early_cpio.patch
-# PATCH-FIX-UPSTREAM Do not create early_cpio if no suitable microcode exists 
- tr...@suse.de
-Patch5: microcode_cleanup.patch
-# PATCH-FIX-UPSTREAM Implement ACPI table overriding - tr...@suse.de
-Patch6: acpi_override.patch
-# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: Introduce -i -k parameters - 
tr...@suse.de
-Patch7: mkinitrd_allow_no_option.patch
-# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: allow multiple arguments per 
param - tr...@suse.de
-Patch8: mkinitrd_allow_multiple_args.patch
-# PATCH-FIX-UPSTREAM Limit an output to essential one implementing --quiet 
option - tr...@suse.de
-Patch9: quiet_options.patch
-# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: Allow a call w/o passing any 
parameters - tr...@suse.de
-Patch10:implement_default.patch
-# PATCH-FIX-OPENSUSE SUSE mkinitrd compatibility: add -d to pass rootfs and 
dummy -s - tr...@suse.de
-Patch11:root_fs.patch
-# PATCH-FIX-OPENSUSE Build host only images for default_kernel_images and 
-i/-k ones - tr...@suse.de
-Patch12:suse_host_only.patch
 # PATCH-FIX-OPENSUSE Write caller and used parameters to syslog if mkinitrd is 
called - tr...@suse.de
-Patch13:suse_only_logger.patch
+Patch4: suse_only_logger.patch
 # PATCH-FIX-OPENSUSE Call the update-bootloader after dracut finished creating 
the initrd - tittiatc...@gmail.com
-Patch14:mkinitrd_update_bootloader.diff
+Patch5: mkinitrd_update_bootloader.diff
 
 BuildRequires:  bash
 BuildRequires:  dash
@@ -145,15 +127,6 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
-%patch6 -p1
-%patch7 -p1
-%patch8 -p1
-%patch9 -p1
-%patch10 -p1
-%patch11 -p1
-%patch12 -p1
-%patch13 -p1
-%patch14 -p1
 
 %build
 %configure\
@@ -324,8 +297,6 @@
 %dir %{dracutlibdir}/modules.d/03modsign
 %{dracutlibdir}/modules.d/03modsign/load-modsign-keys.sh
 %{dracutlibdir}/modules.d/03modsign/module-setup.sh
-%dir %{dracutlibdir}/modules.d/90bcache
-%{dracutlibdir}/modules.d/90bcache/module-setup.sh
 %dir %{dracutlibdir}/modules.d/00bash
 %{dracutlibdir}/modules.d/00bash/module-setup.sh
 %config(noreplace) %{_sysconfdir}/logrotate.d/dracut

++ dracut-033.tar.xz ++
 7655 lines of diff (skipped)

++ mkinitrd_setup_dummy ++
--- /var/tmp/diff_new_pack.zhY7aF/_old  2013-10-07 15:49:11.0 +0200
+++ /var/tmp/diff_new_pack.zhY7aF/_new  2013-10-07 15:49:11.0 +0200
@@ -1,3 +1,3 @@
-#/bin/bash
+#!/bin/bash
 
 true

++ use_all_paths_udev.patch ++
--- /var/tmp/diff_new_pack.zhY7aF/_old  2013-10-07 15:49:11.0 +0200
+++ /var/tmp/diff_new_pack.zhY7aF/_new  2013-10-07 15:49:11.0 +0200
@@ -1,3 +1,5 @@
+Index: dracut-033/dracut

commit at for openSUSE:Factory

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package at for openSUSE:Factory checked in 
at 2013-10-07 15:48:53

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


Package is "at"

Changes:

--- /work/SRC/openSUSE:Factory/at/at.changes2013-07-16 14:06:39.0 
+0200
+++ /work/SRC/openSUSE:Factory/.at.new/at.changes   2013-10-07 
15:48:54.0 +0200
@@ -1,0 +2,5 @@
+Sun Oct  6 23:02:00 UTC 2013 - crrodrig...@opensuse.org
+
+- at-secure_getenv.patch at must use secure_getenv. 
+
+---

New:

  at-secure_getenv.patch



Other differences:
--
++ at.spec ++
--- /var/tmp/diff_new_pack.xbmo6u/_old  2013-10-07 15:48:55.0 +0200
+++ /var/tmp/diff_new_pack.xbmo6u/_new  2013-10-07 15:48:55.0 +0200
@@ -61,6 +61,7 @@
 Patch21:at-makefile-deps.patch
 #PATCH-FIX-OPENSUSE Set pid dir to /run not /var/run
 Patch22:at-piddir.patch
+Patch23:at-secure_getenv.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: %{_sbindir}/useradd %{_sbindir}/groupadd %fillup_prereq 
%insserv_prereq
 PreReq: permissions
@@ -96,6 +97,7 @@
 %patch20 -p1
 %patch21 -p1
 %patch22
+%patch23 -p1
 %build
 rm -fv y.tab.c y.tab.h lex.yy.c lex.yy.o y.tab.o
 autoreconf -fiv

++ at-secure_getenv.patch ++
--- at-3.1.13.orig/configure.ac
+++ at-3.1.13/configure.ac
@@ -17,8 +17,9 @@ AC_SUBST(VERSION)
 AC_CANONICAL_HOST
 
 dnl Checks for programs.
-
-AC_PROG_CC
+AC_USE_SYSTEM_EXTENSIONS
+AC_PROG_CC_STDC
+AC_SYS_LARGEFILE
 AC_PROG_INSTALL
 AC_PROG_LN_S
 AC_PROG_YACC
@@ -58,6 +59,7 @@ AC_CHECK_LIB(fl,yywrap,
 
 PKG_CHECK_MODULES([HX], [libHX])
 
+AC_CHECK_FUNCS([__secure_getenv secure_getenv])
 dnl Checks for header files.
 AC_HEADER_DIRENT
 AC_HEADER_STDC
--- at-3.1.13.orig/at.c
+++ at-3.1.13/at.c
@@ -97,6 +97,14 @@
 #define DEFAULT_QUEUE 'a'
 #define BATCH_QUEUE   'b'
 
+#ifndef HAVE_SECURE_GETENV
+#  ifdef HAVE___SECURE_GETENV
+#define secure_getenv __secure_getenv
+#  else
+#error neither secure_getenv nor __secure_getenv is available
+#  endif
+#endif
+
 enum {
 ATQ, BATCH, ATRM, AT, CAT
 }; /* what program we want to run */
@@ -359,7 +367,7 @@ writefile(time_t runtimer, char queue)
  */
 mailname = getlogin();
 if (mailname == NULL)
-   mailname = getenv("LOGNAME");
+   mailname = secure_getenv("LOGNAME");
 if (mailname == NULL || mailname[0] == '\0' || getpwnam(mailname) == NULL) 
{
pass_entry = getpwuid(real_uid);
if (pass_entry != NULL)
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit libHX for openSUSE:Factory

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package libHX for openSUSE:Factory checked 
in at 2013-10-07 09:42:21

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


Package is "libHX"

Changes:

--- /work/SRC/openSUSE:Factory/libHX/libHX.changes  2013-03-15 
10:39:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.libHX.new/libHX.changes 2013-10-07 
09:42:22.0 +0200
@@ -1,0 +2,6 @@
+Sun Sep 29 20:00:58 UTC 2013 - jeng...@inai.de
+
+- Update to new upstream release 3.16
+* remove 256-char format key length limit in HXformat_*
+
+---

Old:

  libHX-3.15.tar.xz
  libHX-3.15.tar.xz.asc

New:

  libHX-3.16.tar.xz
  libHX-3.16.tar.xz.asc



Other differences:
--
++ libHX.spec ++
--- /var/tmp/diff_new_pack.0uMBpq/_old  2013-10-07 09:42:23.0 +0200
+++ /var/tmp/diff_new_pack.0uMBpq/_new  2013-10-07 09:42:23.0 +0200
@@ -21,7 +21,7 @@
 Summary:Useful collection of routines for C and C++ programming
 License:LGPL-2.1 or LGPL-3.0
 Group:  Development/Libraries/C and C++
-Version:3.15
+Version:3.16
 Release:0
 Url:http://libhx.sf.net/
 
@@ -110,7 +110,7 @@
 %endif
 
 %build
-%configure --includedir=%_includedir/%name-%version
+%configure --includedir="%_includedir/pkg/%name"
 make %{?_smp_mflags}
 
 %install
@@ -128,14 +128,13 @@
 
 %files -n %lname
 %defattr(-,root,root)
-%_libdir/%{name}*.so.*
+%_libdir/libHX*.so.28*
 
 %files devel
 %defattr(-,root,root)
-%doc %_docdir/%name
-%_docdir/%name
-%_includedir/%{name}*
-%_libdir/%{name}*.so
-%_libdir/pkgconfig/*.pc
+%_docdir/%name/
+%_includedir/pkg/
+%_libdir/libHX*.so
+%_libdir/pkgconfig/libHX.pc
 
 %changelog

++ libHX-3.15.tar.xz -> libHX-3.16.tar.xz ++
 1885 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/libHX-3.15/COPYING new/libHX-3.16/COPYING
--- old/libHX-3.15/COPYING  2013-03-07 21:28:42.0 +0100
+++ new/libHX-3.16/COPYING  2013-09-29 21:57:55.0 +0200
@@ -1,5 +1,5 @@
 libHX
-Copyright © Jan Engelhardt 
+Copyright Jan Engelhardt 
 edited over a handful of years (see src files)
 
 
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/libHX-3.15/assorted/.gitignore new/libHX-3.16/assorted/.gitignore
--- old/libHX-3.15/assorted/.gitignore  1970-01-01 01:00:00.0 +0100
+++ new/libHX-3.16/assorted/.gitignore  2013-09-29 21:57:55.0 +0200
@@ -0,0 +1 @@
+/unit2any
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/libHX-3.15/assorted/Makefile.am new/libHX-3.16/assorted/Makefile.am
--- old/libHX-3.15/assorted/Makefile.am 1970-01-01 01:00:00.0 +0100
+++ new/libHX-3.16/assorted/Makefile.am 2013-09-29 21:57:55.0 +0200
@@ -0,0 +1,7 @@
+# -*- Makefile -*-
+
+AM_CPPFLAGS = -I${top_srcdir}/include
+
+noinst_PROGRAMS = unit2any
+
+unit2any_LDADD = ../src/libHX.la
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/libHX-3.15/assorted/deque2.c new/libHX-3.16/assorted/deque2.c
--- old/libHX-3.15/assorted/deque2.c2013-03-07 21:28:42.0 +0100
+++ new/libHX-3.16/assorted/deque2.c2013-09-29 21:57:55.0 +0200
@@ -1,6 +1,6 @@
 /*
  * libHX/assorted/deque2.c
- * Copyright © Jan Engelhardt, 2002-2007
+ * Copyright Jan Engelhardt, 2002-2007
  *
  * This file is part of libHX. libHX is free software; you can
  * redistribute it and/or modify it under the terms of the GNU Lesser
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude m

commit perl-Config-MVP for openSUSE:Factory

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package perl-Config-MVP for openSUSE:Factory 
checked in at 2013-10-07 09:40:39

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


Package is "perl-Config-MVP"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Config-MVP/perl-Config-MVP.changes  
2013-06-05 13:33:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Config-MVP.new/perl-Config-MVP.changes 
2013-10-07 09:40:40.0 +0200
@@ -1,0 +2,9 @@
+Fri Oct  4 09:15:22 UTC 2013 - co...@suse.com
+
+- updated to 2.26
+- fix repository data
+- removed use of deprecated Class::MOP::load_class (thanks, Karen
+  Etheridge)
+- pass the arguments to missing_plugin in the right order
+
+---

Old:

  Config-MVP-2.23.tar.gz

New:

  Config-MVP-2.26.tar.gz



Other differences:
--
++ perl-Config-MVP.spec ++
--- /var/tmp/diff_new_pack.angDmK/_old  2013-10-07 09:40:41.0 +0200
+++ /var/tmp/diff_new_pack.angDmK/_new  2013-10-07 09:40:41.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Config-MVP
-Version:2.23
+Version:2.26
 Release:0
 %define cpan_name Config-MVP
 Summary:multivalue-property package-oriented configuration
@@ -29,8 +29,10 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Capture::Tiny)
 BuildRequires:  perl(Class::Load) >= 0.17
 BuildRequires:  perl(Module::Pluggable::Object)
+BuildRequires:  perl(Module::Runtime)
 BuildRequires:  perl(Moose) >= 0.91
 BuildRequires:  perl(Moose::Role)
 BuildRequires:  perl(Moose::Util::TypeConstraints)
@@ -56,6 +58,7 @@
 #BuildRequires: perl(Config::MVP::Sequence)
 Requires:   perl(Class::Load) >= 0.17
 Requires:   perl(Module::Pluggable::Object)
+Requires:   perl(Module::Runtime)
 Requires:   perl(Moose) >= 0.91
 Requires:   perl(Moose::Role)
 Requires:   perl(Moose::Util::TypeConstraints)

++ Config-MVP-2.23.tar.gz -> Config-MVP-2.26.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Config-MVP-2.23/Changes 
new/Config-MVP-2.26/Changes
--- old/Config-MVP-2.23/Changes 2013-01-31 03:35:37.0 +0100
+++ new/Config-MVP-2.26/Changes 2013-09-17 01:58:56.0 +0200
@@ -1,60 +1,70 @@
 Revision history for Config-MVP
 
+2.26  2013-09-17 08:58:53 Asia/Tokyo
+- fix repository data
+
+2.25  2013-09-17 08:56:36 Asia/Tokyo
+- removed use of deprecated Class::MOP::load_class (thanks, Karen
+  Etheridge)
+
+2.24  2013-08-27 12:09:19 America/New_York
+- pass the arguments to missing_plugin in the right order
+
 2.23  2013-01-30 21:35:34 America/New_York
-  doc fixes (Thanks, George Hartzell!)
+- doc fixes (Thanks, George Hartzell!)
 
 2.22  2012-03-15 21:16:16 America/New_York
-  documentation fixes (Thanks, Gregor Herrmann of Debian!)
+- documentation fixes (Thanks, Gregor Herrmann of Debian!)
 
-  depend on at least version 0.17 of Class::Load, to work around a bug
+- depend on at least version 0.17 of Class::Load, to work around a bug
   with perl5.8.8 and Module::Runtime 0.012. (Karen Etheridge)
 
 2.21  2011-02-11 11:13:20 America/New_York
-  when throwing "package not installed", add a "package" attribute to
+- when throwing "package not installed", add a "package" attribute to
   Error
 
 2.20  2011-02-08 11:05:12 America/New_York
-  add Config::MVP::Error for common exceptions
+- add Config::MVP::Error for common exceptions
 
-  allow class loading and class-not-found handling to be subclassed
+- allow class loading and class-not-found handling to be subclassed
   (thanks, Kent Fredric!)
 
 2.101650  2010-06-14 20:22:42 America/New_York
-  require Moose 0.91 for native trait support
+- require Moose 0.91 for native trait support
 
 2.101540  2010-06-03 00:28:57 America/New_York
-  improve if_none to return from the proper scope (i.e., now it works)
+- improve if_none to return from the proper scope (i.e., now it works)
 
 2.101480  2010-05-28 22:59:18 America/New_York
-  add an if_none callback to Reader::Finder; for now, private
+- add an if_none callback to Reader::Finder; for now, private
 
 2.101460  2010-05-26 22:29:43 America/New_York
   [BREAKS BACKWARD COMPATIBILITY]
 
-  I apologize for breaking backcompat twice in a week.  I 

commit installation-images for openSUSE:13.1

2013-10-07 Thread h_root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:13.1 checked in at 2013-10-07 09:14:16

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


Package is "installation-images"

Changes:

--- /work/SRC/openSUSE:13.1/installation-images/installation-images.changes 
2013-09-23 10:54:02.0 +0200
+++ 
/work/SRC/openSUSE:13.1/.installation-images.new/installation-images.changes
2013-10-07 09:14:17.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct  7 07:14:03 UTC 2013 - co...@suse.com
+
+- adapt to new xen module
+
+---

New:

  installation-images-14.17.diff



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.APyHQ4/_old  2013-10-07 09:14:17.0 +0200
+++ /var/tmp/diff_new_pack.APyHQ4/_new  2013-10-07 09:14:17.0 +0200
@@ -383,6 +383,7 @@
 Version:14.17
 Release:0
 Source: installation-images-14.17.tar.bz2
+Patch0: installation-images-14.17.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %define _binary_payload w.ufdio
 
@@ -455,6 +456,7 @@
 
 %prep
 %setup
+%patch0 -p1
 rm -f /usr/lib/build/checks/04-check-filelist
 
 %build

++ installation-images-14.17.diff ++
diff --git a/etc/module.config b/etc/module.config
index fd3de38..d989ec3 100644
--- a/etc/module.config
+++ b/etc/module.config
@@ -319,6 +319,7 @@ wusb-cbaf,"Wireless USB Cable Based Association"
 wusb-wa,,-
 wusbcore,,-
 cdc-wdm
+xen-usb
 
 kernel/drivers/hid/.*
 kernel/drivers/net/usb/.*
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org