summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbpark2016-07-23 22:12:27 +0900
committercbpark2016-07-23 22:12:27 +0900
commitefb042d8dd04e0b7087edacbece374927e5ef0dc (patch)
treeaecf569b18cd65127603b30db43a7f634b6de7b5
parent3168eaf62b81ddab146fc3964eae49bf42877f44 (diff)
downloadaur-efb042d8dd04e0b7087edacbece374927e5ef0dc.tar.gz
upgpkg: thepeg 2.0.3-1
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD11
2 files changed, 11 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index df07b4647f8d..6fc1c2982481 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = thepeg
pkgdesc = Toolkit for High Energy Physics Event Generation
- pkgver = 2.0.2
+ pkgver = 2.0.3
pkgrel = 1
url = http://thepeg.hepforge.org
arch = i686
@@ -13,8 +13,8 @@ pkgbase = thepeg
depends = zlib
depends = fastjet
depends = boost
- source = http://www.hepforge.org/archive/thepeg/ThePEG-2.0.2.tar.bz2
- sha256sums = d4249e019543d5c7520733292d2edfb0bdd9733177200a63837781ed6194789b
+ source = http://www.hepforge.org/archive/thepeg/ThePEG-2.0.3.tar.bz2
+ sha256sums = c57ba68fbfda06a0ba256e06f276f91434bf2529a13f6287c051a4cd6da44634
pkgname = thepeg
diff --git a/PKGBUILD b/PKGBUILD
index 47a359466cc2..0799627e38db 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgrname=ThePEG
pkgname=thepeg
-pkgver=2.0.2
+pkgver=2.0.3
pkgrel=1
pkgdesc="Toolkit for High Energy Physics Event Generation"
arch=("i686" "x86_64")
@@ -10,11 +10,16 @@ url="http://thepeg.hepforge.org"
license=('GPL2')
depends=("gsl" "lhapdf" "hepmc" "rivet" "zlib" "fastjet" "boost")
source=("http://www.hepforge.org/archive/thepeg/${_pkgrname}-$pkgver.tar.bz2")
-sha256sums=('d4249e019543d5c7520733292d2edfb0bdd9733177200a63837781ed6194789b')
+sha256sums=('c57ba68fbfda06a0ba256e06f276f91434bf2529a13f6287c051a4cd6da44634')
build() {
cd "${_pkgrname}-$pkgver"
- ./configure --prefix=/usr --with-lhapdf=/usr --with-fastjet=/usr
+ sed -i 's/isnan/std::isnan/g' Persistency/PersistentOStream.h \
+ LesHouches/LesHouchesFileReader.cc \
+ Utilities/UnitIO.h
+ sed -i 's/isinf/std::isinf/g' Persistency/PersistentOStream.h \
+ Utilities/UnitIO.h
+ ./configure --prefix=/usr --with-lhapdf=/usr --with-fastjet=/usr --enable-unitchecks
make
}