From e56d5feb2222737558795daea22dd44df3b88f54 Mon Sep 17 00:00:00 2001 From: aleck Date: Thu, 30 May 2024 10:03:21 -0600 Subject: [PATCH] Almost to be released --- PKGBUILD | 6 +++--- example/simple_example.c | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index e11dcc7..e8e9ab8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -13,8 +13,8 @@ # Move to the build directory pkgname=unittest-c -pkgver=1.3.2 -pkgrel=9 +pkgver=1.3.3 +pkgrel=10 epoch= pkgdesc="unittest c is a fast and simple macro-based unit testing framework for C. It's inspired by the Python unittest module and designed to reduce boilerplate code. @@ -23,7 +23,7 @@ arch=('x86_64') url="https://github.com/alecksandr26/unittest-c/archive/refs/tags/v1.1.2.tar.gz" license=('MIT License') depends=() -makedepends=(gcc git make binutils coreutils trycatch-c) +makedepends=(gcc git make binutils coreutils except-c) optdepends=(valgrind) source=("$pkgname-$pkgver.tar.gz::$url") md5sums=('SKIP') diff --git a/example/simple_example.c b/example/simple_example.c index 5174087..f405d37 100644 --- a/example/simple_example.c +++ b/example/simple_example.c @@ -10,7 +10,6 @@ #include #include - TESTCASE(MyTestCase1) { TEST(TestSqrt2) { double x = sqrt(2.0);