dtc: updated to version 1.7.1

This commit is contained in:
Juergen Daubert 2024-09-13 16:43:18 +02:00
parent 1c2fb62868
commit b1f40e6024
4 changed files with 9 additions and 31 deletions

View File

@ -14,7 +14,7 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libfdt.a -rw-r--r-- root/root usr/lib/libfdt.a
lrwxrwxrwx root/root usr/lib/libfdt.so -> libfdt.so.1 lrwxrwxrwx root/root usr/lib/libfdt.so -> libfdt.so.1
lrwxrwxrwx root/root usr/lib/libfdt.so.1 -> libfdt.so.1.7.0 lrwxrwxrwx root/root usr/lib/libfdt.so.1 -> libfdt.so.1.7.1
-rwxr-xr-x root/root usr/lib/libfdt.so.1.7.0 -rwxr-xr-x root/root usr/lib/libfdt.so.1.7.1
drwxr-xr-x root/root usr/lib/pkgconfig/ drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libfdt.pc -rw-r--r-- root/root usr/lib/pkgconfig/libfdt.pc

View File

@ -1,6 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eIIa9GkuWvuvdIyiO0XTUcFWb3/qibaSp79tPE5zv51xA4HKqvF18ZteivNhfxfMBDzA56s4UG3xocimZwwFgI= RWSE3ohX2g5d/VJKvNwinKwXo+fCtfjsEgzOcBNug7KzsSJlABCG1TjR4FiYHIzxxRFi+Q7VQVmYqxkqOGQFD/l5bE2JiBB4zQs=
SHA256 (Pkgfile) = 51e1f36cc124e0f80d45a266d1136e12ebfb333204b6cdf1e63a8d786a78046f SHA256 (Pkgfile) = 9fcef9f335f8a390b6327db7f8429e07343e63aa9885434b0f6500f44b9ec7ba
SHA256 (.footprint) = d11e3a31345e5fb0aad1b36197a5b9aec939421d67c4957b506198126a56f15a SHA256 (.footprint) = b95ab089aed9090794ee1cb06aaaf6425ce81e15fdf561a6158fd2f77504391b
SHA256 (dtc-1.7.0.tar.xz) = 29edce3d302a15563d8663198bbc398c5a0554765c83830d0d4c0409d21a16c4 SHA256 (dtc-1.7.1.tar.xz) = 398098bac205022b39d3dce5982b98c57f1023f3721a53ebcbb782be4cf7885e
SHA256 (pyscm.patch) = 332f69313911cd174758ee5462b67d96ae3cfe7810eb7b94cb340524ce7d1665

View File

@ -3,15 +3,12 @@
# Maintainer: Juergen Daubert, jue at crux dot nu # Maintainer: Juergen Daubert, jue at crux dot nu
name=dtc name=dtc
version=1.7.0 version=1.7.1
release=2 release=1
source=(https://www.kernel.org/pub/software/utils/$name/$name-$version.tar.xz source=(https://www.kernel.org/pub/software/utils/$name/$name-$version.tar.xz)
pyscm.patch)
build() { build() {
sed '/version:/s/6/7/' -i $name-$version/{,libfdt}/meson.build
CFLAGS+=" -ffat-lto-objects" CFLAGS+=" -ffat-lto-objects"
patch -p1 -d $name-$version -i $SRC/pyscm.patch
meson setup build $name-$version \ meson setup build $name-$version \
--prefix=/usr \ --prefix=/usr \

View File

@ -1,18 +0,0 @@
diff --git a/setup.py b/setup.py
index e82a832..da01efd 100755
--- a/setup.py
+++ b/setup.py
@@ -49,11 +49,8 @@ class build_py(_build_py):
setup(
name='libfdt',
- use_scm_version={
- "root": srcdir,
- },
cmdclass = {'build_py' : build_py},
- setup_requires = ['setuptools_scm'],
+ version="1.7.0",
author='Simon Glass',
author_email='sjg@chromium.org',
description='Python binding for libfdt',