From 92980232a6eb69d444dfba6c3032d4f2991d5bc7 Mon Sep 17 00:00:00 2001 From: Jay Larson Date: Sun, 23 Aug 2020 08:20:52 -0500 Subject: [PATCH] Moved to slp format, also removed sysvinit dependency (unsure why it was there) --- Makefile | 14 +++++++------- {SNAP => SL}/README | 0 {SNAP => SL}/cron.init | 0 {SNAP => SL}/runall | 0 {SNAP => SL}/usher | 0 5 files changed, 7 insertions(+), 7 deletions(-) rename {SNAP => SL}/README (100%) rename {SNAP => SL}/cron.init (100%) rename {SNAP => SL}/runall (100%) rename {SNAP => SL}/usher (100%) diff --git a/Makefile b/Makefile index c826446..4e840f4 100644 --- a/Makefile +++ b/Makefile @@ -9,20 +9,20 @@ # GNU General Public License for more details. ARCH = x86_64 -DEPENDS = dash,glibc,initscripts,sysvinit +DEPENDS = dash,glibc,initscripts BUILDDEPS = URL = http://ftp.isc.org/isc/cron/ REPO = main BRIEF = daemon to execute scheduled commands DESC = An implimentation of cron based on the SysV cron (aka Vixie cron) -SNAPVER = 4 +SLVER = 5 ARCHIVE := $(PWD)/$(shell ls SRC/*.shar|tail -1) SRCDIR := cron-$(shell echo $(ARCHIVE)|egrep -o '[0-9]\.[0-9]') PATCHDIR := $(PWD)/SRC/patches -VERSION := $(shell echo $(SRCDIR)|egrep -o '[0-9].*'|sed 's/^-//')-$(SNAPVER) +VERSION := $(shell echo $(SRCDIR)|egrep -o '[0-9].*'|sed 's/^-//')-$(SLVER) -include /usr/share/snap/Makefile.snaplinux +include /usr/share/sl/Makefile.snaplinux $(SRCDIR)/Makefile: $(ARCHIVE) @install -v -d $(SRCDIR) ./ && \ @@ -63,8 +63,8 @@ $(ROOT): $(SRCDIR)/cron install -v -m 644 crontab.1 $(ROOT)/usr/share/man/man1/crontab.1 && \ install -v -m 644 crontab.5 $(ROOT)/usr/share/man/man5/crontab.5 && \ install -v -m 644 cron.8 $(ROOT)/usr/share/man/man8/cron.8 && \ - install -v -m 755 $(SNAPDIR)/cron.init $(ROOT)/etc/init.d/cron && \ - install -v -m 755 $(SNAPDIR)/runall $(ROOT)/bin + install -v -m 755 $(SLDIR)/cron.init $(ROOT)/etc/init.d/cron && \ + install -v -m 755 $(SLDIR)/runall $(ROOT)/bin test: $(ROOT) @cd $(SRCDIR); \ @@ -72,7 +72,7 @@ test: $(ROOT) clean: @rm -rvf $(ROOT) \ - $(SNAPINFO) \ + $(SLINFO) \ $(MANIFEST) \ $(FILES) \ $(CONFIG) \ diff --git a/SNAP/README b/SL/README similarity index 100% rename from SNAP/README rename to SL/README diff --git a/SNAP/cron.init b/SL/cron.init similarity index 100% rename from SNAP/cron.init rename to SL/cron.init diff --git a/SNAP/runall b/SL/runall similarity index 100% rename from SNAP/runall rename to SL/runall diff --git a/SNAP/usher b/SL/usher similarity index 100% rename from SNAP/usher rename to SL/usher