don't use debian/ folder anymore
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/build?expand=0&rev=340
This commit is contained in:
parent
d24d0eed76
commit
47ac189090
2
PKGBUILD
2
PKGBUILD
@ -1,5 +1,5 @@
|
|||||||
pkgname=build
|
pkgname=build
|
||||||
pkgver=20171121
|
pkgver=20171122
|
||||||
pkgrel=0
|
pkgrel=0
|
||||||
pkgdesc="Build packages in sandbox"
|
pkgdesc="Build packages in sandbox"
|
||||||
arch=('i686' 'x86_64')
|
arch=('i686' 'x86_64')
|
||||||
|
2
_service
2
_service
@ -9,7 +9,9 @@
|
|||||||
<param name="extract">dist/build-mkbaselibs-sle.spec</param>
|
<param name="extract">dist/build-mkbaselibs-sle.spec</param>
|
||||||
<param name="extract">dist/build.dsc</param>
|
<param name="extract">dist/build.dsc</param>
|
||||||
<param name="extract">dist/debian.changelog</param>
|
<param name="extract">dist/debian.changelog</param>
|
||||||
|
<param name="extract">dist/debian.compat</param>
|
||||||
<param name="extract">dist/debian.control</param>
|
<param name="extract">dist/debian.control</param>
|
||||||
|
<param name="extract">dist/debian.rules</param>
|
||||||
<param name="extract">dist/PKGBUILD</param>
|
<param name="extract">dist/PKGBUILD</param>
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
|
@ -20,7 +20,7 @@ Name: build-mkbaselibs-sle
|
|||||||
Summary: Tools to generate base lib packages
|
Summary: Tools to generate base lib packages
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
Version: 20171121
|
Version: 20171122
|
||||||
Release: 0
|
Release: 0
|
||||||
#!BuildIgnore: build-mkbaselibs
|
#!BuildIgnore: build-mkbaselibs
|
||||||
#!BuildIgnore: build-mkbaselibs-sle
|
#!BuildIgnore: build-mkbaselibs-sle
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Format: 1.0
|
Format: 1.0
|
||||||
Source: build
|
Source: build
|
||||||
Version: 20171121
|
Version: 20171122
|
||||||
Binary: build
|
Binary: build
|
||||||
Maintainer: Adrian Schroeter <adrian@suse.de>
|
Maintainer: Adrian Schroeter <adrian@suse.de>
|
||||||
Architecture: all
|
Architecture: all
|
||||||
|
@ -22,7 +22,7 @@ Name: build
|
|||||||
Summary: A Script to Build SUSE Linux RPMs
|
Summary: A Script to Build SUSE Linux RPMs
|
||||||
License: GPL-2.0+ and GPL-2.0
|
License: GPL-2.0+ and GPL-2.0
|
||||||
Group: Development/Tools/Building
|
Group: Development/Tools/Building
|
||||||
Version: 20171121
|
Version: 20171122
|
||||||
Release: 0
|
Release: 0
|
||||||
Source: obs-build-%{version}.tar.gz
|
Source: obs-build-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
build (20171121) unstable; urgency=low
|
build (20171122) unstable; urgency=low
|
||||||
|
|
||||||
* Update to current git trunk
|
* Update to current git trunk
|
||||||
- add sles11sp2 build config and adapt autodetection
|
- add sles11sp2 build config and adapt autodetection
|
||||||
|
1
debian.compat
Normal file
1
debian.compat
Normal file
@ -0,0 +1 @@
|
|||||||
|
5
|
65
debian.rules
Normal file
65
debian.rules
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
# -*- makefile -*-
|
||||||
|
# Sample debian/rules that uses debhelper.
|
||||||
|
# This file was originally written by Joey Hess and Craig Small.
|
||||||
|
# As a special exception, when this file is copied by dh-make into a
|
||||||
|
# dh-make output file, you may use that output file without restriction.
|
||||||
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
||||||
|
|
||||||
|
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany
|
||||||
|
# This file and all modifications and additions to the pristine package
|
||||||
|
# are under the same license as the package itself.
|
||||||
|
#
|
||||||
|
# Please submit bugfixes or commens via http://bugs.opensuse.org
|
||||||
|
|
||||||
|
# Uncomment this to turn on verbose mode.
|
||||||
|
#export DH_VERBOSE=1
|
||||||
|
|
||||||
|
SHELL=/bin/bash
|
||||||
|
|
||||||
|
configure: configure-stamp
|
||||||
|
configure-stamp:
|
||||||
|
dh_testdir
|
||||||
|
touch configure-stamp
|
||||||
|
|
||||||
|
|
||||||
|
build: build-stamp
|
||||||
|
|
||||||
|
build-stamp: configure-stamp
|
||||||
|
dh_testdir
|
||||||
|
touch build-stamp
|
||||||
|
|
||||||
|
clean:
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
rm -f build-stamp configure-stamp
|
||||||
|
|
||||||
|
dh_clean
|
||||||
|
|
||||||
|
install: build
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_clean -k
|
||||||
|
dh_installdirs
|
||||||
|
make DESTDIR=$(CURDIR)/debian/obs-build install
|
||||||
|
|
||||||
|
binary-arch: build install
|
||||||
|
dh_testdir
|
||||||
|
dh_testroot
|
||||||
|
dh_installchangelogs
|
||||||
|
dh_installdocs
|
||||||
|
dh_installexamples
|
||||||
|
dh_installman
|
||||||
|
dh_link
|
||||||
|
dh_strip
|
||||||
|
dh_compress
|
||||||
|
dh_installdeb
|
||||||
|
dh_shlibdeps
|
||||||
|
dh_gencontrol
|
||||||
|
dh_md5sums
|
||||||
|
dh_builddeb
|
||||||
|
|
||||||
|
binary-indep: build install
|
||||||
|
|
||||||
|
binary: binary-indep binary-arch
|
||||||
|
.PHONY: build clean binary-indep binary-arch binary install configure
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3fce27b91b8c5b983921c6d5b79bb61da1866c72ef41fbb799565405cb041ac5
|
|
||||||
size 288485
|
|
3
obs-build-20171122.tar.gz
Normal file
3
obs-build-20171122.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2b3b3fa40c650d5c8762e1b4aac2ba82bbeb745f21ddde15c7968ce9acced084
|
||||||
|
size 329410
|
Loading…
Reference in New Issue
Block a user