public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/man-db/files/
@ 2017-02-21 21:51 Robin H. Johnson
  0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson @ 2017-02-21 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     2bb45be05dabf0f03a4c690ac13dcb3ab6eda03c
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 21 21:50:36 2017 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Feb 21 21:51:02 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb45be0

sys-apps/man-db: fix quoting in cronjob.

Package-Manager: portage-2.3.3
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 sys-apps/man-db/files/man-db.cron | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/man-db/files/man-db.cron b/sys-apps/man-db/files/man-db.cron
index d94e594d1a..b3794f2557 100644
--- a/sys-apps/man-db/files/man-db.cron
+++ b/sys-apps/man-db/files/man-db.cron
@@ -2,7 +2,7 @@
 
 # Use same perms/settings as the ebuild.
 cachedir="/var/cache/man"
-if [ ! -d ${cachedir} ]; then
+if [ ! -d "${cachedir}" ]; then
 	mkdir -p "${cachedir}"
 	chown man:man "${cachedir}"
 	chmod 0755 "${cachedir}"


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/man-db/files/
@ 2022-02-15  1:16 Conrad Kostecki
  0 siblings, 0 replies; 2+ messages in thread
From: Conrad Kostecki @ 2022-02-15  1:16 UTC (permalink / raw
  To: gentoo-commits

commit:     7c7891328969297f2f27f6931898211a6b14dd85
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Mon Feb 14 17:35:00 2022 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Feb 15 01:15:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c789132

sys-apps/man-db: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/24193
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../files/man-db-2.10.0-fix-build-clang.patch      | 44 ----------------------
 1 file changed, 44 deletions(-)

diff --git a/sys-apps/man-db/files/man-db-2.10.0-fix-build-clang.patch b/sys-apps/man-db/files/man-db-2.10.0-fix-build-clang.patch
deleted file mode 100644
index 2896301008ad..000000000000
--- a/sys-apps/man-db/files/man-db-2.10.0-fix-build-clang.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-https://gitlab.com/cjwatson/man-db/-/commit/f4f94402834f20b9da730aeca5daa465be38efdf
-https://gitlab.com/cjwatson/man-db/-/issues/2
-
-From f4f94402834f20b9da730aeca5daa465be38efdf Mon Sep 17 00:00:00 2001
-From: Colin Watson <cjwatson@debian.org>
-Date: Sun, 6 Feb 2022 12:37:01 +0000
-Subject: [PATCH] Revert "Reduce indentation depth using C99"
-
-This reverts commit c4d20840f3487588c4a0da4397b1acb6dc83a1e5.  Even in
-C99, a declaration isn't valid immediately after a label; this didn't
-become valid until C2x, although gcc allows it as an extension.
-
-Fixes https://gitlab.com/cjwatson/man-db/-/issues/2.
-
-* src/man.c (parse_opt): Restore enclosing block for OPT_WARNINGS.
---- a/src/man.c
-+++ b/src/man.c
-@@ -383,15 +383,18 @@ static error_t parse_opt (int key, char *arg, struct argp_state *state)
- 
- 		case OPT_WARNINGS:
- #ifdef NROFF_WARNINGS
--			char *s = xstrdup (arg ? arg : default_roff_warnings);
--			const char *warning;
-+			{
-+				char *s = xstrdup
-+					(arg ? arg : default_roff_warnings);
-+				const char *warning;
- 
--			for (warning = strtok (s, ","); warning;
--			     warning = strtok (NULL, ","))
--				gl_list_add_last (roff_warnings,
--						  xstrdup (warning));
-+				for (warning = strtok (s, ","); warning;
-+				     warning = strtok (NULL, ","))
-+					gl_list_add_last (roff_warnings,
-+							  xstrdup (warning));
- 
--			free (s);
-+				free (s);
-+			}
- #endif /* NROFF_WARNINGS */
- 			return 0;
- 
-GitLab


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-15  1:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-21 21:51 [gentoo-commits] repo/gentoo:master commit in: sys-apps/man-db/files/ Robin H. Johnson
  -- strict thread matches above, loose matches on Subject: below --
2022-02-15  1:16 Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox