aboutsummaryrefslogtreecommitdiff
path: root/dev-R/ps
diff options
context:
space:
mode:
Diffstat (limited to 'dev-R/ps')
-rw-r--r--dev-R/ps/Manifest1
-rw-r--r--dev-R/ps/files/ps-1.7.0-fPIE.patch15
-rw-r--r--dev-R/ps/metadata.xml19
-rw-r--r--dev-R/ps/ps-1.7.1.ebuild31
4 files changed, 0 insertions, 66 deletions
diff --git a/dev-R/ps/Manifest b/dev-R/ps/Manifest
deleted file mode 100644
index 015fbe2d3..000000000
--- a/dev-R/ps/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ps_1.7.1.tar.gz 128664 BLAKE2B f229e82897e65bce85e46e4b256c6610f24cf3241f52c4979bf9be9e0acf0eabf9caa8e31d44b95b35a2e5f0b0662cd8bcc94ad3ad3e659be4cf97618da33e0e SHA512 0a8fbec74a8f4efa374d091a70db68418c969c987af8211e73b6077a947634c8acdbc9768edda7c52332aec2ef9a7aabd4828df987c30cdc65698959f0104962
diff --git a/dev-R/ps/files/ps-1.7.0-fPIE.patch b/dev-R/ps/files/ps-1.7.0-fPIE.patch
deleted file mode 100644
index eeb966bfd..000000000
--- a/dev-R/ps/files/ps-1.7.0-fPIE.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/src/Makevars.in
-+++ b/src/Makevars.in
-@@ -8,10 +8,10 @@
- all: px @TARGETS@ $(SHLIB)
-
- px: px.c
-- $(CC) $(CFLAGS) $(LDFLAGS) -Wall px.c -o px
-+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall px.c -o px
-
- interrupt: interrupt.c
-- $(CC) $(CFLAGS) $(LDFLAGS) -Wall interrupt.c -o interrupt
-+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall interrupt.c -o interrupt
-
- clean:
- rm -rf $(SHLIB) $(OBJECTS) px.exe px interrupt.exe interrupt
diff --git a/dev-R/ps/metadata.xml b/dev-R/ps/metadata.xml
deleted file mode 100644
index d555d7ede..000000000
--- a/dev-R/ps/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <description>co-maintainers welcome</description>
- <email>lssndrbarbieri@gmail.com</email>
- <name>Alessandro Barbieri</name>
- </maintainer>
- <upstream>
- <bugs-to>https://github.com/r-lib/ps/issues</bugs-to>
- <changelog>https://cran.r-project.org/web/packages/ps/news/news.html</changelog>
- <doc lang="en">https://cran.r-project.org/web/packages/ps/ps.pdf</doc>
- <maintainer>
- <name>Gábor Csárdi</name>
- <email>csardi.gabor@gmail.com</email>
- </maintainer>
- <remote-id type="github">r-lib/ps</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-R/ps/ps-1.7.1.ebuild b/dev-R/ps/ps-1.7.1.ebuild
deleted file mode 100644
index e135eba0f..000000000
--- a/dev-R/ps/ps-1.7.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit R-packages
-
-DESCRIPTION='List, Query, Manipulate System Processes'
-HOMEPAGE="
- https://cran.r-project.org/package=ps
- https://github.com/r-lib/ps
- https://ps.r-lib.org/
-"
-KEYWORDS="~amd64"
-LICENSE='MIT'
-
-DEPEND=">=dev-lang/R-3.1"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-1.7.0-fPIE.patch" )
-
-SUGGESTED_PACKAGES="
- dev-R/callr
- dev-R/covr
- dev-R/pingr
- >=dev-R/processx-3.1.0
- dev-R/R6
- dev-R/rlang
- >=dev-R/testthat-3.0.0
- dev-R/tibble
-"