Date: Wednesday, April 5, 2023 @ 02:18:12
  Author: grawlinson
Revision: 1435278

archrelease: copy trunk to community-x86_64

Added:
  nushell/repos/community-x86_64/PKGBUILD
    (from rev 1435277, nushell/trunk/PKGBUILD)
  nushell/repos/community-x86_64/nushell.install
    (from rev 1435277, nushell/trunk/nushell.install)
Deleted:
  nushell/repos/community-x86_64/PKGBUILD
  nushell/repos/community-x86_64/nushell.install

-----------------+
 PKGBUILD        |  110 ++++++++++++++++++++++++++++--------------------------
 nushell.install |   24 +++++------
 2 files changed, 70 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-04-05 02:17:15 UTC (rev 1435277)
+++ PKGBUILD    2023-04-05 02:18:12 UTC (rev 1435278)
@@ -1,52 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-# Maintainer: Caleb Maclennan <[email protected]>
-# Contributor: KokaKiwi <[email protected]>
-# Contributor: Felix Golatofski <[email protected]>
-# Contributor: Bumsik Kim <[email protected]>
-
-pkgname=nushell
-pkgver=0.77.1
-_commit='0120e4040d09f3bdffb945fa5fe450b72df7837a'
-pkgrel=1
-pkgdesc='A new type of shell'
-arch=('x86_64')
-url='https://www.nushell.sh'
-license=('MIT')
-depends=('libcrypto.so' 'libssl.so' 'zlib')
-makedepends=('cargo' 'git')
-install=nushell.install
-source=("git+https://github.com/nushell/nushell.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-prepare() {
-  cd "$pkgname"
-  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
-}
-
-pkgver() {
-  cd "$pkgname"
-  git describe --tags
-}
-
-build() {
-  cd "$pkgname"
-  CFLAGS+=" -ffat-lto-objects"
-  cargo build --release --frozen --workspace --features=extra,dataframe
-}
-
-check() {
-  cd "$pkgname"
-  cargo test --frozen --workspace --features=extra,dataframe
-}
-
-package() {
-  cd "$pkgname"
-  find target/release \
-    -maxdepth 1 \
-    -executable \
-    -type f \
-    -name "nu*" \
-    -exec install -vDm755 -t "$pkgdir/usr/bin" "{}" +
-  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname/" README.md
-  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
-}

Copied: nushell/repos/community-x86_64/PKGBUILD (from rev 1435277, 
nushell/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-04-05 02:18:12 UTC (rev 1435278)
@@ -0,0 +1,58 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Maintainer: Caleb Maclennan <[email protected]>
+# Contributor: KokaKiwi <[email protected]>
+# Contributor: Felix Golatofski <[email protected]>
+# Contributor: Bumsik Kim <[email protected]>
+
+pkgname=nushell
+pkgver=0.78.0
+_commit='2ec20286371f1d90a77fdd5d82818c6c5851f090'
+pkgrel=1
+pkgdesc='A new type of shell'
+arch=('x86_64')
+url='https://www.nushell.sh'
+license=('MIT')
+depends=(
+  'glibc'
+  'gcc-libs'
+  'libcrypto.so'
+  'libssl.so'
+  'zlib'
+)
+makedepends=('cargo' 'git')
+install=nushell.install
+source=("git+https://github.com/nushell/nushell.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+prepare() {
+  cd "$pkgname"
+  cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
+}
+
+pkgver() {
+  cd "$pkgname"
+  git describe --tags
+}
+
+build() {
+  cd "$pkgname"
+  CFLAGS+=" -ffat-lto-objects"
+  cargo build --release --frozen --workspace --features=extra,dataframe
+}
+
+check() {
+  cd "$pkgname"
+  cargo test --frozen --workspace --features=extra,dataframe
+}
+
+package() {
+  cd "$pkgname"
+  find target/release \
+    -maxdepth 1 \
+    -executable \
+    -type f \
+    -name "nu*" \
+    -exec install -vDm755 -t "$pkgdir/usr/bin" "{}" +
+  install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname/" README.md
+  install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}

Deleted: nushell.install
===================================================================
--- nushell.install     2023-04-05 02:17:15 UTC (rev 1435277)
+++ nushell.install     2023-04-05 02:18:12 UTC (rev 1435278)
@@ -1,12 +0,0 @@
-post_install() {
-  grep -Fqx /bin/nu /etc/shells || echo /bin/nu >> /etc/shells
-  grep -Fqx /usr/bin/nu /etc/shells || echo /usr/bin/nu >> /etc/shells
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  sed -i -r '/^(\/usr)?\/bin\/nu$/d' etc/shells
-}

Copied: nushell/repos/community-x86_64/nushell.install (from rev 1435277, 
nushell/trunk/nushell.install)
===================================================================
--- nushell.install                             (rev 0)
+++ nushell.install     2023-04-05 02:18:12 UTC (rev 1435278)
@@ -0,0 +1,12 @@
+post_install() {
+  grep -Fqx /bin/nu /etc/shells || echo /bin/nu >> /etc/shells
+  grep -Fqx /usr/bin/nu /etc/shells || echo /usr/bin/nu >> /etc/shells
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  sed -i -r '/^(\/usr)?\/bin\/nu$/d' etc/shells
+}

Reply via email to