Date: Wednesday, May 1, 2019 @ 05:42:20 Author: tensor5 Revision: 457385
upgpkg: atom 1.36.1-1 Modified: atom/trunk/PKGBUILD atom/trunk/fix-license-path.patch atom/trunk/fix-restart.patch atom/trunk/use-system-electron.patch ---------------------------+ PKGBUILD | 12 ++++++------ fix-license-path.patch | 2 +- fix-restart.patch | 2 +- use-system-electron.patch | 21 ++------------------- 4 files changed, 10 insertions(+), 27 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-05-01 04:38:38 UTC (rev 457384) +++ PKGBUILD 2019-05-01 05:42:20 UTC (rev 457385) @@ -1,8 +1,8 @@ # Maintainer: Nicola Squartini <[email protected]> pkgname=atom -pkgver=1.36.0 -pkgrel=2 +pkgver=1.36.1 +pkgrel=1 pkgdesc='A hackable text editor for the 21st Century' arch=('x86_64') url='https://github.com/atom/atom' @@ -26,19 +26,19 @@ 'symbols-view-use-system-ctags.patch' 'use-system-apm.patch' 'use-system-electron.patch') -sha256sums=('4ef8c35d67964c24abea36b65c914a5aea63520496999d3d8032bdff2c8d9c23' +sha256sums=('3fa6f0d86f3108a55b38c00e5d94da8ca6ceea74ae2a5aa263ef5bfb50eca0d8' 'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd' '971e4575884a0d1bf4683b5c6402a3d6059e41345cc09db83df5a0a30ad41bb6' '530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153' '75a672adc0237ea8c93ff67d8296eb73b87792b7b58cdaef7bf596fb6edd073f' '3ce4f665a1e3484bb408a665500a8f99d8afb5e3cd9d70374c5f9f4a37176e42' - '82a0a17d93f00c92bba21094690e075f2b146b424b52209872dd993ce38ca97e' - 'ad63f6428eb8c6afd477ae8f99f85ad25d822d4154c9275272c9ca19c8540953' + 'b38f7538d1506bd11bf57cc5a2919b2d29fb39a8811a0bf8e7fdd68e6c144296' + 'd3bd6c952ba0853811ebd3a2f268e3be796a41b8f26650c5b6489ff7cac3749c' '9073d3947f11e21788f0931021e4f41d01e3651cc99f2b3320626f478e26c491' '4033929dde0b81bb6f174cc4c79050474afaf85b54b928bfe13e05059448ebb1' '3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8' '53f43c9328a66e24b3467a0a06d9dfde83475f7e54251bf7a523beafaa043806' - '19347f0a6bf56721815a4477d0a346becea94b5ea3d4c621f9717269e21144de') + '95cddeae2be0a9e54d29122f5716687e48b4a270b3207f7caf0b351cde158980') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" Modified: fix-license-path.patch =================================================================== --- fix-license-path.patch 2019-05-01 04:38:38 UTC (rev 457384) +++ fix-license-path.patch 2019-05-01 05:42:20 UTC (rev 457385) @@ -1,6 +1,6 @@ --- a/src/main-process/atom-application.js +++ b/src/main-process/atom-application.js -@@ -441,7 +441,7 @@ +@@ -553,7 +553,7 @@ this.openPathOnEvent('application:open-your-keymap', 'atom://.atom/keymap') this.openPathOnEvent('application:open-your-snippets', 'atom://.atom/snippets') this.openPathOnEvent('application:open-your-stylesheet', 'atom://.atom/stylesheet') Modified: fix-restart.patch =================================================================== --- fix-restart.patch 2019-05-01 04:38:38 UTC (rev 457384) +++ fix-restart.patch 2019-05-01 05:42:20 UTC (rev 457385) @@ -1,6 +1,6 @@ --- a/src/main-process/atom-application.js +++ b/src/main-process/atom-application.js -@@ -1419,7 +1419,7 @@ +@@ -1603,7 +1603,7 @@ } restart () { Modified: use-system-electron.patch =================================================================== --- use-system-electron.patch 2019-05-01 04:38:38 UTC (rev 457384) +++ use-system-electron.patch 2019-05-01 05:42:20 UTC (rev 457385) @@ -144,7 +144,7 @@ "colors": "1.1.2", "donna": "1.0.16", - "electron-chromedriver": "~2.0", - "electron-link": "0.3.2", + "electron-link": "0.3.3", - "electron-mksnapshot": "~2.0", "electron-packager": "7.3.0", "electron-winstaller": "2.6.4", @@ -189,15 +189,7 @@ } --- a/src/main-process/atom-window.js +++ b/src/main-process/atom-window.js -@@ -1,6 +1,7 @@ - const {BrowserWindow, app, dialog, ipcMain} = require('electron') - const path = require('path') - const fs = require('fs') -+const {statSyncNoException} = require('fs-plus') - const url = require('url') - const {EventEmitter} = require('events') - -@@ -41,7 +42,8 @@ +@@ -40,7 +40,8 @@ // Disable the `auxclick` feature so that `click` events are triggered in // response to a middle-click. // (Ref: https://github.com/atom/atom/pull/12696#issuecomment-290496960) @@ -207,15 +199,6 @@ } } -@@ -141,7 +143,7 @@ - return this.representedDirectoryPaths.some(projectPath => { - if (pathToCheck === projectPath) return true - if (!pathToCheck.startsWith(path.join(projectPath, path.sep))) return false -- if (stat === undefined) stat = fs.statSyncNoException(pathToCheck) -+ if (stat === undefined) stat = statSyncNoException(pathToCheck) - return !stat || !stat.isDirectory() - }) - } --- a/src/module-cache.js +++ b/src/module-cache.js @@ -227,7 +227,7 @@
