[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2022-09-12 Thread Arthur Zamarin
commit: af8f4578c8b34b507dced9c8eec465fb05ef5d5d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 12 19:13:26 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 12 19:13:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af8f4578

app-admin/tmpwatch: Keyword 2.11-r3 arm64, #869836

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild
index cdc308efa9f9..ff0389caa5b2 100644
--- a/app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild
+++ b/app-admin/tmpwatch/tmpwatch-2.11-r3.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=7
@@ -11,7 +11,7 @@ SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm64 ~ia64 ppc ppc64 sparc x86"
 IUSE="selinux"
 
 # psmisc for fuser



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/files/, app-admin/tmpwatch/

2021-08-19 Thread Sam James
commit: b32a477eba2470c5137d5c2b2da0d28d45c4bdc0
Author: Kerin Millar  plushkava  net>
AuthorDate: Fri Aug 20 02:16:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 20 02:26:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32a477e

app-admin/tmpwatch: address bug 524698 (bashism)

Remove the use of the [[ keyword in favour of the POSIX test command
(SC3010).

Don't hard-code pathnames to external programs and define silly
variables such as TMPWATCH. Instead, define a sane PATH at the beginning
of the script.

Don't force the user to reason with whether certain variables need to be
set or not. Instead, call out to portageq in the samples. Further, check
the exit status of portageq, rather than blindly assume that it always
succeeds. As a result, there are no more hard-coded paths, other than
/tmp.

Use pgrep in a less sloppy way.

Query PORT_LOGDIR if the query for PORTAGE_LOGDIR fails.

Closes: https://bugs.gentoo.org/524698
Signed-off-by: Kerin Millar  plushkava.net>
Signed-off-by: Sam James  gentoo.org>

 app-admin/tmpwatch/files/tmpwatch.cron | 40 ++
 ...atch-2.11-r2.ebuild => tmpwatch-2.11-r3.ebuild} |  0
 2 files changed, 19 insertions(+), 21 deletions(-)

diff --git a/app-admin/tmpwatch/files/tmpwatch.cron 
b/app-admin/tmpwatch/files/tmpwatch.cron
index 806b1453e55..d35a590379d 100644
--- a/app-admin/tmpwatch/files/tmpwatch.cron
+++ b/app-admin/tmpwatch/files/tmpwatch.cron
@@ -1,47 +1,45 @@
 #!/bin/sh
-# vim: ft=sh
+
+PATH="/usr/sbin:/usr/bin:/sbin:/bin"
 
 # This cron script contains several (commented out) examples.  You may use
 # them as is, by uncommenting them, or modify them to suit your needs.  Read
 # tmpwatch(8) for more information on tmpwatch parameters.
 
-### Variables ###
-
-TMPWATCH="/usr/sbin/tmpwatch"
-#PORTAGE_TMPDIR="$(portageq envvar PORTAGE_TMPDIR)/portage"
-#PORTAGE_LOGDIR="$(portageq envvar PORT_LOGDIR)"
-#DISTDIR="$(portageq distdir)"
-
 ### EXAMPLES ###
 
 # NOTE: if you have noatime in /etc/fstab for any partitions you plan on
 # running tmpwatch on, you should obviously change any of the examples that
 # use atime (-u|--atime).  Those that don't specify anything, default to 
-# atime.
-
-# NOTE2: the time value is in HOURS!
+# atime. Be aware that the time value is in HOURS!
 
 # Delete everything in /tmp that haven't been accessed in a week (>=168 hrs).
 #
-# if [[ -d /tmp ]]; then
-#   ${TMPWATCH} --atime 168 /tmp
+# if [ -d /tmp ]; then
+#  tmpwatch --atime 168 /tmp
 # fi
 
 # Delete everything in PORTAGE_TMPDIR that hasn't been modified in 2 weeks.
 #
-# if [[ -d ${PORTAGE_TMPDIR:-/var/tmp/portage} && -z $(/usr/bin/pgrep emerge) 
]]; then
-#   ${TMPWATCH} --mtime --all 336 ${PORTAGE_TMPDIR:-/var/tmp/portage}
+# if PORTAGE_TMPDIR=$(portageq envvar PORTAGE_TMPDIR) &&
+#  [ -d "${PORTAGE_TMPDIR}/portage" ] &&
+#  ! pgrep -x emerge >/dev/null
+# then
+#  tmpwatch --mtime --all 336 "${PORTAGE_TMPDIR}/portage"
 # fi
 
 # Delete everything in DISTDIR that hasn't been accessed in 6 months (going
-# by 30 day months)
+# by 30 day months).
 #
-# if [[ -d ${DISTDIR:-/usr/portage/distfiles} ]]; then
-#   ${TMPWATCH} --atime --fuser 4320 ${DISTDIR:-/usr/portage/distfiles}
+# if DISTDIR=$(portageq distdir) && [ -d "${DISTDIR}" ]; then
+#  tmpwatch --atime --fuser 4320 "${DISTDIR}"
 # fi
 
-# Delete everything in PORTAGE_LOGDIR that hasn't been accessed in 4 weeks
+# Delete everything in PORTAGE_LOGDIR that hasn't been accessed in 4 weeks.
 #
-# if [[ -d ${PORTAGE_LOGDIR:-/var/log/portage} ]]; then
-#   ${TMPWATCH} --atime 772 ${PORTAGE_LOGDIR:-/var/log/portage}
+# if { PORTAGE_LOGDIR=$(portageq envvar PORTAGE_LOGDIR) ||
+#  PORTAGE_LOGDIR=$(portageq envvar PORT_LOGDIR); } &&
+#  [ -d "${PORTAGE_LOGDIR}" ]
+# then
+#  tmpwatch --atime 772 "${PORTAGE_LOGDIR}"
 # fi

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild
similarity index 100%
rename from app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
rename to app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/, app-admin/tmpwatch/files/

2021-08-19 Thread Sam James
commit: 08df76446cf4f5092b6aa2f77c76cdabdf4baaba
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 20 02:25:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 20 02:25:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08df7644

Revert "app-admin/tmpwatch: address bug 524698 (bashism)"

This reverts commit ce830c8d6fc7869fd559d36c71cf3b8af3b4fd80.

Forgot to set git author when massaging git to apply the patch.

Bug: https://bugs.gentoo.org/524698
Signed-off-by: Sam James  gentoo.org>

 app-admin/tmpwatch/files/tmpwatch.cron | 40 --
 ...atch-2.11-r3.ebuild => tmpwatch-2.11-r2.ebuild} |  0
 2 files changed, 21 insertions(+), 19 deletions(-)

diff --git a/app-admin/tmpwatch/files/tmpwatch.cron 
b/app-admin/tmpwatch/files/tmpwatch.cron
index d35a590379d..806b1453e55 100644
--- a/app-admin/tmpwatch/files/tmpwatch.cron
+++ b/app-admin/tmpwatch/files/tmpwatch.cron
@@ -1,45 +1,47 @@
 #!/bin/sh
-
-PATH="/usr/sbin:/usr/bin:/sbin:/bin"
+# vim: ft=sh
 
 # This cron script contains several (commented out) examples.  You may use
 # them as is, by uncommenting them, or modify them to suit your needs.  Read
 # tmpwatch(8) for more information on tmpwatch parameters.
 
+### Variables ###
+
+TMPWATCH="/usr/sbin/tmpwatch"
+#PORTAGE_TMPDIR="$(portageq envvar PORTAGE_TMPDIR)/portage"
+#PORTAGE_LOGDIR="$(portageq envvar PORT_LOGDIR)"
+#DISTDIR="$(portageq distdir)"
+
 ### EXAMPLES ###
 
 # NOTE: if you have noatime in /etc/fstab for any partitions you plan on
 # running tmpwatch on, you should obviously change any of the examples that
 # use atime (-u|--atime).  Those that don't specify anything, default to 
-# atime. Be aware that the time value is in HOURS!
+# atime.
+
+# NOTE2: the time value is in HOURS!
 
 # Delete everything in /tmp that haven't been accessed in a week (>=168 hrs).
 #
-# if [ -d /tmp ]; then
-#  tmpwatch --atime 168 /tmp
+# if [[ -d /tmp ]]; then
+#   ${TMPWATCH} --atime 168 /tmp
 # fi
 
 # Delete everything in PORTAGE_TMPDIR that hasn't been modified in 2 weeks.
 #
-# if PORTAGE_TMPDIR=$(portageq envvar PORTAGE_TMPDIR) &&
-#  [ -d "${PORTAGE_TMPDIR}/portage" ] &&
-#  ! pgrep -x emerge >/dev/null
-# then
-#  tmpwatch --mtime --all 336 "${PORTAGE_TMPDIR}/portage"
+# if [[ -d ${PORTAGE_TMPDIR:-/var/tmp/portage} && -z $(/usr/bin/pgrep emerge) 
]]; then
+#   ${TMPWATCH} --mtime --all 336 ${PORTAGE_TMPDIR:-/var/tmp/portage}
 # fi
 
 # Delete everything in DISTDIR that hasn't been accessed in 6 months (going
-# by 30 day months).
+# by 30 day months)
 #
-# if DISTDIR=$(portageq distdir) && [ -d "${DISTDIR}" ]; then
-#  tmpwatch --atime --fuser 4320 "${DISTDIR}"
+# if [[ -d ${DISTDIR:-/usr/portage/distfiles} ]]; then
+#   ${TMPWATCH} --atime --fuser 4320 ${DISTDIR:-/usr/portage/distfiles}
 # fi
 
-# Delete everything in PORTAGE_LOGDIR that hasn't been accessed in 4 weeks.
+# Delete everything in PORTAGE_LOGDIR that hasn't been accessed in 4 weeks
 #
-# if { PORTAGE_LOGDIR=$(portageq envvar PORTAGE_LOGDIR) ||
-#  PORTAGE_LOGDIR=$(portageq envvar PORT_LOGDIR); } &&
-#  [ -d "${PORTAGE_LOGDIR}" ]
-# then
-#  tmpwatch --atime 772 "${PORTAGE_LOGDIR}"
+# if [[ -d ${PORTAGE_LOGDIR:-/var/log/portage} ]]; then
+#   ${TMPWATCH} --atime 772 ${PORTAGE_LOGDIR:-/var/log/portage}
 # fi

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
similarity index 100%
rename from app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild
rename to app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2021-08-19 Thread Sam James
commit: 82f41c23761802b1fb438b129c3c4e2ad3e68fe6
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 20 02:15:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 20 02:15:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82f41c23

app-admin/tmpwatch: fix metadata indentation

Signed-off-by: Sam James  gentoo.org>

 app-admin/tmpwatch/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/tmpwatch/metadata.xml b/app-admin/tmpwatch/metadata.xml
index 6f49eba8f49..7a38bb90096 100644
--- a/app-admin/tmpwatch/metadata.xml
+++ b/app-admin/tmpwatch/metadata.xml
@@ -1,5 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/files/, app-admin/tmpwatch/

2021-08-19 Thread Sam James
commit: ce830c8d6fc7869fd559d36c71cf3b8af3b4fd80
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 20 02:16:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 20 02:18:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce830c8d

app-admin/tmpwatch: address bug 524698 (bashism)

Remove the use of the [[ keyword in favour of the POSIX test command
(SC3010).

Don't hard-code pathnames to external programs and define silly
variables such as TMPWATCH. Instead, define a sane PATH at the beginning
of the script.

Don't force the user to reason with whether certain variables need to be
set or not. Instead, call out to portageq in the samples. Further, check
the exit status of portageq, rather than blindly assume that it always
succeeds. As a result, there are no more hard-coded paths, other than
/tmp.

Use pgrep in a less sloppy way.

Query PORT_LOGDIR if the query for PORTAGE_LOGDIR fails.

Closes: https://bugs.gentoo.org/524698
Signed-off-by: Kerin Millar  plushkava.net>
Signed-off-by: Sam James  gentoo.org>

 app-admin/tmpwatch/files/tmpwatch.cron | 40 ++
 ...atch-2.11-r2.ebuild => tmpwatch-2.11-r3.ebuild} |  0
 2 files changed, 19 insertions(+), 21 deletions(-)

diff --git a/app-admin/tmpwatch/files/tmpwatch.cron 
b/app-admin/tmpwatch/files/tmpwatch.cron
index 806b1453e55..d35a590379d 100644
--- a/app-admin/tmpwatch/files/tmpwatch.cron
+++ b/app-admin/tmpwatch/files/tmpwatch.cron
@@ -1,47 +1,45 @@
 #!/bin/sh
-# vim: ft=sh
+
+PATH="/usr/sbin:/usr/bin:/sbin:/bin"
 
 # This cron script contains several (commented out) examples.  You may use
 # them as is, by uncommenting them, or modify them to suit your needs.  Read
 # tmpwatch(8) for more information on tmpwatch parameters.
 
-### Variables ###
-
-TMPWATCH="/usr/sbin/tmpwatch"
-#PORTAGE_TMPDIR="$(portageq envvar PORTAGE_TMPDIR)/portage"
-#PORTAGE_LOGDIR="$(portageq envvar PORT_LOGDIR)"
-#DISTDIR="$(portageq distdir)"
-
 ### EXAMPLES ###
 
 # NOTE: if you have noatime in /etc/fstab for any partitions you plan on
 # running tmpwatch on, you should obviously change any of the examples that
 # use atime (-u|--atime).  Those that don't specify anything, default to 
-# atime.
-
-# NOTE2: the time value is in HOURS!
+# atime. Be aware that the time value is in HOURS!
 
 # Delete everything in /tmp that haven't been accessed in a week (>=168 hrs).
 #
-# if [[ -d /tmp ]]; then
-#   ${TMPWATCH} --atime 168 /tmp
+# if [ -d /tmp ]; then
+#  tmpwatch --atime 168 /tmp
 # fi
 
 # Delete everything in PORTAGE_TMPDIR that hasn't been modified in 2 weeks.
 #
-# if [[ -d ${PORTAGE_TMPDIR:-/var/tmp/portage} && -z $(/usr/bin/pgrep emerge) 
]]; then
-#   ${TMPWATCH} --mtime --all 336 ${PORTAGE_TMPDIR:-/var/tmp/portage}
+# if PORTAGE_TMPDIR=$(portageq envvar PORTAGE_TMPDIR) &&
+#  [ -d "${PORTAGE_TMPDIR}/portage" ] &&
+#  ! pgrep -x emerge >/dev/null
+# then
+#  tmpwatch --mtime --all 336 "${PORTAGE_TMPDIR}/portage"
 # fi
 
 # Delete everything in DISTDIR that hasn't been accessed in 6 months (going
-# by 30 day months)
+# by 30 day months).
 #
-# if [[ -d ${DISTDIR:-/usr/portage/distfiles} ]]; then
-#   ${TMPWATCH} --atime --fuser 4320 ${DISTDIR:-/usr/portage/distfiles}
+# if DISTDIR=$(portageq distdir) && [ -d "${DISTDIR}" ]; then
+#  tmpwatch --atime --fuser 4320 "${DISTDIR}"
 # fi
 
-# Delete everything in PORTAGE_LOGDIR that hasn't been accessed in 4 weeks
+# Delete everything in PORTAGE_LOGDIR that hasn't been accessed in 4 weeks.
 #
-# if [[ -d ${PORTAGE_LOGDIR:-/var/log/portage} ]]; then
-#   ${TMPWATCH} --atime 772 ${PORTAGE_LOGDIR:-/var/log/portage}
+# if { PORTAGE_LOGDIR=$(portageq envvar PORTAGE_LOGDIR) ||
+#  PORTAGE_LOGDIR=$(portageq envvar PORT_LOGDIR); } &&
+#  [ -d "${PORTAGE_LOGDIR}" ]
+# then
+#  tmpwatch --atime 772 "${PORTAGE_LOGDIR}"
 # fi

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild
similarity index 100%
rename from app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
rename to app-admin/tmpwatch/tmpwatch-2.11-r3.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2017-10-27 Thread Patrice Clement
commit: 7e04336782a7462fb1f55756d8e78b050bb1fe95
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Mon Sep 25 19:03:51 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Oct 27 23:06:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e043367

app-admin/tmpwatch: clean up old.

 app-admin/tmpwatch/tmpwatch-2.11.ebuild | 31 ---
 1 file changed, 31 deletions(-)

diff --git a/app-admin/tmpwatch/tmpwatch-2.11.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11.ebuild
deleted file mode 100644
index d2ac49b8db9..000
--- a/app-admin/tmpwatch/tmpwatch-2.11.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="Files which haven't been accessed are removed from specified 
directories"
-HOMEPAGE="https://pagure.io/tmpwatch;
-SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
-IUSE="selinux"
-
-RDEPEND="selinux? ( sec-policy/selinux-tmpreaper )"
-DEPEND=""
-
-src_compile() {
-   emake AR="$(tc-getAR)"
-}
-
-src_install() {
-   dosbin tmpwatch || die
-   doman tmpwatch.8 || die
-   dodoc ChangeLog NEWS README AUTHORS || die
-
-   exeinto /etc/cron.daily
-   newexe "${FILESDIR}/${PN}.cron" "${PN}" || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2017-10-27 Thread Patrice Clement
commit: d4e0b860364e885d034283ad3f1d873945e94f91
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Aug 30 18:52:59 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Oct 27 23:06:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e0b860

app-admin/tmpwatch: fix HOMEPAGE, SRC_URI.

Closes: https://github.com/gentoo/gentoo/pull/5563

 app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild | 4 ++--
 app-admin/tmpwatch/tmpwatch-2.11.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
index b1028a59fbb..d95863cf391 100644
--- a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
+++ b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
@@ -6,8 +6,8 @@ EAPI=6
 inherit toolchain-funcs eutils
 
 DESCRIPTION="Files which haven't been accessed are removed from specified 
directories"
-HOMEPAGE="https://fedorahosted.org/tmpwatch/;
-SRC_URI="https://fedorahosted.org/releases/t/m/${PN}/${P}.tar.bz2;
+HOMEPAGE="https://pagure.io/tmpwatch;
+SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/app-admin/tmpwatch/tmpwatch-2.11.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11.ebuild
index 5e251f8628b..d2ac49b8db9 100644
--- a/app-admin/tmpwatch/tmpwatch-2.11.ebuild
+++ b/app-admin/tmpwatch/tmpwatch-2.11.ebuild
@@ -6,8 +6,8 @@ EAPI=5
 inherit toolchain-funcs
 
 DESCRIPTION="Files which haven't been accessed are removed from specified 
directories"
-HOMEPAGE="https://fedorahosted.org/tmpwatch/;
-SRC_URI="https://fedorahosted.org/releases/t/m/${PN}/${P}.tar.bz2;
+HOMEPAGE="https://pagure.io/tmpwatch;
+SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2016-11-27 Thread Pacho Ramos
commit: d0d7833e635f996ebae087b199797e8cb2042ac4
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Nov 27 18:30:06 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Nov 27 18:30:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d7833e

app-admin/tmpwatch: Drop old

Package-Manager: portage-2.3.2

 app-admin/tmpwatch/tmpwatch-2.11-r1.ebuild | 37 --
 1 file changed, 37 deletions(-)

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r1.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r1.ebuild
deleted file mode 100644
index 5a300e4..
--- a/app-admin/tmpwatch/tmpwatch-2.11-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit toolchain-funcs eutils
-
-DESCRIPTION="Files which haven't been accessed in a given period of time are 
removed from specified directories"
-HOMEPAGE="https://fedorahosted.org/tmpwatch/;
-SRC_URI="https://fedorahosted.org/releases/t/m/${PN}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="selinux"
-
-RDEPEND="selinux? ( sec-policy/selinux-tmpreaper )"
-DEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-boottime.patch"
-   epatch_user
-}
-
-src_compile() {
-   emake AR="$(tc-getAR)"
-}
-
-src_install() {
-   dosbin tmpwatch || die
-   doman tmpwatch.8 || die
-   dodoc ChangeLog NEWS README AUTHORS || die
-
-   exeinto /etc/cron.daily
-   newexe "${FILESDIR}/${PN}.cron" "${PN}" || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2016-11-27 Thread Pacho Ramos
commit: cabf75d5a0cf1700ac39ffd6722ae533757d5340
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Nov 27 18:29:38 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Nov 27 18:29:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cabf75d5

app-admin/tmpwatch: amd64/x86 stable, bug #600900

Package-Manager: portage-2.3.2

 app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
index da126ea..520abe1 100644
--- a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
+++ b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://fedorahosted.org/releases/t/m/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="selinux"
 
 RDEPEND="selinux? ( sec-policy/selinux-tmpreaper )"



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2016-11-27 Thread Tobias Klausmann
commit: d0745c23e0c6a94f710c1340e77130884ff21f11
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Nov 27 17:50:13 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Nov 27 17:51:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0745c23

app-admin/tmpwatch-2.11-r2: stable on alpha

Gentoo-Bug: 600900

 app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
index 3de9352..da126ea 100644
--- a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
+++ b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://fedorahosted.org/releases/t/m/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="selinux"
 
 RDEPEND="selinux? ( sec-policy/selinux-tmpreaper )"



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2016-07-07 Thread Austin English
commit: ec196793931d17a8454945741ea3ac531873925b
Author: Austin English  gentoo  org>
AuthorDate: Thu Jul  7 17:59:03 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Thu Jul  7 18:00:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec196793

app-admin/tmpwatch: bump to EAPI 6, add maintainer-needed

Package-Manager: portage-2.2.28

 app-admin/tmpwatch/metadata.xml|  1 +
 app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/app-admin/tmpwatch/metadata.xml b/app-admin/tmpwatch/metadata.xml
index 097975e..6f49eba 100644
--- a/app-admin/tmpwatch/metadata.xml
+++ b/app-admin/tmpwatch/metadata.xml
@@ -1,4 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+
 

diff --git a/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild 
b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
new file mode 100644
index 000..3de9352
--- /dev/null
+++ b/app-admin/tmpwatch/tmpwatch-2.11-r2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs eutils
+
+DESCRIPTION="Files which haven't been accessed in a given period of time are 
removed from specified directories"
+HOMEPAGE="https://fedorahosted.org/tmpwatch/;
+SRC_URI="https://fedorahosted.org/releases/t/m/${PN}/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="selinux"
+
+RDEPEND="selinux? ( sec-policy/selinux-tmpreaper )"
+DEPEND=""
+
+PATCHES=(
+   "${FILESDIR}/${P}-boottime.patch"
+)
+
+src_compile() {
+   emake AR="$(tc-getAR)"
+}
+
+src_install() {
+   default
+
+   dosbin tmpwatch
+   doman tmpwatch.8
+
+   exeinto /etc/cron.daily
+   newexe "${FILESDIR}/${PN}.cron" "${PN}"
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/tmpwatch/

2016-05-28 Thread Pacho Ramos
commit: 6ddcb7597dd585ce9b514e663ca9fdf5c8bb90e5
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat May 28 09:25:37 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat May 28 09:31:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ddcb759

app-admin/tmpwatch: Cleanup due to #148577

Package-Manager: portage-2.3.0_rc1

 app-admin/tmpwatch/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-admin/tmpwatch/metadata.xml b/app-admin/tmpwatch/metadata.xml
index 71b05bf..097975e 100644
--- a/app-admin/tmpwatch/metadata.xml
+++ b/app-admin/tmpwatch/metadata.xml
@@ -1,8 +1,4 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
- fa...@gentoo.org
- Christian Faulhammer
-