OBS User unknown 2008-09-26 12:57:02 +00:00 committed by Git OBS Bridge
parent a07e8d551f
commit 493b35312b
6 changed files with 60 additions and 20 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8e29baccd413d7c10c08d483f5a4be9546833e28bc976b324404327b4d2bca28
size 1854034

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bfbc60869de8d2103c4e4c308bbe106926044ffa9e17f0da4d4cfdb46e23f0b8
size 1914691

View File

@ -0,0 +1,13 @@
Index: src/kmk/kmkbuiltin/expr.c
===================================================================
--- src/kmk/kmkbuiltin/expr.c.orig
+++ src/kmk/kmkbuiltin/expr.c
@@ -304,6 +304,8 @@ eval6(void)
return v;
} else {
error();
+ /* dummy return in order to make the build checks happy (this will never be reached) */
+ return NULL;
}
/* NOTREACHED */
}

View File

@ -1,10 +0,0 @@
--- Config.kmk.old 2008-05-04 16:26:48.000000000 +0200
+++ Config.kmk 2008-05-04 16:27:05.000000000 +0200
@@ -79,6 +79,7 @@
$(warning Neither SvnInfo nor .svn/* was found in the root. Will have to cook up something too keep the build happy.)
$(KBUILD_SVN_INFO_KMK):
$(RM) -f $@
+ @$(MKDIR) -p $(@D)
$(APPEND) $@ 'KBUILD_SVN_REV := 0'
$(APPEND) $@ 'KBUILD_SVN_URL := /dev/null'

View File

@ -1,3 +1,24 @@
-------------------------------------------------------------------
Thu Sep 25 16:35:58 CEST 2008 - mkudlvasr@suse.cz
- merge into openSUSE Factory
-------------------------------------------------------------------
Thu Sep 18 19:53:10 CEST 2008 - suse-tux@gmx.de
- added Patch2 (kbuild-dummy_noreturn.diff) in order to make the build checks happy
-------------------------------------------------------------------
Sun Sep 14 20:13:08 CEST 2008 - suse-tux@gmx.de
- update to 0.1.3svn1785
-------------------------------------------------------------------
Sun Sep 14 00:39:02 CEST 2008 - suse-tux@gmx.de
- update to 0.1.3svn1775
- removed kbuild-r1599_KBUILD_SVN_INFO_KMK-fix.diff
-------------------------------------------------------------------
Tue May 6 23:52:43 CEST 2008 - dmueller@suse.de

View File

@ -1,10 +1,17 @@
#
# spec file for package kbuild (Version 0.1.2svn1599)
# spec file for package kbuild (Version 0.1.3svn1785)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
@ -17,12 +24,12 @@ BuildRequires: bison flex libacl-devel
License: GPL v2 or later
Group: Development/Tools/Building
Summary: framework for writing simple makefiles for complex tasks
Version: 0.1.2svn1599
Version: 0.1.3svn1785
Release: 1
Source0: %name-%{version}.tar.bz2
Source0: %{name}-%{version}.tar.bz2
Patch0: kbuild-man.diff
Patch1: warnings.diff
Patch2: kbuild-r1599_KBUILD_SVN_INFO_KMK-fix.diff
Patch2: kbuild-dummy_noreturn.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -73,9 +80,18 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-, root, root)
%{_prefix}/bin/*
%{_mandir}/*/*
/usr/share/kBuild
%{_datadir}/kBuild
%changelog
* Thu Sep 25 2008 mkudlvasr@suse.cz
- merge into openSUSE Factory
* Thu Sep 18 2008 suse-tux@gmx.de
- added Patch2 (kbuild-dummy_noreturn.diff) in order to make the build checks happy
* Sun Sep 14 2008 suse-tux@gmx.de
- update to 0.1.3svn1785
* Sun Sep 14 2008 suse-tux@gmx.de
- update to 0.1.3svn1775
- removed kbuild-r1599_KBUILD_SVN_INFO_KMK-fix.diff
* Wed May 07 2008 dmueller@suse.de
- fix uninit return values
* Sun May 04 2008 suse-tux@gmx.de