diff options
| author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-09-23 15:57:54 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-09-23 07:38:38 -0700 |
| commit | 2dc8b3d0f2d5bee1aaab13627959bde5b49a2ba5 (patch) | |
| tree | f15f588dcd732323a018a1df0906fc699cb2ba5f | |
| parent | 959b07135cdf9d40ea1ee72b6e53b6076cf63ae2 (diff) | |
| download | meta-openembedded-2dc8b3d0f2d5bee1aaab13627959bde5b49a2ba5.tar.gz | |
fatresize: upgrade 1.1.0 -> 1.1.0-3
Drop a patch that has been incorporated in this release.
Shortlog:
d/control: Update maintainer email
Add changelog entry for previous commit
Apply wrap-and-sort -at
configure: Do not add -D_FILE_OFFSET_BITS to CFLAGS
Clarify changelog entry
releasing package fatresize version 1.1.0-2
Ignore debian/files
Bump debhelper from old 12 to 13.
Build-depend on pkgconf rather than pkg-config
releasing package fatresize version 1.1.0-3
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-filesystems/recipes-utils/fatresize/fatresize/0001-configure-Do-not-add-D_FILE_OFFSET_BITS-to-CFLAGS.patch | 34 | ||||
| -rw-r--r-- | meta-filesystems/recipes-utils/fatresize/fatresize_1.1.0.bb | 8 |
2 files changed, 4 insertions, 38 deletions
diff --git a/meta-filesystems/recipes-utils/fatresize/fatresize/0001-configure-Do-not-add-D_FILE_OFFSET_BITS-to-CFLAGS.patch b/meta-filesystems/recipes-utils/fatresize/fatresize/0001-configure-Do-not-add-D_FILE_OFFSET_BITS-to-CFLAGS.patch deleted file mode 100644 index d0ecdcba4e..0000000000 --- a/meta-filesystems/recipes-utils/fatresize/fatresize/0001-configure-Do-not-add-D_FILE_OFFSET_BITS-to-CFLAGS.patch +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | From 69647e5d393a52ed3892eccc172ee750d6aaa45d Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Fri, 30 Dec 2022 21:08:25 -0800 | ||
| 4 | Subject: [PATCH] configure: Do not add -D_FILE_OFFSET_BITS to CFLAGS | ||
| 5 | |||
| 6 | AC_SYS_LARGEFILE macro is in use and this will add a definition for | ||
| 7 | _FILE_OFFSET_BITS in generated config.h which is already included as | ||
| 8 | first include file in fatresize.c hence its not required to be added via | ||
| 9 | CFLAGS, this also fixes a case when -D_FILE_OFFSET_BITS=64 is passed via | ||
| 10 | CC from environment, where the autoconf macros set | ||
| 11 | ac_cv_sys_file_offset_bits=no and that means we will have | ||
| 12 | -D_FILE_OFFSET_BITS=no added to CFLAGS which messes up builds. | ||
| 13 | |||
| 14 | Upstream-Status: Submitted [https://salsa.debian.org/parted-team/fatresize/-/merge_requests/3] | ||
| 15 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 16 | --- | ||
| 17 | configure.ac | 1 - | ||
| 18 | 1 file changed, 1 deletion(-) | ||
| 19 | |||
| 20 | diff --git a/configure.ac b/configure.ac | ||
| 21 | index d6e6cb2..4dcec28 100644 | ||
| 22 | --- a/configure.ac | ||
| 23 | +++ b/configure.ac | ||
| 24 | @@ -29,7 +29,6 @@ AC_CHECK_FUNCS([memset strtoll]) | ||
| 25 | |||
| 26 | # Check for LFS | ||
| 27 | AC_SYS_LARGEFILE | ||
| 28 | -CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=${ac_cv_sys_file_offset_bits}" | ||
| 29 | |||
| 30 | dnl libparted | ||
| 31 | # hack | ||
| 32 | -- | ||
| 33 | 2.39.0 | ||
| 34 | |||
diff --git a/meta-filesystems/recipes-utils/fatresize/fatresize_1.1.0.bb b/meta-filesystems/recipes-utils/fatresize/fatresize_1.1.0.bb index 7f90bfd666..fc18b2cef8 100644 --- a/meta-filesystems/recipes-utils/fatresize/fatresize_1.1.0.bb +++ b/meta-filesystems/recipes-utils/fatresize/fatresize_1.1.0.bb | |||
| @@ -3,12 +3,12 @@ SECTION = "console/tools" | |||
| 3 | LICENSE = "GPL-3.0-only" | 3 | LICENSE = "GPL-3.0-only" |
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
| 5 | 5 | ||
| 6 | SRC_URI = "git://salsa.debian.org/parted-team/fatresize.git;protocol=https;branch=master \ | 6 | PV = "1.1.0-3" |
| 7 | |||
| 8 | SRC_URI = "git://salsa.debian.org/parted-team/fatresize.git;protocol=https;branch=master;tag=debian/${PV} \ | ||
| 7 | file://0001-build-Do-not-build-.sgml-file.patch \ | 9 | file://0001-build-Do-not-build-.sgml-file.patch \ |
| 8 | file://0001-configure-Do-not-add-D_FILE_OFFSET_BITS-to-CFLAGS.patch \ | ||
| 9 | " | 10 | " |
| 10 | SRCREV = "12da22087de2ec43f0fe5af1237389e94619c483" | 11 | SRCREV = "7494fba0f14f706c17b9d89ae273efd113c944ca" |
| 11 | |||
| 12 | 12 | ||
| 13 | DEPENDS = "parted" | 13 | DEPENDS = "parted" |
| 14 | 14 | ||
