Bug#1041556: [R-pkg-team] Bug#1041556: What is the architecture name in R what we call armel/armhf

2023-08-17 Thread Charles Plessy
Le Thu, Aug 17, 2023 at 07:52:35AM +0200, Andreas Tille a écrit : > > arch <- R.version$arch > identical(arch, "i386") || identical(arch, "i686") || identical(arch, > "armel") || identical(arch, "armhf") Hi Andreas, how about: system("dpkg-architecture -qDEB_BUILD_ARCH", intern=TRUE)

Bug#1041556: What is the architecture name in R what we call armel/armhf

2023-08-17 Thread Dirk Eddelbuettel
On 17 August 2023 at 07:24, Graham Inggs wrote: | On Thu, 17 Aug 2023 at 05:52, Andreas Tille wrote: | > I tried to skip two tests in r-cran-checkmate with this patch[1] | > which is based on | > | > arch <- R.version$arch | > identical(arch, "i386") || identical(arch, "i686") ||

Bug#1041556: What is the architecture name in R what we call armel/armhf

2023-08-17 Thread Graham Inggs
Hi Andreas On Thu, 17 Aug 2023 at 05:52, Andreas Tille wrote: > I tried to skip two tests in r-cran-checkmate with this patch[1] > which is based on > > arch <- R.version$arch > identical(arch, "i386") || identical(arch, "i686") || identical(arch, > "armel") || identical(arch, "armhf")

Bug#1041556: What is the architecture name in R what we call armel/armhf

2023-08-16 Thread Andreas Tille
Hi, I tried to skip two tests in r-cran-checkmate with this patch[1] which is based on arch <- R.version$arch identical(arch, "i386") || identical(arch, "i686") || identical(arch, "armel") || identical(arch, "armhf") which works fo i386 but unfortunately not on the two armel architectures