0b8e2dc631
- allow to use the set-release option when running a manual release - added support for "osc requestmaintainership PROJECT" - various bugfixes: - print_buildlog: do not strip tabs - fixed "osc -H ..." in combination with a proxy - fixed creation of ~/.osc_cookiejar - Package.commit: create _meta for newly added packages - fixed behavior of set_link_rev #72 - fixed typos in PKGBUILD file: no comma in depends tag (as pointed out by roflik) OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/osc?expand=0&rev=168
20 lines
518 B
Bash
20 lines
518 B
Bash
pkgname=osc
|
|
pkgver=0.145.0
|
|
pkgrel=0
|
|
pkgdesc="Open Build Service client"
|
|
arch=('i686' 'x86_64')
|
|
url="https://www.github.com/openSUSE/osc"
|
|
license=('GPL-2.0+' 'GPL-2.0')
|
|
groups=('base-devel')
|
|
depends=('python2' 'python2-m2crypto' 'urlgrabber')
|
|
source=(osc-${pkgver}.tar.gz)
|
|
md5sums=('53795d71d825f5f2a41721bd96edca8c')
|
|
|
|
package() {
|
|
msg "Installing osc ..."
|
|
cd "${srcdir}"/osc-${pkgver}
|
|
python2 setup.py build
|
|
python2 setup.py install --prefix=/usr --root=${pkgdir}
|
|
ln -s osc-wrapper.py ${pkgdir}/usr/bin/osc
|
|
}
|