Hello community,

here is the log from the commit of package kmscon for openSUSE:Factory checked 
in at 2013-10-20 10:52:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kmscon (Old)
 and      /work/SRC/openSUSE:Factory/.kmscon.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kmscon"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kmscon/kmscon.changes    2013-04-23 
15:10:32.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kmscon.new/kmscon.changes       2013-10-20 
10:52:34.000000000 +0200
@@ -1,0 +2,12 @@
+Wed Oct  9 00:11:56 UTC 2013 - [email protected]
+
+- version 7+git52
+- Corrects systemd units so they work correctly with current
+  versions
+- add uvtd new Virtual Terminal daemon, disabled by default
+  in upstream and here as well.
+- bugfixes
+- Use scanelf to remove executable stack from mod_unifont
+  while the problem is fixed at its roots.
+
+-------------------------------------------------------------------

Old:
----
  kmscon-7.tar.xz

New:
----
  kmscon-7+git52.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kmscon.spec ++++++
--- /var/tmp/diff_new_pack.SFZHtR/_old  2013-10-20 10:52:35.000000000 +0200
+++ /var/tmp/diff_new_pack.SFZHtR/_new  2013-10-20 10:52:35.000000000 +0200
@@ -22,7 +22,7 @@
 %define uterm_sover 1
 
 Name:           kmscon
-Version:        7
+Version:        7+git52
 Release:        0
 Summary:        Linux KMS/DRM based virtual Console Emulator
 License:        MIT
@@ -31,6 +31,7 @@
 
 #Git-Clone:    git://github.com/dvdhrm/kmscon
 #DL-URL:       http://people.freedesktop.org/~dvdhrm/kmscon/releases/
+#Snapshot:     kmscon-7-52-g2d191bd
 Source:         %name-%version.tar.xz
 Patch1:         kmscon-no-date-time.patch
 Patch2:         kmscon-x-linking.patch
@@ -38,6 +39,7 @@
 BuildRequires:  automake >= 1.11
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  libtool >= 2.2
+BuildRequires:  pax-utils
 BuildRequires:  pkgconfig
 BuildRequires:  xsltproc
 BuildRequires:  xz
@@ -119,7 +121,7 @@
 Development libraries for libuterm.
 
 %prep
-%setup -q
+%setup -qn %name
 %patch -P 1 -p1 -P 2 -p1
 
 %build
@@ -127,7 +129,7 @@
 mkdir -p m4
 autoreconf -fiv
 %configure --enable-wlterm --enable-debug --disable-static
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 b="%buildroot"
@@ -135,6 +137,7 @@
 mkdir -p "$b/%_unitdir"
 install -pm0644 docs/*.service "$b/%_unitdir/"
 find "$b" -type f -name "*.la" -print -delete
+scanelf -X -e %{buildroot}%_libdir/kmscon/mod-unifont.so
 
 %pre
 %service_add_pre %name.service

++++++ kmscon-no-date-time.patch ++++++
--- /var/tmp/diff_new_pack.SFZHtR/_old  2013-10-20 10:52:35.000000000 +0200
+++ /var/tmp/diff_new_pack.SFZHtR/_new  2013-10-20 10:52:35.000000000 +0200
@@ -7,31 +7,27 @@
  src/log.c                     |    4 ++--
  2 files changed, 4 insertions(+), 4 deletions(-)
 
-Index: kmscon-7/src/kmscon_module_interface.h
-===================================================================
---- kmscon-7.orig/src/kmscon_module_interface.h
-+++ kmscon-7/src/kmscon_module_interface.h
+--- kmscon-7_git201309121138.orig/src/shl_log.c
++++ kmscon-7_git201309121138/src/shl_log.c
+@@ -504,6 +504,6 @@ void log_print_init(const char *appname)
+       if (!appname)
+               appname = "<unknown>";
+       log_format(LOG_DEFAULT_CONF, NULL, LOG_NOTICE,
+-                 "%s Revision %s %s %s", appname,
+-                 shl_git_head, __DATE__, __TIME__);
++                 "%s Revision %s ", appname,
++                 shl_git_head);
+ }
+--- kmscon-7_git201309121138.orig/src/kmscon_module_interface.h
++++ kmscon-7_git201309121138/src/kmscon_module_interface.h
 @@ -60,8 +60,8 @@ struct kmscon_module {
        struct kmscon_module module = { \
                .info = { \
-                       .githead = BUILD_GIT_HEAD, \
+                       .githead = shl_git_head, \
 -                      .date = __DATE__, \
 -                      .time = __TIME__, \
-+                      .date = "I shall not use __DATE__", \
-+                      .time = "I shall not use __TIME__", \
++                      .date = "??? ?? ????", \
++                      .time = "??:??:??", \
                        .init = _init, \
                        .load = _load, \
                        .unload = _unload, \
-Index: kmscon-7/src/log.c
-===================================================================
---- kmscon-7.orig/src/log.c
-+++ kmscon-7/src/log.c
-@@ -506,6 +506,6 @@ void log_print_init(const char *appname)
-       if (!appname)
-               appname = "<unknown>";
-       log_format(LOG_DEFAULT_CONF, NULL, LOG_NOTICE,
--                 "%s Revision %s %s %s", appname,
--                 BUILD_GIT_HEAD, __DATE__, __TIME__);
-+                 "%s Revision %s", appname,
-+                 BUILD_GIT_HEAD);
- }

++++++ kmscon-x-linking.patch ++++++
--- /var/tmp/diff_new_pack.SFZHtR/_old  2013-10-20 10:52:35.000000000 +0200
+++ /var/tmp/diff_new_pack.SFZHtR/_new  2013-10-20 10:52:35.000000000 +0200
@@ -1,8 +1,6 @@
-Index: kmscon-7/Makefile.am
-===================================================================
---- kmscon-7.orig/Makefile.am
-+++ kmscon-7/Makefile.am
-@@ -194,7 +194,8 @@ libeloop_la_SOURCES = \
+--- kmscon-7_git201309121138.orig/Makefile.am
++++ kmscon-7_git201309121138/Makefile.am
+@@ -225,7 +225,8 @@ libeloop_la_SOURCES = \
        src/eloop.c
  
  libeloop_la_LIBADD = libshl.la
@@ -12,17 +10,18 @@
  EXTRA_libeloop_la_DEPENDENCIES = ${top_srcdir}/docs/sym/libeloop.sym
  libeloop_la_LDFLAGS = \
        $(AM_LDFLAGS) \
-@@ -446,6 +447,9 @@ mod_unifont_la_SOURCES = \
-       src/githead.h \
-       src/font_unifont.c \
-       src/kmscon_mod_unifont.c
-+mod_unifont_la_CPPFLAGS = \
+@@ -484,6 +485,10 @@ module_LTLIBRARIES += mod-unifont.la
+ noinst_PROGRAMS += genunifont
+ endif
+ 
++mod_unifont_la_CPPFLAGS= \
 +      $(AM_CPPFLAGS) \
 +      $(XKBCOMMON_CFLAGS)
- EXTRA_mod_unifont_la_DEPENDENCIES = $(UNIFONT_BIN)
- mod_unifont_la_LIBADD = libshl.la
- mod_unifont_la_LDFLAGS = \
-@@ -487,7 +491,8 @@ mod_pango_la_SOURCES = \
++
+ mod_unifont_la_SOURCES = \
+       src/kmscon_module_interface.h \
+       src/font_unifont.c \
+@@ -527,7 +532,8 @@ mod_pango_la_SOURCES = \
        src/kmscon_mod_pango.c
  mod_pango_la_CPPFLAGS = \
        $(AM_CPPFLAGS) \
@@ -32,8 +31,8 @@
  mod_pango_la_LIBADD = \
        $(PANGO_LIBS) \
        -lpthread \
-@@ -507,6 +512,9 @@ mod_bbulk_la_SOURCES = \
-       src/githead.h \
+@@ -546,6 +552,9 @@ mod_bbulk_la_SOURCES = \
+       src/kmscon_module_interface.h \
        src/text_bbulk.c \
        src/kmscon_mod_bbulk.c
 +mod_bbulk_la_CPPFLAGS = \
@@ -42,7 +41,7 @@
  mod_bbulk_la_LIBADD = libshl.la
  mod_bbulk_la_LDFLAGS = \
        $(AM_LDFLAGS) \
-@@ -530,7 +538,8 @@ nodist_mod_gltex_la_SOURCES = \
+@@ -568,7 +577,8 @@ nodist_mod_gltex_la_SOURCES = \
        src/static_shaders.c
  mod_gltex_la_CPPFLAGS = \
        $(AM_CPPFLAGS) \

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to