[arch-commits] Commit in git-absorb/repos/community-x86_64 (PKGBUILD PKGBUILD)

Orhun Parmaksiz orhun at gemini.archlinux.org
Thu Dec 2 19:34:01 UTC 2021


    Date: Thursday, December 2, 2021 @ 19:34:01
  Author: orhun
Revision: 1062421

archrelease: copy trunk to community-x86_64

Added:
  git-absorb/repos/community-x86_64/PKGBUILD
    (from rev 1062420, git-absorb/trunk/PKGBUILD)
Deleted:
  git-absorb/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |   85 +++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 46 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-12-02 19:33:51 UTC (rev 1062420)
+++ PKGBUILD	2021-12-02 19:34:01 UTC (rev 1062421)
@@ -1,39 +0,0 @@
-# Maintainer: Orhun Parmaksız <orhun at archlinux.org>
-# Contributor: AsamK <asamk at gmx.de>
-
-pkgname=git-absorb
-pkgver=0.6.6
-pkgrel=3
-pkgdesc="git commit --fixup, but automatic"
-arch=('x86_64')
-url="https://github.com/tummychow/git-absorb"
-license=('BSD')
-depends=('libgit2')
-makedepends=('cargo')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tummychow/git-absorb/archive/${pkgver}.tar.gz")
-sha256sums=('955069cc70a34816e6f4b6a6bd1892cfc0ae3d83d053232293366eb65599af2f')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  LIBGIT2_SYS_USE_PKG_CONFIG=1 cargo fetch --locked
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  LIBGIT2_SYS_USE_PKG_CONFIG=1 cargo build --release --frozen
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  LIBGIT2_SYS_USE_PKG_CONFIG=1 cargo test --frozen
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm 755 target/release/"${pkgname}" -t "${pkgdir}/usr/bin/"
-  install -Dm 644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
-  install -Dm 644 "LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-  install -Dm 644 "Documentation/${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1"
-}
-
-# vim: ts=2 sw=2 et:

Copied: git-absorb/repos/community-x86_64/PKGBUILD (from rev 1062420, git-absorb/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-12-02 19:34:01 UTC (rev 1062421)
@@ -0,0 +1,46 @@
+# Maintainer: Orhun Parmaksız <orhun at archlinux.org>
+# Contributor: AsamK <asamk at gmx.de>
+
+pkgname=git-absorb
+pkgver=0.6.6
+pkgrel=4
+pkgdesc="git commit --fixup, but automatic"
+arch=('x86_64')
+url="https://github.com/tummychow/git-absorb"
+license=('BSD')
+depends=('libgit2')
+makedepends=('cargo')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tummychow/git-absorb/archive/${pkgver}.tar.gz")
+sha256sums=('955069cc70a34816e6f4b6a6bd1892cfc0ae3d83d053232293366eb65599af2f')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  LIBGIT2_SYS_USE_PKG_CONFIG=1 cargo fetch --locked
+  mkdir completions/
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  LIBGIT2_SYS_USE_PKG_CONFIG=1 cargo build --release --frozen
+  "target/release/$pkgname" --gen-completions bash > "completions/$pkgname.bash" 
+  "target/release/$pkgname" --gen-completions fish > "completions/$pkgname.fish"
+  "target/release/$pkgname" --gen-completions zsh > "completions/_$pkgname"
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  LIBGIT2_SYS_USE_PKG_CONFIG=1 cargo test --frozen
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm 755 target/release/"${pkgname}" -t "${pkgdir}/usr/bin/"
+  install -Dm 644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
+  install -Dm 644 "LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  install -Dm 644 "Documentation/${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1"
+  install -Dm 644 "completions/$pkgname.bash" "${pkgdir}/usr/share/bash-completion/completions/$pkgname"
+  install -Dm 644 "completions/$pkgname.fish" -t "${pkgdir}/usr/share/fish/vendor_completions.d"
+  install -Dm 644 "completions/_$pkgname" -t "${pkgdir}/usr/share/zsh/site-functions"
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list