* fix lost commits on local run * fix breakage when working on a specific tag/commit * git-lfs should not be mandatory as tar_scm will never use it * Allow use of git-lfs only when running obs_scm * Document _none_ special version in .service * Version cleanup: don't strip hyphen when building Debian packages * Add new archive option for Debian: git-buildpackage * call git stash with LANG=C * improved comment for method get_changesrevision * Add debian package dep to git-lfs * Implement git LFS blobs retrieval OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-tar_scm?expand=0&rev=268
20 lines
672 B
Bash
20 lines
672 B
Bash
pkgname=obs-service-tar_scm
|
|
pkgver=0.10.12.1582709176.d82a692
|
|
pkgrel=0
|
|
pkgdesc="Source Service for the OpenSUSE Build Service (OBS)"
|
|
arch=('any')
|
|
url="https://github.com/openSUSE/obs-service-tar_scm"
|
|
license=('GPL3')
|
|
groups=('base-devel')
|
|
makedepends=('python' 'python-yaml' 'python-dateutil' 'python-lxml' 'python-mock' 'bzr' 'git' 'mercurial' 'subversion' )
|
|
depends=('python' 'python-yaml' 'python-dateutil' 'python-argparse' 'cpio' 'git' 'bzr' 'mercurial' 'subversion' )
|
|
source=("obs-service-tar_scm-${pkgver}.tar.gz")
|
|
provides=('obs-service-tar')
|
|
sha256sums=('SKIP')
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" PREFIX=/usr install
|
|
}
|
|
|