[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2020-04-08 Thread Filipe Laíns via arch-commits
Date: Wednesday, April 8, 2020 @ 20:01:49
  Author: ffy00
Revision: 612715

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 612714, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 612714, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 612714, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 612714, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 612714, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 612714, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  316 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 235 insertions(+), 235 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-08 20:01:35 UTC (rev 612714)
+++ PKGBUILD2020-04-08 20:01:49 UTC (rev 612715)
@@ -1,158 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-#   - ?: 11 (not in repos)
-#   - erbium: 12
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron7
-pkgver=1.43.2
-pkgrel=2
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons'
-'x11-ssh-askpass: SSH authentication')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of fil

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2020-03-30 Thread Filipe Laíns via arch-commits
Date: Monday, March 30, 2020 @ 22:30:40
  Author: ffy00
Revision: 607419

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 607418, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 607418, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 607418, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 607418, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 607418, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 607418, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  315 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 235 insertions(+), 234 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-30 22:30:27 UTC (rev 607418)
+++ PKGBUILD2020-03-30 22:30:40 UTC (rev 607419)
@@ -1,157 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-#   - ?: 11 (not in repos)
-#   - erbium: 12
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron7
-pkgver=1.43.2
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need 

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2020-03-24 Thread Filipe Laíns via arch-commits
Date: Wednesday, March 25, 2020 @ 01:49:32
  Author: ffy00
Revision: 603971

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 603970, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 603970, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 603970, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 603970, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 603970, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 603970, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  314 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 234 insertions(+), 234 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-25 01:49:15 UTC (rev 603970)
+++ PKGBUILD2020-03-25 01:49:32 UTC (rev 603971)
@@ -1,157 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-#   - ?: 11 (not in repos)
-#   - erbium: 12
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron7
-pkgver=1.43.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will ne

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2020-03-21 Thread Filipe Laíns via arch-commits
Date: Saturday, March 21, 2020 @ 22:19:59
  Author: ffy00
Revision: 603113

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 603112, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 603112, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 603112, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 603112, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 603112, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 603112, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  312 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 234 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-21 22:19:50 UTC (rev 603112)
+++ PKGBUILD2020-03-21 22:19:59 UTC (rev 603113)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.42.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  e

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2020-02-17 Thread Filipe Laíns via arch-commits
Date: Monday, February 17, 2020 @ 09:35:45
  Author: ffy00
Revision: 573891

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 573890, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 573890, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 573890, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 573890, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 573890, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 573890, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  310 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-17 09:35:02 UTC (rev 573890)
+++ PKGBUILD2020-02-17 09:35:45 UTC (rev 573891)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.42.0
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2020-02-13 Thread Filipe Laíns via arch-commits
Date: Thursday, February 13, 2020 @ 18:32:10
  Author: ffy00
Revision: 570776

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 570775, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 570775, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 570775, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 570775, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 570775, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 570775, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  310 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-13 18:31:56 UTC (rev 570775)
+++ PKGBUILD2020-02-13 18:32:10 UTC (rev 570776)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.41.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-12-20 Thread Filipe Laíns via arch-commits
Date: Friday, December 20, 2019 @ 11:13:36
  Author: ffy00
Revision: 538477

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 538476, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 538476, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 538476, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 538476, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 538476, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 538476, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  310 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-20 11:13:17 UTC (rev 538476)
+++ PKGBUILD2019-12-20 11:13:36 UTC (rev 538477)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.41.0
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-12-13 Thread Filipe Laíns via arch-commits
Date: Friday, December 13, 2019 @ 22:04:48
  Author: ffy00
Revision: 537590

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 537589, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 537589, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 537589, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 537589, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 537589, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 537589, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  310 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-13 22:04:34 UTC (rev 537589)
+++ PKGBUILD2019-12-13 22:04:48 UTC (rev 537590)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.40.2
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-11-27 Thread Filipe Laíns via arch-commits
Date: Wednesday, November 27, 2019 @ 08:46:43
  Author: ffy00
Revision: 533966

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 533965, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 533965, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 533965, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 533965, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 533965, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 533965, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  310 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-27 08:46:34 UTC (rev 533965)
+++ PKGBUILD2019-11-27 08:46:43 UTC (rev 533966)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.40.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-   

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-11-15 Thread Filipe Laíns via arch-commits
Date: Friday, November 15, 2019 @ 23:01:00
  Author: ffy00
Revision: 529458

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 529457, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 529457, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 529457, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 529457, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 529457, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 529457, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  310 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-15 23:00:45 UTC (rev 529457)
+++ PKGBUILD2019-11-15 23:01:00 UTC (rev 529458)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.40.0
-pkgrel=3
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-11-15 Thread Filipe Laíns via arch-commits
Date: Friday, November 15, 2019 @ 23:01:14
  Author: ffy00
Revision: 529459

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 529458, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 529458, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 529458, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 529458, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 529458, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 529458, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  310 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 232 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-15 23:01:00 UTC (rev 529458)
+++ PKGBUILD2019-11-15 23:01:14 UTC (rev 529459)
@@ -1,155 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.40.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+$url.git#tag=$pkgver"
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=6144"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-11-10 Thread Filipe Laíns via arch-commits
Date: Sunday, November 10, 2019 @ 18:44:38
  Author: ffy00
Revision: 526484

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 526483, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 526483, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 526483, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 526483, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 526483, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 526483, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  306 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 232 insertions(+), 228 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-10 18:44:20 UTC (rev 526483)
+++ PKGBUILD2019-11-10 18:44:38 UTC (rev 526484)
@@ -1,151 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-_electron=electron6
-pkgver=1.40.0
-pkgrel=2
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=($_electron 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'0e75ee88274cbaf48c59ef6f363f6b8ac2ea83f8b17a61155008db773b709a1f0233754fa63a136ec0417313ba90a7eb17db000ec22a38ca8840d8ba6c47cab1'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to the target electron
-  sed -i "s|exec electron |exec $_electron |" ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise yo

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-11-09 Thread Filipe Laíns via arch-commits
Date: Saturday, November 9, 2019 @ 18:50:21
  Author: ffy00
Revision: 524866

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 524865, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 524865, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 524865, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 524865, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 524865, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 524865, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  301 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 228 insertions(+), 227 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-09 18:50:08 UTC (rev 524865)
+++ PKGBUILD2019-11-09 18:50:21 UTC (rev 524866)
@@ -1,150 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-pkgver=1.40.0
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # Change electron binary name to electron4
-  sed -i 's|exec electron |exec electron4 |' ../code.sh
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-11-08 Thread Filipe Laíns via arch-commits
Date: Saturday, November 9, 2019 @ 02:47:32
  Author: ffy00
Revision: 524781

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 524780, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 524780, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 524780, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 524780, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 524780, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 524780, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  297 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 227 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-09 02:47:03 UTC (rev 524780)
+++ PKGBUILD2019-11-09 02:47:32 UTC (rev 524781)
@@ -1,147 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-pkgver=1.39.2
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-10-18 Thread Filipe Laíns via arch-commits
Date: Friday, October 18, 2019 @ 11:09:42
  Author: ffy00
Revision: 516740

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 516739, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 516739, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 516739, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 516739, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 516739, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 516739, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  294 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 ++---
 6 files changed, 224 insertions(+), 224 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-18 11:08:57 UTC (rev 516739)
+++ PKGBUILD2019-10-18 11:09:42 UTC (rev 516740)
@@ -1,147 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-pkgver=1.39.1
-pkgrel=2
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
h

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-10-15 Thread Filipe Laíns via arch-commits
Date: Tuesday, October 15, 2019 @ 08:35:09
  Author: ffy00
Revision: 516106

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 516105, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 516105, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 516105, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 516105, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 516105, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 516105, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  293 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 +++---
 6 files changed, 224 insertions(+), 223 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-15 08:34:38 UTC (rev 516105)
+++ PKGBUILD2019-10-15 08:35:09 UTC (rev 516106)
@@ -1,146 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# NodeJS versioning cheatsheet:
-#   - carbon: 8
-#   - dubnium: 10
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-pkgver=1.39.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-10-14 Thread Filipe Laíns via arch-commits
Date: Monday, October 14, 2019 @ 13:03:25
  Author: ffy00
Revision: 515696

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 515695, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 515695, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 515695, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 515695, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 515695, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 515695, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  289 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 +++---
 6 files changed, 223 insertions(+), 220 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-14 13:02:48 UTC (rev 515695)
+++ PKGBUILD2019-10-14 13:03:25 UTC (rev 515696)
@@ -1,143 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-pkgver=1.38.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit";
-

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-09-16 Thread Filipe Laíns via arch-commits
Date: Monday, September 16, 2019 @ 10:27:10
  Author: ffy00
Revision: 510867

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 510866, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 510866, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 510866, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 510866, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 510866, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 510866, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  286 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 220 insertions(+), 220 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-16 10:26:56 UTC (rev 510866)
+++ PKGBUILD2019-09-16 10:27:10 UTC (rev 510867)
@@ -1,143 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Important: Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-# Important: Remember to check 
https://github.com/microsoft/vscode/blob/master/.yarnrc (choose correct tag) 
for target electron version
-pkgver=1.38.0
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit"

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-09-05 Thread Filipe Laíns via arch-commits
Date: Thursday, September 5, 2019 @ 15:20:35
  Author: ffy00
Revision: 508208

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 508207, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 508207, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 508207, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 508207, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 508207, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 508207, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  288 +---
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 +--
 product_json.diff |   40 +++---
 6 files changed, 220 insertions(+), 222 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-09-05 15:20:14 UTC (rev 508207)
+++ PKGBUILD2019-09-05 15:20:35 UTC (rev 508208)
@@ -1,145 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.37.1
-pkgrel=2
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff'
-
"fix-zsh-completions.patch::$url/commit/280be12a3a90f40949d345d94894d4af6b782c6d.patch")
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664'
-
'c37f8a57bde580daba491449c56c1b5b4a83189cafafbd3984542702b117d08b04574db1951eefe676f303e84fcc9ce3d0a28192ad2321fb5903e7ca7f069a52')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-  patch -p1 < ../fix-zsh-completions.patch
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for 

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-08-19 Thread Filipe Laíns via arch-commits
Date: Monday, August 19, 2019 @ 07:46:19
  Author: ffy00
Revision: 500154

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 500153, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 500153, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 500153, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 500153, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 500153, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 500153, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  286 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 222 insertions(+), 218 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 07:46:04 UTC (rev 500153)
+++ PKGBUILD2019-08-19 07:46:19 UTC (rev 500154)
@@ -1,141 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.37.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit";
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership --pres

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-08-16 Thread Filipe Laíns via arch-commits
Date: Friday, August 16, 2019 @ 08:30:20
  Author: ffy00
Revision: 499817

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 499816, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 499816, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 499816, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 499816, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 499816, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 499816, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  282 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 -
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 218 insertions(+), 218 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 08:30:00 UTC (rev 499816)
+++ PKGBUILD2019-08-16 08:30:20 UTC (rev 499817)
@@ -1,141 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.37.0
-pkgrel=2
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit";
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership --pre

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-08-15 Thread Eli Schwartz via arch-commits
Date: Thursday, August 15, 2019 @ 21:57:05
  Author: eschwartz
Revision: 499640

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 499639, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 499639, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 499639, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 499639, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 499639, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 499639, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  283 +---
 code-liveshare.diff   |   24 +--
 code.js   |   58 -
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 218 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-15 21:56:36 UTC (rev 499639)
+++ PKGBUILD2019-08-15 21:57:05 UTC (rev 499640)
@@ -1,142 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.37.0
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit";
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-08-14 Thread Filipe Laíns via arch-commits
Date: Wednesday, August 14, 2019 @ 12:17:42
  Author: ffy00
Revision: 499196

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 499195, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 499195, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 499195, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 499195, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 499195, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 499195, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  284 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-14 12:17:16 UTC (rev 499195)
+++ PKGBUILD2019-08-14 12:17:42 UTC (rev 499196)
@@ -1,142 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.36.1
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit";
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership --p

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-07-22 Thread Filipe Laíns via arch-commits
Date: Monday, July 22, 2019 @ 07:54:42
  Author: ffy00
Revision: 492546

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 492545, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 492545, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 492545, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 492545, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 492545, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 492545, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  284 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-22 07:54:33 UTC (rev 492545)
+++ PKGBUILD2019-07-22 07:54:42 UTC (rev 492546)
@@ -1,142 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.36.0
-pkgrel=1
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit";
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership --preser

[arch-commits] Commit in code/repos/community-x86_64 (12 files)

2019-07-09 Thread Filipe Laíns via arch-commits
Date: Tuesday, July 9, 2019 @ 11:36:55
  Author: ffy00
Revision: 487770

archrelease: copy trunk to community-x86_64

Added:
  code/repos/community-x86_64/PKGBUILD
(from rev 487769, code/trunk/PKGBUILD)
  code/repos/community-x86_64/code-liveshare.diff
(from rev 487769, code/trunk/code-liveshare.diff)
  code/repos/community-x86_64/code.js
(from rev 487769, code/trunk/code.js)
  code/repos/community-x86_64/code.sh
(from rev 487769, code/trunk/code.sh)
  code/repos/community-x86_64/enable-proposed-apis.diff
(from rev 487769, code/trunk/enable-proposed-apis.diff)
  code/repos/community-x86_64/product_json.diff
(from rev 487769, code/trunk/product_json.diff)
Deleted:
  code/repos/community-x86_64/PKGBUILD
  code/repos/community-x86_64/code-liveshare.diff
  code/repos/community-x86_64/code.js
  code/repos/community-x86_64/code.sh
  code/repos/community-x86_64/enable-proposed-apis.diff
  code/repos/community-x86_64/product_json.diff

---+
 PKGBUILD  |  284 ++--
 code-liveshare.diff   |   24 +--
 code.js   |   58 
 code.sh   |6 
 enable-proposed-apis.diff |   26 ++--
 product_json.diff |   40 +++---
 6 files changed, 219 insertions(+), 219 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-09 11:36:40 UTC (rev 487769)
+++ PKGBUILD2019-07-09 11:36:55 UTC (rev 487770)
@@ -1,142 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) 
-# Contributor: Michael Hansen 
-# Contributor: Francisco Magalhães 
-
-pkgname=code
-pkgdesc='The Open Source build of Visual Studio Code (vscode) editor'
-# Remember to check 
https://github.com/microsoft/vscode/wiki/How-to-Contribute#prerequisites for 
target node version
-pkgver=1.35.1
-pkgrel=2
-arch=('x86_64')
-url='https://github.com/microsoft/vscode'
-license=('MIT')
-depends=('electron4' 'libsecret' 'libx11' 'libxkbfile' 'ripgrep')
-optdepends=('bash-completion: Bash completions'
-'zsh-completions: ZSH completitons')
-makedepends=('git' 'gulp' 'npm' 'python2' 'yarn' 'nodejs-lts-dubnium')
-source=("$pkgname::git+https://github.com/Microsoft/vscode.git#tag=$pkgver";
-'code.js'
-'code.sh'
-'product_json.diff'
-'enable-proposed-apis.diff')
-sha512sums=('SKIP'
-
'814c9554427183cd893a33cd2cbe91f6e0ea71921ef0717c86217b1d3058d265f9ff7a9ace3e7b76f122e60b7686475cf4d999e581a1845face3033afb9f745f'
-
'dfd9ca38e6510c9ad59fb24c1141fdfeb136f457392aee79b0bc2ff378c4c54d81a06728ba3ec4039d57dfcd730c26686585de9b4032a21ee8151a4f05195c15'
-
'8ec47e497287d67f37e7b669af416f43d5cdbd4574892867d7b95996ef5de53640b5bc919b06b177e1fd91cb005579d6ed0c17325117b9914ba7cf28f5f06e40'
-
'b267dcedaf51067a782d0f14007663b706973c1538f7fb91f093475134c2145fd0ffd5ed2b47ad7f01c6167a78a4af285d2818d7850fc67a7f7a473324824664')
-
-# Even though we don't officially support other archs, let's
-# allow the user to use this PKGBUILD to compile the package
-# for his architecture
-case "$CARCH" in
-  i686)
-_vscode_arch=ia32
-;;
-  x86_64)
-_vscode_arch=x64
-;;
-  armv7h)
-_vscode_arch=arm
-;;
-  *)
-# Needed for mksrcinfo
-_vscode_arch=DUMMY
-;;
-esac
-
-prepare() {
-  cd $pkgname
-
-  # This patch no longer contains proprietary modifications.
-  # See https://github.com/Microsoft/vscode/issues/31168 for details.
-  patch -p0 < ../product_json.diff
-
-  # Set the commit and build date
-  local _commit=$(git rev-parse HEAD)
-  local _datestamp=$(date -u -Is | sed 's/\+00:00/Z/')
-  sed -e "s/@COMMIT@/$_commit/" -e "s/@DATE@/$_datestamp/" -i product.json
-
-  # See https://github.com/MicrosoftDocs/live-share/issues/262 for details
-  # Also, https://github.com/microsoft/vscode/issues/48946
-  patch -p1 < ../enable-proposed-apis.diff
-
-  # Build native modules for system electron
-  local _target=$(https://github.com/mapbox/node-sqlite3/issues/1044
-  mkdir -p path
-  ln -sf /usr/bin/python2 path/python
-  export PATH="$PWD/path:$PATH"
-
-  cd $pkgname
-
-  yarn install --arch=$_vscode_arch
-
-  # The default memory limit may be too low for current versions of node
-  # to successfully build vscode. Change it if this number still doesn't
-  # work for your system.
-  mem_limit="--max_old_space_size=4096"
-
-  if ! /usr/bin/node $mem_limit /usr/bin/gulp vscode-linux-$_vscode_arch-min
-  then
-  echo
-  echo "*** NOTE: If the build failed due to running out of file handles 
(EMFILE),"
-  echo "*** you will need to raise your max open file limit."
-  echo "*** You can check this for more information on how to increase 
this limit:"
-  echo "***
https://ro-che.info/articles/2017-03-26-increase-open-files-limit";
-  exit 1
-  fi
-}
-
-package() {
-  # Install resource files
-  install -dm 755 "$pkgdir"/usr/lib/$pkgname
-  cp -r --no-preserve=ownership --preser