summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authormef <mef@pkgsrc.org>2021-09-11 01:29:30 +0000
committermef <mef@pkgsrc.org>2021-09-11 01:29:30 +0000
commit99c7aed70381c03f3ea17c59463cc6c2f3ecf398 (patch)
treecbb92e33c20e4b183c8b61e84e6b32fa383a9c9a /textproc
parent3ed04b588b8ce94a21b0da1c6991b2b9d30cefe2 (diff)
downloadpkgsrc-99c7aed70381c03f3ea17c59463cc6c2f3ecf398.tar.gz
(textproc/R-readstata13) Updated 0.9.2 to 0.10.0
[0.10.0] - fix sortlist attribute for dta format 119 - fix compress option. In the past, unwanted conversions to integer type could occur. - fix encoding issues in variable and data labels - fix for reading/writing of format 119 - fix build on FreeBSD - new feature: improved handling of time and date formats - new feature: collect warnings from read.dta13
Diffstat (limited to 'textproc')
-rw-r--r--textproc/R-readstata13/Makefile4
-rw-r--r--textproc/R-readstata13/distinfo11
-rw-r--r--textproc/R-readstata13/patches/patch-inst_include_readstata.h17
3 files changed, 7 insertions, 25 deletions
diff --git a/textproc/R-readstata13/Makefile b/textproc/R-readstata13/Makefile
index 978a4cbae39..e7237c163ec 100644
--- a/textproc/R-readstata13/Makefile
+++ b/textproc/R-readstata13/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2019/08/08 19:53:57 brook Exp $
+# $NetBSD: Makefile,v 1.3 2021/09/11 01:29:30 mef Exp $
R_PKGNAME= readstata13
-R_PKGVER= 0.9.2
+R_PKGVER= 0.10.0
CATEGORIES= textproc
MAINTAINER= pkgsrc-users@NetBSD.org
diff --git a/textproc/R-readstata13/distinfo b/textproc/R-readstata13/distinfo
index 2e33e66641b..fc4637ac682 100644
--- a/textproc/R-readstata13/distinfo
+++ b/textproc/R-readstata13/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.2 2019/09/26 01:18:30 wiz Exp $
+$NetBSD: distinfo,v 1.3 2021/09/11 01:29:30 mef Exp $
-SHA1 (R/readstata13_0.9.2.tar.gz) = f87e7e136d0707d4720b00acd2a81c0e071ff65a
-RMD160 (R/readstata13_0.9.2.tar.gz) = 15d371f1c7170cf1aa1df2f8f1f31dec8707d11b
-SHA512 (R/readstata13_0.9.2.tar.gz) = c2e9ba9fa013f9976ef2d3e6d3e4fe8429fc4b8dd0ad420061bf5738de2dbfc2cfb039f7a55f8d978c51ca17ae9d9dd473cb6d77947057966f40c3ca48a86ca6
-Size (R/readstata13_0.9.2.tar.gz) = 61394 bytes
-SHA1 (patch-inst_include_readstata.h) = 6bbec9e0cbc87ac344143abf502d11d90edf4b69
+SHA1 (R/readstata13_0.10.0.tar.gz) = 9d2532189e8163249af5d93869242008eed8ac81
+RMD160 (R/readstata13_0.10.0.tar.gz) = c18c871642d314711e53d50264dd245c40980545
+SHA512 (R/readstata13_0.10.0.tar.gz) = b17cd615cb1c17727d75e05c0c93aa325fa313b84d12b1e09e3887ae88cd70e699131bcab98718a430572ef39a8973622651ea00a9c4780010d97d4b76d7d8cd
+Size (R/readstata13_0.10.0.tar.gz) = 64282 bytes
diff --git a/textproc/R-readstata13/patches/patch-inst_include_readstata.h b/textproc/R-readstata13/patches/patch-inst_include_readstata.h
deleted file mode 100644
index 64f092bee8d..00000000000
--- a/textproc/R-readstata13/patches/patch-inst_include_readstata.h
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-inst_include_readstata.h,v 1.1 2019/09/26 01:18:30 wiz Exp $
-
-fseeko64 only exists on Linux.
-off64_t is not used in the code.
-
---- inst/include/readstata.h.orig 2018-05-26 07:44:32.000000000 +0000
-+++ inst/include/readstata.h
-@@ -40,8 +40,7 @@ typedef unsigned int uint32_t;
- #include <stdint.h>
- #endif
-
--#ifdef __APPLE__
--# define off64_t off_t
-+#if !defined(__Linux__)
- # define fseeko64 fseeko
- #endif
-