Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
@ -1 +0,0 @@
|
||||
896684186ac790f124d157508e9a7bc194b0fc9c SOURCES/v1.6.0.tar.gz
|
5
.gitignore
vendored
5
.gitignore
vendored
@ -1 +1,4 @@
|
||||
SOURCES/v1.6.0.tar.gz
|
||||
/dtc-*.tgz
|
||||
/dtc-*.tar.xz
|
||||
/dtc-*.tar.gz
|
||||
/dtc-*.tar.bz2
|
||||
|
@ -0,0 +1,33 @@
|
||||
From c2f48c8694e77d619b1497daa8e6fd2bd3a78c9b Mon Sep 17 00:00:00 2001
|
||||
From: Miroslav Rezanina <mrezanin@redhat.com>
|
||||
Date: Fri, 28 Jun 2024 02:51:00 -0400
|
||||
Subject: [PATCH] pylibfdt/Makefile.pylibfdt: Use CFLAGS when building module
|
||||
|
||||
Building python module do not use CLFAGS properly and so produced
|
||||
files are missing some flags.
|
||||
|
||||
Adding explicit setting of CFLAGS environment variable to ensure
|
||||
all flags are used. We just need to disable Werror flag that is causing
|
||||
build to fiail.
|
||||
|
||||
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
||||
---
|
||||
pylibfdt/Makefile.pylibfdt | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/pylibfdt/Makefile.pylibfdt b/pylibfdt/Makefile.pylibfdt
|
||||
index 82f565e..992ef6a 100644
|
||||
--- a/pylibfdt/Makefile.pylibfdt
|
||||
+++ b/pylibfdt/Makefile.pylibfdt
|
||||
@@ -17,7 +17,7 @@ endif
|
||||
|
||||
$(PYMODULE): $(PYLIBFDT_srcs) $(LIBFDT_archive) $(SETUP)
|
||||
@$(VECHO) PYMOD $@
|
||||
- $(PYTHON) $(SETUP) $(SETUPFLAGS) build_ext --build-lib=$(PYLIBFDT_dir)
|
||||
+ CFLAGS="$(CFLAGS) -Wno-error" $(PYTHON) $(SETUP) $(SETUPFLAGS) build_ext
|
||||
|
||||
install_pylibfdt: $(PYMODULE)
|
||||
@$(VECHO) INSTALL-PYLIB
|
||||
--
|
||||
2.39.3
|
||||
|
100
SPECS/dtc.spec
100
SPECS/dtc.spec
@ -1,100 +0,0 @@
|
||||
Name: dtc
|
||||
Version: 1.6.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Device Tree Compiler
|
||||
Group: Development/Tools
|
||||
License: GPLv2+
|
||||
URL: https://devicetree.org/
|
||||
Source: https://github.com/dgibson/dtc/archive/v%{version}.tar.gz
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
|
||||
BuildRequires: gcc make
|
||||
BuildRequires: flex bison
|
||||
|
||||
%description
|
||||
Devicetree is a data structure for describing hardware. Rather than hard coding
|
||||
every detail of a device into an operating system, many aspects of the hardware
|
||||
can be described in a data structure that is passed to the operating system at
|
||||
boot time. The devicetree is used by OpenFirmware, OpenPOWER Abstraction Layer
|
||||
(OPAL), Power Architecture Platform Requirements (PAPR) and in the standalone
|
||||
Flattened Device Tree (FDT) form.
|
||||
|
||||
%package -n libfdt
|
||||
Summary: Device tree library
|
||||
Group: Development/Libraries
|
||||
|
||||
%description -n libfdt
|
||||
libfdt is a library to process Open Firmware style device trees on various
|
||||
architectures.
|
||||
|
||||
%package -n libfdt-devel
|
||||
Summary: Development headers for device tree library
|
||||
Group: Development/Libraries
|
||||
Requires: libfdt = %{version}-%{release}
|
||||
|
||||
%description -n libfdt-devel
|
||||
This package provides development files for libfdt
|
||||
|
||||
%prep
|
||||
%setup -q -n dtc-%{version}
|
||||
|
||||
|
||||
%build
|
||||
make %{?_smp_mflags} V=1 CC="gcc $RPM_OPT_FLAGS $RPM_LD_FLAGS" NO_PYTHON=1
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT SETUP_PREFIX=$RPM_BUILD_ROOT/usr PREFIX=/usr LIBDIR=%{_libdir} NO_PYTHON=1
|
||||
rm -rf $RPM_BUILD_ROOT/%{_libdir}/*.a
|
||||
|
||||
# we don't want or need ftdump and it conflicts with freetype-demos, so drop
|
||||
# it (rhbz 797805)
|
||||
rm -f $RPM_BUILD_ROOT/%{_bindir}/ftdump
|
||||
|
||||
%post -n libfdt -p /sbin/ldconfig
|
||||
|
||||
%postun -n libfdt -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%license GPL
|
||||
%doc Documentation/manual.txt
|
||||
%{_bindir}/*
|
||||
|
||||
%files -n libfdt
|
||||
%defattr(-,root,root,-)
|
||||
%license GPL
|
||||
%{_libdir}/libfdt-%{version}.so
|
||||
%{_libdir}/libfdt.so.*
|
||||
|
||||
%files -n libfdt-devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/libfdt.so
|
||||
%{_includedir}/*
|
||||
|
||||
%changelog
|
||||
* Fri Apr 17 2020 Miroslav Rezanina <mrezanin@redhat.com> - 1.6.0-1
|
||||
- Use 1.6.0 version [bz#1679676]
|
||||
- Resolves: bz#1679676
|
||||
(dtc changes blocked until gating tests are added)
|
||||
|
||||
* Thu Aug 09 2018 Miroslav Rezanina <mrezanin@redhat.com> - 1.4.6-1
|
||||
- Updated for RHEL 8 [bz#1518440]
|
||||
- Resolves: bz#1518440
|
||||
(Prepare dtc for RHEL-8.0 )
|
||||
|
||||
* Mon Mar 06 2017 Miroslav Rezanina <mrezanin@redhat.com> - 1.4.3-1
|
||||
- Rebase to 1.4.3 [bz#1427157]
|
||||
- Resolves: bz#1427157
|
||||
(package libfdt 1.4.3, when available)
|
||||
|
||||
* Tue Aug 19 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.4.0-2
|
||||
- Update power macro for ppc64le
|
||||
|
||||
* Fri Jul 25 2014 Miroslav Rezanina <mrezanin@redhat.com> - 1.4.0-1
|
||||
- Initial version
|
||||
|
63
dtc-pylibfdt-libfdt.i-Use-SWIG_AppendOutput.patch
Normal file
63
dtc-pylibfdt-libfdt.i-Use-SWIG_AppendOutput.patch
Normal file
@ -0,0 +1,63 @@
|
||||
From 418bb0eb622691af31b1b638ce287fc85fac16b2 Mon Sep 17 00:00:00 2001
|
||||
From: Miroslav Rezanina <mrezanin@redhat.com>
|
||||
Date: Fri, 1 Nov 2024 07:44:36 -0400
|
||||
Subject: [PATCH 1/2] pylibfdt/libfdt.i: Use SWIG_AppendOutput
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
RH-Author: Miroslav Rezanina <mrezanin@redhat.com>
|
||||
RH-MergeRequest: 2: Fix build in RHEL 10
|
||||
RH-Jira: RHEL-64318 RHEL-65448
|
||||
RH-Commit: [1/2] 7874ef09ebd58c2591e42cebe821dc6b20719dc3 (mrezanin/centos-src-dtc)
|
||||
|
||||
Swig has changed language specific AppendOutput functions. The helper
|
||||
macro SWIG_AppendOutput remains unchanged. Use that instead
|
||||
of SWIG_Python_AppendOutput, which would require an extra parameter
|
||||
since swig 4.3.0.
|
||||
|
||||
| /home/flk/poky/build-hypr/tmp/work/x86_64-linux/python3-dtc-native/1.7.0/git/pylibfdt/libfdt_wrap.c: In function ‘_wrap_fdt_next_node’:
|
||||
| /home/flk/poky/build-hypr/tmp/work/x86_64-linux/python3-dtc-native/1.7.0/git/pylibfdt/libfdt_wrap.c:5598:17: error: too few arguments to function ‘SWIG_Python_AppendOutput’
|
||||
| 5598 | resultobj = SWIG_Python_AppendOutput(resultobj, val);
|
||||
|
||||
Signed-off-by: Markus Volk <f_l_k@t-online.de>
|
||||
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
|
||||
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
||||
---
|
||||
pylibfdt/libfdt.i | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/pylibfdt/libfdt.i b/pylibfdt/libfdt.i
|
||||
index 2361e22..e04053e 100644
|
||||
--- a/pylibfdt/libfdt.i
|
||||
+++ b/pylibfdt/libfdt.i
|
||||
@@ -1080,7 +1080,7 @@ typedef uint32_t fdt32_t;
|
||||
fdt_string(fdt1, fdt32_to_cpu($1->nameoff)));
|
||||
buff = PyByteArray_FromStringAndSize(
|
||||
(const char *)($1 + 1), fdt32_to_cpu($1->len));
|
||||
- resultobj = SWIG_Python_AppendOutput(resultobj, buff);
|
||||
+ resultobj = SWIG_AppendOutput(resultobj, buff);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1121,7 +1121,7 @@ typedef uint32_t fdt32_t;
|
||||
|
||||
%typemap(argout) int *depth {
|
||||
PyObject *val = Py_BuildValue("i", *arg$argnum);
|
||||
- resultobj = SWIG_Python_AppendOutput(resultobj, val);
|
||||
+ resultobj = SWIG_AppendOutput(resultobj, val);
|
||||
}
|
||||
|
||||
%apply int *depth { int *depth };
|
||||
@@ -1137,7 +1137,7 @@ typedef uint32_t fdt32_t;
|
||||
if (PyTuple_GET_SIZE(resultobj) == 0)
|
||||
resultobj = val;
|
||||
else
|
||||
- resultobj = SWIG_Python_AppendOutput(resultobj, val);
|
||||
+ resultobj = SWIG_AppendOutput(resultobj, val);
|
||||
}
|
||||
}
|
||||
|
||||
--
|
||||
2.39.3
|
||||
|
449
dtc.spec
Normal file
449
dtc.spec
Normal file
@ -0,0 +1,449 @@
|
||||
%global with_mingw 0
|
||||
|
||||
%if 0%{?fedora}
|
||||
%global with_mingw 1
|
||||
%endif
|
||||
|
||||
%undefine _auto_set_build_flags
|
||||
|
||||
Name: dtc
|
||||
Version: 1.7.0
|
||||
Release: 12%{?dist}
|
||||
Summary: Device Tree Compiler
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://devicetree.org/
|
||||
|
||||
Source0: https://www.kernel.org/pub/software/utils/%{name}/%{name}-%{version}.tar.xz
|
||||
|
||||
Patch1: 0001-pylibfdt-Makefile.pylibfdt-Use-CFLAGS-when-building-.patch
|
||||
# For RHEL-64318 - [RHEL10][CS10] dtc fails to build with Swig 4.3.0
|
||||
Patch2: dtc-pylibfdt-libfdt.i-Use-SWIG_AppendOutput.patch
|
||||
|
||||
BuildRequires: gcc make
|
||||
BuildRequires: flex bison swig
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-pip
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-setuptools_scm
|
||||
BuildRequires: python3-wheel
|
||||
|
||||
%if %{with_mingw}
|
||||
BuildRequires: mingw32-filesystem >= 95
|
||||
BuildRequires: mingw32-gcc-c++
|
||||
|
||||
BuildRequires: meson
|
||||
|
||||
BuildRequires: mingw64-filesystem >= 95
|
||||
BuildRequires: mingw64-gcc-c++
|
||||
%endif
|
||||
|
||||
%description
|
||||
Devicetree is a data structure for describing hardware. Rather than hard coding
|
||||
every detail of a device into an operating system, many aspects of the hardware
|
||||
can be described in a data structure that is passed to the operating system at
|
||||
boot time. The devicetree is used by OpenFirmware, OpenPOWER Abstraction Layer
|
||||
(OPAL), Power Architecture Platform Requirements (PAPR) and in the standalone
|
||||
Flattened Device Tree (FDT) form.
|
||||
|
||||
%package -n libfdt
|
||||
Summary: Device tree library
|
||||
|
||||
%description -n libfdt
|
||||
libfdt is a library to process Open Firmware style device trees on various
|
||||
architectures.
|
||||
|
||||
%package -n libfdt-devel
|
||||
Summary: Development headers for device tree library
|
||||
Requires: libfdt = %{version}-%{release}
|
||||
|
||||
%description -n libfdt-devel
|
||||
This package provides development files for libfdt
|
||||
|
||||
%package -n libfdt-static
|
||||
Summary: Static version of device tree library
|
||||
Requires: libfdt-devel = %{version}-%{release}
|
||||
|
||||
%description -n libfdt-static
|
||||
This package provides the static library of libfdt
|
||||
|
||||
%package -n python3-libfdt
|
||||
Summary: Python 3 bindings for device tree library
|
||||
%{?python_provide:%python_provide python2-libfdt}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description -n python3-libfdt
|
||||
This package provides python2 bindings for libfdt
|
||||
|
||||
%if %{with_mingw}
|
||||
%package -n mingw32-libfdt
|
||||
Summary: MinGW Device tree library
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n mingw32-libfdt
|
||||
libfdt is a library to process Open Firmware style device trees on various
|
||||
architectures.
|
||||
|
||||
%package -n mingw32-libfdt-static
|
||||
Summary: Static version of MinGW Device tree library
|
||||
Requires: mingw32-libfdt = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n mingw32-libfdt-static
|
||||
This package provides the static library of mingw32-libfdt
|
||||
|
||||
%package -n mingw64-libfdt
|
||||
Summary: MinGW Device tree library
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n mingw64-libfdt
|
||||
libfdt is a library to process Open Firmware style device trees on various
|
||||
architectures.
|
||||
|
||||
%package -n mingw64-libfdt-static
|
||||
Summary: Static version of MinGW Device tree library
|
||||
Requires: mingw64-libfdt = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description -n mingw64-libfdt-static
|
||||
This package provides the static library of mingw64-libfdt
|
||||
|
||||
%{?mingw_debug_package}
|
||||
%endif
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
# to prevent setuptools from installing an .egg, we need to pass --root to setup.py install
|
||||
# since $(PREFIX) already contains %%{buildroot}, we set root to /
|
||||
# .eggs are going to be deprecated, see https://github.com/pypa/pip/issues/11501
|
||||
sed -i 's@--prefix=$(PREFIX)@--prefix=$(PREFIX) --root=/@' pylibfdt/Makefile.pylibfdt
|
||||
|
||||
|
||||
%build
|
||||
export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
|
||||
%{make_build} EXTRA_CFLAGS="%{build_cflags} -Wno-redundant-decls -Wno-cast-qual -Wno-missing-prototypes" LDFLAGS="%{build_ldflags}"
|
||||
|
||||
%if %{with_mingw}
|
||||
%mingw_meson -Dtools=false
|
||||
%mingw_ninja
|
||||
%endif
|
||||
|
||||
%install
|
||||
export SETUPTOOLS_SCM_PRETEND_VERSION=%{version}
|
||||
%{make_install} DESTDIR=%{buildroot} PREFIX=%{buildroot}/%{_prefix} \
|
||||
LIBDIR=%{_libdir} BINDIR=%{_bindir} INCLUDEDIR=%{_includedir} \
|
||||
EXTRA_CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}"
|
||||
|
||||
# we don't want ftdump and it conflicts with freetype-demos, so drop it (rhbz 797805)
|
||||
rm -f $RPM_BUILD_ROOT/%{_bindir}/ftdump
|
||||
|
||||
%if %{with_mingw}
|
||||
%mingw_ninja_install
|
||||
%mingw_debug_install_post
|
||||
%endif
|
||||
|
||||
%ldconfig_scriptlets -n libfdt
|
||||
|
||||
%files
|
||||
%license GPL
|
||||
%doc Documentation/manual.txt
|
||||
%{_bindir}/*
|
||||
|
||||
%files -n libfdt
|
||||
%license GPL
|
||||
%{_libdir}/libfdt-%{version}.so
|
||||
%{_libdir}/libfdt.so.*
|
||||
|
||||
%files -n libfdt-static
|
||||
%{_libdir}/libfdt.a
|
||||
|
||||
%files -n libfdt-devel
|
||||
%{_libdir}/libfdt.so
|
||||
%{_includedir}/*
|
||||
|
||||
%files -n python3-libfdt
|
||||
%{python3_sitearch}/libfdt-%{version}-py%{python3_version}.egg-info/
|
||||
%{python3_sitearch}/_libfdt%{python3_ext_suffix}
|
||||
%pycached %{python3_sitearch}/libfdt.py
|
||||
|
||||
%if %{with_mingw}
|
||||
%files -n mingw32-libfdt
|
||||
%license GPL
|
||||
%{mingw32_bindir}/libfdt-1.dll
|
||||
%{mingw32_includedir}/*fdt*.h
|
||||
%{mingw32_libdir}/libfdt.dll.a
|
||||
%{mingw32_libdir}/pkgconfig/libfdt.pc
|
||||
|
||||
%files -n mingw32-libfdt-static
|
||||
%{mingw32_libdir}/libfdt.a
|
||||
|
||||
%files -n mingw64-libfdt
|
||||
%license GPL
|
||||
%{mingw64_bindir}/libfdt-1.dll
|
||||
%{mingw64_includedir}/*fdt*.h
|
||||
%{mingw64_libdir}/libfdt.dll.a
|
||||
%{mingw64_libdir}/pkgconfig/libfdt.pc
|
||||
|
||||
%files -n mingw64-libfdt-static
|
||||
%{mingw64_libdir}/libfdt.a
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Tue Nov 12 2024 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.0-12
|
||||
- dtc-pylibfdt-libfdt.i-Use-SWIG_AppendOutput.patch [RHEL-64318 RHEL-65448]
|
||||
- dtc-Disable-problematic-waring-flags.patch [RHEL-64318 RHEL-65448]
|
||||
- Resolves: RHEL-64318
|
||||
([RHEL10][CS10] dtc fails to build with Swig 4.3.0)
|
||||
- Resolves: RHEL-65448
|
||||
([RHEL10][CS10][FTBFS] dtc fails to build on CS10 and RHEL10)
|
||||
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.7.0-11
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Fri Jun 28 2024 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.0-10
|
||||
- Fix missing dynamic tags for aarch64 python3 pylibfdt
|
||||
- Resolves: RHEL-33493
|
||||
(Annocheck FAIL: bind-now (dtc))
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.7.0-9
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Mon May 27 2024 Miroslav Rezanina <mrezanin@redhat.com> - 1.7.0-8
|
||||
- dtc-Properly-harden-built-packages.patch [RHEL-33493]
|
||||
- Resolves: RHEL-33493
|
||||
(Annocheck FAIL: bind-now (dtc))
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Sep 27 2023 Miro Hrončok <mhroncok@redhat.com> - 1.7.0-5
|
||||
- Don't install a Python .egg
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jul 05 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 1.7.0-3
|
||||
- Rebuilt for Python 3.12
|
||||
|
||||
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 1.7.0-2
|
||||
- Rebuilt for Python 3.12
|
||||
|
||||
* Mon Mar 20 2023 Peter Robinson <pbrobinson@fedoraproject.org> - 1.7.0-1
|
||||
- Update to 1.7.0
|
||||
|
||||
* Mon Feb 13 2023 Josh Boyer <jwboyer@fedoraproject.org> - 1.6.1-8
|
||||
- migrated to SPDX license
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Sep 14 2022 Marc-André Lureau <marcandre.lureau@redhat.com> - 1.6.1-6
|
||||
- Add mingw sub-packages. Fixes rhbz#1997511
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.6.1-4
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jun 08 2021 Peter Robinson <pbrobinson@fedoraproject.org> - 1.6.1-1
|
||||
- Update to 1.6.1
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.6.0-5
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.6.0-2
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Fri Mar 13 2020 Peter Robinson <pbrobinson@fedoraproject.org> - 1.6.0-1
|
||||
- Update to 1.6.0
|
||||
|
||||
* Thu Jan 30 2020 Peter Robinson <pbrobinson@fedoraproject.org> 1.5.1-4
|
||||
- Upstream patch to fix gcc-10 build
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Jan 14 2020 Tom Stellard <tstellar@redhat.com> - 1.5.1-2
|
||||
- Use __cc macro instead of hard-coding gcc
|
||||
|
||||
* Wed Sep 11 2019 Peter Robinson <pbrobinson@fedoraproject.org> 1.5.1-1
|
||||
- New dtc 1.5.1 release
|
||||
|
||||
* Tue Sep 10 2019 Miro Hrončok <mhroncok@redhat.com> - 1.5.0-3
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Tue Mar 12 2019 Peter Robinson <pbrobinson@fedoraproject.org> 1.5.0-1
|
||||
- New dtc 1.5.0 release
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Tue Jan 15 2019 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.7-2
|
||||
- Upstream fix for crash (rhbz 1663054)
|
||||
|
||||
* Sat Aug 18 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.7-1
|
||||
- New dtc 1.4.7 release
|
||||
|
||||
* Tue Jul 17 2018 Miro Hrončok <mhroncok@redhat.com> - 1.4.6-7
|
||||
- Update Python macros to new packaging standards
|
||||
(See https://fedoraproject.org/wiki/Changes/Move_usr_bin_python_into_separate_package)
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.6-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Jun 06 2018 Bas Mevissen <abuse@basmevissen.nl> 1.4.6-5
|
||||
- Add static library package, see BZ#1440975
|
||||
|
||||
* Wed Mar 7 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.6-4
|
||||
- Add gcc BR
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Fri Jan 26 2018 Florian Weimer <fweimer@redhat.com> - 1.4.6-2
|
||||
- Use Fedora build flags during build
|
||||
|
||||
* Mon Jan 22 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.6-1
|
||||
- New dtc 1.4.6 release
|
||||
|
||||
* Thu Sep 28 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.5-1
|
||||
- New dtc 1.4.5 release
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jun 12 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.4-2
|
||||
- Add upstream patches for python bindings
|
||||
|
||||
* Fri Mar 17 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.4-1
|
||||
- New dtc 1.4.4 release
|
||||
|
||||
* Tue Feb 28 2017 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.2-3.0931cea
|
||||
- Rebase to same git snapshot that kernel is using for DT Overlays
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Sun Sep 11 2016 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.2-1
|
||||
- New dtc 1.4.2 release
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jun 16 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.1-4
|
||||
- Use %%license
|
||||
|
||||
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.4.1-3
|
||||
- Rebuilt for Fedora 23 Change
|
||||
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
||||
|
||||
* Mon Jan 5 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.1-2
|
||||
- Use tar file from kernel.org
|
||||
|
||||
* Mon Jan 5 2015 Peter Robinson <pbrobinson@fedoraproject.org> 1.4.1-1
|
||||
- New dtc 1.4.1 release
|
||||
- Update URL and Sources
|
||||
- Cleanup spec
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sat Dec 21 2013 Ville Skyttä <ville.skytta@iki.fi> - 1.4.0-3
|
||||
- Avoid shell invocation and fix deps of libfdt %%post* scripts.
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Mon Jun 24 2013 Josh Boyer <jwboyer@redhat.com> - 1.4.0-1
|
||||
- New dtc 1.4.0 release (rhbz 977480)
|
||||
|
||||
* Thu Jun 06 2013 Josh Boyer <jwboyer@redhat.com> - 1.3.0-8
|
||||
- Fix type specifier error (from Dan Horák)
|
||||
|
||||
* Mon Jun 03 2013 Josh Boyer <jwboyer@redhat.com> - 1.3.0-7
|
||||
- Update dtc to include libfdt_env.h (rhbz 969955)
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Feb 27 2012 Josh Boyer <jwboyer@redhat.com>
|
||||
- Don't package ftdump (rhbz 797805)
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Tue Jun 28 2011 Josh Boyer <jwboyer@gmail.com>
|
||||
- Fixup error during tarball upload
|
||||
|
||||
* Tue Jun 28 2011 Josh Boyer <jwboyer@gmail.com>
|
||||
- Point to git tree for URL (#717217)
|
||||
- Add libfdt subpackages based on patch from Paolo Bonzini (#443882)
|
||||
- Update to latest release
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Thu Aug 28 2008 Josh Boyer <jwboyer@gmail.com>
|
||||
- Update to latest release
|
||||
|
||||
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.1.0-2
|
||||
- Autorebuild for GCC 4.3
|
||||
|
||||
* Thu Jan 24 2008 Josh Boyer <jwboyer@gmail.com>
|
||||
- Update to 1.1.0
|
||||
|
||||
* Tue Aug 21 2007 Josh Boyer <jwboyer@jdub.homelinux.org>
|
||||
- Bump and rebuild
|
||||
|
||||
* Thu Aug 09 2007 Josh Boyer <jwboyer@jdub.homelinux.org>
|
||||
- Update to official 1.0.0 release
|
||||
|
||||
* Fri Aug 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org>
|
||||
- Update license field
|
||||
|
||||
* Mon Jul 09 2007 Josh Boyer <jwboyer@jdub.homelinux.org>
|
||||
- Update to new snapshot
|
||||
|
||||
* Tue Jul 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org>
|
||||
- Update to new snapshot
|
||||
- Drop upstreamed install patch
|
||||
|
||||
* Fri Jun 29 2007 Josh Boyer <jwboyer@jdub.homelinux.org>
|
||||
- Fix packaging errors
|
||||
|
||||
* Thu Jun 28 2007 Josh Boyer <jwboyer@jdub.homelinux.org>
|
||||
- Initial packaging
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule { test_case_name: osci.brew-build.tier0.functional }
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (dtc-1.7.0.tar.xz) = d3ba6902a9a2f2cdbaff55f12fca3cfe4a1ec5779074a38e3d8b88097c7abc981835957e8ce72971e10c131e05fde0b1b961768e888ff96d89e42c75edb53afb
|
12
tests/tests.yml
Normal file
12
tests/tests.yml
Normal file
@ -0,0 +1,12 @@
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
tags:
|
||||
- classic
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tests:
|
||||
- simple:
|
||||
dir: .
|
||||
run: "/usr/bin/dtc --version"
|
||||
required_packages:
|
||||
- dtc
|
Loading…
Reference in New Issue
Block a user