pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   brook
Date:           Wed Jul 31 13:40:18 UTC 2019

Modified Files:
        pkgsrc/doc: CHANGES-2019
        pkgsrc/sysutils: Makefile
Added Files:
        pkgsrc/sysutils/R-progress: DESCR Makefile buildlink3.mk distinfo

Log Message:
R-progress: initial commit.

Configurable Progress bars, they may include percentage, elapsed time,
and/or the estimated completion time. They work in terminals, in
'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'.
The package also provides a 'C++' 'API', that works with or without
'Rcpp'.


To generate a diff of this commit:
cvs rdiff -u -r1.3117 -r1.3118 pkgsrc/doc/CHANGES-2019
cvs rdiff -u -r1.821 -r1.822 pkgsrc/sysutils/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/sysutils/R-progress/DESCR \
    pkgsrc/sysutils/R-progress/Makefile \
    pkgsrc/sysutils/R-progress/buildlink3.mk \
    pkgsrc/sysutils/R-progress/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/doc/CHANGES-2019
diff -u pkgsrc/doc/CHANGES-2019:1.3117 pkgsrc/doc/CHANGES-2019:1.3118
--- pkgsrc/doc/CHANGES-2019:1.3117      Wed Jul 31 13:37:02 2019
+++ pkgsrc/doc/CHANGES-2019     Wed Jul 31 13:40:18 2019
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2019,v 1.3117 2019/07/31 13:37:02 brook Exp $
+$NetBSD: CHANGES-2019,v 1.3118 2019/07/31 13:40:18 brook Exp $
 
 Changes to the packages collection and infrastructure in 2019:
 
@@ -5074,3 +5074,4 @@ Changes to the packages collection and i
        Added math/R-vctrs version 0.2.0 [brook 2019-07-31]
        Added math/R-zeallot version 0.1.0 [brook 2019-07-31]
        Added misc/R-Hmisc version 4.2.0 [brook 2019-07-31]
+       Added sysutils/R-progress version 1.2.2 [brook 2019-07-31]

Index: pkgsrc/sysutils/Makefile
diff -u pkgsrc/sysutils/Makefile:1.821 pkgsrc/sysutils/Makefile:1.822
--- pkgsrc/sysutils/Makefile:1.821      Thu Jul 18 00:25:50 2019
+++ pkgsrc/sysutils/Makefile    Wed Jul 31 13:40:17 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.821 2019/07/18 00:25:50 fox Exp $
+# $NetBSD: Makefile,v 1.822 2019/07/31 13:40:17 brook Exp $
 #
 
 COMMENT=       System utilities
@@ -6,6 +6,7 @@ COMMENT=        System utilities
 SUBDIR+=       855resolution
 SUBDIR+=       915resolution
 SUBDIR+=       9base
+SUBDIR+=       R-progress
 SUBDIR+=       WCMCommander
 SUBDIR+=       accountsservice
 SUBDIR+=       acpica-utils

Added files:

Index: pkgsrc/sysutils/R-progress/DESCR
diff -u /dev/null pkgsrc/sysutils/R-progress/DESCR:1.1
--- /dev/null   Wed Jul 31 13:40:18 2019
+++ pkgsrc/sysutils/R-progress/DESCR    Wed Jul 31 13:40:18 2019
@@ -0,0 +1,5 @@
+Configurable Progress bars, they may include percentage, elapsed time,
+and/or the estimated completion time. They work in terminals, in
+'Emacs' 'ESS', 'RStudio', 'Windows' 'Rgui' and the 'macOS' 'R.app'.
+The package also provides a 'C++' 'API', that works with or without
+'Rcpp'.
Index: pkgsrc/sysutils/R-progress/Makefile
diff -u /dev/null pkgsrc/sysutils/R-progress/Makefile:1.1
--- /dev/null   Wed Jul 31 13:40:18 2019
+++ pkgsrc/sysutils/R-progress/Makefile Wed Jul 31 13:40:18 2019
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1 2019/07/31 13:40:18 brook Exp $
+
+CATEGORIES=    sysutils R
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      ${R_HOMEPAGE_BASE}/progress/
+COMMENT=       Terminal progress bars
+LICENSE=       mit
+
+R_PKGNAME=     progress
+R_PKGVER=      1.2.2
+
+DEPENDS+=      R-crayon>=1.3.4:../../devel/R-crayon
+DEPENDS+=      R-prettyunits>=1.0.2:../../math/R-prettyunits
+DEPENDS+=      R-hms>=0.5.0:../../time/R-hms
+
+USE_LANGUAGES= # none
+
+.include "../../math/R/Makefile.extension"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/sysutils/R-progress/buildlink3.mk
diff -u /dev/null pkgsrc/sysutils/R-progress/buildlink3.mk:1.1
--- /dev/null   Wed Jul 31 13:40:18 2019
+++ pkgsrc/sysutils/R-progress/buildlink3.mk    Wed Jul 31 13:40:18 2019
@@ -0,0 +1,12 @@
+# $NetBSD: buildlink3.mk,v 1.1 2019/07/31 13:40:18 brook Exp $
+
+BUILDLINK_TREE+=       R-progress
+
+.if !defined(R_PROGRESS_BUILDLINK3_MK)
+R_PROGRESS_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.R-progress+=     R-progress>=1.2.2
+BUILDLINK_PKGSRCDIR.R-progress?=       ../../sysutils/R-progress
+.endif # R_PROGRESS_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -R-progress
Index: pkgsrc/sysutils/R-progress/distinfo
diff -u /dev/null pkgsrc/sysutils/R-progress/distinfo:1.1
--- /dev/null   Wed Jul 31 13:40:18 2019
+++ pkgsrc/sysutils/R-progress/distinfo Wed Jul 31 13:40:18 2019
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/07/31 13:40:18 brook Exp $
+
+SHA1 (R/progress_1.2.2.tar.gz) = c5ba973046f6c675ee88eee9a2cd3f5dd1d16e77
+RMD160 (R/progress_1.2.2.tar.gz) = bacf6b0cbf21b281e41d5f3b4aa5e79c02ded657
+SHA512 (R/progress_1.2.2.tar.gz) = c02dfd93f43ac82ea44b97e53dd9e570aa90e95c8e4a9088114bae77f573eaba536b167a27d6a6a48d6db1d0b21d59d22468b48c0ce9580862af35f7bb3ee0bb
+Size (R/progress_1.2.2.tar.gz) = 29506 bytes



Home | Main Index | Thread Index | Old Index