Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AUR updates for 1.27.0 #20142

Merged
merged 2 commits into from
Jul 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion util/packaging/aur/chapel-git/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pkgbase = chapel-git
pkgdesc = Programming language designed for productive parallel computing at scale
pkgver = 1.27.0.7648.gbcc4ac3109
pkgver = 1.28.0.280.g08f1d4886b
pkgrel = 1
url = https://chapel-lang.org/
arch = x86_64
Expand Down
2 changes: 1 addition & 1 deletion util/packaging/aur/chapel-git/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ _gituser="chapel-lang"
_gitname="chapel"

pkgname=${_gitname}-git
pkgver=1.27.0.7648.gbcc4ac3109 #autogenerated/written by pkgver()
pkgver=1.28.0.280.g08f1d4886b #autogenerated/written by pkgver()
pkgrel=1
pkgdesc="Programming language designed for productive parallel computing at scale"
url="https://chapel-lang.org/"
Expand Down
8 changes: 3 additions & 5 deletions util/packaging/aur/chapel/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
pkgbase = chapel
pkgdesc = Programming language designed for productive parallel computing at scale
pkgver = 1.26.0
pkgver = 1.27.0
pkgrel = 1
url = https://chapel-lang.org/
arch = x86_64
arch = arm
license = Apache
makedepends = git
makedepends = cmake
makedepends = libtool
depends = python
depends = perl
depends = llvm
depends = clang
depends = gmp
source = https://github.com/chapel-lang/chapel/releases/download/1.26.0/chapel-1.26.0.tar.gz
sha256sums = ba396b581f0a17f8da3f365a3f8b079b8d2e229a393fbd1756966b0019931ece
source = https://github.com/chapel-lang/chapel/releases/download/1.27.0/chapel-1.27.0.tar.gz
sha256sums = 558b1376fb7757a5e1f254c717953f598a3e89850c8edd1936b8d09c464f3e8b

pkgname = chapel
10 changes: 4 additions & 6 deletions util/packaging/aur/chapel/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,20 @@
# Co-maintainer: Gabriel Brown <[email protected]>

pkgname=chapel
pkgver=1.26.0
pkgver=1.27.0
pkgrel=1
pkgdesc="Programming language designed for productive parallel computing at scale"
url="https://chapel-lang.org/"
arch=('x86_64' 'arm')
license=('Apache')
depends=('python' 'perl' 'llvm' 'clang' 'gmp')
makedepends=('git' 'cmake' 'libtool')
depends=('python' 'perl' 'llvm' 'clang')
makedepends=('git' 'cmake')
source=("https://github.com/chapel-lang/chapel/releases/download/${pkgver}/chapel-${pkgver}.tar.gz")
sha256sums=('ba396b581f0a17f8da3f365a3f8b079b8d2e229a393fbd1756966b0019931ece')
sha256sums=('558b1376fb7757a5e1f254c717953f598a3e89850c8edd1936b8d09c464f3e8b')


build() {
cd "$srcdir/${pkgname}-${pkgver}"
export CHPL_LIB_PIC=pic # remove on next release a la
# https://github.com/chapel-lang/chapel/pull/19785
./configure --prefix=/usr
make
}
Expand Down