pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
runas: Update to 0.1.1.1
Module Name: pkgsrc-wip
Committed By: Jason W. Bacon <bacon%NetBSD.org@localhost>
Pushed By: outpaddling
Date: Mon Sep 11 09:04:52 2023 -0500
Changeset: 76e0f8e53d64ce9e70ea5efd246c59296f12f7e5
Modified Files:
runas/Makefile
runas/distinfo
Removed Files:
runas/patches/patch-runas.c
Log Message:
runas: Update to 0.1.1.1
Add overlooked Linux patch
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=76e0f8e53d64ce9e70ea5efd246c59296f12f7e5
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
runas/Makefile | 3 ++-
runas/distinfo | 7 +++----
runas/patches/patch-runas.c | 45 ---------------------------------------------
3 files changed, 5 insertions(+), 50 deletions(-)
diffs:
diff --git a/runas/Makefile b/runas/Makefile
index ce7566caee..d106bda880 100644
--- a/runas/Makefile
+++ b/runas/Makefile
@@ -1,9 +1,10 @@
# $NetBSD$
-DISTNAME= runas-0.1.1
+DISTNAME= runas-0.1.1.1
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GITHUB:=outpaddling/}
GITHUB_PROJECT= runas
+GITHUB_TAG= 9085c95453af514be3d3bffb8e8d13320b2a5a2e
MAINTAINER= bacon%NetBSD.org@localhost
HOMEPAGE= https://github.com/outpaddling/runas
diff --git a/runas/distinfo b/runas/distinfo
index 10db43e836..c6b99c79d3 100644
--- a/runas/distinfo
+++ b/runas/distinfo
@@ -1,6 +1,5 @@
$NetBSD$
-BLAKE2s (runas-0.1.1.tar.gz) = 243575aeb11ee27d883adb023410f1934633478da8e093fd7e1136e1e7b78306
-SHA512 (runas-0.1.1.tar.gz) = 1eca9dbf5bfe805a4902542a4f556a632ab6cc0a807245cea5c56d606174e705fa6e4d2558b5f31c8b1242fabcfcf17740ad8a13cf1ff8d0681f1c001b0c1527
-Size (runas-0.1.1.tar.gz) = 4084 bytes
-SHA1 (patch-runas.c) = d0a50e953b76e535cb7a209614411341fa47631b
+BLAKE2s (runas-0.1.1.1-9085c95453af514be3d3bffb8e8d13320b2a5a2e.tar.gz) = cb1b00a39d89ba133da474f8aabb60020e9ee7b0f6b7ebd7ef970e7149c16348
+SHA512 (runas-0.1.1.1-9085c95453af514be3d3bffb8e8d13320b2a5a2e.tar.gz) = 41fd2d0247a21ffcbb0d0f1aebdf1f005cc7921a34c39eade645dc9a7a522d0eebc40b61bd785685c107a113d03901016378ae5e14578637977300815405c8b1
+Size (runas-0.1.1.1-9085c95453af514be3d3bffb8e8d13320b2a5a2e.tar.gz) = 4308 bytes
diff --git a/runas/patches/patch-runas.c b/runas/patches/patch-runas.c
deleted file mode 100644
index cf7645702b..0000000000
--- a/runas/patches/patch-runas.c
+++ /dev/null
@@ -1,45 +0,0 @@
-$NetBSD$
-
-# Linux missing strl*()
-
---- runas.c.orig 2021-02-04 13:39:53.796790582 +0000
-+++ runas.c
-@@ -18,6 +18,11 @@
- #include <unistd.h>
- #include <limits.h>
-
-+#ifdef __linux__
-+#define ARG_MAX 2097152 // getconf ARG_MAX CentOS 7
-+#endif
-+
-+// Remove usage() from libbacon?
- void usage(char *argv[])
-
- {
-@@ -25,6 +30,26 @@ void usage(char *argv[])
- exit(EX_USAGE);
- }
-
-+#ifdef __linux__
-+size_t strlcat(char *dest,const char *src,size_t maxlen)
-+
-+{
-+ char *dp,*sp;
-+
-+ /* Find end of first string */
-+ for (dp=dest; (*dp != '\0') && --maxlen; ++dp)
-+ ;
-+
-+ /* Concetanate second string */
-+ for (sp=(char *)src; (*sp != '\0') && --maxlen; )
-+ *dp++ = *sp++;
-+
-+ /* Null terminate */
-+ *dp = '\0';
-+ return dp-dest;
-+}
-+#endif
-+
- int main(int argc,char *argv[])
-
- {
Home |
Main Index |
Thread Index |
Old Index