git: 16b8823a789d - main - sysutils/reptyr: update 0.8.0 → 0.10.0

From: Yuri Victorovich <yuri_at_FreeBSD.org>
Date: Mon, 14 Oct 2024 17:46:51 UTC
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=16b8823a789d3989824c3d922d101ee50b53af32

commit 16b8823a789d3989824c3d922d101ee50b53af32
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2024-10-14 15:02:33 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2024-10-14 15:02:33 +0000

    sysutils/reptyr: update 0.8.0 → 0.10.0
    
    PR:     279616
    Approved by:    andoriyu@gmail.com (maintainer's timeout; 4+ months)
---
 sysutils/reptyr/Makefile                           |  3 +--
 sysutils/reptyr/distinfo                           |  6 ++---
 .../patch-platform_freebsd_arch_x86__common.h      | 27 ----------------------
 3 files changed, 4 insertions(+), 32 deletions(-)

diff --git a/sysutils/reptyr/Makefile b/sysutils/reptyr/Makefile
index b1726464901b..a094ef82863c 100644
--- a/sysutils/reptyr/Makefile
+++ b/sysutils/reptyr/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	reptyr
-PORTVERSION=	0.8.0
-PORTREVISION=	1
+PORTVERSION=	0.10.0
 DISTVERSIONPREFIX=	reptyr-
 CATEGORIES=	sysutils
 
diff --git a/sysutils/reptyr/distinfo b/sysutils/reptyr/distinfo
index efe6398e6a98..d12bfa46c942 100644
--- a/sysutils/reptyr/distinfo
+++ b/sysutils/reptyr/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1601416039
-SHA256 (nelhage-reptyr-reptyr-0.8.0_GH0.tar.gz) = 4b470ed2a0d25fed591739fa9613ce7ad3d0377891eb56cbe914e3c85db46ca8
-SIZE (nelhage-reptyr-reptyr-0.8.0_GH0.tar.gz) = 32239
+TIMESTAMP = 1717969424
+SHA256 (nelhage-reptyr-reptyr-0.10.0_GH0.tar.gz) = c6ffbc34a511ac00d072219bda30699e51f2f4eb483cbae9e32e981d49e8b380
+SIZE (nelhage-reptyr-reptyr-0.10.0_GH0.tar.gz) = 33216
diff --git a/sysutils/reptyr/files/patch-platform_freebsd_arch_x86__common.h b/sysutils/reptyr/files/patch-platform_freebsd_arch_x86__common.h
deleted file mode 100644
index 7263e4e74dc4..000000000000
--- a/sysutils/reptyr/files/patch-platform_freebsd_arch_x86__common.h
+++ /dev/null
@@ -1,27 +0,0 @@
---- platform/freebsd/arch/x86_common.h.orig	2020-09-29 14:29:59.000000000 -0700
-+++ platform/freebsd/arch/x86_common.h	2021-12-01 19:58:27.954536000 -0800
-@@ -42,21 +42,19 @@
- }
- 
- static inline unsigned long arch_get_register(struct ptrace_child *child, unsigned long oft){
--	int ret;
- 	struct reg regs;
- 
--	ret = ptrace_command(child, PT_GETREGS, &regs);
-+	(void) ptrace_command(child, PT_GETREGS, &regs);
- 
- 	return *ptr(&regs,oft);
- }
- 
- static inline void arch_set_register(struct ptrace_child *child, unsigned long oft, unsigned long val){
--	int ret;
- 	struct reg regs;
- 
--	ret = ptrace_command(child, PT_GETREGS, &regs);
-+	(void) ptrace_command(child, PT_GETREGS, &regs);
- 	*ptr(&regs,oft)=val;
--	ret = ptrace_command(child, PT_SETREGS, &regs);
-+	(void) ptrace_command(child, PT_SETREGS, &regs);
- }
- 
- static inline int arch_save_syscall(struct ptrace_child *child) {