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

Alexander Rødseth arodseth at nymeria.archlinux.org
Tue Nov 12 21:32:32 UTC 2013


    Date: Tuesday, November 12, 2013 @ 22:32:32
  Author: arodseth
Revision: 100883

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

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

---------------------------+
 /PKGBUILD                 |  144 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   85 -------------------------
 community-x86_64/PKGBUILD |   85 -------------------------
 3 files changed, 144 insertions(+), 170 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-11-12 21:32:17 UTC (rev 100882)
+++ community-i686/PKGBUILD	2013-11-12 21:32:32 UTC (rev 100883)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: T. Jameson Little <t.jameson.little at gmail dot com>
-# Contributor: Usagi Ito <usagi at WonderRabbitProject.net>
-# Contributor: siasia <http://pastebin.com/qsBEmNCw>
-# Contributor: Julien Nicoulaud <julien.nicoulaud at gmail.com>
-
-pkgname=dart
-pkgver=0.8.7.0
-pkgrel=2
-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 (takes 309,31 MB, available in the dartium-bin 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"
-  setconf pub BIN_DIR "/opt/$pkgname/dart-sdk/bin"
-  setconf pub SDK_DIR "/opt/$pkgname/dart-sdk"
-
-  # Fix missing "fi" and missing newline
-  echo -e "fi\n" >> pub
-}
-
-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-i686/PKGBUILD (from rev 100882, dart/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-11-12 21:32:32 UTC (rev 100883)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: T. Jameson Little <t.jameson.little at gmail dot com>
+# Contributor: Usagi Ito <usagi at WonderRabbitProject.net>
+# Contributor: siasia <http://pastebin.com/qsBEmNCw>
+# Contributor: Julien Nicoulaud <julien.nicoulaud at gmail.com>
+
+pkgname=dart
+pkgver=0.8.10
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64' 'i686')
+url='http://www.dartlang.org/'
+license=('BSD')
+optdepends=('java-runtime: for dartanalyzer')
+makedepends=('setconf')
+options=('!strip')
+
+if [[ $CARCH == x86_64 ]]; then
+  source=("http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip"
+          "license.html::https://code.google.com/intl/no/google_bsd_license.html")
+  sha256sums=('721d51fa05a8a69b67913d7c46cec85d973778fbdfd40f63d70cd865ea6e4345'
+              'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
+else
+  source=("http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip"
+          "license.html::https://code.google.com/intl/no/google_bsd_license.html")
+  sha256sums=('09bd3df38a8f15b3b42f6297bb107ca142c2888b4bd3c3063bac47fbfd2b2e49'
+              'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
+fi
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+    -or -type f -exec chmod 0644 '{}' +
+  chmod +x "$pkgname-sdk/bin/"*
+
+  # Fix paths
+  cd "$pkgname-sdk/bin"
+  setconf dart2js BIN_DIR "/opt/$pkgname-sdk/bin"
+  setconf dart2js PROG_NAME "/opt/$pkgname-sdk/bin/dart2js"
+  setconf dartanalyzer SCRIPT_DIR "/opt/$pkgname-sdk/bin"
+  setconf dartdoc BIN_DIR "/opt/$pkgname-sdk/bin"
+  setconf pub BIN_DIR "/opt/$pkgname-sdk/bin"
+  setconf pub SDK_DIR "/opt/$pkgname-sdk/"
+
+  # Fix missing "fi" and missing newline
+  echo -e "fi\n" >> pub
+}
+
+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 dartdoc pub; 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.html \
+    "$pkgdir/usr/share/licenses/$pkgname/license.html"
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-11-12 21:32:17 UTC (rev 100882)
+++ community-x86_64/PKGBUILD	2013-11-12 21:32:32 UTC (rev 100883)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth <rodseth at gmail.com>
-# Contributor: T. Jameson Little <t.jameson.little at gmail dot com>
-# Contributor: Usagi Ito <usagi at WonderRabbitProject.net>
-# Contributor: siasia <http://pastebin.com/qsBEmNCw>
-# Contributor: Julien Nicoulaud <julien.nicoulaud at gmail.com>
-
-pkgname=dart
-pkgver=0.8.7.0
-pkgrel=2
-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 (takes 309,31 MB, available in the dartium-bin 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"
-  setconf pub BIN_DIR "/opt/$pkgname/dart-sdk/bin"
-  setconf pub SDK_DIR "/opt/$pkgname/dart-sdk"
-
-  # Fix missing "fi" and missing newline
-  echo -e "fi\n" >> pub
-}
-
-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 100882, dart/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-11-12 21:32:32 UTC (rev 100883)
@@ -0,0 +1,72 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: T. Jameson Little <t.jameson.little at gmail dot com>
+# Contributor: Usagi Ito <usagi at WonderRabbitProject.net>
+# Contributor: siasia <http://pastebin.com/qsBEmNCw>
+# Contributor: Julien Nicoulaud <julien.nicoulaud at gmail.com>
+
+pkgname=dart
+pkgver=0.8.10
+pkgrel=1
+pkgdesc='The dart programming language SDK'
+arch=('x86_64' 'i686')
+url='http://www.dartlang.org/'
+license=('BSD')
+optdepends=('java-runtime: for dartanalyzer')
+makedepends=('setconf')
+options=('!strip')
+
+if [[ $CARCH == x86_64 ]]; then
+  source=("http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip"
+          "license.html::https://code.google.com/intl/no/google_bsd_license.html")
+  sha256sums=('721d51fa05a8a69b67913d7c46cec85d973778fbdfd40f63d70cd865ea6e4345'
+              'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
+else
+  source=("http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-ia32-release.zip"
+          "license.html::https://code.google.com/intl/no/google_bsd_license.html")
+  sha256sums=('09bd3df38a8f15b3b42f6297bb107ca142c2888b4bd3c3063bac47fbfd2b2e49'
+              'de16a5ac94310b1bdfc27a2a6d620531172bb31af894caeced37af41fb8e2650')
+fi
+
+prepare() {
+  # Fix permissions
+  find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
+    -or -type f -exec chmod 0644 '{}' +
+  chmod +x "$pkgname-sdk/bin/"*
+
+  # Fix paths
+  cd "$pkgname-sdk/bin"
+  setconf dart2js BIN_DIR "/opt/$pkgname-sdk/bin"
+  setconf dart2js PROG_NAME "/opt/$pkgname-sdk/bin/dart2js"
+  setconf dartanalyzer SCRIPT_DIR "/opt/$pkgname-sdk/bin"
+  setconf dartdoc BIN_DIR "/opt/$pkgname-sdk/bin"
+  setconf pub BIN_DIR "/opt/$pkgname-sdk/bin"
+  setconf pub SDK_DIR "/opt/$pkgname-sdk/"
+
+  # Fix missing "fi" and missing newline
+  echo -e "fi\n" >> pub
+}
+
+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 dartdoc pub; 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.html \
+    "$pkgdir/usr/share/licenses/$pkgname/license.html"
+}
+
+# vim:set ts=2 sw=2 et:




More information about the arch-commits mailing list