Date: Tuesday, August 23, 2016 @ 15:59:21
  Author: jlichtblau
Revision: 187403

archrelease: copy trunk to community-testing-any

Added:
  josm/repos/community-testing-any/
  josm/repos/community-testing-any/PKGBUILD
    (from rev 187402, josm/trunk/PKGBUILD)
  josm/repos/community-testing-any/josm.changelog
    (from rev 187402, josm/trunk/josm.changelog)
  josm/repos/community-testing-any/josm.conf.d
    (from rev 187402, josm/trunk/josm.conf.d)
  josm/repos/community-testing-any/josm.install
    (from rev 187402, josm/trunk/josm.install)

----------------+
 PKGBUILD       |   53 +++++++++++++
 josm.changelog |  210 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 josm.conf.d    |    4 +
 josm.install   |   11 ++
 4 files changed, 278 insertions(+)

Copied: josm/repos/community-testing-any/PKGBUILD (from rev 187402, 
josm/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD                              (rev 0)
+++ community-testing-any/PKGBUILD      2016-08-23 15:59:21 UTC (rev 187403)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <[email protected]>
+# Contributor: Michele Schäuble <[email protected]>
+
+pkgname=josm
+pkgver=10786
+pkgrel=3
+pkgdesc="An editor for OpenStreetMap written in Java"
+arch=('any')
+url="http://josm.openstreetmap.de/";
+license=('GPL')
+depends=('java-runtime>=8' 'libxtst' 'ttf-font')
+install=$pkgname.install
+changelog=$pkgname.changelog
+backup=('etc/conf.d/josm')
+source=(https://josm.openstreetmap.de/$pkgname-tested.jar
+        
https://josm.openstreetmap.de/export/HEAD/$pkgname/trunk/linux/tested/usr/share/applications/$pkgname.desktop
+        $pkgname.conf.d)
+noextract=($pkgname-tested.jar)
+sha256sums=('f6cafd5be7689d00e4ecd1f528fe5079daa6f54eb7781ca1beb145c4ed188bb6'
+            '9b18b076fd371fc87b851a700bb1fff6547b061769af57a3abc9af83405c16d2'
+            'c86a73251eed42fcb129ae9b88a0ee3cf03d8d00a9385519ad536d5af0907663')
+
+prepare() {
+  cd "${srcdir}"
+  bsdtar -xf $pkgname-tested.jar images/logo.png
+}
+
+package() {
+  cd "${srcdir}"
+
+  install -Dm644 $pkgname-tested.jar 
"${pkgdir}"/usr/share/java/$pkgname/$pkgname.jar
+
+#.desktop and icon file
+  install -Dm644 "${srcdir}"/${pkgname}.desktop 
${pkgdir}/usr/share/applications/$pkgname.desktop
+  install -Dm644 images/logo.png "${pkgdir}"/usr/share/pixmaps/$pkgname.png
+
+#executable file
+  install -d "${pkgdir}"/usr/bin
+  cat <<"EOF" >"${pkgdir}"/usr/bin/$pkgname 
+#!/bin/sh
+# source application-specific settings
+while true; do
+    JOSM_ARGS=
+    [ -f /etc/conf.d/josm ] && . /etc/conf.d/josm
+    CLASSPATH="/usr/share/java/josm/josm.jar"
+    java ${JOSM_ARGS} -cp "${CLASSPATH}" -Djosm.restart=true 
org.openstreetmap.josm.gui.MainApplication "$@"
+    [ $? -eq 9 ] || break
+done
+EOF
+  chmod 755 "${pkgdir}"/usr/bin/$pkgname
+  install -Dm644 "${srcdir}"/$pkgname.conf.d "${pkgdir}"/etc/conf.d/$pkgname
+}

Copied: josm/repos/community-testing-any/josm.changelog (from rev 187402, 
josm/trunk/josm.changelog)
===================================================================
--- community-testing-any/josm.changelog                                (rev 0)
+++ community-testing-any/josm.changelog        2016-08-23 15:59:21 UTC (rev 
187403)
@@ -0,0 +1,210 @@
+2016-08-23 Jaroslav Lichtblau <[email protected]>
+       * josm 10786-3 FS#50479 fix
+
+2016-08-20 Jaroslav Lichtblau <[email protected]>
+       * josm 10786-2 FS#50245 fix
+
+2016-08-12 Jaroslav Lichtblau <[email protected]>
+       * josm 10786-1
+
+2016-07-12 Jaroslav Lichtblau <[email protected]>
+       * josm 10526-1
+
+2016-06-06 Jaroslav Lichtblau <[email protected]>
+       * josm 10327-1
+
+2016-06-01 Jaroslav Lichtblau <[email protected]>
+       * josm 10301-1
+
+2016-05-08 Jaroslav Lichtblau <[email protected]>
+       * josm 10168-1
+
+2016-04-28 Jaroslav Lichtblau <[email protected]>
+       * josm 10161-1
+
+2016-03-24 Jaroslav Lichtblau <[email protected]>
+       * josm 9979-1
+
+2016-03-12 Jaroslav Lichtblau <[email protected]>
+       * josm 9963-1
+
+2016-03-01 Jaroslav Lichtblau <[email protected]>
+       * josm 9900-1
+
+2016-01-07 Jaroslav Lichtblau <[email protected]>
+       * josm 9329-1
+
+2016-01-01 Jaroslav Lichtblau <[email protected]>
+       * josm 9229-1
+
+2015-11-24 Jaroslav Lichtblau <[email protected]>
+       * josm 9060-1
+
+2015-10-30 Jaroslav Lichtblau <[email protected]>
+       * josm 8969-1
+
+2015-09-30 Jaroslav Lichtblau <[email protected]>
+       * josm 8800-1
+
+2015-08-23 Jaroslav Lichtblau <[email protected]>
+       * josm 8677-1
+
+2015-06-17 Jaroslav Lichtblau <[email protected]>
+       * josm 8491-1
+
+2015-05-14 Jaroslav Lichtblau <[email protected]>
+       * josm 8339-1
+
+2015-04-27 Jaroslav Lichtblau <[email protected]>
+       * josm 8279-1
+
+2015-04-18 Jaroslav Lichtblau <[email protected]>
+       * josm 8159-1
+
+2015-03-03 Jaroslav Lichtblau <[email protected]>
+       * josm 8109-1
+
+2015-02-04 Jaroslav Lichtblau <[email protected]>
+       * josm 7995-1
+
+2014-12-29 Jaroslav Lichtblau <[email protected]>
+       * josm 7906-1
+
+2014-12-10 Jaroslav Lichtblau <[email protected]>
+       * josm 7777-1
+
+2014-10-22 Jaroslav Lichtblau <[email protected]>
+       * josm 7643-1
+
+2014-10-01 Jaroslav Lichtblau <[email protected]>
+       * josm 7588-1
+
+2014-09-02 Jaroslav Lichtblau <[email protected]>
+       * josm 7480-1
+
+2014-07-30 Jaroslav Lichtblau <[email protected]>
+       * josm 7347-1
+
+2014-07-05 Jaroslav Lichtblau <[email protected]>
+       * josm 7287-1
+
+2014-05-27 Jaroslav Lichtblau <[email protected]>
+       * josm 7182-1
+
+2014-04-27 Jaroslav Lichtblau <[email protected]>
+       * josm 7000-1
+
+2014-04-02 Jaroslav Lichtblau <[email protected]>
+       * josm 6950-1
+
+2014-01-29 Jaroslav Lichtblau <[email protected]>
+       * josm 6767-1
+
+2013-12-21 Jaroslav Lichtblau <[email protected]>
+       * josm 6502-1
+
+2013-11-17 Jaroslav Lichtblau <[email protected]>
+       * josm 6388-1
+       * fixed FS#37321 - [josm] JOSM restart command does not work
+
+2013-11-17 Jaroslav Lichtblau <[email protected]>
+       * josm 6383-1
+
+2013-09-02 Jaroslav Lichtblau <[email protected]>
+       * josm 6115-1
+
+2013-07-14 Jaroslav Lichtblau <[email protected]>
+       * josm 6060-1
+
+2013-06-15 Jaroslav Lichtblau <[email protected]>
+       * josm 5990-1
+
+2013-05-18 Jaroslav Lichtblau <[email protected]>
+       * josm 5939-1
+
+2013-04-20 Jaroslav Lichtblau <[email protected]>
+       * josm 5836-1
+
+2013-03-12 Jaroslav Lichtblau <[email protected]>
+       * josm 5759-1
+
+2013-02-16 Jaroslav Lichtblau <[email protected]>
+       * josm 5697-1
+
+2012-12-16 Jaroslav Lichtblau <[email protected]>
+       * josm 5608-1
+
+2012-11-18 Jaroslav Lichtblau <[email protected]>
+       * josm 5576-1
+
+2012-10-22 Jaroslav Lichtblau <[email protected]>
+       * josm 5531-1
+
+2012-09-02 Jaroslav Lichtblau <[email protected]>
+       * josm 5485-1
+
+2012-07-30 Jaroslav Lichtblau <[email protected]>
+       * josm 5356-1
+
+2012-07-22 Jaroslav Lichtblau <[email protected]>
+       * josm 5353-1
+
+2012-07-07 Jaroslav Lichtblau <[email protected]>
+       * josm 5315-1
+
+2012-06-10 Jaroslav Lichtblau <[email protected]>
+       * josm 5267-1
+       * added support for max.heap value from /etc/conf.d/josm (thx to 
jose1711)
+
+2012-05-06 Jaroslav Lichtblau <[email protected]>
+       * josm 5210-1
+
+2012-04-19 Jaroslav Lichtblau <[email protected]>
+       * josm 5181-1
+
+2012-03-18 Jaroslav Lichtblau <[email protected]>
+       * josm 5047-1
+
+2012-02-20 Jaroslav Lichtblau <[email protected]>
+       * josm 4878-1
+
+2011-12-25 Jaroslav Lichtblau <[email protected]>
+       * josm 4667-1
+
+2011-12-17 Jaroslav Lichtblau <[email protected]>
+       * josm 4666-1
+
+2011-11-07 Jaroslav Lichtblau <[email protected]>
+       * josm 4550-1
+
+2011-10-23 Jaroslav Lichtblau <[email protected]>
+       * josm 4487-2
+       * fixed FS#26168 - [josm] Missing icon
+
+2011-10-09 Jaroslav Lichtblau <[email protected]>
+       * josm 4487-1
+
+2011-08-20 Jaroslav Lichtblau <[email protected]>
+       * josm 4399-1
+
+2011-08-20 Jaroslav Lichtblau <[email protected]>
+       * josm 4279-1
+
+2011-07-19 Jaroslav Lichtblau <[email protected]>
+       * josm 4223-1
+
+2011-07-08 Jaroslav Lichtblau <[email protected]>
+       * josm 4201-1
+
+2011-05-07 Jaroslav Lichtblau <[email protected]>
+       * josm 4064-1
+
+2011-04-18 Jaroslav Lichtblau <[email protected]>
+       * josm 4021-1
+
+2011-03-09 Jaroslav Lichtblau <[email protected]>
+       * josm 3966-1
+
+2011-02-05 Jaroslav Lichtblau <[email protected]>
+       * josm 3751-2
+       * moved to [community] with 105 AUR votes

Copied: josm/repos/community-testing-any/josm.conf.d (from rev 187402, 
josm/trunk/josm.conf.d)
===================================================================
--- community-testing-any/josm.conf.d                           (rev 0)
+++ community-testing-any/josm.conf.d   2016-08-23 15:59:21 UTC (rev 187403)
@@ -0,0 +1,4 @@
+#
+# Parameters for JOSM editor
+#
+#JOSM_ARGS="-Xmx800M"

Copied: josm/repos/community-testing-any/josm.install (from rev 187402, 
josm/trunk/josm.install)
===================================================================
--- community-testing-any/josm.install                          (rev 0)
+++ community-testing-any/josm.install  2016-08-23 15:59:21 UTC (rev 187403)
@@ -0,0 +1,11 @@
+post_install() {
+cat << EOF
+
+See https://wiki.archlinux.org/index.php/Java#Switching_between_JVM to make 
Java 8 your default environment to get JOSM working.
+
+EOF
+}
+
+post_upgrade() {
+  post_install $1
+}

Reply via email to