git subrepo clone --branch=master https://aur.archlinux.org/git-extras

subrepo:
  subdir:   "git-extras"
  merged:   "2d30cf8"
upstream:
  origin:   "https://aur.archlinux.org/git-extras"
  branch:   "master"
  commit:   "2d30cf8"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
This commit is contained in:
Gabriel Ebner 2021-01-02 14:35:08 +01:00
parent af84871c7b
commit cbafd65c02
3 changed files with 50 additions and 0 deletions

13
git-extras/.SRCINFO Normal file
View File

@ -0,0 +1,13 @@
pkgbase = git-extras
pkgdesc = GIT utilities -- repo summary, commit counting, repl, changelog population and more
pkgver = 6.1.0
pkgrel = 1
url = https://github.com/tj/git-extras
arch = any
license = MIT
depends = git
source = git-extras-6.1.0.tar.gz::https://github.com/tj/git-extras/archive/6.1.0.tar.gz
sha256sums = 7be0b15ee803d76d2c2e8036f5d9db6677f2232bb8d2c4976691ff7ae026a22f
b2sums = 3450edecb3116e19ffcf918b118aee04f025c06d812e29e8701f35a3c466b13d2578d41c8e1ee93327743d0019bf98bb3f397189e19435f89e3a259ff1b82747
pkgname = git-extras

12
git-extras/.gitrepo Normal file
View File

@ -0,0 +1,12 @@
; DO NOT EDIT (unless you know what you are doing)
;
; This subdirectory is a git "subrepo", and this file is maintained by the
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
;
[subrepo]
remote = https://aur.archlinux.org/git-extras
branch = master
commit = 2d30cf859a878fd00196b820c86bfecbebd6a8e0
parent = af84871c7bd0be0fd7c9c6e5aced15a2ad24038c
method = merge
cmdver = 0.4.3

25
git-extras/PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: Eli Schwartz <eschwartz@archlinux.org>
# Contributor: Stefan Tatschner <stefan.tatschner@gmail.com>
# All my PKGBUILDs are managed at https://github.com/eli-schwartz/pkgbuilds
pkgname=git-extras
pkgver=6.1.0
pkgrel=1
pkgdesc="GIT utilities -- repo summary, commit counting, repl, changelog population and more"
arch=('any')
url="https://github.com/tj/${pkgname}"
license=('MIT')
depends=('git')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
sha256sums=('7be0b15ee803d76d2c2e8036f5d9db6677f2232bb8d2c4976691ff7ae026a22f')
b2sums=('3450edecb3116e19ffcf918b118aee04f025c06d812e29e8701f35a3c466b13d2578d41c8e1ee93327743d0019bf98bb3f397189e19435f89e3a259ff1b82747')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
# avoid annoying interactive prompts if an alias is in your gitconfig
export GIT_CONFIG=/dev/null
make DESTDIR="${pkgdir}" PREFIX=/usr SYSCONFDIR=/etc install
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}