[arch-commits] Commit in r/repos/extra-x86_64 (8 files)
Antonio Rojas
arojas at archlinux.org
Mon Jul 2 09:48:48 UTC 2018
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
===================================================================
--- PKGBUILD 2018-07-02 09:48:09 UTC (rev 327911)
+++ PKGBUILD 2018-07-02 09:48:48 UTC (rev 327912)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Damir Perisa <damir.perisa at bluewin.ch>
-# Contributor: K. Piche <kpiche at rogers.com>
-
-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)
+++ PKGBUILD 2018-07-02 09:48:48 UTC (rev 327912)
@@ -0,0 +1,88 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Damir Perisa <damir.perisa at bluewin.ch>
+# Contributor: K. Piche <kpiche at rogers.com>
+
+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')
+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"
+}
Deleted: R.conf
===================================================================
--- R.conf 2018-07-02 09:48:09 UTC (rev 327911)
+++ R.conf 2018-07-02 09:48:48 UTC (rev 327912)
@@ -1,2 +0,0 @@
-/usr/lib/R/lib
-
Copied: r/repos/extra-x86_64/R.conf (from rev 327911, r/trunk/R.conf)
===================================================================
--- R.conf (rev 0)
+++ R.conf 2018-07-02 09:48:48 UTC (rev 327912)
@@ -0,0 +1,2 @@
+/usr/lib/R/lib
+
Deleted: r.desktop
===================================================================
--- r.desktop 2018-07-02 09:48:09 UTC (rev 327911)
+++ r.desktop 2018-07-02 09:48:48 UTC (rev 327912)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=R
-GenericName=environment for statistical computing
-Comment=language and environment for statistical computing and graphics
-Exec=R
-Icon=/usr/share/pixmaps/r.png
-DocPath=/usr/lib/R/doc/html/index.html
-StartupNotify=true
-Terminal=true
-Type=Application
-Categories=Math;Science;Education
Copied: r/repos/extra-x86_64/r.desktop (from rev 327911, r/trunk/r.desktop)
===================================================================
--- r.desktop (rev 0)
+++ r.desktop 2018-07-02 09:48:48 UTC (rev 327912)
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Name=R
+GenericName=environment for statistical computing
+Comment=language and environment for statistical computing and graphics
+Exec=R
+Icon=/usr/share/pixmaps/r.png
+DocPath=/usr/lib/R/doc/html/index.html
+StartupNotify=true
+Terminal=true
+Type=Application
+Categories=Math;Science;Education
Deleted: r.png
===================================================================
(Binary files differ)
Copied: r/repos/extra-x86_64/r.png (from rev 327911, r/trunk/r.png)
===================================================================
(Binary files differ)
More information about the arch-commits
mailing list