[arch-commits] Commit in crystal/repos (6 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Fri Jun 9 12:28:53 UTC 2017


    Date: Friday, June 9, 2017 @ 12:28:52
  Author: bpiotrowski
Revision: 235519

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  crystal/repos/community-staging-i686/
  crystal/repos/community-staging-i686/PKGBUILD
    (from rev 235518, crystal/trunk/PKGBUILD)
  crystal/repos/community-staging-i686/remove_failing_socket_test.patch
    (from rev 235518, crystal/trunk/remove_failing_socket_test.patch)
  crystal/repos/community-staging-x86_64/
  crystal/repos/community-staging-x86_64/PKGBUILD
    (from rev 235518, crystal/trunk/PKGBUILD)
  crystal/repos/community-staging-x86_64/remove_failing_socket_test.patch
    (from rev 235518, crystal/trunk/remove_failing_socket_test.patch)

-----------------------------------------------------------+
 community-staging-i686/PKGBUILD                           |   83 ++++++++++++
 community-staging-i686/remove_failing_socket_test.patch   |   29 ++++
 community-staging-x86_64/PKGBUILD                         |   83 ++++++++++++
 community-staging-x86_64/remove_failing_socket_test.patch |   29 ++++
 4 files changed, 224 insertions(+)

Copied: crystal/repos/community-staging-i686/PKGBUILD (from rev 235518, crystal/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2017-06-09 12:28:52 UTC (rev 235519)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Anatol Pomozov <anatol.pomozov at gmail.com>
+# Contributor: Jonne Haß <me at jhass.eu>
+
+pkgname=crystal
+pkgver=0.22.0
+pkgrel=2
+_binary_rel=1
+pkgdesc='The Crystal Programming Language'
+arch=(i686 x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent llvm-libs)
+makedepends=(libxml2 llvm)
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+            'libyaml: For YAML support'
+            'gmp: For BigInt support'
+            'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz
+        remove_failing_socket_test.patch
+)
+source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
+source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
+sha256sums=('5b9f11d9710ca9bd971a5afb94d369fd8dfaee103d7edf1c9fbebb2f21898547'
+            '96672187a8a522af3c214e7cb3252dc69aed0bae47ba2e1faf87aad8a67bfe35')
+sha256sums_i686=('c084846d3f9e0c3cfcba6a79fe4e0cf6c6cb6801826a969460ecf2a47abd0fe9')
+sha256sums_x86_64=('789d7b844886133428248605113ede9174c6ea4ba47d96a13f0efd1565b5810d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please install shards: pacman -S shards|' src/compiler/crystal/command.cr
+
+  # https://github.com/crystal-lang/crystal/issues/4130
+  patch -p1 < ../remove_failing_socket_test.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # We use --no-debug because it runs out of memory on i686 without it
+  # https://github.com/crystal-lang/crystal/issues/3787#issuecomment-281591985
+  make release=1 \
+       FLAGS="--release --no-debug" \
+       PATH="$srcdir/$pkgname-$pkgver-$_binary_rel/bin:$PATH" \
+       CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+       CRYSTAL_CONFIG_VERSION="$pkgver" \
+       CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
+       CRYSTAL_CACHE_DIR="/tmp/crystal"
+  make doc CRYSTAL_CACHE_DIR="/tmp/crystal"
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+            CRYSTAL_CONFIG_VERSION="$pkgver" \
+            CRYSTAL_CACHE_DIR="/tmp/crystal" \
+            PATH=".build:$PATH"
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # /usr/bin/crystal                compiled executable
+  # /usr/lib/crystal/               compiler src & core libs
+  # /usr/share/doc/crystal/api      api docs
+  # /usr/share/doc/crystal/samples/ samples
+
+  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
+
+  install -dm755 "$pkgdir/usr/lib"
+  cp -r src "$pkgdir/usr/lib/crystal"
+
+  install -dm755 "$pkgdir/usr/share/doc/crystal"
+  cp -r doc "$pkgdir/usr/share/doc/crystal/api"
+  cp -r samples "$pkgdir/usr/share/doc/crystal/"
+
+  install -Dm644 etc/completion.bash "$pkgdir/usr/share/bash-completion/completions/crystal"
+  install -Dm644 etc/completion.zsh "$pkgdir/usr/share/zsh/site-functions/_crystal"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: crystal/repos/community-staging-i686/remove_failing_socket_test.patch (from rev 235518, crystal/trunk/remove_failing_socket_test.patch)
===================================================================
--- community-staging-i686/remove_failing_socket_test.patch	                        (rev 0)
+++ community-staging-i686/remove_failing_socket_test.patch	2017-06-09 12:28:52 UTC (rev 235519)
@@ -0,0 +1,29 @@
+commit 73103a21fa8b09f4a2d0ee1886204e3bb9e17252
+Author: Anatol Pomozov <anatol.pomozov at gmail.com>
+Date:   Sat Apr 22 06:54:02 2017 -0700
+
+    Remove tests that fail because of #4130
+
+diff --git a/spec/std/socket_spec.cr b/spec/std/socket_spec.cr
+index 56e565f86..f5554893b 100644
+--- a/spec/std/socket_spec.cr
++++ b/spec/std/socket_spec.cr
+@@ -536,18 +536,6 @@ describe TCPSocket do
+       TCPSocket.new("localhost", port)
+     end
+   end
+-
+-  it "fails when host doesn't exist" do
+-    expect_raises(Socket::Error, /No address found for doesnotexist.example.org.:12345/) do
+-      TCPSocket.new("doesnotexist.example.org.", 12345)
+-    end
+-  end
+-
+-  it "fails (rather than segfault on darwin) when host doesn't exist and port is 0" do
+-    expect_raises(Socket::Error, /No address found for doesnotexist.example.org.:0/) do
+-      TCPSocket.new("doesnotexist.example.org.", 0)
+-    end
+-  end
+ end
+ 
+ describe UDPSocket do

Copied: crystal/repos/community-staging-x86_64/PKGBUILD (from rev 235518, crystal/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-06-09 12:28:52 UTC (rev 235519)
@@ -0,0 +1,83 @@
+# $Id$
+# Maintainer: Anatol Pomozov <anatol.pomozov at gmail.com>
+# Contributor: Jonne Haß <me at jhass.eu>
+
+pkgname=crystal
+pkgver=0.22.0
+pkgrel=2
+_binary_rel=1
+pkgdesc='The Crystal Programming Language'
+arch=(i686 x86_64)
+url='http://crystal-lang.org'
+license=(Apache)
+depends=(gc libatomic_ops pcre libevent llvm-libs)
+makedepends=(libxml2 llvm)
+checkdepends=(libyaml libxml2 gmp inetutils git)
+optdepends=('shards: crystal language package manager'
+            'libyaml: For YAML support'
+            'gmp: For BigInt support'
+            'libxml2: For XML support')
+source=(crystal-$pkgver.tar.gz::https://github.com/crystal-lang/crystal/archive/$pkgver.tar.gz
+        remove_failing_socket_test.patch
+)
+source_i686+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-i686.tar.gz)
+source_x86_64+=(https://github.com/crystal-lang/crystal/releases/download/$pkgver/$pkgname-$pkgver-$_binary_rel-linux-x86_64.tar.gz)
+sha256sums=('5b9f11d9710ca9bd971a5afb94d369fd8dfaee103d7edf1c9fbebb2f21898547'
+            '96672187a8a522af3c214e7cb3252dc69aed0bae47ba2e1faf87aad8a67bfe35')
+sha256sums_i686=('c084846d3f9e0c3cfcba6a79fe4e0cf6c6cb6801826a969460ecf2a47abd0fe9')
+sha256sums_x86_64=('789d7b844886133428248605113ede9174c6ea4ba47d96a13f0efd1565b5810d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  sed -i 's|Please install shards: https://github.com/ysbaddaden/shards|Please install shards: pacman -S shards|' src/compiler/crystal/command.cr
+
+  # https://github.com/crystal-lang/crystal/issues/4130
+  patch -p1 < ../remove_failing_socket_test.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  # We use --no-debug because it runs out of memory on i686 without it
+  # https://github.com/crystal-lang/crystal/issues/3787#issuecomment-281591985
+  make release=1 \
+       FLAGS="--release --no-debug" \
+       PATH="$srcdir/$pkgname-$pkgver-$_binary_rel/bin:$PATH" \
+       CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+       CRYSTAL_CONFIG_VERSION="$pkgver" \
+       CRYSTAL_CONFIG_PATH="lib:/usr/lib/crystal" \
+       CRYSTAL_CACHE_DIR="/tmp/crystal"
+  make doc CRYSTAL_CACHE_DIR="/tmp/crystal"
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make spec CRYSTAL_PATH="$srcdir/$pkgname-$pkgver/src" \
+            CRYSTAL_CONFIG_VERSION="$pkgver" \
+            CRYSTAL_CACHE_DIR="/tmp/crystal" \
+            PATH=".build:$PATH"
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  # /usr/bin/crystal                compiled executable
+  # /usr/lib/crystal/               compiler src & core libs
+  # /usr/share/doc/crystal/api      api docs
+  # /usr/share/doc/crystal/samples/ samples
+
+  install -Dm755 ".build/crystal" "$pkgdir/usr/bin/crystal"
+
+  install -dm755 "$pkgdir/usr/lib"
+  cp -r src "$pkgdir/usr/lib/crystal"
+
+  install -dm755 "$pkgdir/usr/share/doc/crystal"
+  cp -r doc "$pkgdir/usr/share/doc/crystal/api"
+  cp -r samples "$pkgdir/usr/share/doc/crystal/"
+
+  install -Dm644 etc/completion.bash "$pkgdir/usr/share/bash-completion/completions/crystal"
+  install -Dm644 etc/completion.zsh "$pkgdir/usr/share/zsh/site-functions/_crystal"
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Copied: crystal/repos/community-staging-x86_64/remove_failing_socket_test.patch (from rev 235518, crystal/trunk/remove_failing_socket_test.patch)
===================================================================
--- community-staging-x86_64/remove_failing_socket_test.patch	                        (rev 0)
+++ community-staging-x86_64/remove_failing_socket_test.patch	2017-06-09 12:28:52 UTC (rev 235519)
@@ -0,0 +1,29 @@
+commit 73103a21fa8b09f4a2d0ee1886204e3bb9e17252
+Author: Anatol Pomozov <anatol.pomozov at gmail.com>
+Date:   Sat Apr 22 06:54:02 2017 -0700
+
+    Remove tests that fail because of #4130
+
+diff --git a/spec/std/socket_spec.cr b/spec/std/socket_spec.cr
+index 56e565f86..f5554893b 100644
+--- a/spec/std/socket_spec.cr
++++ b/spec/std/socket_spec.cr
+@@ -536,18 +536,6 @@ describe TCPSocket do
+       TCPSocket.new("localhost", port)
+     end
+   end
+-
+-  it "fails when host doesn't exist" do
+-    expect_raises(Socket::Error, /No address found for doesnotexist.example.org.:12345/) do
+-      TCPSocket.new("doesnotexist.example.org.", 12345)
+-    end
+-  end
+-
+-  it "fails (rather than segfault on darwin) when host doesn't exist and port is 0" do
+-    expect_raises(Socket::Error, /No address found for doesnotexist.example.org.:0/) do
+-      TCPSocket.new("doesnotexist.example.org.", 0)
+-    end
+-  end
+ end
+ 
+ describe UDPSocket do



More information about the arch-commits mailing list