summaryrefslogtreecommitdiff
path: root/sys-process/time
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sys-process/time
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'sys-process/time')
-rw-r--r--sys-process/time/Manifest1
-rw-r--r--sys-process/time/files/time-1.9-implicit-func-decl-clang.patch24
-rw-r--r--sys-process/time/metadata.xml11
-rw-r--r--sys-process/time/time-1.9-r1.ebuild27
4 files changed, 0 insertions, 63 deletions
diff --git a/sys-process/time/Manifest b/sys-process/time/Manifest
deleted file mode 100644
index fba143046456..000000000000
--- a/sys-process/time/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST time-1.9.tar.gz 596779 BLAKE2B b48c2def2f7aaa79ddb8838ed9e103dd7b1b573b6084d1481838cac86eb7930b3a231469936ad23d5096e576ea728e821defb27fc8b3f9187809e3f5c01b7c57 SHA512 5c6dabbbe71e9103a47b892b86bb914c1704122d4fe7dff1e2cbd28503297163118d295077d8e062b035d673a1f91c36f8a45c7383f374fd766942b32bde4406
diff --git a/sys-process/time/files/time-1.9-implicit-func-decl-clang.patch b/sys-process/time/files/time-1.9-implicit-func-decl-clang.patch
deleted file mode 100644
index ca76b5a50050..000000000000
--- a/sys-process/time/files/time-1.9-implicit-func-decl-clang.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-https://lists.gnu.org/archive/html/bug-time/2022-08/msg00001.html
-
-From c8deae54f92d636878097063b411af9fb5262ad3 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 15 Aug 2022 07:24:24 -0700
-Subject: [PATCH] include string.h for memset()
-
-Fixes implicit function declaration warning e.g.
-
-resuse.c:103:3: error: call to undeclared library function 'memset' with type 'void *(void *, int, unsigned long)'
-
-Upstream-Status: Submitted [https://lists.gnu.org/archive/html/bug-time/2022-08/msg00001.html]
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
---- a/src/resuse.c
-+++ b/src/resuse.c
-@@ -22,6 +22,7 @@
- */
-
- #include "config.h"
-+#include <string.h>
- #include <sys/time.h>
- #include <sys/wait.h>
- #include <sys/resource.h>
-
diff --git a/sys-process/time/metadata.xml b/sys-process/time/metadata.xml
deleted file mode 100644
index 0909b8bf8c1d..000000000000
--- a/sys-process/time/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>base-system@gentoo.org</email>
- <name>Gentoo Base System</name>
- </maintainer>
- <upstream>
- <remote-id type="savannah">time</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/sys-process/time/time-1.9-r1.ebuild b/sys-process/time/time-1.9-r1.ebuild
deleted file mode 100644
index 2b7d613fb614..000000000000
--- a/sys-process/time/time-1.9-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic
-
-DESCRIPTION="Displays info about resources used by a program"
-HOMEPAGE="https://www.gnu.org/directory/time.html"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
-
-BDEPEND="sys-apps/texinfo"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.9-implicit-func-decl-clang.patch
-)
-
-src_configure() {
- # https://savannah.gnu.org/bugs/index.php?66450
- append-cflags -std=gnu17
-
- econf
-}