[arch-commits] Commit in atom/trunk (5 files)

Nicola Squartini tensor5 at archlinux.org
Thu Apr 13 13:36:59 UTC 2017


    Date: Thursday, April 13, 2017 @ 13:36:59
  Author: tensor5
Revision: 222708

upgpkg: atom 1.16.0-1

Modified:
  atom/trunk/PKGBUILD
  atom/trunk/fix-license-path.patch
  atom/trunk/fix-restart.patch
  atom/trunk/symbols-view-use-system-ctags.patch
  atom/trunk/use-system-electron.patch

-------------------------------------+
 PKGBUILD                            |   12 ++++++------
 fix-license-path.patch              |   20 ++++++++++----------
 fix-restart.patch                   |    2 +-
 symbols-view-use-system-ctags.patch |    2 +-
 use-system-electron.patch           |    2 +-
 5 files changed, 19 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-04-13 13:13:53 UTC (rev 222707)
+++ PKGBUILD	2017-04-13 13:36:59 UTC (rev 222708)
@@ -2,7 +2,7 @@
 # Maintainer: Nicola Squartini <tensor5 at gmail.com>
 
 pkgname=atom
-pkgver=1.15.0
+pkgver=1.16.0
 pkgrel=1
 pkgdesc='A hackable text editor for the 21st Century'
 arch=('i686' 'x86_64')
@@ -21,14 +21,14 @@
         'symbols-view-use-system-ctags.patch'
         'use-system-apm.patch'
         'use-system-electron.patch')
-sha256sums=('318e90722a3c361df8ccd6f4cf2a76ebde98ce088b83b43173686295ef841e3c'
+sha256sums=('6cd5389813018027f0d6c2e652ff64cfc947b69d8648cdfe34116ee78996e007'
             '2148436adf17ec1970adc344fccf3782645375cd93e62a696a55f5b11fe98032'
             'ab638bb8ef2b27f24433738299b9714a53ebabdecf7b01e8d9df6a9ecee77ec2'
-            '7f56269c3b0679dc6ec118e27348e238ce492d4c766cb3813708c981a0692fa1'
-            '7a79dae04e659e4dc7a9cacbcdfa017712ab4c5654aa02cd26a9d34f954e9789'
-            '6edb3c1ba5f32e9ec4b5743911e69212af498aa4e64d7be96579dcb40ebc6204'
+            '9d2b8076178c081ca9dc36dcddf91066a5f0cac1f213523632fc484969e35ff7'
+            '80bbac038202298ec61395ee8494042ef37ca4ca39ee3f8af62523c36a3605ac'
+            '32fb830b89bd6079120bf7380a69f94c02aa366608b0d0b6c7123e06b878400c'
             '822e1629ff754af3225bc3c1c9301b4459a67c79e016fd57cc122644d571e24b'
-            'e9107e19b3c364d83acd592c96b8ef1997d161ff41943e45968816ed551f6892')
+            '53395e3d2058c6d0ad1364aa480893c218c2fafb0830e57fe935b1c2d3e790fe')
 
 prepare() {
   cd "${srcdir}/${pkgname}-${pkgver}"

Modified: fix-license-path.patch
===================================================================
--- fix-license-path.patch	2017-04-13 13:13:53 UTC (rev 222707)
+++ fix-license-path.patch	2017-04-13 13:36:59 UTC (rev 222708)
@@ -1,6 +1,6 @@
 --- a/src/main-process/atom-application.coffee
 +++ b/src/main-process/atom-application.coffee
-@@ -246,7 +246,7 @@
+@@ -255,7 +255,7 @@
      @openPathOnEvent('application:open-your-keymap', 'atom://.atom/keymap')
      @openPathOnEvent('application:open-your-snippets', 'atom://.atom/snippets')
      @openPathOnEvent('application:open-your-stylesheet', 'atom://.atom/stylesheet')
@@ -9,14 +9,14 @@
  
      @disposable.add ipcHelpers.on app, 'before-quit', (event) =>
        unless @quitting
---- a/src/workspace.coffee
-+++ b/src/workspace.coffee
-@@ -461,7 +461,7 @@
+--- a/src/workspace.js
++++ b/src/workspace.js
+@@ -558,7 +558,7 @@
  
-   # Open Atom's license in the active pane.
-   openLicense: ->
--    @open(path.join(process.resourcesPath, 'LICENSE.md'))
-+    @open('/usr/share/licenses/atom/LICENSE.md')
+   // Open Atom's license in the active pane.
+   openLicense () {
+-    return this.open(path.join(process.resourcesPath, 'LICENSE.md'))
++    return this.open('/usr/share/licenses/atom/LICENSE.md')
+   }
  
-   # Synchronously open the given URI in the active pane. **Only use this method
-   # in specs. Calling this in production code will block the UI thread and
+   // Synchronously open the given URI in the active pane. **Only use this method

Modified: fix-restart.patch
===================================================================
--- fix-restart.patch	2017-04-13 13:13:53 UTC (rev 222707)
+++ fix-restart.patch	2017-04-13 13:36:59 UTC (rev 222708)
@@ -1,6 +1,6 @@
 --- a/src/main-process/atom-application.coffee
 +++ b/src/main-process/atom-application.coffee
-@@ -796,7 +796,7 @@
+@@ -805,7 +805,7 @@
        @restart()
  
    restart: ->

Modified: symbols-view-use-system-ctags.patch
===================================================================
--- symbols-view-use-system-ctags.patch	2017-04-13 13:13:53 UTC (rev 222707)
+++ symbols-view-use-system-ctags.patch	2017-04-13 13:36:59 UTC (rev 222708)
@@ -1,6 +1,6 @@
 --- a/lib/tag-generator.js
 +++ b/lib/tag-generator.js
-@@ -72,7 +72,7 @@ export default class TagGenerator {
+@@ -78,7 +78,7 @@ export default class TagGenerator {
    generate() {
      let tags = {};
      const packageRoot = this.getPackageRoot();

Modified: use-system-electron.patch
===================================================================
--- use-system-electron.patch	2017-04-13 13:13:53 UTC (rev 222707)
+++ use-system-electron.patch	2017-04-13 13:36:59 UTC (rev 222708)
@@ -7,7 +7,7 @@
 -  "electronVersion": "1.3.13",
    "dependencies": {
      "async": "0.2.6",
-     "atom-keymap": "7.1.20",
+     "atom-keymap": "7.1.22",
 --- a/script/build
 +++ b/script/build
 @@ -2,10 +2,6 @@



More information about the arch-commits mailing list