git: 0727e05c632d - main - sysutils/agedu: Update to 20241013.3622eda
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 21 Oct 2024 09:34:09 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=0727e05c632d55bca7a07db82bd62f5895d4dd4e commit 0727e05c632d55bca7a07db82bd62f5895d4dd4e Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-10-21 06:33:28 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-10-21 09:17:27 +0000 sysutils/agedu: Update to 20241013.3622eda Changes: https://git.tartarus.org/?p=simon/agedu.git;a=shortlog --- sysutils/agedu/Makefile | 3 +-- sysutils/agedu/distinfo | 6 +++--- sysutils/agedu/files/patch-html.c | 13 ------------- 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/sysutils/agedu/Makefile b/sysutils/agedu/Makefile index 9e7d4b002813..486754e6c982 100644 --- a/sysutils/agedu/Makefile +++ b/sysutils/agedu/Makefile @@ -1,6 +1,5 @@ PORTNAME= agedu -PORTVERSION= 20211129.8cd63c5 -PORTREVISION= 1 +PORTVERSION= 20241013.3622eda CATEGORIES= sysutils MASTER_SITES= https://www.chiark.greenend.org.uk/~sgtatham/agedu/ \ LOCAL/sunpoet diff --git a/sysutils/agedu/distinfo b/sysutils/agedu/distinfo index 6db749f80833..7ef8e4b0f3bd 100644 --- a/sysutils/agedu/distinfo +++ b/sysutils/agedu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638556490 -SHA256 (agedu-20211129.8cd63c5.tar.gz) = ceaee592ef21b8cbb254aa7e9c5d22cefab24535e137618a4d0af591eba8339f -SIZE (agedu-20211129.8cd63c5.tar.gz) = 92346 +TIMESTAMP = 1729240322 +SHA256 (agedu-20241013.3622eda.tar.gz) = 3f77cb2e4dd64c100f7a7b0789a6c06cc16f23e7fe78c1451f5020dd823cf2f8 +SIZE (agedu-20241013.3622eda.tar.gz) = 91958 diff --git a/sysutils/agedu/files/patch-html.c b/sysutils/agedu/files/patch-html.c deleted file mode 100644 index 8e6b4f107c1d..000000000000 --- a/sysutils/agedu/files/patch-html.c +++ /dev/null @@ -1,13 +0,0 @@ -Obtained from: https://git.tartarus.org/?p=simon/agedu.git;a=commit;h=3622edabe7f6776dc66dd5d685ab9980226cfa6b - ---- html.c.orig 2021-11-29 02:20:04 UTC -+++ html.c -@@ -131,6 +131,8 @@ static unsigned long long round_and_format_age(struct - sprintf(newbuf, "%d year%s", i, i==1 ? "" : "s"); - if (newret < age) - goto finish; -+ if (newret > ret) /* integer overflow - give up! */ -+ goto finish; - strcpy(buf, newbuf); - ret = newret; - }