[arch-commits] Commit in zig/repos (3 files)

Evangelos Foutras foutrelis at archlinux.org
Wed Feb 17 18:57:33 UTC 2021


    Date: Wednesday, February 17, 2021 @ 18:57:33
  Author: foutrelis
Revision: 862623

archrelease: copy trunk to community-staging-x86_64

Added:
  zig/repos/community-staging-x86_64/
  zig/repos/community-staging-x86_64/PKGBUILD
    (from rev 862622, zig/trunk/PKGBUILD)
  zig/repos/community-staging-x86_64/resolve_DNS.patch
    (from rev 862622, zig/trunk/resolve_DNS.patch)

-------------------+
 PKGBUILD          |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 resolve_DNS.patch |   23 +++++++++++++++++++++++
 2 files changed, 74 insertions(+)

Copied: zig/repos/community-staging-x86_64/PKGBUILD (from rev 862622, zig/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2021-02-17 18:57:33 UTC (rev 862623)
@@ -0,0 +1,51 @@
+# Maintainer: Daurnimator <daurnimator at archlinux.org>
+# Contributor: Marc Tiehuis <marctiehuis at gmail.com>
+
+pkgname=zig
+pkgver=0.7.1
+pkgrel=2
+pkgdesc='a general-purpose programming language and toolchain for maintaining robust, optimal, and reusable software'
+arch=('x86_64')
+url='https://ziglang.org/'
+license=('MIT')
+depends=('clang' 'llvm-libs' 'lld')
+makedepends=('cmake' 'llvm')
+source=("https://ziglang.org/download/$pkgver/zig-$pkgver.tar.xz"
+        "resolve_DNS.patch")
+sha256sums=('2db3b944ab368d955b48743d9f7c963b8f96de1a441ba5a35e197237cc6dae44'
+            'c2b7e709dcc229f0e58e2529db900bcfb9a1cfb73da765c5c76ab1e6d0a333cc')
+
+prepare() {
+    cd "$pkgname-$pkgver"
+    # https://github.com/ziglang/zig/issues/6898
+    patch -p1 < ../resolve_DNS.patch
+}
+
+build() {
+    cd "$pkgname-$pkgver"
+
+    mkdir -p build
+    cd build
+    # The zig CMakeLists uses build type Debug if not set
+    # override it back to None so makepkg env vars are respected
+    cmake \
+        -DCMAKE_BUILD_TYPE=None \
+        -DCMAKE_INSTALL_PREFIX=/usr \
+        -DZIG_PREFER_CLANG_CPP_DYLIB=ON \
+        ..
+    make
+}
+
+check() {
+    cd "$pkgname-$pkgver/build"
+
+    ./zig build test
+}
+
+package() {
+    cd "$pkgname-$pkgver"
+
+    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+    make -C build DESTDIR="$pkgdir" install
+}

Copied: zig/repos/community-staging-x86_64/resolve_DNS.patch (from rev 862622, zig/trunk/resolve_DNS.patch)
===================================================================
--- community-staging-x86_64/resolve_DNS.patch	                        (rev 0)
+++ community-staging-x86_64/resolve_DNS.patch	2021-02-17 18:57:33 UTC (rev 862623)
@@ -0,0 +1,23 @@
+diff --git a/lib/std/net/test.zig b/lib/std/net/test.zig
+index 9f40bb5a3..15dd8c920 100644
+--- a/lib/std/net/test.zig
++++ b/lib/std/net/test.zig
+@@ -106,18 +106,6 @@ test "resolve DNS" {
+         }
+     }
+ 
+-    // Resolve localhost, this should not fail.
+-    {
+-        const localhost_v4 = try net.Address.parseIp("127.0.0.1", 80);
+-        const localhost_v6 = try net.Address.parseIp("::2", 80);
+-
+-        const result = try net.getAddressList(testing.allocator, "localhost", 80);
+-        defer result.deinit();
+-        for (result.addrs) |addr| {
+-            if (addr.eql(localhost_v4) or addr.eql(localhost_v6)) break;
+-        } else @panic("unexpected address for localhost");
+-    }
+-
+     {
+         // The tests are required to work even when there is no Internet connection,
+         // so some of these errors we must accept and skip the test.



More information about the arch-commits mailing list