dev-R/ps: new version

Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
Alessandro Barbieri
2022-04-24 02:04:25 +02:00
parent 8d54480480
commit 4a5d3f3fe6
4 changed files with 34 additions and 18 deletions

View File

@@ -1 +1 @@
DIST ps_1.6.0.tar.gz 119670 BLAKE2B bf838fe601c4a3fedc7b17b7222c888ee44e52ec571cb4557665fa8dd8f577da6f4616fa351cb3e13da92898a9bebe2581b4e6918f01862296dbeb99af55db5f SHA512 c5110e86ea72a3c1aff4d93fbcb630b00d9b59e49271530327dfa8f1f7f88b9caab909b76d1638f77518292bec438412961375035e156b3ceebe6fed381bae45
DIST ps_1.7.0.tar.gz 125455 BLAKE2B e10b3c93c586d4e2d7e054a74b64d45506409ed79cd6c5b0eebacafa0f319d70ed7a0ab39a0df42420cf23c6e27790ed52706952d9d5c823ce91945a00975179 SHA512 69b53c22f39e5feab6834f81c48b0fe2e4772f6b400ead7a46a4bd07adb8fe2de8a9bafa8001ef7c6038f2fb1f9c0037905bbf8fe12a19b7b5b2c9627acbb910

View File

@@ -4,11 +4,11 @@
all: px @TARGETS@ $(SHLIB)
px: px.c
- $(CC) $(CFLAGS) -Wall px.c -o px
- $(CC) $(CFLAGS) $(LDFLAGS) -Wall px.c -o px
+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall px.c -o px
interrupt: interrupt.c
- $(CC) $(CFLAGS) -Wall interrupt.c -o interrupt
- $(CC) $(CFLAGS) $(LDFLAGS) -Wall interrupt.c -o interrupt
+ $(CC) $(CFLAGS) $(LDFLAGS) -fPIE -Wall interrupt.c -o interrupt
clean:

View File

@@ -1,15 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages
DESCRIPTION='List, Query, Manipulate System Processes'
KEYWORDS="~amd64"
LICENSE='MIT'
DEPEND=">=dev-lang/R-3.1"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${PN}-respect-LDFLAGS.patch" )

31
dev-R/ps/ps-1.7.0.ebuild Normal file
View File

@@ -0,0 +1,31 @@
# 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}/${P}-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
"