[arch-commits] Commit in hercules/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-12-14 Thread Alexander Rødseth via arch-commits
Date: Thursday, December 14, 2017 @ 16:52:55
  Author: arodseth
Revision: 274421

archrelease: copy trunk to community-x86_64

Added:
  hercules/repos/community-x86_64/PKGBUILD
(from rev 274420, hercules/trunk/PKGBUILD)
Deleted:
  hercules/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   77 +
 1 file changed, 37 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-12-14 16:52:44 UTC (rev 274420)
+++ PKGBUILD2017-12-14 16:52:55 UTC (rev 274421)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Kevin Piche 
-# Contributor: Jaroslav Lichtblau 
-# Contributor: Tom Newsom 
-
-pkgname=hercules
-pkgver=3.12
-pkgrel=2
-pkgdesc='Software implementation of System/370 and ESA/390'
-arch=('x86_64' 'i686')
-url='http://www.hercules-390.eu/'
-license=('custom')
-depends=('bzip2' 'libgcrypt' 'zlib' 'perl')
-options=('!makeflags')
-source=("http://downloads.hercules-390.eu/$pkgname-$pkgver.tar.gz;)
-sha256sums=('aefbe9d2f09372a530c17c177b7d2a0f4bcf8cfd28474672935b067e5f9ee373')
-
-prepare() {
-  # Change module extension from .la to .so.
-  sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i "$pkgname-$pkgver/hdl.h"
-}
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure \
---prefix=/usr \
---enable-optimization=-O2
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/hercules/qpl1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: hercules/repos/community-x86_64/PKGBUILD (from rev 274420, 
hercules/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-12-14 16:52:55 UTC (rev 274421)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Kevin Piche 
+# Contributor: Jaroslav Lichtblau 
+# Contributor: Tom Newsom 
+
+pkgname=hercules
+pkgver=3.13.00
+pkgrel=1
+pkgdesc='Software implementation of System/370 and ESA/390'
+arch=('x86_64')
+url='http://www.hercules-390.eu/'
+license=('custom')
+options=('!makeflags')
+source=("http://downloads.hercules-390.eu/$pkgname-${pkgver%.00}.tar.gz;)
+sha256sums=('890c57c558d58708e55828ae299245bd2763318acf53e456a48aac883ecfe67d')
+
+prepare() {
+  ln -sf "$pkgname-${pkgver%.00}" p
+  # Change module extension from .la to .so.
+  sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i p/hdl.h
+}
+
+build() {
+  cd p
+  ./configure --prefix=/usr --enable-optimization=-O3
+  make
+}
+
+package() {
+  cd p
+  DESTDIR="$pkgdir" make install
+  install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/hercules/qpl1"
+}
+
+# vim: ts=2 sw=2 et:
+# getver: 
raw.githubusercontent.com/rbowler/spinhawk/master/makemsi/Hercules-W64.VER


[arch-commits] Commit in hercules/repos/community-x86_64 (PKGBUILD PKGBUILD)

2015-03-28 Thread Jaroslav Lichtblau
Date: Saturday, March 28, 2015 @ 11:00:18
  Author: jlichtblau
Revision: 130073

archrelease: copy trunk to community-x86_64

Added:
  hercules/repos/community-x86_64/PKGBUILD
(from rev 130072, hercules/trunk/PKGBUILD)
Deleted:
  hercules/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   69 ++---
 1 file changed, 35 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-03-28 10:00:11 UTC (rev 130072)
+++ PKGBUILD2015-03-28 10:00:18 UTC (rev 130073)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Kevin Piche ke...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=hercules
-pkgver=3.10
-pkgrel=1
-pkgdesc='Software implementation of System/370 and ESA/390'
-arch=('i686' 'x86_64')
-url='http://www.hercules-390.eu/'
-license=('custom')
-depends=('bzip2' 'libgcrypt' 'zlib' 'perl')
-options=('!makeflags')
-source=(http://downloads.hercules-390.eu/$pkgname-$pkgver.tar.gz;)
-sha256sums=('26264569b7d78bbc3b6221926051ac3761c4a792dfc84d591d3230de40aa46fa')
-
-build() {
-  cd $pkgname-$pkgver
-  # Change module extension from .la to .so.
-  sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i hdl.h
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-  install -Dm644 COPYRIGHT \
-$pkgdir/usr/share/licenses/hercules/qpl1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: hercules/repos/community-x86_64/PKGBUILD (from rev 130072, 
hercules/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-03-28 10:00:18 UTC (rev 130073)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Kevin Piche ke...@archlinux.org
+# Contributor: Jaroslav Lichtblau svetlemo...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=hercules
+pkgver=3.11
+pkgrel=1
+pkgdesc='Software implementation of System/370 and ESA/390'
+arch=('i686' 'x86_64')
+url='http://www.hercules-390.eu/'
+license=('custom')
+depends=('bzip2' 'libgcrypt' 'zlib' 'perl')
+options=('!makeflags')
+source=(http://downloads.hercules-390.eu/$pkgname-$pkgver.tar.gz;)
+sha256sums=('a75fa0138548f93749991adab954c4a473b961bae23ad06822903df0cf2fd2ca')
+
+build() {
+  cd $pkgname-$pkgver
+  # Change module extension from .la to .so.
+  sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i hdl.h
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR=$pkgdir install
+  install -Dm644 COPYRIGHT \
+$pkgdir/usr/share/licenses/hercules/qpl1
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in hercules/repos/community-x86_64 (PKGBUILD PKGBUILD)

2013-03-03 Thread Alexander Rødseth
Date: Monday, March 4, 2013 @ 00:25:19
  Author: arodseth
Revision: 85609

archrelease: copy trunk to community-x86_64

Added:
  hercules/repos/community-x86_64/PKGBUILD
(from rev 85608, hercules/trunk/PKGBUILD)
Deleted:
  hercules/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   65 -
 1 file changed, 35 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-03 23:24:38 UTC (rev 85608)
+++ PKGBUILD2013-03-03 23:25:19 UTC (rev 85609)
@@ -1,30 +0,0 @@
-# $Id$
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Maintainer: Kevin Piche ke...@archlinux.org
-
-pkgname=hercules
-pkgver=3.07
-pkgrel=2
-pkgdesc=A software implementation of the mainframe System/370 and ESA/390 
architectures
-url=http://www.hercules-390.org/;
-source=(http://www.hercules-390.org/$pkgname-$pkgver.tar.gz;)
-arch=('i686' 'x86_64')
-license=('custom')
-options=('!libtool')
-depends=('bzip2' 'libgcrypt' 'zlib')
-md5sums=('a12aa1645b0695b25b7fc0c9a3ccab3a')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  # Change module extension from .la to .so.
-  sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i hdl.h
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make prefix=$pkgdir/usr install
-  install -D -m644 COPYRIGHT \
-$pkgdir/usr/share/licenses/hercules/qpl1
-}

Copied: hercules/repos/community-x86_64/PKGBUILD (from rev 85608, 
hercules/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-03 23:25:19 UTC (rev 85609)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Kevin Piche ke...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=hercules
+pkgver=3.08
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Software implementation of System/370 and ESA/390'
+url='http://www.hercules-390.eu/'
+source=(http://downloads.hercules-390.eu/$pkgname-$pkgver.tar.gz;)
+license=('custom')
+options=('!libtool')
+depends=('bzip2' 'libgcrypt' 'zlib' 'perl')
+sha256sums=('85e217773587f2278d4b6cb6bc815e042cfc982d0fc14baa0da4a84dea399e9d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # Change module extension from .la to .so.
+  sed '/HDL_MODULE_SUFFIX/ s/\.la/.so/' -i hdl.h
+  ./configure --prefix=/usr
+  make -j1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make prefix=$pkgdir/usr install
+  install -Dm644 COPYRIGHT \
+$pkgdir/usr/share/licenses/hercules/qpl1
+}
+
+# vim:set ts=2 sw=2 et: