From 12d175f073720397c36116d518bfc9593db0a9c1 Mon Sep 17 00:00:00 2001 From: fandehui Date: Wed, 27 Dec 2023 10:22:00 +0800 Subject: [PATCH] Update TODO This TODO was addressed here: https://github.com/libcheck/check/pull/158 3987c1d906ee68e0a6a5fd7888d88e0873f914d9 Signed-off-by: fandehui --- check-0.12.0-Update-TODO.patch | 29 +++++++++++++++++++++++++++++ check.spec | 6 +++++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 check-0.12.0-Update-TODO.patch diff --git a/check-0.12.0-Update-TODO.patch b/check-0.12.0-Update-TODO.patch new file mode 100644 index 0000000..fc95aac --- /dev/null +++ b/check-0.12.0-Update-TODO.patch @@ -0,0 +1,29 @@ +From 6e93935189d0fc0b958d087f007d2b90eeba2f87 Mon Sep 17 00:00:00 2001 +From: Branden Archer +Date: Wed, 20 Jun 2018 17:19:10 -0400 +Subject: [PATCH] Update TODO + +This TODO was addressed here: + +https://github.com/libcheck/check/pull/158 +3987c1d906ee68e0a6a5fd7888d88e0873f914d9 +--- + TODO | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/TODO b/TODO +index 7236c69..818f813 100644 +--- a/TODO ++++ b/TODO +@@ -61,7 +61,7 @@ Check source code: + + [ ] * Eliminate abbreviations like nf for number_failed + [0.9.13] * Run indent on everything, make sure it works well. +-[ ] * Fix START_TEST/END_TEST to look like valid C code. ++[0.13.0] * Fix START_TEST/END_TEST to look like valid C code. + [ ] * Document things way more. + [ ] * Create check.h automatically using makeheaders.c (not sure) + [ ] * Eliminate check_ prefix from files in src/ ... not needed +-- +2.42.0.windows.2 + diff --git a/check.spec b/check.spec index 075d894..910b7d3 100644 --- a/check.spec +++ b/check.spec @@ -1,6 +1,6 @@ Name: check Version: 0.12.0 -Release: 8 +Release: 9 Summary: A unit testing framework for C Source0: https://github.com/libcheck/%{name}/archive/%{version}/%{name}-%{version}.tar.gz License: LGPLv2+ @@ -11,6 +11,7 @@ Patch2: %{name}-0.12.0-Add-warning-on-floating-point-eq-and-ne-assertion Patch3: %{name}-0.12.0-Fixed-typo-in-ck_assert_str_eq-doc.patch Patch4: %{name}-0.12.0-fix-title-of-web-install.html.patch Patch5: %{name}-0.12.0-Fix-START_TEST-to-look-like-valid-C-code.patch +Patch6: %{name}-0.12.0-Update-TODO.patch BuildRequires: gcc libtool patchutils pkgconfig BuildRequires: subunit-devel texinfo @@ -97,6 +98,9 @@ make check %{_mandir}/man1/checkmk.1* %changelog +* Wed Dec 27 2023 fandehui - 0.12.0-9 +- Update TODO + * Mon Dec 11 2023 fandehui - 0.12.0-8 - Fix START_TEST to look like valid C code.