[arch-commits] Commit in atom/trunk (4 files)
Nicola Squartini
tensor5 at archlinux.org
Thu Apr 19 09:19:10 UTC 2018
Date: Thursday, April 19, 2018 @ 09:19:09
Author: tensor5
Revision: 316985
upgpkg: atom 1.26.0-1
Modified:
atom/trunk/PKGBUILD
atom/trunk/fix-license-path.patch
atom/trunk/fix-restart.patch
atom/trunk/use-system-electron.patch
---------------------------+
PKGBUILD | 10 +++++-----
fix-license-path.patch | 2 +-
fix-restart.patch | 2 +-
use-system-electron.patch | 14 +++++++-------
4 files changed, 14 insertions(+), 14 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2018-04-19 08:55:24 UTC (rev 316984)
+++ PKGBUILD 2018-04-19 09:19:09 UTC (rev 316985)
@@ -2,7 +2,7 @@
# Maintainer: Nicola Squartini <tensor5 at gmail.com>
pkgname=atom
-pkgver=1.25.1
+pkgver=1.26.0
pkgrel=1
pkgdesc='A hackable text editor for the 21st Century'
arch=('x86_64')
@@ -24,16 +24,16 @@
'symbols-view-use-system-ctags.patch'
'use-system-apm.patch'
'use-system-electron.patch')
-sha256sums=('607bfcfe283419d9a987649d02a3004a40272f17f2949049fccf419f8b72cfbb'
+sha256sums=('1743713a64b8a6b202e2339469bf6a65d9594dd0efa26c286825b0da9696a822'
'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
'd8d77adebd7bd4eaf024988c68c30dc6b968044f7a6381227d13b6d77fa2b442'
- '67ecd71b08292218388205ee49e02d176a15bd0c3e74d30cb720b79c6946f4c9'
+ '813bd9a813128f7b2b8ee30dd4f759da42a8c266ea72d07913813a204a4c01da'
'eb771d7c009be8d48c1387ed63f3e575dc12f3bd69455b4be4b78ab57cb49b86'
- 'a6fa960741823a52b2f82684285e26eb84ce54825dc7ed008fdaca974b60957e'
+ '0cda894a3ade56e4a1254b646ad4d2383af8f6d675fc81e6bfa2be9d358e519f'
'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
- 'ea255a397b798a650b34737bdfe390a393df028da061940c383063b317e70ecb')
+ '7719b9c21fa5dad2b4e02ca05592561de8e2046283f421f2dbc9baaa7016d843')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
Modified: fix-license-path.patch
===================================================================
--- fix-license-path.patch 2018-04-19 08:55:24 UTC (rev 316984)
+++ fix-license-path.patch 2018-04-19 09:19:09 UTC (rev 316985)
@@ -1,6 +1,6 @@
--- a/src/main-process/atom-application.js
+++ b/src/main-process/atom-application.js
-@@ -413,7 +413,7 @@
+@@ -414,7 +414,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 2018-04-19 08:55:24 UTC (rev 316984)
+++ fix-restart.patch 2018-04-19 09:19:09 UTC (rev 316985)
@@ -1,6 +1,6 @@
--- a/src/main-process/atom-application.js
+++ b/src/main-process/atom-application.js
-@@ -1339,7 +1339,7 @@
+@@ -1343,7 +1343,7 @@
}
restart () {
Modified: use-system-electron.patch
===================================================================
--- use-system-electron.patch 2018-04-19 08:55:24 UTC (rev 316984)
+++ use-system-electron.patch 2018-04-19 09:19:09 UTC (rev 316985)
@@ -7,7 +7,7 @@
- "electronVersion": "1.7.11",
"dependencies": {
"@atom/nsfw": "^1.0.18",
- "@atom/source-map-support": "^0.3.4",
+ "@atom/watcher": "1.0.3",
--- a/script/build
+++ b/script/build
@@ -2,10 +2,6 @@
@@ -101,7 +101,7 @@
- })
--- a/script/lib/generate-startup-snapshot.js
+++ b/script/lib/generate-startup-snapshot.js
-@@ -77,7 +77,7 @@
+@@ -79,7 +79,7 @@
} else if (process.platform === 'win32') {
nodeBundledInElectronPath = path.join(packagedAppPath, 'atom.exe')
} else {
@@ -110,7 +110,7 @@
}
childProcess.execFileSync(
nodeBundledInElectronPath,
-@@ -85,6 +85,7 @@
+@@ -87,6 +87,7 @@
{env: Object.assign({}, process.env, {ELECTRON_RUN_AS_NODE: 1})}
)
@@ -118,7 +118,7 @@
const generatedStartupBlobPath = path.join(CONFIG.buildOutputPath, 'snapshot_blob.bin')
console.log(`Generating startup blob at "${generatedStartupBlobPath}"`)
childProcess.execFileSync(
-@@ -102,5 +103,6 @@
+@@ -104,5 +105,6 @@
console.log(`Moving generated startup blob into "${startupBlobDestinationPath}"`)
fs.unlinkSync(startupBlobDestinationPath)
fs.renameSync(generatedStartupBlobPath, startupBlobDestinationPath)
@@ -127,12 +127,12 @@
}
--- a/script/package.json
+++ b/script/package.json
-@@ -8,9 +8,7 @@
+@@ -7,9 +7,7 @@
+ "coffeelint": "1.15.7",
"colors": "1.1.2",
- "csslint": "1.0.2",
"donna": "1.0.16",
- "electron-chromedriver": "~1.7",
- "electron-link": "0.1.2",
+ "electron-link": "0.2.0",
- "electron-mksnapshot": "~1.7",
"electron-packager": "7.3.0",
"electron-winstaller": "2.6.4",
More information about the arch-commits
mailing list