mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 18:26:39 +02:00
28 lines
851 B
Text
28 lines
851 B
Text
# Contributor: Antoine Fontaine <antoine.fontaine@epfl.ch>
|
|
# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
|
|
pkgname=repo
|
|
pkgver=2.53
|
|
pkgrel=0
|
|
pkgdesc="repository management tool built on top of git"
|
|
url="https://gerrit.googlesource.com/git-repo"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
options="!check" # no tests upstream
|
|
depends="python3 git"
|
|
makedepends="py3-setuptools"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/GerritCodeReview/git-repo/archive/refs/tags/v$pkgver.tar.gz"
|
|
builddir="$srcdir/git-repo-$pkgver"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 repo -t "$pkgdir"/usr/bin
|
|
install -Dm644 man/* -t "$pkgdir"/usr/share/man/man1
|
|
}
|
|
|
|
sha512sums="
|
|
d86d66774894369a514966cc11f46f7cfa464be65f7829a8189a92bb403657aea9f422397f977d2aa1b6e29b52f74bc5dccbad693419e37db92ab41281e9f24c repo-2.53.tar.gz
|
|
"
|