[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2020-10-10 Thread Antonio Rojas via arch-commits
Date: Saturday, October 10, 2020 @ 09:14:52
  Author: arojas
Revision: 397837

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 397836, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 397836, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 397836, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 397836, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-10-10 09:14:37 UTC (rev 397836)
+++ PKGBUILD2020-10-10 09:14:52 UTC (rev 397837)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=4.0.2
-pkgrel=1
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre2' 'readline' 'zlib' 'perl'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
-makedepends=('jdk-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('ee79a57730ed4786c0d6a05bd050d52a5d0290c1'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 397836, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-10-10 09:14:52 UTC (rev 397837)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=4.0.3
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre2' 'readline' 'zlib' 'perl'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
+makedepends=('jdk-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2020-06-22 Thread Antonio Rojas via arch-commits
Date: Monday, June 22, 2020 @ 08:42:00
  Author: arojas
Revision: 390107

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 390106, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 390106, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 390106, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 390106, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-22 08:41:42 UTC (rev 390106)
+++ PKGBUILD2020-06-22 08:42:00 UTC (rev 390107)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=4.0.1
-pkgrel=1
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre2' 'readline' 'zlib' 'perl'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
-makedepends=('jdk-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('2518ef98af144eb95f9b89675292f5a156ec2f7a'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 390106, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-22 08:42:00 UTC (rev 390107)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=4.0.2
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre2' 'readline' 'zlib' 'perl'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
+makedepends=('jdk-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2020-06-06 Thread Antonio Rojas via arch-commits
Date: Saturday, June 6, 2020 @ 08:37:28
  Author: arojas
Revision: 388362

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 388361, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 388361, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 388361, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 388361, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-06 08:37:06 UTC (rev 388361)
+++ PKGBUILD2020-06-06 08:37:28 UTC (rev 388362)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=4.0.0
-pkgrel=2
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre2' 'readline' 'zlib' 'perl'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
-makedepends=('jdk-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('91750d179ae23877e1fe92262f5206352d8683ba'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 388361, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-06 08:37:28 UTC (rev 388362)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=4.0.1
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre2' 'readline' 'zlib' 'perl'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
+makedepends=('jdk-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2020-02-29 Thread Antonio Rojas via arch-commits
Date: Saturday, February 29, 2020 @ 08:46:22
  Author: arojas
Revision: 376398

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 376397, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 376397, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 376397, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 376397, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-29 08:45:59 UTC (rev 376397)
+++ PKGBUILD2020-02-29 08:46:22 UTC (rev 376398)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.6.2
-pkgrel=1
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('8eda2af51d63877fcc6674274b6801af605173c5'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 376397, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-02-29 08:46:22 UTC (rev 376398)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.6.3
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
+makedepends=('jdk-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2019-12-12 Thread Antonio Rojas via arch-commits
Date: Thursday, December 12, 2019 @ 08:22:18
  Author: arojas
Revision: 370712

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 370711, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 370711, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 370711, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 370711, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-12 08:21:48 UTC (rev 370711)
+++ PKGBUILD2019-12-12 08:22:18 UTC (rev 370712)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.6.1
-pkgrel=2
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('0041c025561b5622e3dc88cdedf82334620cd3c2'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 370711, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-12 08:22:18 UTC (rev 370712)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.6.2
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2019-07-05 Thread Antonio Rojas via arch-commits
Date: Friday, July 5, 2019 @ 12:22:25
  Author: arojas
Revision: 357319

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 357318, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 357318, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 357318, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 357318, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-05 12:21:59 UTC (rev 357318)
+++ PKGBUILD2019-07-05 12:22:25 UTC (rev 357319)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.6.0
-pkgrel=1
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('c8a1949e763d22ec3b1dbdd251afcb0f1d2d5c76'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 357318, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-05 12:22:25 UTC (rev 357319)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.6.1
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu' 'which')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2019-03-11 Thread Antonio Rojas via arch-commits
Date: Monday, March 11, 2019 @ 08:43:29
  Author: arojas
Revision: 347684

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 347683, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 347683, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 347683, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 347683, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-03-11 08:43:03 UTC (rev 347683)
+++ PKGBUILD2019-03-11 08:43:29 UTC (rev 347684)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.5.2
-pkgrel=2
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!makeflags' '!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('057ea91daed3e68a12b2a473ee1283cf26f360e2'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 347683, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-03-11 08:43:29 UTC (rev 347684)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.5.3
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2018-12-20 Thread Antonio Rojas via arch-commits
Date: Thursday, December 20, 2018 @ 08:55:12
  Author: arojas
Revision: 342599

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 342598, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 342598, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 342598, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 342598, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-20 08:54:44 UTC (rev 342598)
+++ PKGBUILD2018-12-20 08:55:12 UTC (rev 342599)
@@ -1,87 +0,0 @@
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.5.1
-pkgrel=3
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
-'openblas: faster linear algebra')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!makeflags' '!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('9314d3d372b05546a33791fbc8dd579c92ebd16b'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 342598, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-20 08:55:12 UTC (rev 342599)
@@ -0,0 +1,87 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.5.2
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!makeflags' '!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2018-07-02 Thread Antonio Rojas via arch-commits
Date: Monday, July 2, 2018 @ 09:48:48
  Author: arojas
Revision: 327912

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 327911, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 327911, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 327911, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 327911, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  175 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 101 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-02 09:48:09 UTC (rev 327911)
+++ PKGBUILD2018-07-02 09:48:48 UTC (rev 327912)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.5.0
-pkgrel=1
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!makeflags' '!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('69f9ff4ecc78057095aedc145eb33f66f48b27ed'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 327911, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-02 09:48:48 UTC (rev 327912)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.5.1
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages'
+'openblas: faster linear algebra')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!makeflags' '!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   'R.conf')

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2018-04-23 Thread Antonio Rojas via arch-commits
Date: Monday, April 23, 2018 @ 08:33:26
  Author: arojas
Revision: 322793

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 322792, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 322792, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 322792, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 322792, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-23 08:33:01 UTC (rev 322792)
+++ PKGBUILD2018-04-23 08:33:26 UTC (rev 322793)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.4.4
-pkgrel=2
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!makeflags' '!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('99c6c718506c49097f72c9928b7bcee9379bd699'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 322792, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-23 08:33:26 UTC (rev 322793)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.5.0
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!makeflags' '!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+ 

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2018-03-15 Thread Antonio Rojas via arch-commits
Date: Thursday, March 15, 2018 @ 09:25:20
  Author: arojas
Revision: 319293

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 319292, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 319292, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 319292, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 319292, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  174 ++--
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-15 09:24:55 UTC (rev 319292)
+++ PKGBUILD2018-03-15 09:25:20 UTC (rev 319293)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.4.3
-pkgrel=1
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('x86_64')
-license=('GPL')
-url='https://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!makeflags' '!emptydirs')
-source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('537d481888f20d385b3039f2f2b0c49b7b0fb5de'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 319292, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-15 09:25:20 UTC (rev 319293)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.4.4
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
+options=('!makeflags' '!emptydirs')
+source=("https://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png'
+   

[arch-commits] Commit in r/repos/extra-x86_64 (8 files)

2017-11-30 Thread Antonio Rojas via arch-commits
Date: Thursday, November 30, 2017 @ 19:08:47
  Author: arojas
Revision: 311190

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/PKGBUILD
(from rev 311189, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/R.conf
(from rev 311189, r/trunk/R.conf)
  r/repos/extra-x86_64/r.desktop
(from rev 311189, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.png
(from rev 311189, r/trunk/r.png)
Deleted:
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/R.conf
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.png

---+
 PKGBUILD  |  176 +---
 R.conf|4 -
 r.desktop |   22 +++
 3 files changed, 100 insertions(+), 102 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-30 19:07:57 UTC (rev 311189)
+++ PKGBUILD2017-11-30 19:08:47 UTC (rev 311190)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Damir Perisa 
-# Contributor: K. Piche 
-
-pkgname=r
-pkgver=3.4.2
-pkgrel=3
-pkgdesc="Language and environment for statistical computing and graphics"
-arch=('i686' 'x86_64')
-license=('GPL')
-url='http://www.r-project.org/'
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'libxt' 'libxmu' 'pango' 'xz' 'desktop-file-utils' 'zip' 'unzip')
-makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
-optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')
-options=('!makeflags' '!emptydirs')
-source=("http://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png'
-   'R.conf')
-sha1sums=('fb0e555bb49121e849436ce9e7e3bc4f7893664f'
-  'dd214eee232b7aced7366722ad416b6b39be8e1b'
-  'a69a07ec363440efc18ce0a7f2af103375dea978'
-  '43668da6cfd1b4455a99f23e79e2059294dddac9')
-
-prepare() {
-   cd R-${pkgver}
-   # set texmf dir correctly in makefile
-   sed -i 's|$(rsharedir)/texmf|${datarootdir}/texmf|' share/Makefile.in
-   # fix for texinfo 5.X
-   sed -i 's|test ${makeinfo_version_min} -lt 7|test ${makeinfo_version_min} 
-lt 0|' configure
-}
-
-build() {
-   cd R-${pkgver}
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-
-# make libRmath.so
-   cd src/nmath/standalone
-   make shared
-}
-
-package() {
-   cd R-${pkgver}
-   make DESTDIR="${pkgdir}" install
-
-# install libRmath.so
-   cd src/nmath/standalone
-   make DESTDIR="${pkgdir}" install
-
-   #  Fixup R wrapper scripts.
-   sed -i "s|${pkgdir} ||" "${pkgdir}/usr/bin/R"
-   rm "${pkgdir}/usr/lib/R/bin/R"
-   cd "${pkgdir}/usr/lib/R/bin"
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 "${srcdir}/r.desktop" \
-   "${pkgdir}/usr/share/applications/r.desktop"
-  install -Dm644 "${srcdir}/r.png" \
-   "${pkgdir}/usr/share/pixmaps/r.png"
-
-  # move the config directory to /etc and create symlinks
-  install -d "${pkgdir}/etc/R"
-  cd "${pkgdir}/usr/lib/R/etc"
-  for i in *; do
-mv -f ${i} "${pkgdir}/etc/R"
-ln -s /etc/R/${i} ${i}
-  done
-
-  # Install ld.so.conf.d file to ensure other applications access the shared 
lib
-  install -Dm644 "${srcdir}/R.conf" "${pkgdir}/etc/ld.so.conf.d/R.conf"
-}

Copied: r/repos/extra-x86_64/PKGBUILD (from rev 311189, r/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-11-30 19:08:47 UTC (rev 311190)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Ronald van Haren 
+# Contributor: Damir Perisa 
+# Contributor: K. Piche 
+
+pkgname=r
+pkgver=3.4.3
+pkgrel=1
+pkgdesc="Language and environment for statistical computing and graphics"
+arch=('x86_64')
+license=('GPL')
+url='https://www.r-project.org/'
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'libxt' 'libxmu' 'pango' 'xz' 'zip' 'unzip' 'curl' 'icu')
+makedepends=('jdk7-openjdk' 'gcc-fortran' 'tk')
+optdepends=('tk: tcl/tk interface' 'texlive-bin: latex sty files' 
'gcc-fortran: needed to compile some CRAN packages')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories' 
'etc/R/javaconf')

[arch-commits] Commit in r/repos (extra-x86_64)

2011-07-23 Thread Ronald van Haren
Date: Saturday, July 23, 2011 @ 05:24:12
  Author: ronald
Revision: 132344

db-move: r removed by ronald for move to [extra] (x86_64)

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64 testing-x86_64)

2011-07-23 Thread Ronald van Haren
Date: Saturday, July 23, 2011 @ 05:24:12
  Author: ronald
Revision: 132345

db-move: moved r from [testing] to [extra] (x86_64)

Added:
  r/repos/extra-x86_64/
Deleted:
  r/repos/testing-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-05-06 Thread Ronald van Haren
Date: Friday, May 6, 2011 @ 06:25:15
  Author: ronald
Revision: 122818

archrelease: remove extra-x86_64

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-05-06 Thread Ronald van Haren
Date: Friday, May 6, 2011 @ 06:49:22
  Author: ronald
Revision: 122824

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-05-06 Thread Ronald van Haren
Date: Friday, May 6, 2011 @ 06:49:07
  Author: ronald
Revision: 122823

archrelease: remove extra-x86_64

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-05-06 Thread Ronald van Haren
Date: Friday, May 6, 2011 @ 06:25:29
  Author: ronald
Revision: 122819

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-02-25 Thread Ronald van Haren
Date: Friday, February 25, 2011 @ 11:18:38
  Author: ronald
Revision: 111272

archrelease: remove extra-x86_64

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-02-25 Thread Ronald van Haren
Date: Friday, February 25, 2011 @ 11:18:55
  Author: ronald
Revision: 111273

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-02-05 Thread Ronald van Haren
Date: Saturday, February 5, 2011 @ 04:48:41
  Author: ronald
Revision: 108965

archrelease: remove extra-x86_64

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2011-02-05 Thread Ronald van Haren
Date: Saturday, February 5, 2011 @ 04:48:56
  Author: ronald
Revision: 108966

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2010-11-20 Thread Ronald van Haren
Date: Saturday, November 20, 2010 @ 14:56:50
  Author: ronald
Revision: 100145

archrelease: remove extra-x86_64

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2010-11-20 Thread Ronald van Haren
Date: Saturday, November 20, 2010 @ 14:57:19
  Author: ronald
Revision: 100146

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2010-10-27 Thread Pierre Schmitz
Date: Wednesday, October 27, 2010 @ 08:00:49
  Author: pierre
Revision: 97180

db-move: r removed by pierre for move to [extra] (x86_64)

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64 testing-x86_64)

2010-10-27 Thread Pierre Schmitz
Date: Wednesday, October 27, 2010 @ 08:00:51
  Author: pierre
Revision: 97181

db-move: moved r from [testing] to [extra] (x86_64)

Added:
  r/repos/extra-x86_64/
Deleted:
  r/repos/testing-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2010-07-19 Thread Ronald van Haren
Date: Monday, July 19, 2010 @ 06:06:21
  Author: ronald
Revision: 85744

archrelease: remove extra-x86_64

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2010-07-19 Thread Ronald van Haren
Date: Monday, July 19, 2010 @ 06:06:37
  Author: ronald
Revision: 85745

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2010-05-04 Thread Ronald van Haren
Date: Tuesday, May 4, 2010 @ 10:30:08
  Author: ronald
Revision: 79567

archrelease: remove extra-x86_64

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64)

2010-05-04 Thread Ronald van Haren
Date: Tuesday, May 4, 2010 @ 10:30:26
  Author: ronald
Revision: 79568

archrelease: copy trunk to extra-x86_64

Added:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64 extra-x86_64/PKGBUILD)

2010-02-01 Thread Giovanni Scafora
Date: Monday, February 1, 2010 @ 17:14:52
  Author: giovanni
Revision: 66874

Merged revisions 66872 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/r/trunk


  r66872 | giovanni | 2010-02-01 23:04:56 +0100 (lun, 01 feb 2010) | 2 lines
  
  upgpkg: r 2.10.1-1
  upstream release


Modified:
  r/repos/extra-x86_64/ (properties)
  r/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)


Property changes on: r/repos/extra-x86_64
___
Modified: svnmerge-integrated
   - /r/trunk:1-64362
   + /r/trunk:1-66873

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2010-02-01 22:05:39 UTC (rev 66873)
+++ extra-x86_64/PKGBUILD   2010-02-01 22:14:52 UTC (rev 66874)
@@ -4,10 +4,10 @@
 # Contributor: K. Piche kpi...@rogers.com
 
 pkgname=r
-pkgver=2.10.0
-pkgrel=3
+pkgver=2.10.1
+pkgrel=1
 pkgdesc=R is a language and environment for statistical computing and 
graphics
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('GPL')
 url=('http://www.r-project.org/')
 depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
@@ -19,7 +19,7 @@
r.desktop
r.png)
 
-md5sums=('4486934883b1dbcd5400135e22b26a75'
+md5sums=('75f8b7e875b846ea96a4c6cc0abc00a4'
  'f6d54d32e510d90c748a0d16d2abcbdc'
  '00659f39e90627fe87f1645df5d4e3a7')
 



[arch-commits] Commit in r/repos (extra-x86_64)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 15:43:24
  Author: jgc
Revision: 66243

db-move: r removed by jgc for move to extra

Deleted:
  r/repos/extra-x86_64/



[arch-commits] Commit in r/repos (extra-x86_64 testing-x86_64)

2010-01-30 Thread Jan de Groot
Date: Saturday, January 30, 2010 @ 15:43:24
  Author: jgc
Revision: 66244

db-move: moved r from [testing] to [extra] (x86_64)

Added:
  r/repos/extra-x86_64/
Deleted:
  r/repos/testing-x86_64/