[arch-commits] Commit in ponyc/repos/community-x86_64 (PKGBUILD PKGBUILD)
Felix Yan
felixonmars at archlinux.org
Sat Aug 29 08:28:44 UTC 2020
Date: Saturday, August 29, 2020 @ 08:28:44
Author: felixonmars
Revision: 691569
archrelease: copy trunk to community-x86_64
Added:
ponyc/repos/community-x86_64/PKGBUILD
(from rev 691568, ponyc/trunk/PKGBUILD)
Deleted:
ponyc/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 138 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 70 insertions(+), 68 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-08-29 08:28:27 UTC (rev 691568)
+++ PKGBUILD 2020-08-29 08:28:44 UTC (rev 691569)
@@ -1,68 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=ponyc
-pkgver=0.36.0
-_llvmcommit=c1a0a213378a458fbea1a5c77b315c7dce08fd05
-pkgrel=1
-pkgdesc='An actor model, capabilities, high performance programming language'
-url='https://ponylang.org/'
-arch=('x86_64')
-license=('BSD')
-depends=('zlib')
-makedepends=('cmake' 'git' 'gmock' 'grpc' 'gtest')
-checkdepends=('pcre2')
-options=('!strip')
-optdepends=('pcre2: Needed for the regex package')
-source=("https://github.com/ponylang/ponyc/archive/$pkgver/$pkgname-$pkgver.tar.gz"
- "https://github.com/llvm/llvm-project/archive/$_llvmcommit/llvm-$_llvmcommit.tar.gz")
-sha512sums=('949cfc3bd1723b75b646b4b437659b3ae7630f02dee408247034caa05bd074ef54ebf12b6f71372e39be76f2e5b71ef94afd21ed0faca80388a57afcfba073be'
- '0c0b5f2c32479c148abebcc170651f5e6fc02177d3cf5638381ef177815f6c2223de7d4c082faa9de765a56ef1fba021583a748a5d009860b84979dc8d5ee064')
-
-prepare() {
- cd ponyc-$pkgver
- rmdir lib/llvm/src
- ln -sf "$srcdir"/llvm-project-$_llvmcommit lib/llvm/src
-
- # Use system gmock/gtest/gbenchmark
- sed -i 's|NO_DEFAULT_PATH||' CMakeLists.txt
-
- # Don't download gbenchmark/gtest
- sed -i '12,20d' lib/CMakeLists.txt
- # sed -i 's/-Werror //' CMakeLists.txt
-}
-
-build() {
- cd ponyc-$pkgver
- make config=release prefix=/usr arch=x86-64 libs
- make config=release prefix=/usr arch=x86-64 configure
- make config=release prefix=/usr arch=x86-64 build
-
- mkdir docs
- build/release/ponyc packages/stdlib -rexpr -g -o docs
-}
-
-check() {
- cd ponyc-$pkgver
- make config=release prefix=/usr arch=x86-64 test
-}
-
-package() {
- cd ponyc-$pkgver
- make config=release arch= DESTDIR="$pkgdir"/usr/lib/pony install
-
- install -dm755 "$pkgdir"/usr/{bin,lib,include/pony/detail}
- ln -sf /usr/lib/pony/bin/ponyc "$pkgdir"/usr/bin/
- for _lib in {libponyc,libponyrt,libponyrt-pic}.a; do
- ln -sf /usr/lib/pony/lib/$_lib "$pkgdir"/usr/lib/
- done
- ln -sf /usr/lib/pony/include/pony.h "$pkgdir"/usr/include/
- ln -sf /usr/lib/pony/include/pony/detail/atomics.h "$pkgdir"/usr/include/pony/detail/
-
- # Let's include the examples as documentation is scarce.
- install -dm755 "$pkgdir"/usr/share/doc/pony
- cp -dr --no-preserve=ownership examples "$pkgdir"/usr/share/doc/pony
-
- cp -dr docs/* "$pkgdir"/usr/share/doc/pony
-
- install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
-}
Copied: ponyc/repos/community-x86_64/PKGBUILD (from rev 691568, ponyc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-08-29 08:28:44 UTC (rev 691569)
@@ -0,0 +1,70 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=ponyc
+pkgver=0.37.0
+_llvmcommit=c1a0a213378a458fbea1a5c77b315c7dce08fd05
+pkgrel=1
+pkgdesc='An actor model, capabilities, high performance programming language'
+url='https://ponylang.org/'
+arch=('x86_64')
+license=('BSD')
+depends=('zlib')
+makedepends=('cmake' 'git' 'gmock' 'grpc' 'gtest')
+checkdepends=('pcre2')
+options=('!strip')
+optdepends=('pcre2: Needed for the regex package')
+source=("https://github.com/ponylang/ponyc/archive/$pkgver/$pkgname-$pkgver.tar.gz"
+ "https://github.com/llvm/llvm-project/archive/$_llvmcommit/llvm-$_llvmcommit.tar.gz")
+sha512sums=('ac98447cf4820b5b89952179f82cc48d87a121622ff489f3f90968c84721c7acf3f71d24da986ba6b449e11e18a2b964a55acc3a9052c36df3e881f96ebc320e'
+ '0c0b5f2c32479c148abebcc170651f5e6fc02177d3cf5638381ef177815f6c2223de7d4c082faa9de765a56ef1fba021583a748a5d009860b84979dc8d5ee064')
+
+prepare() {
+ cd ponyc-$pkgver
+ rmdir lib/llvm/src
+ ln -sf "$srcdir"/llvm-project-$_llvmcommit lib/llvm/src
+
+ # Use system gmock/gtest/gbenchmark
+ sed -i 's|NO_DEFAULT_PATH||' CMakeLists.txt
+
+ # Don't download gbenchmark/gtest
+ sed -i '12,20d' lib/CMakeLists.txt
+
+ # https://github.com/ponylang/ponyc/issues/3628
+ sed -i '/ pony_assert(0);/a \ return false;' src/libponyc/expr/reference.c
+}
+
+build() {
+ cd ponyc-$pkgver
+ make config=release prefix=/usr arch=x86-64 libs
+ make config=release prefix=/usr arch=x86-64 configure
+ make config=release prefix=/usr arch=x86-64 build
+
+ mkdir docs
+ build/release/ponyc packages/stdlib -rexpr -g -o docs
+}
+
+check() {
+ cd ponyc-$pkgver
+ make config=release prefix=/usr arch=x86-64 test
+}
+
+package() {
+ cd ponyc-$pkgver
+ make config=release arch= DESTDIR="$pkgdir"/usr/lib/pony install
+
+ install -dm755 "$pkgdir"/usr/{bin,lib,include/pony/detail}
+ ln -sf /usr/lib/pony/bin/ponyc "$pkgdir"/usr/bin/
+ for _lib in {libponyc,libponyrt,libponyrt-pic}.a; do
+ ln -sf /usr/lib/pony/lib/$_lib "$pkgdir"/usr/lib/
+ done
+ ln -sf /usr/lib/pony/include/pony.h "$pkgdir"/usr/include/
+ ln -sf /usr/lib/pony/include/pony/detail/atomics.h "$pkgdir"/usr/include/pony/detail/
+
+ # Let's include the examples as documentation is scarce.
+ install -dm755 "$pkgdir"/usr/share/doc/pony
+ cp -dr --no-preserve=ownership examples "$pkgdir"/usr/share/doc/pony
+
+ cp -dr docs/* "$pkgdir"/usr/share/doc/pony
+
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
+}
More information about the arch-commits
mailing list