[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2018-02-16 Thread Nicola Squartini via arch-commits
Date: Friday, February 16, 2018 @ 13:27:34
  Author: tensor5
Revision: 295000

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 294999, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 294999, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 294999, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 294999, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 294999, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 294999, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 294999, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 294999, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +-
 dugite-use-system-git.patch |   48 ++--
 fix-atom-sh.patch   |  230 +--
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++---
 use-system-electron.patch   |  392 +-
 8 files changed, 519 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-02-16 13:27:09 UTC (rev 294999)
+++ PKGBUILD2018-02-16 13:27:34 UTC (rev 295000)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.23.3
-pkgrel=2
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('f739002e52b6057667880223c1ddfcb648b8cc4c922442903e89df7f7bd0a09f'
-'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
-'7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
-'75e60c20ddbe79c812595fdf88771422317db4256a200d2caefd09ebdd27ecc7'
-'34625e26f1089a068582bd43a9a3755b3f5186b90dcc097b519def8f701d9f3a'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'c767befecc78f94826c1c09c96b1d6537130fbd3f966ba6a7b683f20b8d3d1be')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git (TODO: set LOCAL_GIT_DIRECTORY=/usr)
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in > 

[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2018-01-26 Thread Nicola Squartini via arch-commits
Date: Friday, January 26, 2018 @ 11:02:48
  Author: tensor5
Revision: 287128

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 287127, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 287127, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 287127, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 287127, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 287127, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 287127, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 287127, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 287127, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +-
 dugite-use-system-git.patch |   48 ++--
 fix-atom-sh.patch   |  230 +--
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++---
 use-system-electron.patch   |  392 +-
 8 files changed, 519 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-26 11:02:29 UTC (rev 287127)
+++ PKGBUILD2018-01-26 11:02:48 UTC (rev 287128)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.23.3
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('f739002e52b6057667880223c1ddfcb648b8cc4c922442903e89df7f7bd0a09f'
-'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
-'7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
-'75e60c20ddbe79c812595fdf88771422317db4256a200d2caefd09ebdd27ecc7'
-'34625e26f1089a068582bd43a9a3755b3f5186b90dcc097b519def8f701d9f3a'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'c767befecc78f94826c1c09c96b1d6537130fbd3f966ba6a7b683f20b8d3d1be')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git (TODO: set LOCAL_GIT_DIRECTORY=/usr)
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in > 

[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2018-01-12 Thread Nicola Squartini via arch-commits
Date: Friday, January 12, 2018 @ 20:27:52
  Author: tensor5
Revision: 281694

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 281693, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 281693, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 281693, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 281693, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 281693, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 281693, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 281693, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 281693, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +-
 dugite-use-system-git.patch |   48 ++--
 fix-atom-sh.patch   |  230 +--
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++---
 use-system-electron.patch   |  392 +-
 8 files changed, 519 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-12 20:27:36 UTC (rev 281693)
+++ PKGBUILD2018-01-12 20:27:52 UTC (rev 281694)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.23.2
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('d814b179cdd816faf832ef4da2e4b5deaa03c3ad9b22291972f72837bde525a3'
-'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
-'7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
-'75e60c20ddbe79c812595fdf88771422317db4256a200d2caefd09ebdd27ecc7'
-'34625e26f1089a068582bd43a9a3755b3f5186b90dcc097b519def8f701d9f3a'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'c767befecc78f94826c1c09c96b1d6537130fbd3f966ba6a7b683f20b8d3d1be')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git (TODO: set LOCAL_GIT_DIRECTORY=/usr)
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in > 

[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2018-01-05 Thread Nicola Squartini via arch-commits
Date: Friday, January 5, 2018 @ 15:52:23
  Author: tensor5
Revision: 278976

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 278975, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 278975, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 278975, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 278975, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 278975, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 278975, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 278975, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 278975, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +-
 dugite-use-system-git.patch |   48 ++--
 fix-atom-sh.patch   |  230 +--
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++---
 use-system-electron.patch   |  392 +-
 8 files changed, 519 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-01-05 15:52:08 UTC (rev 278975)
+++ PKGBUILD2018-01-05 15:52:23 UTC (rev 278976)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.23.1
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('56147093f1b8fd98e1cdf9671888694b732ed6b83f7641c199ddbc54df76544f'
-'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
-'7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
-'75e60c20ddbe79c812595fdf88771422317db4256a200d2caefd09ebdd27ecc7'
-'34625e26f1089a068582bd43a9a3755b3f5186b90dcc097b519def8f701d9f3a'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'c767befecc78f94826c1c09c96b1d6537130fbd3f966ba6a7b683f20b8d3d1be')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git (TODO: set LOCAL_GIT_DIRECTORY=/usr)
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in > 

[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2017-12-18 Thread Nicola Squartini via arch-commits
Date: Monday, December 18, 2017 @ 18:03:17
  Author: tensor5
Revision: 274786

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 274785, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 274785, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 274785, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 274785, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 274785, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 274785, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 274785, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 274785, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +-
 dugite-use-system-git.patch |   48 ++--
 fix-atom-sh.patch   |  230 +--
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++---
 use-system-electron.patch   |  392 +-
 8 files changed, 519 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-18 18:02:56 UTC (rev 274785)
+++ PKGBUILD2017-12-18 18:03:17 UTC (rev 274786)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.22.1
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('97440a6dfea54e6e9d8996f3043f9d37e70d9bdc7f4a6a13363132eb812ea648'
-'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
-'7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
-'8e9eac1c9b751b9f41d362612e3d2382276030ebbf965f95607c520745243056'
-'646f81b0621a86eff3bb1f229eeb92b2f33bac41b3324424a6de06a780a8a22d'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'c120739911ce6a455a642c97d4d7de0956abee4d94bfc338f8a13f771a2d381c'
-'e957bf927dc39b434167fecf6bdd01d78f9c6f71f24bcf86fa2d89dc254a7f96')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git (TODO: set LOCAL_GIT_DIRECTORY=/usr)
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in > 

[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2017-11-17 Thread Nicola Squartini
Date: Friday, November 17, 2017 @ 12:48:03
  Author: tensor5
Revision: 267086

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 267085, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 267085, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 267085, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 267085, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 267085, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 267085, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 267085, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 267085, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +-
 dugite-use-system-git.patch |   48 ++--
 fix-atom-sh.patch   |  230 +--
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++---
 use-system-electron.patch   |  392 +-
 8 files changed, 519 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-17 12:47:42 UTC (rev 267085)
+++ PKGBUILD2017-11-17 12:48:03 UTC (rev 267086)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.22.0
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('i686' 'x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('28f2db2c92e2ee12fedbcf8e21f91df7a8308f05babc7b93f196f61f0b975103'
-'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
-'7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
-'8e9eac1c9b751b9f41d362612e3d2382276030ebbf965f95607c520745243056'
-'646f81b0621a86eff3bb1f229eeb92b2f33bac41b3324424a6de06a780a8a22d'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'c120739911ce6a455a642c97d4d7de0956abee4d94bfc338f8a13f771a2d381c'
-'e957bf927dc39b434167fecf6bdd01d78f9c6f71f24bcf86fa2d89dc254a7f96')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git (TODO: set LOCAL_GIT_DIRECTORY=/usr)
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in > 

[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2017-11-08 Thread Nicola Squartini
Date: Wednesday, November 8, 2017 @ 17:02:12
  Author: tensor5
Revision: 265745

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 265744, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 265744, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 265744, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 265744, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 265744, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 265744, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 265744, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 265744, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +-
 dugite-use-system-git.patch |   48 ++--
 fix-atom-sh.patch   |  230 +--
 fix-license-path.patch  |   44 +--
 fix-restart.patch   |   22 -
 symbols-view-use-system-ctags.patch |   22 -
 use-system-apm.patch|   64 ++---
 use-system-electron.patch   |  392 +-
 8 files changed, 519 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-11-08 17:01:46 UTC (rev 265744)
+++ PKGBUILD2017-11-08 17:02:12 UTC (rev 265745)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.21.2
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('i686' 'x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('1aff8c81d366c4d0a2a3767ee34512ffc3504265a430b93c6c7569cddc988c28'
-'bbc07c111fe808b49b62198e17e8da5d3192faf281d5d84ac7cd493ed92bb2ba'
-'7f4f86387d226fcd452f0b97579dadc3eac217a77485228dbf4facf3391b6198'
-'951bbc248c9ae4ef3ef712e0caeb728a8577b12e4593870569de15e570a71c4c'
-'646f81b0621a86eff3bb1f229eeb92b2f33bac41b3324424a6de06a780a8a22d'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'c120739911ce6a455a642c97d4d7de0956abee4d94bfc338f8a13f771a2d381c'
-'e957bf927dc39b434167fecf6bdd01d78f9c6f71f24bcf86fa2d89dc254a7f96')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git (TODO: set LOCAL_GIT_DIRECTORY=/usr)
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in > 

[arch-commits] Commit in atom/repos/community-x86_64 (16 files)

2017-09-01 Thread Nicola Squartini
Date: Friday, September 1, 2017 @ 10:18:37
  Author: tensor5
Revision: 255230

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 255229, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 255229, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 255229, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 255229, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 255229, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 255229, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 255229, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 255229, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/dugite-use-system-git.patch
  atom/repos/community-x86_64/fix-atom-sh.patch
  atom/repos/community-x86_64/fix-license-path.patch
  atom/repos/community-x86_64/fix-restart.patch
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
  atom/repos/community-x86_64/use-system-apm.patch
  atom/repos/community-x86_64/use-system-electron.patch

-+
 PKGBUILD|  216 +++
 dugite-use-system-git.patch |   76 
 fix-atom-sh.patch   |  230 -
 fix-license-path.patch  |   44 ++--
 fix-restart.patch   |   22 +-
 symbols-view-use-system-ctags.patch |   22 +-
 use-system-apm.patch|   62 +++---
 use-system-electron.patch   |  308 +-
 8 files changed, 490 insertions(+), 490 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-01 10:18:15 UTC (rev 255229)
+++ PKGBUILD2017-09-01 10:18:37 UTC (rev 255230)
@@ -1,108 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.19.4
-pkgrel=1
-pkgdesc='A hackable text editor for the 21st Century'
-arch=('i686' 'x86_64')
-url='https://github.com/atom/atom'
-license=('MIT' 'custom')
-depends=('apm' 'electron' 'libxkbfile')
-makedepends=('git' 'npm')
-optdepends=('ctags: symbol indexing support'
-'git: Git and GitHub integration')
-replaces=('atom-editor')
-options=(!emptydirs)
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/atom/atom/archive/v${pkgver}.tar.gz;
-'dugite-use-system-git.patch'
-'fix-atom-sh.patch'
-'fix-license-path.patch'
-'fix-restart.patch'
-'symbols-view-use-system-ctags.patch'
-'use-system-apm.patch'
-'use-system-electron.patch')
-sha256sums=('4be1f9095a237bfc81137002dd1a968e8484261c73845dab4e41e4f3e39f695d'
-'8a6424cf5635634eccbf10473a30a3a3fb2bd11aa73a7274744134115d681ba9'
-'2148436adf17ec1970adc344fccf3782645375cd93e62a696a55f5b11fe98032'
-'7a76fe1e7258357b51b7ac427b44759c71c675b0be04dfc547e18dc04979f3fb'
-'0df623c62de4c2dc78c4a0f5ab5bd018183e287629102a08e85dea92cc076174'
-'32fb830b89bd6079120bf7380a69f94c02aa366608b0d0b6c7123e06b878400c'
-'bb1469f02cef5c1363d9add8eb7af6eab503023d5a56f76dc868b70be1b77e01'
-'ee5ee7d8ead75dac34ed76267637acfae7f582fb88a96c92c92789a201db6c5f')
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -Np1 -i "${srcdir}"/fix-atom-sh.patch
-  patch -Np1 -i "${srcdir}"/use-system-electron.patch
-  patch -Np1 -i "${srcdir}"/use-system-apm.patch
-  patch -Np1 -i "${srcdir}"/fix-license-path.patch
-  patch -Np1 -i "${srcdir}"/fix-restart.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  export ATOM_RESOURCE_PATH="$srcdir/atom-$pkgver"
-  # If unset, ~/.atom/.node-gyp/.atom/.npm is used
-  export NPM_CONFIG_CACHE="${HOME}/.atom/.npm"
-  apm clean
-  apm install
-
-  # Use system ctags
-  cd node_modules/symbols-view
-  patch -Np1 -i "${srcdir}"/symbols-view-use-system-ctags.patch
-  rm -r vendor
-  cd ../..
-
-  # Use system git
-  cd node_modules/dugite
-  patch -Np1 -i "${srcdir}"/dugite-use-system-git.patch
-  rm -r git
-  cd ../..
-
-  cd script
-  npm install
-  ./build
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  install -d -m 755 "${pkgdir}"/usr/lib
-  cp -r out/app "${pkgdir}"/usr/lib/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= appName %>|Atom|" \
-  -e "s/<%= description %>/${pkgdesc}/" \
-  -e "s|<%= installDir %>/share/<%= appFileName %>/atom|electron 
--app=/usr/lib/atom|" \
-  -e "s|<%= iconPath %>|atom|" \
-  resources/linux/atom.desktop.in >