[arch-commits] Commit in uutils-coreutils/repos/community-x86_64 (4 files)

Orhun Parmaksiz orhun at gemini.archlinux.org
Tue Jan 18 21:36:42 UTC 2022


    Date: Tuesday, January 18, 2022 @ 21:36:42
  Author: orhun
Revision: 1110207

archrelease: copy trunk to community-x86_64

Added:
  uutils-coreutils/repos/community-x86_64/PKGBUILD
    (from rev 1110206, uutils-coreutils/trunk/PKGBUILD)
  uutils-coreutils/repos/community-x86_64/tests.patch
    (from rev 1110206, uutils-coreutils/trunk/tests.patch)
Deleted:
  uutils-coreutils/repos/community-x86_64/PKGBUILD
  uutils-coreutils/repos/community-x86_64/tests.patch

-------------+
 PKGBUILD    |  118 +++++++++++++++++++++++++++++-----------------------------
 tests.patch |   20 ++++-----
 2 files changed, 71 insertions(+), 67 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2022-01-18 21:36:30 UTC (rev 1110206)
+++ PKGBUILD	2022-01-18 21:36:42 UTC (rev 1110207)
@@ -1,57 +0,0 @@
-# Maintainer: Filipe Laíns (ffy00) <lains at archlinux.org>
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Maintainer: Orhun Parmaksız <orhun at archlinux.org>
-
-_pkgname=coreutils
-pkgname=uutils-$_pkgname
-pkgver=0.0.8
-pkgrel=1
-pkgdesc='Cross-platform Rust rewrite of the GNU coreutils'
-arch=('x86_64')
-url='https://github.com/uutils/coreutils'
-license=('MIT')
-depends=('glibc' 'gcc-libs')
-makedepends=('rust' 'cargo' 'python-sphinx')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
-        tests.patch)
-sha512sums=('87a200113bbed495a8924edf60913e12853afd2c2d7710e2901ac33e81e2a4582c7f857c4e9e56fbb093ae67683ac1a6766a0099dc511754ccdfb967544ffe50'
-            '1a84aefb95cf6d4ae7582948c5ab3c357269dcd5b2261006b006f7a1b37d3d2a336c47479ab98a390661ee376b9813408af849a91ba0f2bd2493c6a680e07f2a')
-
-prepare() {
-  cd $_pkgname-$pkgver
-  sed 's|"bin"|"builduser"|g' -i tests/by-util/test_{chgrp,chown}.rs
-  patch -Np1 < ../tests.patch
-}
-
-build() {
-  cd $_pkgname-$pkgver
-
-  make PROFILE=release
-}
-
-check() {
-  cd $_pkgname-$pkgver
-
-  make test \
-      PROFILE=release \
-      CARGOFLAGS=--release \
-      TEST_NO_FAIL_FAST="--no-fail-fast -- \
-        --skip test_chown::test_big_p \
-        --skip test_chgrp::test_big_p \
-        --skip test_chgrp::test_big_h"
-}
-
-package() {
-  cd $_pkgname-$pkgver
-
-  make install \
-      DESTDIR="$pkgdir" \
-      PREFIX=/usr \
-      MANDIR=/share/man/man1 \
-      PROG_PREFIX=uu- \
-      PROFILE=release
-
-  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim: ts=2 sw=2 et:

Copied: uutils-coreutils/repos/community-x86_64/PKGBUILD (from rev 1110206, uutils-coreutils/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2022-01-18 21:36:42 UTC (rev 1110207)
@@ -0,0 +1,61 @@
+# Maintainer: Filipe Laíns (ffy00) <lains at archlinux.org>
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Orhun Parmaksız <orhun at archlinux.org>
+
+_pkgname=coreutils
+pkgname=uutils-$_pkgname
+pkgver=0.0.9
+pkgrel=1
+pkgdesc='Cross-platform Rust rewrite of the GNU coreutils'
+arch=('x86_64')
+url='https://github.com/uutils/coreutils'
+license=('MIT')
+depends=('glibc' 'gcc-libs')
+makedepends=('rust' 'cargo' 'python-sphinx')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
+        "stdbuf-dep.patch::$url/commit/c5e2515833f8eefc12fe65f0a3ffba7cbfea0ff9.patch"
+        tests.patch)
+sha512sums=('b99f052d8e250a0c350e2e87c642b3c70ec07973f5795a21d79d02b5df7a098236bbfe42397ec78ebd14ed4d5feed83b7b0a6d6f7d9416120fa54df78c4a7ac8'
+            '10a5a149221b4a9a0c78555526033c00e4ba1923acdf97982281007eaf4b8f7469b968cf9e4a659e4cb5dcc8ac6885bcb1c212ad8d81e6011e61e9b8d5ad052c'
+            '1a84aefb95cf6d4ae7582948c5ab3c357269dcd5b2261006b006f7a1b37d3d2a336c47479ab98a390661ee376b9813408af849a91ba0f2bd2493c6a680e07f2a')
+options=('!lto')
+
+prepare() {
+  cd $_pkgname-$pkgver
+  sed 's|"bin"|"builduser"|g' -i tests/by-util/test_{chgrp,chown}.rs
+  patch -Np1 < ../tests.patch
+  patch -Np1 < ../stdbuf-dep.patch
+}
+
+build() {
+  cd $_pkgname-$pkgver
+
+  make PROFILE=release
+}
+
+check() {
+  cd $_pkgname-$pkgver
+
+  make test \
+      PROFILE=release \
+      CARGOFLAGS=--release \
+      TEST_NO_FAIL_FAST="--no-fail-fast -- \
+        --skip test_chown::test_big_p \
+        --skip test_chgrp::test_big_p \
+        --skip test_chgrp::test_big_h"
+}
+
+package() {
+  cd $_pkgname-$pkgver
+
+  make install \
+      DESTDIR="$pkgdir" \
+      PREFIX=/usr \
+      MANDIR=/share/man/man1 \
+      PROG_PREFIX=uu- \
+      PROFILE=release
+
+  install -Dm 644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim: ts=2 sw=2 et:

Deleted: tests.patch
===================================================================
--- tests.patch	2022-01-18 21:36:30 UTC (rev 1110206)
+++ tests.patch	2022-01-18 21:36:42 UTC (rev 1110207)
@@ -1,10 +0,0 @@
---- a/GNUmakefile	2021-03-10 16:28:55.907870273 +0100
-+++ b/GNUmakefile	2021-03-10 16:29:10.181165402 +0100
-@@ -175,6 +175,7 @@
- 	fold \
- 	hashsum \
- 	head \
-+	id \
- 	install \
- 	link \
- 	ln \

Copied: uutils-coreutils/repos/community-x86_64/tests.patch (from rev 1110206, uutils-coreutils/trunk/tests.patch)
===================================================================
--- tests.patch	                        (rev 0)
+++ tests.patch	2022-01-18 21:36:42 UTC (rev 1110207)
@@ -0,0 +1,10 @@
+--- a/GNUmakefile	2021-03-10 16:28:55.907870273 +0100
++++ b/GNUmakefile	2021-03-10 16:29:10.181165402 +0100
+@@ -175,6 +175,7 @@
+ 	fold \
+ 	hashsum \
+ 	head \
++	id \
+ 	install \
+ 	link \
+ 	ln \



More information about the arch-commits mailing list