[arch-commits] Commit in eclipse/repos (10 files)

Jan Steffens heftig at nymeria.archlinux.org
Wed Jun 25 20:58:44 UTC 2014


    Date: Wednesday, June 25, 2014 @ 22:58:44
  Author: heftig
Revision: 215452

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

Added:
  eclipse/repos/testing-i686/
  eclipse/repos/testing-i686/PKGBUILD
    (from rev 215451, eclipse/trunk/PKGBUILD)
  eclipse/repos/testing-i686/eclipse.desktop
    (from rev 215451, eclipse/trunk/eclipse.desktop)
  eclipse/repos/testing-i686/eclipse.install
    (from rev 215451, eclipse/trunk/eclipse.install)
  eclipse/repos/testing-i686/eclipse.sh
    (from rev 215451, eclipse/trunk/eclipse.sh)
  eclipse/repos/testing-x86_64/
  eclipse/repos/testing-x86_64/PKGBUILD
    (from rev 215451, eclipse/trunk/PKGBUILD)
  eclipse/repos/testing-x86_64/eclipse.desktop
    (from rev 215451, eclipse/trunk/eclipse.desktop)
  eclipse/repos/testing-x86_64/eclipse.install
    (from rev 215451, eclipse/trunk/eclipse.install)
  eclipse/repos/testing-x86_64/eclipse.sh
    (from rev 215451, eclipse/trunk/eclipse.sh)

--------------------------------+
 testing-i686/PKGBUILD          |   64 +++++++++++++++++++++++++++++++++++++++
 testing-i686/eclipse.desktop   |    9 +++++
 testing-i686/eclipse.install   |   11 ++++++
 testing-i686/eclipse.sh        |    3 +
 testing-x86_64/PKGBUILD        |   64 +++++++++++++++++++++++++++++++++++++++
 testing-x86_64/eclipse.desktop |    9 +++++
 testing-x86_64/eclipse.install |   11 ++++++
 testing-x86_64/eclipse.sh      |    3 +
 8 files changed, 174 insertions(+)

Copied: eclipse/repos/testing-i686/PKGBUILD (from rev 215451, eclipse/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Paul Mattal <paul at archlinux.org>
+# Contributor: Andrew Wright <andreww at photism.org>
+# Contributor: Andreas W. Hauser <andy-aur at splashground.de>
+# Contributor: Marco Crosio <marco.crosio at gmail.com>
+
+pkgbase=eclipse
+pkgname=(eclipse eclipse-source)
+pkgver=4.4.0
+pkgrel=1
+_release=luna-R
+pkgdesc="An IDE for Java and other languages"
+license=("EPL")
+arch=('i686' 'x86_64')
+url="http://eclipse.org"
+depends=('java-environment' 'gtk2' 'unzip' 'webkitgtk2' 'libxtst')
+source=("http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$pkgname-standard-$_release-linux-gtk.tar.gz"
+        "http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$pkgname-standard-$_release-linux-gtk-x86_64.tar.gz"
+        'eclipse.sh' 'eclipse.desktop')
+md5sums=('cc700cc2eb164f5da3563e8c5157b373'
+         '44a8a5ae5e74da7b3764da774a505632'
+         '66757230837fdebabb8ce91eb4fccc80'
+         'ba2cf02c48e6e35bfe3685401c26bb5b')
+
+if (( ! GENINTEG )); then
+  if [[ $CARCH == x86_64 ]]; then
+    source=("${source[@]:1}")
+    md5sums=("${md5sums[@]:1}")
+  else
+    source=("${source[0]}" "${source[@]:2}")
+    md5sums=("${md5sums[0]}" "${md5sums[@]:2}")
+  fi
+fi
+
+prepare() {
+  mkdir -p eclipse-source/{features,plugins}
+  mv eclipse/features/*.source_* eclipse-source/features
+  mv eclipse/plugins/*.source_*  eclipse-source/plugins
+}
+
+package_eclipse() {
+  install=eclipse.install
+
+  install -d "$pkgdir/usr/share"
+  cp -a eclipse "$pkgdir/usr/share/eclipse"
+
+  install -D eclipse.sh "$pkgdir/usr/bin/eclipse"
+  install -Dm644 eclipse.desktop "$pkgdir/usr/share/applications/eclipse.desktop"
+
+  for _i in 16 32 48 256; do
+    install -Dm644 eclipse/plugins/org.eclipse.platform_*/eclipse${_i}.png \
+      "$pkgdir/usr/share/icons/hicolor/${_i}x${_i}/apps/eclipse.png"
+  done
+}
+
+package_eclipse-source() {
+  pkgdesc="Source components of the Eclipse IDE"
+  depends=('eclipse')
+
+  install -d "$pkgdir/usr/share"
+  cp -a eclipse-source "$pkgdir/usr/share/eclipse"
+}

Copied: eclipse/repos/testing-i686/eclipse.desktop (from rev 215451, eclipse/trunk/eclipse.desktop)
===================================================================
--- testing-i686/eclipse.desktop	                        (rev 0)
+++ testing-i686/eclipse.desktop	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Eclipse
+Comment=A Java Development Environment
+Icon=eclipse
+Exec=eclipse
+Terminal=false
+Type=Application
+Categories=Development;IDE;Java;
+StartupNotify=true

Copied: eclipse/repos/testing-i686/eclipse.install (from rev 215451, eclipse/trunk/eclipse.install)
===================================================================
--- testing-i686/eclipse.install	                        (rev 0)
+++ testing-i686/eclipse.install	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: eclipse/repos/testing-i686/eclipse.sh (from rev 215451, eclipse/trunk/eclipse.sh)
===================================================================
--- testing-i686/eclipse.sh	                        (rev 0)
+++ testing-i686/eclipse.sh	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,3 @@
+#!/bin/bash
+export ECLIPSE_HOME=/usr/share/eclipse
+exec ${ECLIPSE_HOME}/eclipse "$@"

Copied: eclipse/repos/testing-x86_64/PKGBUILD (from rev 215451, eclipse/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+# Contributor: Paul Mattal <paul at archlinux.org>
+# Contributor: Andrew Wright <andreww at photism.org>
+# Contributor: Andreas W. Hauser <andy-aur at splashground.de>
+# Contributor: Marco Crosio <marco.crosio at gmail.com>
+
+pkgbase=eclipse
+pkgname=(eclipse eclipse-source)
+pkgver=4.4.0
+pkgrel=1
+_release=luna-R
+pkgdesc="An IDE for Java and other languages"
+license=("EPL")
+arch=('i686' 'x86_64')
+url="http://eclipse.org"
+depends=('java-environment' 'gtk2' 'unzip' 'webkitgtk2' 'libxtst')
+source=("http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$pkgname-standard-$_release-linux-gtk.tar.gz"
+        "http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/$pkgname-standard-$_release-linux-gtk-x86_64.tar.gz"
+        'eclipse.sh' 'eclipse.desktop')
+md5sums=('cc700cc2eb164f5da3563e8c5157b373'
+         '44a8a5ae5e74da7b3764da774a505632'
+         '66757230837fdebabb8ce91eb4fccc80'
+         'ba2cf02c48e6e35bfe3685401c26bb5b')
+
+if (( ! GENINTEG )); then
+  if [[ $CARCH == x86_64 ]]; then
+    source=("${source[@]:1}")
+    md5sums=("${md5sums[@]:1}")
+  else
+    source=("${source[0]}" "${source[@]:2}")
+    md5sums=("${md5sums[0]}" "${md5sums[@]:2}")
+  fi
+fi
+
+prepare() {
+  mkdir -p eclipse-source/{features,plugins}
+  mv eclipse/features/*.source_* eclipse-source/features
+  mv eclipse/plugins/*.source_*  eclipse-source/plugins
+}
+
+package_eclipse() {
+  install=eclipse.install
+
+  install -d "$pkgdir/usr/share"
+  cp -a eclipse "$pkgdir/usr/share/eclipse"
+
+  install -D eclipse.sh "$pkgdir/usr/bin/eclipse"
+  install -Dm644 eclipse.desktop "$pkgdir/usr/share/applications/eclipse.desktop"
+
+  for _i in 16 32 48 256; do
+    install -Dm644 eclipse/plugins/org.eclipse.platform_*/eclipse${_i}.png \
+      "$pkgdir/usr/share/icons/hicolor/${_i}x${_i}/apps/eclipse.png"
+  done
+}
+
+package_eclipse-source() {
+  pkgdesc="Source components of the Eclipse IDE"
+  depends=('eclipse')
+
+  install -d "$pkgdir/usr/share"
+  cp -a eclipse-source "$pkgdir/usr/share/eclipse"
+}

Copied: eclipse/repos/testing-x86_64/eclipse.desktop (from rev 215451, eclipse/trunk/eclipse.desktop)
===================================================================
--- testing-x86_64/eclipse.desktop	                        (rev 0)
+++ testing-x86_64/eclipse.desktop	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Eclipse
+Comment=A Java Development Environment
+Icon=eclipse
+Exec=eclipse
+Terminal=false
+Type=Application
+Categories=Development;IDE;Java;
+StartupNotify=true

Copied: eclipse/repos/testing-x86_64/eclipse.install (from rev 215451, eclipse/trunk/eclipse.install)
===================================================================
--- testing-x86_64/eclipse.install	                        (rev 0)
+++ testing-x86_64/eclipse.install	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: eclipse/repos/testing-x86_64/eclipse.sh (from rev 215451, eclipse/trunk/eclipse.sh)
===================================================================
--- testing-x86_64/eclipse.sh	                        (rev 0)
+++ testing-x86_64/eclipse.sh	2014-06-25 20:58:44 UTC (rev 215452)
@@ -0,0 +1,3 @@
+#!/bin/bash
+export ECLIPSE_HOME=/usr/share/eclipse
+exec ${ECLIPSE_HOME}/eclipse "$@"




More information about the arch-commits mailing list