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

2018-11-11 Thread Nicola Squartini via arch-commits
Date: Sunday, November 11, 2018 @ 11:13:44
  Author: tensor5
Revision: 406351

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 406350, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 406350, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 406350, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 406350, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 406350, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 406350, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 406350, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 406350, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 406350, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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|  218 -
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  276 +++---
 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   |  420 +-
 9 files changed, 599 insertions(+), 599 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-11 11:13:22 UTC (rev 406350)
+++ PKGBUILD2018-11-11 11:13:44 UTC (rev 406351)
@@ -1,109 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.32.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;
-'atom.js'
-'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=('81f474df80d94d89c5c87f8e7dd489e12a34c1a28ad2026ab9bed6eaf960b4d7'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
-'ab9eed3d4c8bfefea256953428379ab1e636b9c7d4c4af30ddc3f485330183c2'
-'c8a931f36af3722c57c4d1b70c1e58aa1a18372e8e26c28a4e01253e05295205'
-'cbac8d28e32a32760cd6b16d313e05e32af57bfdea1c248636e1b1ae74e4e92c'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'53f43c9328a66e24b3467a0a06d9dfde83475f7e54251bf7a523beafaa043806'
-'25ffc77d9d0f89a598041f5c823f5e65a662681f570f3894cb74aca7306e1026')
-
-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}"
-
-  ATOM_RESOURCE_PATH="${PWD}" \
-  npm_config_target=$(tail -c +2 /usr/lib/electron/version) \
-  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 -m 644 out/startup.js "${pkgdir}"/usr/lib/atom
-  install -m 755 "${srcdir}/atom.js" "${pkgdir}"/usr/lib/atom/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= 

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

2018-11-03 Thread Nicola Squartini via arch-commits
Date: Saturday, November 3, 2018 @ 11:52:46
  Author: tensor5
Revision: 401344

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 401343, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 401343, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 401343, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 401343, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 401343, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 401343, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 401343, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 401343, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 401343, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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|  218 -
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  276 +++---
 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   |  420 +-
 9 files changed, 599 insertions(+), 599 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-03 11:52:28 UTC (rev 401343)
+++ PKGBUILD2018-11-03 11:52:46 UTC (rev 401344)
@@ -1,109 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.32.0
-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;
-'atom.js'
-'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=('abb1a091fa493f186749d50c9444e762ed46f57c39055d022a50e166c7ffa8c6'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
-'ab9eed3d4c8bfefea256953428379ab1e636b9c7d4c4af30ddc3f485330183c2'
-'c8a931f36af3722c57c4d1b70c1e58aa1a18372e8e26c28a4e01253e05295205'
-'cbac8d28e32a32760cd6b16d313e05e32af57bfdea1c248636e1b1ae74e4e92c'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'53f43c9328a66e24b3467a0a06d9dfde83475f7e54251bf7a523beafaa043806'
-'25ffc77d9d0f89a598041f5c823f5e65a662681f570f3894cb74aca7306e1026')
-
-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}"
-
-  ATOM_RESOURCE_PATH="${PWD}" \
-  npm_config_target=$(tail -c +2 /usr/lib/electron/version) \
-  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 -m 644 out/startup.js "${pkgdir}"/usr/lib/atom
-  install -m 755 "${srcdir}/atom.js" "${pkgdir}"/usr/lib/atom/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= 

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

2018-10-24 Thread Nicola Squartini via arch-commits
Date: Wednesday, October 24, 2018 @ 13:37:30
  Author: tensor5
Revision: 398825

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 398824, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 398824, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 398824, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 398824, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 398824, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 398824, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 398824, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 398824, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 398824, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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|  217 -
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  276 +++---
 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   |  420 +-
 9 files changed, 599 insertions(+), 598 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-24 13:37:09 UTC (rev 398824)
+++ PKGBUILD2018-10-24 13:37:30 UTC (rev 398825)
@@ -1,108 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.32.0
-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;
-'atom.js'
-'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=('abb1a091fa493f186749d50c9444e762ed46f57c39055d022a50e166c7ffa8c6'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
-'ab9eed3d4c8bfefea256953428379ab1e636b9c7d4c4af30ddc3f485330183c2'
-'c8a931f36af3722c57c4d1b70c1e58aa1a18372e8e26c28a4e01253e05295205'
-'cbac8d28e32a32760cd6b16d313e05e32af57bfdea1c248636e1b1ae74e4e92c'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'53f43c9328a66e24b3467a0a06d9dfde83475f7e54251bf7a523beafaa043806'
-'25ffc77d9d0f89a598041f5c823f5e65a662681f570f3894cb74aca7306e1026')
-
-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}"
-
-  ATOM_RESOURCE_PATH="${PWD}" \
-  npm_config_target=$(tail -c +2 /usr/lib/electron/version) \
-  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 -m 644 out/startup.js "${pkgdir}"/usr/lib/atom
-  install -m 755 "${srcdir}/atom.js" "${pkgdir}"/usr/lib/atom/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= 

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

2018-10-24 Thread Nicola Squartini via arch-commits
Date: Wednesday, October 24, 2018 @ 12:28:10
  Author: tensor5
Revision: 398814

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 398813, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 398813, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 398813, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 398813, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 398813, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 398813, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 398813, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 398813, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 398813, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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 -
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  276 ++---
 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   |  430 --
 9 files changed, 598 insertions(+), 608 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-24 12:27:50 UTC (rev 398813)
+++ PKGBUILD2018-10-24 12:28:10 UTC (rev 398814)
@@ -1,108 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.31.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;
-'atom.js'
-'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=('baff1b23e03c638584d01817bda15503e66eff1c231c3952670c94b345588628'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
-'ab9eed3d4c8bfefea256953428379ab1e636b9c7d4c4af30ddc3f485330183c2'
-'c8a931f36af3722c57c4d1b70c1e58aa1a18372e8e26c28a4e01253e05295205'
-'1f48c84f30ffefaef7235d8231af7357b801d66de9f09921d0ee0dd5849595ca'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'32e27c6245237a794b15eaf7dbfb81196455865af8ed9157aca763ed21a2fef3'
-'a6e34b5f35183fb5f12000fc9f9948cb6dff0a50909f65c8bc87b149d3d81b00')
-
-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}"
-
-  ATOM_RESOURCE_PATH="${PWD}" \
-  npm_config_target=$(tail -c +2 /usr/lib/electron/version) \
-  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 -m 644 out/startup.js "${pkgdir}"/usr/lib/atom
-  install -m 755 "${srcdir}/atom.js" "${pkgdir}"/usr/lib/atom/atom
-
-  install -d -m 755 "${pkgdir}/usr/share/applications"
-  sed -e "s|<%= 

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

2018-10-08 Thread Nicola Squartini via arch-commits
Date: Monday, October 8, 2018 @ 11:22:31
  Author: tensor5
Revision: 391089

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 391088, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 391088, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 391088, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 391088, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 391088, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 391088, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 391088, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 391088, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 391088, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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|  220 -
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  276 ++---
 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   |  440 +-
 9 files changed, 608 insertions(+), 612 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-08 11:22:13 UTC (rev 391088)
+++ PKGBUILD2018-10-08 11:22:31 UTC (rev 391089)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.30.0
-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;
-'atom.js'
-'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=('ebc4ef0922307f2c4dfd69c6cd2cb4f4c8f1dc7c00a55253437b7f893d2d94cd'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'530b46d31df0f5e8f5881e1608a66fe75d549092a6db2e72ba3ad69c48714153'
-'ab9eed3d4c8bfefea256953428379ab1e636b9c7d4c4af30ddc3f485330183c2'
-'c8a931f36af3722c57c4d1b70c1e58aa1a18372e8e26c28a4e01253e05295205'
-'b9533bd31e9329d63abc5ec87b237761c73d0586485288925ba723fb34b3b933'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'79ae5cf80af9a4aa4ff84cad3786e8cdf3eef25e967919c84374d490f9c7f884')
-
-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 -m 644 out/startup.js "${pkgdir}"/usr/lib/atom
-  install -m 755 "${srcdir}/atom.js" "${pkgdir}"/usr/lib/atom/atom
-
-  

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

2018-09-02 Thread Nicola Squartini via arch-commits
Date: Sunday, September 2, 2018 @ 12:49:48
  Author: tensor5
Revision: 376040

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 376039, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 376039, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 376039, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 376039, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 376039, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 376039, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 376039, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 376039, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 376039, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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|  224 -
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  260 ++--
 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   |  440 +-
 9 files changed, 612 insertions(+), 596 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-02 12:49:29 UTC (rev 376039)
+++ PKGBUILD2018-09-02 12:49:48 UTC (rev 376040)
@@ -1,112 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.29.0
-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;
-'atom.js'
-'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=('0877984f5b68b14c1804647d505f4eb64a4353a69a9fd925e31d9cb89d50d178'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'866f19de9184287da459b0f9e8b79d0eeb72ba4e6c2a803ba29f74a33976deda'
-'681f3d8e19b92548ca3a2929a13c84ef42af5a8e89bea79aba66dab30916caa6'
-'c8a931f36af3722c57c4d1b70c1e58aa1a18372e8e26c28a4e01253e05295205'
-'b9533bd31e9329d63abc5ec87b237761c73d0586485288925ba723fb34b3b933'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'3022ed1aad7eb0590a5b9477c742b513c5ac024985607ac4a90ddd66b63b1003')
-
-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 -m 644 out/startup.js "${pkgdir}"/usr/lib/atom
-  install -m 755 "${srcdir}/atom.js" "${pkgdir}"/usr/lib/atom/atom
-
-  

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

2018-08-03 Thread Nicola Squartini via arch-commits
Date: Friday, August 3, 2018 @ 12:47:12
  Author: tensor5
Revision: 367534

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 367533, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 367533, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 367533, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 367533, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 367533, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 367533, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 367533, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 367533, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 367533, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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|  237 --
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  249 +--
 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   |  434 +-
 9 files changed, 596 insertions(+), 608 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-03 12:46:52 UTC (rev 367533)
+++ PKGBUILD2018-08-03 12:47:12 UTC (rev 367534)
@@ -1,125 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.28.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;
-'atom.js'
-'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=('913dbb9fe64d8e6579e367b98adfc98f96cc89ff0de5fddc1107b2be5808c77e'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'866f19de9184287da459b0f9e8b79d0eeb72ba4e6c2a803ba29f74a33976deda'
-'d8d77adebd7bd4eaf024988c68c30dc6b968044f7a6381227d13b6d77fa2b442'
-'0f3fc6c435be47c3de78033544cd23a07c6a059aad94921174f7be0796a8b663'
-'b9533bd31e9329d63abc5ec87b237761c73d0586485288925ba723fb34b3b933'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'d7ba0bb018c40d5a7e7237e532b92c224d8fa1d05dbc0fdd85d1f26248553ec3')
-
-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
-
-  # Workaround for Node 10
-  sed -e 's|"electron-link": "0.2.0"|"electron-link": "../../electron-link"|' \
-  -i script/package.json
-  cd ..
-  git clone https://github.com/atom/electron-link.git
-  cd electron-link
-  git checkout v0.2.0
-  sed -e 's/"leveldown": "^1.6.0"/"leveldown": "^2.0.1"/' -i package.json
-  npm install
-  npx babel src -d lib
-  cd node_modules/levelup
-  sed -e 's/"leveldown": "^1.1.0"/"leveldown": "^2.0.1"/' -i package.json
-}
-
-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 

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

2018-07-26 Thread Nicola Squartini via arch-commits
Date: Thursday, July 26, 2018 @ 07:08:09
  Author: tensor5
Revision: 363471

archrelease: copy trunk to community-x86_64

Added:
  atom/repos/community-x86_64/PKGBUILD
(from rev 363470, atom/trunk/PKGBUILD)
  atom/repos/community-x86_64/atom.js
(from rev 363470, atom/trunk/atom.js)
  atom/repos/community-x86_64/dugite-use-system-git.patch
(from rev 363470, atom/trunk/dugite-use-system-git.patch)
  atom/repos/community-x86_64/fix-atom-sh.patch
(from rev 363470, atom/trunk/fix-atom-sh.patch)
  atom/repos/community-x86_64/fix-license-path.patch
(from rev 363470, atom/trunk/fix-license-path.patch)
  atom/repos/community-x86_64/fix-restart.patch
(from rev 363470, atom/trunk/fix-restart.patch)
  atom/repos/community-x86_64/symbols-view-use-system-ctags.patch
(from rev 363470, atom/trunk/symbols-view-use-system-ctags.patch)
  atom/repos/community-x86_64/use-system-apm.patch
(from rev 363470, atom/trunk/use-system-apm.patch)
  atom/repos/community-x86_64/use-system-electron.patch
(from rev 363470, atom/trunk/use-system-electron.patch)
Deleted:
  atom/repos/community-x86_64/PKGBUILD
  atom/repos/community-x86_64/atom.js
  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|  250 +--
 atom.js |   66 ++---
 dugite-use-system-git.patch |   66 ++---
 fix-atom-sh.patch   |  254 ++--
 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   |  428 +-
 9 files changed, 608 insertions(+), 608 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-26 07:07:44 UTC (rev 363470)
+++ PKGBUILD2018-07-26 07:08:09 UTC (rev 363471)
@@ -1,125 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=atom
-pkgver=1.28.0
-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;
-'atom.js'
-'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=('8d31c74870b7c0813f14eeae55aa85e13bffdfb33a087ad08f1f5eec319331f4'
-'cdf87ab82cfcf69e8904684c59b08c35a68540ea16ab173fce06037ac341efcd'
-'866f19de9184287da459b0f9e8b79d0eeb72ba4e6c2a803ba29f74a33976deda'
-'d8d77adebd7bd4eaf024988c68c30dc6b968044f7a6381227d13b6d77fa2b442'
-'0f3fc6c435be47c3de78033544cd23a07c6a059aad94921174f7be0796a8b663'
-'b9533bd31e9329d63abc5ec87b237761c73d0586485288925ba723fb34b3b933'
-'3c68e6b3751313e1d386e721f8f819fb051351fb2cf8e753b1d773a0f475fef8'
-'4b91a1acd112838bd001f4e3c555de2a5fc7446c9eab6bc5dae0ca640306e81b'
-'9be3fa4ba23dadefafd8b87f12c30957582e5428f74c623180369de9fb4924bd')
-
-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
-
-  # Workaround for Node 10
-  sed -e 's|"electron-link": "0.2.0"|"electron-link": "../../electron-link"|' \
-  -i script/package.json
-  cd ..
-  git clone https://github.com/atom/electron-link.git
-  cd electron-link
-  git checkout v0.2.0
-  sed -e 's/"leveldown": "^1.6.0"/"leveldown": "^2.0.1"/' -i package.json
-  npm install
-  npx babel src -d lib
-  cd node_modules/levelup
-  sed -e 's/"leveldown": "^1.1.0"/"leveldown": "^2.0.1"/' -i package.json
-}
-
-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