* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2016-05-19 18:16 Mike Frysinger
0 siblings, 0 replies; 27+ messages in thread
From: Mike Frysinger @ 2016-05-19 18:16 UTC (permalink / raw
To: gentoo-commits
commit: 5fbd250e0b5f0d5943db6bcaf9df645d4314d4b1
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 18:12:34 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Thu May 19 18:16:27 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fbd250e
sys-process/dcron: drop old /var/run pid file rename
Since the run dir is cleared all the time, we don't really need this.
sys-process/dcron/dcron-4.5-r1.ebuild | 8 --------
1 file changed, 8 deletions(-)
diff --git a/sys-process/dcron/dcron-4.5-r1.ebuild b/sys-process/dcron/dcron-4.5-r1.ebuild
index c1c26f0..3e30b56 100644
--- a/sys-process/dcron/dcron-4.5-r1.ebuild
+++ b/sys-process/dcron/dcron-4.5-r1.ebuild
@@ -46,11 +46,3 @@ src_install() {
insinto /etc/logrotate.d
newins extra/crond.logrotate dcron
}
-
-pkg_postinst() {
- # upstream renamed their pid file
- local src="${ROOT}/var/run/cron.pid" dst="${ROOT}/var/run/crond.pid"
- if [ -e "${src}" -a ! -e "${dst}" ] ; then
- cp "${src}" "${dst}"
- fi
-}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2018-08-09 19:18 Anthony G. Basile
0 siblings, 0 replies; 27+ messages in thread
From: Anthony G. Basile @ 2018-08-09 19:18 UTC (permalink / raw
To: gentoo-commits
commit: e8d12fcb6ab10c84f14ad2cc25edfd372fd4239a
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Thu Aug 9 19:12:02 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Aug 9 19:17:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8d12fcb
sys-process/dcron: fix qa warning
Also bump to EAPI="6".
Closes: https://bugs.gentoo.org/651202
Package-Manager: Portage-2.3.44, Repoman-2.3.10
sys-process/dcron/dcron-4.5-r2.ebuild | 52 +++++++++++++++++++++++++++++++++++
sys-process/dcron/metadata.xml | 20 ++++++++++----
2 files changed, 66 insertions(+), 6 deletions(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
new file mode 100644
index 00000000000..e0d83c3e1c1
--- /dev/null
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cron toolchain-funcs systemd
+
+DESCRIPTION="A cute little cron from Matt Dillon"
+HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
+SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+DOCS=( CHANGELOG README extra/run-cron extra/root.crontab "${FILESDIR}"/crontab )
+
+PATCHES=( "${FILESDIR}"/${PN}-4.5-ldflags.patch "${FILESDIR}"/${PN}-4.5-pidfile.patch )
+
+src_prepare() {
+ default
+
+ tc-export CC
+
+ cat <<-EOF > config
+ PREFIX = /usr
+ CRONTAB_GROUP = cron
+ EOF
+}
+
+src_install() {
+ default
+
+ docrondir
+ docron crond -m0700 -o root -g wheel
+ docrontab
+
+ insinto /etc
+ doins "${FILESDIR}"/crontab
+
+ insinto /etc/cron.d
+ doins extra/prune-cronstamps
+
+ insinto /etc/logrotate.d
+ newins extra/crond.logrotate dcron
+
+ keepdir /var/spool/cron/cronstamps
+
+ newinitd "${FILESDIR}"/dcron.init dcron
+ newconfd "${FILESDIR}"/dcron.confd dcron
+ systemd_dounit "${FILESDIR}"/dcron.service
+}
diff --git a/sys-process/dcron/metadata.xml b/sys-process/dcron/metadata.xml
index 4fc1e843e09..2cfaa1da1d0 100644
--- a/sys-process/dcron/metadata.xml
+++ b/sys-process/dcron/metadata.xml
@@ -1,10 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer type="project">
- <email>cron-bugs@gentoo.org</email>
-</maintainer>
-<upstream>
- <remote-id type="github">dubiousjim/dcron</remote-id>
-</upstream>
+ <maintainer type="project">
+ <email>cron-bugs@gentoo.org</email>
+ </maintainer>
+ <longdescription>
+ This lightweight cron daemon aims to be simple and secure, with just enough
+ features to stay useful.
+ Unlike other fatter cron daemons, though, this cron doesn't even try to manage
+ environment variables or act as a shell.
+ All jobs are run with `/bin/sh` for conformity and portability.
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/dubiousjim/dcron/issues</bugs-to>
+ <remote-id type="github">dubiousjim/dcron</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-10-21 12:16 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-21 12:16 UTC (permalink / raw
To: gentoo-commits
commit: 2539be1211c96989dfd7dcad97fce6fa00327993
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 12:16:16 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 12:16:16 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2539be12
sys-process/dcron: s390 stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index e0d83c3e1c1..3f123dbe473 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh ~sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-10-21 12:17 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-21 12:17 UTC (permalink / raw
To: gentoo-commits
commit: e7df05608b4aa51c72617232e0e36d19d92d587d
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 12:17:38 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 12:17:38 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7df0560
sys-process/dcron: sparc stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 3f123dbe473..435fc7b28de 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-10-21 12:18 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-21 12:18 UTC (permalink / raw
To: gentoo-commits
commit: 9b709d3a63673472e2cdeddb47b02b733675384d
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 12:18:15 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 12:18:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b709d3a
sys-process/dcron: ppc stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 435fc7b28de..18e5be503a3 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 s390 ~sh sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 s390 ~sh sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-10-21 12:48 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-21 12:48 UTC (permalink / raw
To: gentoo-commits
commit: e6bbc6c833e35776aa8c8c4c6ef19f211d356595
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 21 12:48:17 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 12:48:17 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6bbc6c8
sys-process/dcron: ppc64 stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 18e5be503a3..e79fb5739b8 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 s390 ~sh sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-10-21 19:21 Sergei Trofimovich
0 siblings, 0 replies; 27+ messages in thread
From: Sergei Trofimovich @ 2019-10-21 19:21 UTC (permalink / raw
To: gentoo-commits
commit: efc1ded07500cac7d0820c28a14fcda26c0ee3ec
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Mon Oct 21 18:09:25 2019 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Oct 21 19:21:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc1ded0
sys-process/dcron: stable 4.5-r2 for hppa, bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index e79fb5739b8..f2c38e8fa2a 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-10-22 7:24 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-22 7:24 UTC (permalink / raw
To: gentoo-commits
commit: d364cc12616603bb98c26743445f713c53a99b46
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 22 07:24:08 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Oct 22 07:24:08 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d364cc12
sys-process/dcron: amd64 stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index f2c38e8fa2a..f95220aaf0a 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-10-22 7:25 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-10-22 7:25 UTC (permalink / raw
To: gentoo-commits
commit: ae0f6891cf04e7bbe70ecb0af4f95580abc986da
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 22 07:25:10 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Oct 22 07:25:10 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae0f6891
sys-process/dcron: x86 stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index f95220aaf0a..31ccd5c3c25 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-11-02 7:58 Mikle Kolyada
0 siblings, 0 replies; 27+ messages in thread
From: Mikle Kolyada @ 2019-11-02 7:58 UTC (permalink / raw
To: gentoo-commits
commit: 4e53895133a2dda1ed3527d4321cb70b0699a812
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 2 07:57:00 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Nov 2 07:57:00 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e538951
sys-process/dcron: arm stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 31ccd5c3c25..c73edf6fc76 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-11-02 7:58 Mikle Kolyada
0 siblings, 0 replies; 27+ messages in thread
From: Mikle Kolyada @ 2019-11-02 7:58 UTC (permalink / raw
To: gentoo-commits
commit: aa5e02ae6ec3a7b23898a06e898045afe1ec327f
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 2 07:57:29 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Nov 2 07:57:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa5e02ae
sys-process/dcron: m68k stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="m68k"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 84f99f8847a..7a1d340cff8 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-11-02 7:58 Mikle Kolyada
0 siblings, 0 replies; 27+ messages in thread
From: Mikle Kolyada @ 2019-11-02 7:58 UTC (permalink / raw
To: gentoo-commits
commit: b4d0befeea7c5d000399911af0a16a94df196e5f
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 2 07:57:15 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Nov 2 07:57:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4d0befe
sys-process/dcron: sh stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="sh"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index c73edf6fc76..84f99f8847a 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-11-08 17:10 Aaron Bauman
0 siblings, 0 replies; 27+ messages in thread
From: Aaron Bauman @ 2019-11-08 17:10 UTC (permalink / raw
To: gentoo-commits
commit: b342d8fe7c74c72e59081ef2e5d85bee79c03510
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 8 17:10:10 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Nov 8 17:10:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b342d8fe
sys-process/dcron: arm64 stable (bug #698134)
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.78, Repoman-2.3.17
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 7a1d340cff8..75d0ffacdb6 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-11-14 11:55 Agostino Sarubbo
0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2019-11-14 11:55 UTC (permalink / raw
To: gentoo-commits
commit: e6a790c3d0e2f26b3e41ad90269c7a5c9bf859e4
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 14 11:55:41 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Nov 14 11:55:41 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6a790c3
sys-process/dcron: ia64 stable wrt bug #698134
Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 75d0ffacdb6..86cf1bb5492 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2019-12-15 13:37 Michał Górny
0 siblings, 0 replies; 27+ messages in thread
From: Michał Górny @ 2019-12-15 13:37 UTC (permalink / raw
To: gentoo-commits
commit: e7472255a761c0ef2512b5e0b48e3e7f038d529b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 15 13:21:25 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Dec 15 13:37:05 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7472255
sys-process/dcron: Drop old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r1.ebuild | 47 -----------------------------------
1 file changed, 47 deletions(-)
diff --git a/sys-process/dcron/dcron-4.5-r1.ebuild b/sys-process/dcron/dcron-4.5-r1.ebuild
deleted file mode 100644
index aeeb15bf702..00000000000
--- a/sys-process/dcron/dcron-4.5-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit cron toolchain-funcs eutils systemd
-
-DESCRIPTION="A cute little cron from Matt Dillon"
-HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
-SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-4.5-pidfile.patch
- epatch "${FILESDIR}"/${PN}-4.5-ldflags.patch
- tc-export CC
- cat <<-EOF > config
- PREFIX = /usr
- CRONTAB_GROUP = cron
- EOF
-}
-
-src_install() {
- emake install DESTDIR="${D}"
- dodoc CHANGELOG README "${FILESDIR}"/crontab
-
- docrondir
- docron crond -m0700 -o root -g wheel
- docrontab
-
- insinto /etc
- doins "${FILESDIR}"/crontab
- insinto /etc/cron.d
- doins extra/prune-cronstamps
- dodoc extra/run-cron extra/root.crontab
-
- newinitd "${FILESDIR}"/dcron.init dcron
- newconfd "${FILESDIR}"/dcron.confd dcron
- systemd_dounit "${FILESDIR}"/dcron.service
-
- insinto /etc/logrotate.d
- newins extra/crond.logrotate dcron
-}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2021-07-21 2:22 Yixun Lan
0 siblings, 0 replies; 27+ messages in thread
From: Yixun Lan @ 2021-07-21 2:22 UTC (permalink / raw
To: gentoo-commits
commit: 6a7957cafc02fb7cc55a424af802374cfb673b08
Author: Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Mon Jul 19 02:40:21 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Jul 21 02:21:13 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a7957ca
sys-process/dcron: keyword 4.5-r2 for ~riscv
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index bc17faba17b..202cc31e604 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2022-08-28 6:30 WANG Xuerui
0 siblings, 0 replies; 27+ messages in thread
From: WANG Xuerui @ 2022-08-28 6:30 UTC (permalink / raw
To: gentoo-commits
commit: 690cd6a56901deebcd066a6875f7ec02707648ff
Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 06:23:00 2022 +0000
Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 06:28:05 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=690cd6a5
sys-process/dcron: keyword 4.5-r2 for ~loong
Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 202cc31e6049..05ef8ec95b54 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
@@ -9,7 +9,7 @@ DESCRIPTION="A cute little cron from Matt Dillon"
HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2023-03-11 21:26 David Seifert
0 siblings, 0 replies; 27+ messages in thread
From: David Seifert @ 2023-03-11 21:26 UTC (permalink / raw
To: gentoo-commits
commit: 7a82fa2d08493ef780c2c2b16c0ec77f7b3a0650
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 21:25:55 2023 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 21:25:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a82fa2d
sys-process/dcron: update EAPI 6 -> 7
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sys-process/dcron/dcron-4.5-r2.ebuild | 24 +++++++++++++-----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/sys-process/dcron/dcron-4.5-r2.ebuild b/sys-process/dcron/dcron-4.5-r2.ebuild
index 05ef8ec95b54..925bb4d75945 100644
--- a/sys-process/dcron/dcron-4.5-r2.ebuild
+++ b/sys-process/dcron/dcron-4.5-r2.ebuild
@@ -1,28 +1,29 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="6"
+EAPI=7
inherit cron toolchain-funcs systemd
DESCRIPTION="A cute little cron from Matt Dillon"
-HOMEPAGE="http://www.jimpryor.net/linux/dcron.html http://apollo.backplane.com/FreeSrc/"
+HOMEPAGE="
+ http://www.jimpryor.net/linux/dcron.html
+ http://apollo.backplane.com/FreeSrc/"
SRC_URI="http://www.jimpryor.net/linux/releases/${P}.tar.gz"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
LICENSE="GPL-2"
SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-DOCS=( CHANGELOG README extra/run-cron extra/root.crontab "${FILESDIR}"/crontab )
-
-PATCHES=( "${FILESDIR}"/${PN}-4.5-ldflags.patch "${FILESDIR}"/${PN}-4.5-pidfile.patch )
-
-src_prepare() {
- default
+PATCHES=(
+ "${FILESDIR}"/${PN}-4.5-ldflags.patch
+ "${FILESDIR}"/${PN}-4.5-pidfile.patch
+)
+src_configure() {
tc-export CC
- cat <<-EOF > config
+ cat > config <<-EOF || die
PREFIX = /usr
CRONTAB_GROUP = cron
EOF
@@ -30,6 +31,7 @@ src_prepare() {
src_install() {
default
+ dodoc extra/run-cron extra/root.crontab "${FILESDIR}"/crontab
docrondir
docron crond -m0700 -o root -g wheel
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-01-17 13:36 Joonas Niilola
0 siblings, 0 replies; 27+ messages in thread
From: Joonas Niilola @ 2025-01-17 13:36 UTC (permalink / raw
To: gentoo-commits
commit: ab190362ba3d3d473653357905ec03eb6471b6ee
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Thu Sep 5 10:21:43 2024 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 13:35:59 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab190362
sys-process/dcron: metadata: update upstream
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-process/dcron/metadata.xml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sys-process/dcron/metadata.xml b/sys-process/dcron/metadata.xml
index ea32759400b4..5cff6cd89566 100644
--- a/sys-process/dcron/metadata.xml
+++ b/sys-process/dcron/metadata.xml
@@ -10,7 +10,9 @@
All jobs are run with `/bin/sh` for conformity and portability.
</longdescription>
<upstream>
- <bugs-to>https://github.com/dubiousjim/dcron/issues</bugs-to>
- <remote-id type="github">dubiousjim/dcron</remote-id>
+ <bugs-to>https://github.com/ptchinster/dcron/issues</bugs-to>
+ <!-- readme's the doc -->
+ <changelog>https://github.com/ptchinster/dcron/blob/master/CHANGELOG</changelog>
+ <remote-id type="github">ptchinster/dcron</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-01-17 13:36 Joonas Niilola
0 siblings, 0 replies; 27+ messages in thread
From: Joonas Niilola @ 2025-01-17 13:36 UTC (permalink / raw
To: gentoo-commits
commit: 299818b7525cde7a143e80bef678cc1a2abd5e6e
Author: Filip Kobierski <fkobi <AT> pm <DOT> me>
AuthorDate: Thu Jan 9 11:10:17 2025 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jan 17 13:35:59 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=299818b7
sys-process/dcron: add 4.6 with new upstream
- remove PATCHES
- PIDfile added in ce7ddfa552cd948e8c87fb2a25b4cf65f5b216c8
- ldflags added in b2ca901b918029fdfef574d8109aae98aa035111
- with a typo, ine sed fixes it
- define empty src_test as upstream does not provide them
- update DESCRIPTION, HOMEPAGE & LICENSE
- patch out empty LDFLAGS assignment to respect system ones
Signed-off-by: Filip Kobierski <fkobi <AT> pm.me>
Closes: https://github.com/gentoo/gentoo/pull/38448
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
sys-process/dcron/Manifest | 1 +
sys-process/dcron/dcron-4.6.ebuild | 58 ++++++++++++++++++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/sys-process/dcron/Manifest b/sys-process/dcron/Manifest
index 026c58f9f228..c8f167571a4f 100644
--- a/sys-process/dcron/Manifest
+++ b/sys-process/dcron/Manifest
@@ -1 +1,2 @@
DIST dcron-4.5.tar.gz 44978 BLAKE2B c77cea026b074eed11200bb335cc2f58f7346410f88ae50685db137583beddab14e50394233b8e0f27ae7e3bf30c7875b539db84c32236f78f52bf91862b3272 SHA512 08521391d16ba5adf80278ec2a734319c26c48841fd94b119c0b27d744c2cfb3562b1a3630135a03d1c43b1668d49262713abb20ff5f7ecd397a2a19a2f6105a
+DIST dcron-4.6.tar.gz 46184 BLAKE2B 2cd90b3638813b2dd683008c43f8233d930a0d642833b67c6a210c626134ee343ecbed7324be89265b74b49f1152666fa7fcc3bc6cc3535787967697f0591184 SHA512 3f0ba26e488df804a9178478fd693ea7ad4b7d5f80230690669485e80f2f148da71d81e44e1c7a7e333078623caba6e1c3a51a8cdfada96437149872b7231863
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
new file mode 100644
index 000000000000..6c7a9037427c
--- /dev/null
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cron toolchain-funcs systemd
+
+DESCRIPTION="Dillon's lightweight and minimalist cron daemon"
+HOMEPAGE="https://github.com/ptchinster/dcron"
+SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+src_prepare() {
+ default
+ # fix typo: https://github.com/ptchinster/dcron/pull/2
+ sed -i 's/CLFAGS/CFLAGS/g' Makefile || die
+
+ # use system LDFLAGS: https://github.com/ptchinster/dcron/issues/3
+ sed -i 's/^LDFLAGS =//g' Makefile || die
+}
+
+src_configure() {
+ tc-export CC
+
+ cat > config <<-EOF || die
+ PREFIX = /usr
+ CRONTAB_GROUP = cron
+ EOF
+}
+
+src_test(){ : ; } # no tests
+
+src_install() {
+ default
+ dodoc extra/run-cron extra/root.crontab "${FILESDIR}"/crontab
+
+ docrondir
+ docron crond -m0700 -o root -g wheel
+ docrontab
+
+ insinto /etc
+ doins "${FILESDIR}"/crontab
+
+ insinto /etc/cron.d
+ doins extra/prune-cronstamps
+
+ insinto /etc/logrotate.d
+ newins extra/crond.logrotate dcron
+
+ keepdir /var/spool/cron/cronstamps
+
+ newinitd "${FILESDIR}"/dcron.init dcron
+ newconfd "${FILESDIR}"/dcron.confd dcron
+ systemd_dounit "${FILESDIR}"/dcron.service
+}
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-03-08 11:25 Sam James
0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2025-03-08 11:25 UTC (permalink / raw
To: gentoo-commits
commit: 8b5ed1b989a673bd37f0ad929a0bcd6c041f5c5b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 11:24:47 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 11:24:47 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b5ed1b9
sys-process/dcron: Stabilize 4.6 arm, #950865
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-process/dcron/dcron-4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
index 6c7a9037427c..fa43836bc0a3 100644
--- a/sys-process/dcron/dcron-4.6.ebuild
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-03-08 13:12 Arthur Zamarin
0 siblings, 0 replies; 27+ messages in thread
From: Arthur Zamarin @ 2025-03-08 13:12 UTC (permalink / raw
To: gentoo-commits
commit: 657814609727dfcb0055aff865811d2075e26965
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 13:11:58 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 13:11:58 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65781460
sys-process/dcron: Stabilize 4.6 sparc, #950865
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-process/dcron/dcron-4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
index fa43836bc0a3..1cda1c956412 100644
--- a/sys-process/dcron/dcron-4.6.ebuild
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-03-08 13:25 Arthur Zamarin
0 siblings, 0 replies; 27+ messages in thread
From: Arthur Zamarin @ 2025-03-08 13:25 UTC (permalink / raw
To: gentoo-commits
commit: 4d905c6b73cbae3dad53cf6b1a9762af3b9779c1
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 13:25:43 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 13:25:43 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d905c6b
sys-process/dcron: Stabilize 4.6 ppc, #950865
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-process/dcron/dcron-4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
index 1cda1c956412..35cfecd3932c 100644
--- a/sys-process/dcron/dcron-4.6.ebuild
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~s390 sparc ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-03-08 13:27 Arthur Zamarin
0 siblings, 0 replies; 27+ messages in thread
From: Arthur Zamarin @ 2025-03-08 13:27 UTC (permalink / raw
To: gentoo-commits
commit: 1b90805ccb0ceab95018fbbf6b21e977d47f2cfc
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 13:27:21 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 13:27:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b90805c
sys-process/dcron: Stabilize 4.6 ppc64, #950865
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-process/dcron/dcron-4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
index 35cfecd3932c..41df4dfe281a 100644
--- a/sys-process/dcron/dcron-4.6.ebuild
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-03-08 14:34 Jakov Smolić
0 siblings, 0 replies; 27+ messages in thread
From: Jakov Smolić @ 2025-03-08 14:34 UTC (permalink / raw
To: gentoo-commits
commit: b864a4890e7e4d9bbd8b7b0b4da2b1bdf7e369bf
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 14:34:15 2025 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 14:34:15 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b864a489
sys-process/dcron: Stabilize 4.6 amd64, #950865
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-process/dcron/dcron-4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
index 41df4dfe281a..c5e58daffbcc 100644
--- a/sys-process/dcron/dcron-4.6.ebuild
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-03-08 14:51 Jakov Smolić
0 siblings, 0 replies; 27+ messages in thread
From: Jakov Smolić @ 2025-03-08 14:51 UTC (permalink / raw
To: gentoo-commits
commit: de390d74f5bfc46cb2a5863f3c8e28c6de0a3df9
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 14:51:29 2025 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 14:51:29 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de390d74
sys-process/dcron: Stabilize 4.6 x86, #950865
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
sys-process/dcron/dcron-4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
index c5e58daffbcc..7c6c95a74bf0 100644
--- a/sys-process/dcron/dcron-4.6.ebuild
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 27+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/
@ 2025-03-08 16:42 Arthur Zamarin
0 siblings, 0 replies; 27+ messages in thread
From: Arthur Zamarin @ 2025-03-08 16:42 UTC (permalink / raw
To: gentoo-commits
commit: 735690b6da533a7c866708022d095db4cc41c53b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 8 16:41:59 2025 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 8 16:41:59 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735690b6
sys-process/dcron: Stabilize 4.6 arm64, #950865
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-process/dcron/dcron-4.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-process/dcron/dcron-4.6.ebuild b/sys-process/dcron/dcron-4.6.ebuild
index 7c6c95a74bf0..03aef071ea58 100644
--- a/sys-process/dcron/dcron-4.6.ebuild
+++ b/sys-process/dcron/dcron-4.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/ptchinster/dcron/archive/refs/tags/v${PV}.tar.gz ->
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
src_prepare() {
default
^ permalink raw reply related [flat|nested] 27+ messages in thread
end of thread, other threads:[~2025-03-08 16:42 UTC | newest]
Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-08 11:25 [gentoo-commits] repo/gentoo:master commit in: sys-process/dcron/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-03-08 16:42 Arthur Zamarin
2025-03-08 14:51 Jakov Smolić
2025-03-08 14:34 Jakov Smolić
2025-03-08 13:27 Arthur Zamarin
2025-03-08 13:25 Arthur Zamarin
2025-03-08 13:12 Arthur Zamarin
2025-01-17 13:36 Joonas Niilola
2025-01-17 13:36 Joonas Niilola
2023-03-11 21:26 David Seifert
2022-08-28 6:30 WANG Xuerui
2021-07-21 2:22 Yixun Lan
2019-12-15 13:37 Michał Górny
2019-11-14 11:55 Agostino Sarubbo
2019-11-08 17:10 Aaron Bauman
2019-11-02 7:58 Mikle Kolyada
2019-11-02 7:58 Mikle Kolyada
2019-11-02 7:58 Mikle Kolyada
2019-10-22 7:25 Agostino Sarubbo
2019-10-22 7:24 Agostino Sarubbo
2019-10-21 19:21 Sergei Trofimovich
2019-10-21 12:48 Agostino Sarubbo
2019-10-21 12:18 Agostino Sarubbo
2019-10-21 12:17 Agostino Sarubbo
2019-10-21 12:16 Agostino Sarubbo
2018-08-09 19:18 Anthony G. Basile
2016-05-19 18:16 Mike Frysinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox