commit:     614aac9bc60b11553d02645739c661ee2466b74b
Author:     Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  8 16:19:18 2025 +0000
Commit:     Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
CommitDate: Mon Sep  8 16:19:18 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=614aac9b

sys-process/dcron: remove unused patches

Signed-off-by: Michael Mair-Keimberger <mm1ke <AT> gentoo.org>

 sys-process/dcron/files/dcron-4.5-ldflags.patch | 38 ----------------------
 sys-process/dcron/files/dcron-4.5-pidfile.patch | 43 -------------------------
 2 files changed, 81 deletions(-)

diff --git a/sys-process/dcron/files/dcron-4.5-ldflags.patch 
b/sys-process/dcron/files/dcron-4.5-ldflags.patch
deleted file mode 100644
index 7fa2d8d9d015..000000000000
--- a/sys-process/dcron/files/dcron-4.5-ldflags.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 8a292168e584c50808b80df3577a7d89fa32db26 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <[email protected]>
-Date: Mon, 16 May 2011 16:24:20 -0400
-Subject: [PATCH] drop LDFLAGS set, and restore CFLAGS linking
-
-Signed-off-by: Mike Frysinger <[email protected]>
----
- Makefile |    5 ++---
- 1 files changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 1938e05..8309ad6 100644
---- a/Makefile
-+++ b/Makefile
-@@ -32,7 +32,6 @@ TABSRCS = crontab.c chuser.c
- TABOBJS = crontab.o chuser.o
- PROTOS = protos.h
- LIBS =
--LDFLAGS =
- DEFS =  -DVERSION='"$(VERSION)"' \
-               -DSCRONTABS='"$(SCRONTABS)"' -DCRONTABS='"$(CRONTABS)"' \
-               -DCRONSTAMPS='"$(CRONSTAMPS)"' -DLOG_IDENT='"$(LOG_IDENT)"' \
-@@ -54,10 +53,10 @@ protos.h: $(SRCS) $(TABSRCS)
-       fgrep -h Prototype $(SRCS) $(TABSRCS) > protos.h
- 
- crond: $(OBJS)
--      $(CC) $(LDFLAGS) $^ $(LIBS) -o crond
-+      $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) -o crond
- 
- crontab: $(TABOBJS)
--      $(CC) $(LDFLAGS) $^ -o crontab
-+      $(CC) $(CFLAGS) $(LDFLAGS) $^ -o crontab
- 
- %.o: %.c defs.h $(PROTOS)
-       $(CC) $(CFLAGS) $(CPPFLAGS) -c $(DEFS) $< -o $@
--- 
-1.7.5.rc3
-

diff --git a/sys-process/dcron/files/dcron-4.5-pidfile.patch 
b/sys-process/dcron/files/dcron-4.5-pidfile.patch
deleted file mode 100644
index 6004c4c4b4d2..000000000000
--- a/sys-process/dcron/files/dcron-4.5-pidfile.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 14b0f33ebf33d3d08427fd4d9fd4bda3cc107bd0 Mon Sep 17 00:00:00 2001
-From: Mike Frysinger <[email protected]>
-Date: Tue, 26 Oct 2010 01:42:32 -0400
-Subject: [PATCH] crond: write a pid file
-
-Signed-off-by: Mike Frysinger <[email protected]>
----
- Makefile |    2 +-
- main.c   |    5 +++++
- 2 files changed, 6 insertions(+), 1 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index dc5b78f..e278312 100644
---- a/Makefile
-+++ b/Makefile
-@@ -38,7 +38,7 @@ DEFS =  -DVERSION='"$(VERSION)"' \
-               -DTIMESTAMP_FMT='"$(TIMESTAMP_FMT)"'
- 
- # save variables needed for `make install` in config
--all: $(PROTOS) crond crontab ;
-+all: crond crontab ;
-       rm -f config
-       echo "PREFIX = $(PREFIX)" >> config
-       echo "SBINDIR = $(SBINDIR)" >> config
-diff --git a/main.c b/main.c
-index e4a742e..6313213 100644
---- a/main.c
-+++ b/main.c
-@@ -227,6 +227,11 @@ main(int ac, char **av)
-                       exit(1);
-               } else if (pid > 0) {
-                       /* parent */
-+                      FILE *fp;
-+                      if ((fp = fopen("/var/run/crond.pid", "w")) != NULL) {
-+                              fprintf(fp, "%d\n", pid);
-+                              fclose(fp);
-+                      }
-                       exit(0);
-               }
-               /* child continues */
--- 
-1.7.3.1
-

Reply via email to