[arch-commits] Commit in dart/repos (2 files)

2018-11-16 Thread Felix Yan via arch-commits
Date: Friday, November 16, 2018 @ 18:12:38
  Author: felixonmars
Revision: 408474

archrelease: copy trunk to community-testing-x86_64

Added:
  dart/repos/community-testing-x86_64/
  dart/repos/community-testing-x86_64/PKGBUILD
(from rev 408473, dart/trunk/PKGBUILD)

--+
 PKGBUILD |   61 +
 1 file changed, 61 insertions(+)

Copied: dart/repos/community-testing-x86_64/PKGBUILD (from rev 408473, 
dart/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-11-16 18:12:38 UTC (rev 408474)
@@ -0,0 +1,61 @@
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=2.1.0
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64')
+url='http://www.dartlang.org/'
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
+sha512sums_x86_64=('929a7c6a7a5046b4135a40202170e20dd0285f3cc8cacd22881e766def21a8fcd2ffaedb305ff90789461a38aa21a4a6858a407295257ae7027d0c47a78cb16f')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+-or -type f -exec chmod 0644 '{}' +
+  chmod +x "$pkgname-sdk/bin/"*
+
+  cd "$pkgname-sdk/bin"
+
+  # Configure paths
+  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
+setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
+setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
+setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
+  done
+
+  # Extract license (AUTHORS and LICENSE files are missing)
+  head -n5 "../include/dart_api.h" > ../../LICENSE
+}
+
+package() {
+  # Create directories
+  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
+
+  # Package the files
+  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
+
+  # Set up symbolic links for the executables
+  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
+ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
+  done
+
+  # Package samples and documentation
+  for f in samples about.html about_files; do
+echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
+  done
+
+  # BSD License
+  install -Dm644 LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in dart/repos (2 files)

2018-08-23 Thread Felix Yan via arch-commits
Date: Thursday, August 23, 2018 @ 07:25:52
  Author: felixonmars
Revision: 373327

archrelease: copy trunk to community-testing-x86_64

Added:
  dart/repos/community-testing-x86_64/
  dart/repos/community-testing-x86_64/PKGBUILD
(from rev 373326, dart/trunk/PKGBUILD)

--+
 PKGBUILD |   62 +
 1 file changed, 62 insertions(+)

Copied: dart/repos/community-testing-x86_64/PKGBUILD (from rev 373326, 
dart/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2018-08-23 07:25:52 UTC (rev 373327)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Alexander Rødseth 
+# Maintainer: Felix Yan 
+# Contributor: T. Jameson Little 
+# Contributor: Usagi Ito 
+# Contributor: siasia 
+# Contributor: Julien Nicoulaud 
+
+pkgname=dart
+pkgver=2.0.0
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64')
+url='http://www.dartlang.org/'
+license=('BSD')
+makedepends=('setconf')
+options=('!strip')
+source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip;)
+sha512sums_x86_64=('67a83676da8095d3c0787b10b2a998e3f5660766851a2c65110881b9740fc8bf4f99ee5b7677f2919361459888d00e6dc5542df79f647b12e4cee65d9cbe79d0')
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+-or -type f -exec chmod 0644 '{}' +
+  chmod +x "$pkgname-sdk/bin/"*
+
+  cd "$pkgname-sdk/bin"
+
+  # Configure paths
+  for _f in dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
+setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin"
+setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f"
+setconf $_f SDK_DIR "/opt/$pkgname-sdk/"
+  done
+
+  # Extract license (AUTHORS and LICENSE files are missing)
+  head -n5 "../include/dart_api.h" > ../../LICENSE
+}
+
+package() {
+  # Create directories
+  install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}}
+
+  # Package the files
+  cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
+
+  # Set up symbolic links for the executables
+  for f in dart dart2js dartanalyzer pub dartfmt dartdevc dartdevk dartdoc; do
+ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
+  done
+
+  # Package samples and documentation
+  for f in samples about.html about_files; do
+echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/"
+  done
+
+  # BSD License
+  install -Dm644 LICENSE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in dart/repos (2 files)

2013-11-02 Thread Alexander Rødseth
Date: Saturday, November 2, 2013 @ 18:06:23
  Author: arodseth
Revision: 100357

archrelease: copy trunk to community-x86_64, community-i686

Added:
  dart/repos/community-i686/PKGBUILD
(from rev 100356, dart/trunk/PKGBUILD)
  dart/repos/community-x86_64/PKGBUILD
(from rev 100356, dart/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   80 
 community-x86_64/PKGBUILD |   80 
 2 files changed, 160 insertions(+)

Copied: dart/repos/community-i686/PKGBUILD (from rev 100356, 
dart/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-11-02 17:06:23 UTC (rev 100357)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: T. Jameson Little t.jameson.little at gmail dot com
+# Contributor: Usagi Ito us...@wonderrabbitproject.net
+# Contributor: siasia http://pastebin.com/qsBEmNCw
+# Contributor: Julien Nicoulaud julien.nicoul...@gmail.com
+
+pkgname=dart
+pkgver=0.8.7.0
+pkgrel=1
+pkgdesc='The dart programming language (includes SDK and editor)'
+arch=('x86_64' 'i686')
+url='http://www.dartlang.org/'
+license=('BSD' 'EPL')
+depends=('java-runtime' 'gtk2' 'desktop-file-utils' 'gconf')
+makedepends=('gendesk' 'setconf')
+backup=(opt/$pkgname/DartEditor.ini)
+options=('!strip')
+
+if [[ $CARCH == x86_64 ]]; then
+  
source=(https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-linux-64.zip;
+  
'darteditor.png::https://www.dartlang.org/tools/images/dart-logo-48.png')
+  
sha256sums=('230d53fc95f873e4d2e7cd2377706693196dbfc154c80493d57cf409d2908d72'
+  
'd90f14b0cfa2dd36502ed5e5854466d54c8d0cf0ac9a5d9ec823274c1a33a00e')
+else
+  
source=(https://storage.googleapis.com/dart-editor-archive-integration/latest/darteditor-linux-32.zip;
+  
'darteditor.png::https://www.dartlang.org/tools/images/dart-logo-48.png')
+  
sha256sums=('4752ad56ca58611cf67474d3ebb979a2e5f26e477a3c508cf5847c7207e837a1'
+  
'd90f14b0cfa2dd36502ed5e5854466d54c8d0cf0ac9a5d9ec823274c1a33a00e')
+fi
+
+prepare() {
+  # Fix permissions
+  find $pkgname -type d -exec chmod 0755 '{}' + \
+-or -type f -exec chmod 0644 '{}' +
+  chmod +x $pkgname/DartEditor
+  chmod +x $pkgname/dart-sdk/bin/*
+
+  # Remove dartium (available in the dart-editor package on AUR)
+  rm -r $pkgname/chromium
+
+  # Prepare a desktop shortcut
+  gendesk -n -f --pkgname 'darteditor' --name 'Dart Editor' \
+--exec 'darteditor %U' --pkgdesc 'Editor for the dart programming language'
+
+  # Fix paths
+  cd $pkgname/dart-sdk/bin
+  setconf dart2js BIN_DIR /opt/$pkgname/dart-sdk/bin
+  setconf dart2js PROG_NAME /opt/$pkgname/dart-sdk/bin/dart2js
+  setconf dartanalyzer SCRIPT_DIR /opt/$pkgname/dart-sdk/bin
+  setconf dartdoc BIN_DIR /opt/$pkgname/dart-sdk/bin
+}
+
+package() {
+  # Create directories
+  install -d $pkgdir{/opt/$pkgname,/usr/{bin,share/doc/$pkgname}}
+
+  # Package the files
+  cp -a dart/* $pkgdir/opt/$pkgname/
+
+  # Set up symbolic links for the executables
+  for f in dart dart2js dartanalyzer dartdoc pub; do
+ln -s /opt/$pkgname/dart-sdk/bin/$f $pkgdir/usr/bin/$f
+  done
+  ln -s /opt/$pkgname/DartEditor $pkgdir/usr/bin/darteditor
+
+  # Package samples and documentation
+  for f in samples about.html about_files; do
+echo mv $pkgdir/opt/$pkgname/$f $pkgdir/usr/share/doc/$pkgname/
+  done
+
+  # Set up a symbolic link for the configuration
+  echo ln -s /opt/$pkgname/DartEditor.ini $pkgdir/etc/darteditor.ini
+
+  # Package desktop shortcut and icon
+  install -Dm644 'darteditor.desktop' 
$pkgdir/usr/share/applications/$pkgname.desktop
+  install -Dm644 'darteditor.png' $pkgdir/usr/share/pixmaps/darteditor.png
+}
+
+# vim:set ts=2 sw=2 et:

Copied: dart/repos/community-x86_64/PKGBUILD (from rev 100356, 
dart/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-11-02 17:06:23 UTC (rev 100357)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: T. Jameson Little t.jameson.little at gmail dot com
+# Contributor: Usagi Ito us...@wonderrabbitproject.net
+# Contributor: siasia http://pastebin.com/qsBEmNCw
+# Contributor: Julien Nicoulaud julien.nicoul...@gmail.com
+
+pkgname=dart
+pkgver=0.8.7.0
+pkgrel=1
+pkgdesc='The dart programming language (includes SDK and editor)'
+arch=('x86_64' 'i686')
+url='http://www.dartlang.org/'
+license=('BSD' 'EPL')
+depends=('java-runtime' 'gtk2' 'desktop-file-utils' 'gconf')
+makedepends=('gendesk' 'setconf')
+backup=(opt/$pkgname/DartEditor.ini)
+options=('!strip')
+
+if [[ $CARCH == x86_64 ]]; then
+