From 0c2a0b5f8c7ecf0141c3d98c4a60d442ebb4754568a004cf9f7ff6a668c5d258 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Thu, 24 Jan 2008 20:22:04 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dtc?expand=0&rev=4 --- dtc-1.0.0.tar.bz2 | 3 --- dtc-1.1.0.tar.bz2 | 3 +++ dtc.changes | 6 ++++++ dtc.spec | 25 ++++++++++++++----------- dtc.truncated_property.patch | 25 ------------------------- 5 files changed, 23 insertions(+), 39 deletions(-) delete mode 100644 dtc-1.0.0.tar.bz2 create mode 100644 dtc-1.1.0.tar.bz2 delete mode 100644 dtc.truncated_property.patch diff --git a/dtc-1.0.0.tar.bz2 b/dtc-1.0.0.tar.bz2 deleted file mode 100644 index 94747cd..0000000 --- a/dtc-1.0.0.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9081fad5614701509786454dfe124bfec6fac4d371ed92e5d760810d13eb5543 -size 57464 diff --git a/dtc-1.1.0.tar.bz2 b/dtc-1.1.0.tar.bz2 new file mode 100644 index 0000000..97c325f --- /dev/null +++ b/dtc-1.1.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a5ccd1dbb012fee852b6fe2281511f76a1132a93ffa2ff3ad0119645ba28402 +size 74224 diff --git a/dtc.changes b/dtc.changes index 375e58e..8c974e2 100644 --- a/dtc.changes +++ b/dtc.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jan 24 19:01:10 CET 2008 - olh@suse.de + +- update to 1.1.0 final + clearify license issues, run testsuite + ------------------------------------------------------------------- Fri Aug 10 23:09:22 CEST 2007 - olh@suse.de diff --git a/dtc.spec b/dtc.spec index 49f6c14..cca0acb 100644 --- a/dtc.spec +++ b/dtc.spec @@ -1,7 +1,7 @@ # -# spec file for package dtc (Version 1.0.0) +# spec file for package dtc (Version 1.1.0) # -# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. +# 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. # @@ -10,16 +10,15 @@ Name: dtc -URL: http://dtc.ozlabs.org/ -Version: 1.0.0 +Url: http://dtc.ozlabs.org/ +Version: 1.1.0 Release: 1 -Buildrequires: bison flex +BuildRequires: bison flex Summary: device-tree compiler License: GPL v2 or later Group: Development/Tools/Building BuildRoot: %{_tmppath}/%{name}-%{version}-build Source: dtc-%{version}.tar.bz2 -Patch: dtc.truncated_property.patch %description PowerPC kernels are moving towards requiring a small Open @@ -38,10 +37,10 @@ Authors: %prep %setup -q -n dtc -%patch -p1 %build make CFLAGS="$RPM_OPT_FLAGS" +make CFLAGS="$RPM_OPT_FLAGS" check %install mkdir -p $RPM_BUILD_ROOT/usr/bin @@ -52,13 +51,17 @@ rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) +%doc README.license Documentation/manual.txt /usr/bin/* %changelog -* Fri Aug 10 2007 - olh@suse.de +* Thu Jan 24 2008 olh@suse.de +- update to 1.1.0 final + clearify license issues, run testsuite +* Fri Aug 10 2007 olh@suse.de - update to 1.0.0 final - first official release -* Mon Jun 18 2007 - olh@suse.de +* Mon Jun 18 2007 olh@suse.de - update to current state dtc: Fix recognition of whitespace characters Implement the -R option and add a -S option. @@ -67,8 +70,8 @@ rm -rf $RPM_BUILD_ROOT Assemble the blob in memory before writing it out. Fix the -S to modify the totalsize properly. dtc: parse NOP in dtb input -* Thu Mar 29 2007 - olh@suse.de +* Thu Mar 29 2007 olh@suse.de - add flex and bison to buildrequires fix endian bug in ftdump, add C style includes -* Fri Mar 23 2007 - olh@suse.de +* Fri Mar 23 2007 olh@suse.de - initial package to build PS3 kernel diff --git a/dtc.truncated_property.patch b/dtc.truncated_property.patch deleted file mode 100644 index 4c166e0..0000000 --- a/dtc.truncated_property.patch +++ /dev/null @@ -1,25 +0,0 @@ -tests/truncated_property.c:45: warning: 'err' is used uninitialized in this function - ---- - tests/truncated_property.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - ---- a/tests/truncated_property.c -+++ b/tests/truncated_property.c -@@ -33,7 +33,6 @@ int main(int argc, char *argv[]) - { - void *fdt = &_truncated_property; - const void *prop; -- int err; - int len; - - test_init(argc, argv); -@@ -43,7 +42,7 @@ int main(int argc, char *argv[]) - FAIL("fdt_getprop() succeeded on truncated property"); - if (len != -FDT_ERR_BADSTRUCTURE) - FAIL("fdt_getprop() failed with \"%s\" instead of \"%s\"", -- fdt_strerror(err), fdt_strerror(-FDT_ERR_BADSTRUCTURE)); -+ fdt_strerror(len), fdt_strerror(-FDT_ERR_BADSTRUCTURE)); - - PASS(); - }