rstudio: update to 1.2.5042.
This commit is contained in:
parent
a3b1d7110a
commit
0f30a15a0c
|
@ -0,0 +1,26 @@
|
||||||
|
--- src/cpp/core/system/PosixChildProcessTracker.cpp 2020-04-01 18:16:24.000000000 +0200
|
||||||
|
+++ - 2020-05-01 18:29:14.359052359 +0200
|
||||||
|
@@ -60,7 +60,7 @@
|
||||||
|
std::for_each(processes.begin(),
|
||||||
|
processes.end(),
|
||||||
|
boost::bind(&ChildProcessTracker::attemptToReapProcess,
|
||||||
|
- this, _1));
|
||||||
|
+ this, boost::placeholders::_1));
|
||||||
|
}
|
||||||
|
|
||||||
|
void ChildProcessTracker::attemptToReapProcess(
|
||||||
|
--- src/cpp/core/system/PosixOutputCapture.cpp 2020-04-01 18:16:24.000000000 +0200
|
||||||
|
+++ - 2020-05-01 18:30:02.132088380 +0200
|
||||||
|
@@ -80,10 +80,10 @@
|
||||||
|
};
|
||||||
|
|
||||||
|
if (dupStdoutFd != -1)
|
||||||
|
- outHandler = boost::bind<void>(wrapHandler, stdoutHandler, dupStdoutFd, _1);
|
||||||
|
+ outHandler = boost::bind<void>(wrapHandler, stdoutHandler, dupStdoutFd, boost::placeholders::_1);
|
||||||
|
|
||||||
|
if (dupStderrFd != -1)
|
||||||
|
- errHandler = boost::bind<void>(wrapHandler, stderrHandler, dupStderrFd, _1);
|
||||||
|
+ errHandler = boost::bind<void>(wrapHandler, stderrHandler, dupStderrFd, boost::placeholders::_1);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'rstudio'
|
# Template file for 'rstudio'
|
||||||
pkgname=rstudio
|
pkgname=rstudio
|
||||||
version=1.2.5033
|
version=1.2.5042
|
||||||
revision=2
|
revision=1
|
||||||
build_style=cmake
|
build_style=cmake
|
||||||
configure_args="-DRSTUDIO_TARGET=Desktop
|
configure_args="-DRSTUDIO_TARGET=Desktop
|
||||||
-DRSTUDIO_BOOST_SIGNALS_VERSION=2
|
-DRSTUDIO_BOOST_SIGNALS_VERSION=2
|
||||||
|
@ -25,7 +25,7 @@ distfiles="https://github.com/rstudio/rstudio/archive/v${version}.tar.gz
|
||||||
${_aws}/rstudio-dictionaries/core-dictionaries.zip
|
${_aws}/rstudio-dictionaries/core-dictionaries.zip
|
||||||
${_aws}/rstudio-buildtools/gin-${_gin_version}.zip
|
${_aws}/rstudio-buildtools/gin-${_gin_version}.zip
|
||||||
${_aws}/rstudio-buildtools/gwt-${_gwt_version}.zip"
|
${_aws}/rstudio-buildtools/gwt-${_gwt_version}.zip"
|
||||||
checksum="ff5115bda56ee0fdee0ae2eb014ce5379774aeb3714a257a52da5b91a95e4408
|
checksum="2bcd1d525d92e9ce42f4c7a57383c025e10d34313f8ed245429f02980b47c1fc
|
||||||
4341a9630efb9dcf7f215c324136407f3b3d6003e1c96f2e5e1f9f14d5787494
|
4341a9630efb9dcf7f215c324136407f3b3d6003e1c96f2e5e1f9f14d5787494
|
||||||
b98e704164f54be596779696a3fcd11be5785c9907a99ec535ff6e9525ad5f9a
|
b98e704164f54be596779696a3fcd11be5785c9907a99ec535ff6e9525ad5f9a
|
||||||
0b7af89fdadb4ec51cdb400ace94637d6fe9ffa401b168e2c3d372392a00a0a7"
|
0b7af89fdadb4ec51cdb400ace94637d6fe9ffa401b168e2c3d372392a00a0a7"
|
||||||
|
|
Loading…
Reference in New Issue