obs-service-tar_scm/PKGBUILD
Dirk Mueller 77fbe691fa - Update to version 0.10.38:
* Python 2 is no longer supported by GitHub actions, stop testing it
  * FD leak / flake8 / py311 fixes
  * updated debian files
  * disabled pylint 'no-member' because of false positives in py311
  * removed unittest2 from BuildRequires in spec
  * fixed fixtures and new Exception class
  * updated KankuFile to Tumbleweed and removed python2 tests

OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-tar_scm?expand=0&rev=327
2023-07-05 12:36:57 +00:00

25 lines
769 B
Bash

pkgname=obs-service-tar_scm
pkgver=0.10.38
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")
noextract=("obs-service-tar_scm-${pkgver}.tar.gz")
provides=('obs-service-tar')
sha256sums=('SKIP')
prepare() {
tar -axf "obs-service-tar_scm-${pkgver}.tar.gz"
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" PREFIX=/usr install
}