From 44a56cf800d721721e166f3f4400b3715f671261 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Wed, 24 May 2017 12:23:10 +0000 Subject: [PATCH 01/20] use build descriptions from git Rev openSUSE:Tools/305 Md5 7f2e9575bc3915caafdbad2077b99394 2017-05-24 12:23:10 adrianSuSE None --- PKGBUILD | 2 +- _service | 10 ++++++ build.dsc | 2 +- build.spec | 21 +++---------- debian.changelog | 2 +- debian.compat | 1 + debian.control | 15 +++++++++ debian.copyright | 21 +++++++++++++ debian.docs | 1 + debian.rules | 65 +++++++++++++++++++++++++++++++++++++++ debian.tar.gz | 3 -- obs-build-20170320.tar.gz | 3 -- obs-build-20170524.tar.gz | 3 ++ 13 files changed, 123 insertions(+), 26 deletions(-) create mode 100644 debian.compat create mode 100644 debian.control create mode 100644 debian.copyright create mode 100644 debian.docs create mode 100644 debian.rules delete mode 100644 debian.tar.gz delete mode 100644 obs-build-20170320.tar.gz create mode 100644 obs-build-20170524.tar.gz diff --git a/PKGBUILD b/PKGBUILD index 6eb7e4b..64d4f8e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=build -pkgver=20170320 +pkgver=20170524 pkgrel=0 pkgdesc="Build packages in sandbox" arch=('i686' 'x86_64') diff --git a/_service b/_service index d10d564..8abe886 100644 --- a/_service +++ b/_service @@ -3,6 +3,16 @@ %ad git://github.com/openSUSE/obs-build.git git + dist/build.changes + dist/build.dsc + dist/build.spec + dist/debian.changelog + dist/debian.compat + dist/debian.control + dist/debian.copyright + dist/debian.docs + dist/debian.rules + dist/PKGBUILD gz diff --git a/build.dsc b/build.dsc index 7b8a0b8..76102c0 100644 --- a/build.dsc +++ b/build.dsc @@ -1,6 +1,6 @@ Format: 1.0 Source: build -Version: 20170320 +Version: 20170524-0 Binary: build Maintainer: Adrian Schroeter Architecture: all diff --git a/build.spec b/build.spec index 954d057..351f32b 100644 --- a/build.spec +++ b/build.spec @@ -18,13 +18,11 @@ # needsbinariesforbuild -%define version_unconverted 20170320 - Name: build Summary: A Script to Build SUSE Linux RPMs License: GPL-2.0+ and GPL-2.0 Group: Development/Tools/Building -Version: 20170320 +Version: 20170524 Release: 0 Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -140,11 +138,9 @@ chmod 0644 $RPM_BUILD_ROOT/usr/lib/build/initvm.* # main make DESTDIR=$RPM_BUILD_ROOT install cd $RPM_BUILD_ROOT/usr/lib/build/configs/ -%if 0%{?sle_version} && 0%{?is_opensuse} - # super special leap distro - major="$[%sle_version/10000+30]" - minor="$[%sle_version/100-1200]" - ln -s sl$major.$minor.conf default.conf +%if "0%{?suse_version}" == "1315" && 0%{?is_opensuse} +# super special leap distro + ln -s sl42.1.conf default.conf %else %if 0%{?suse_version} %if 0%{?sles_version} @@ -162,15 +158,6 @@ if [ `whoami` != "root" ]; then echo "WARNING: Not building as root, tests did not run!" exit 0 fi -if [ ! -e $RPM_BUILD_ROOT/usr/lib/build/configs/default.conf ]; then -%if 0%{?suse_version} - echo "ERROR: No default build conf, tests did not run!" - exit 1 -%else - echo "WARNING: No default build conf, tests did not run!" - exit 0 -%endif -fi # get back the default.conf link cp -av $RPM_BUILD_ROOT/usr/lib/build/configs/default.conf configs/ # do not get confused when building this already with build: diff --git a/debian.changelog b/debian.changelog index 8504d47..1122a85 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,4 +1,4 @@ -build (20170320) unstable; urgency=low +build (20170524-0) unstable; urgency=low * Update to current git trunk - add sles11sp2 build config and adapt autodetection diff --git a/debian.compat b/debian.compat new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/debian.compat @@ -0,0 +1 @@ +4 diff --git a/debian.control b/debian.control new file mode 100644 index 0000000..5f4e243 --- /dev/null +++ b/debian.control @@ -0,0 +1,15 @@ +Source: build +Section: devel +Priority: optional +Maintainer: Adrian Schroeter +Build-Depends: debhelper (>= 4) +Standards-Version: 3.7.2 + +Package: build +Architecture: all +Depends: ${perl:Depends}, rpm +Recommends: rpm2cpio +Description: A script to build SUSE Linux RPMs + This package provides a script for building RPMs for SUSE Linux + in a chroot environment. + diff --git a/debian.copyright b/debian.copyright new file mode 100644 index 0000000..7732754 --- /dev/null +++ b/debian.copyright @@ -0,0 +1,21 @@ +This package was debianized by Rene Engelhard on +Thu, 22 Jun 2006 12:01:08 +0200. + +It was downloaded from http://software.opensuse.org/download/openSUSE:/Tools/SUSE_Linux_Factory/src + +Upstream authors: Thorsten Kukuk + Michael Schröter + Bernhard Kaindl + Mad Martin Jorgensen + Andreas Schwab + Rüdiger Oertel + Andreas Gruenbacher + +Copyright: (c) 1997-2007 SuSE GmbH Nuernberg, Germany + +License: + +GPL + +The Debian packaging is (C) 2006, Rene Engelhard and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. diff --git a/debian.docs b/debian.docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian.docs @@ -0,0 +1 @@ +README diff --git a/debian.rules b/debian.rules new file mode 100644 index 0000000..8418007 --- /dev/null +++ b/debian.rules @@ -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/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 diff --git a/debian.tar.gz b/debian.tar.gz deleted file mode 100644 index 199e34c..0000000 --- a/debian.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9046961c3e5f2f0f18a2d8bcd83e83dbb84953ee5fbbf45c01ba3c217a9c6eb3 -size 1561 diff --git a/obs-build-20170320.tar.gz b/obs-build-20170320.tar.gz deleted file mode 100644 index eaadc8a..0000000 --- a/obs-build-20170320.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5840e93399c30643bf5f24749b08dd5068951b92c053f3389cb6f64f71bef719 -size 259476 diff --git a/obs-build-20170524.tar.gz b/obs-build-20170524.tar.gz new file mode 100644 index 0000000..e9084c8 --- /dev/null +++ b/obs-build-20170524.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79dcb812c6b91936cd95dbc748bc9f71b26dd15e2b8a5c3c966db56a45584af +size 285225 From 75a61ea7e4e45fbc3284180127d8f4b744f11d94 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Sun, 11 Jun 2017 12:09:50 +0000 Subject: [PATCH 02/20] update Rev openSUSE:Tools/306 Md5 9013f02f277b9c72ee0919dea3c3a190 2017-06-11 12:09:50 adrianSuSE None --- PKGBUILD | 2 +- build.changes | 11 +++++++++++ build.dsc | 2 +- build.spec | 2 +- debian.changelog | 2 +- obs-build-20170524.tar.gz | 3 --- obs-build-20170611.tar.gz | 3 +++ 7 files changed, 18 insertions(+), 7 deletions(-) delete mode 100644 obs-build-20170524.tar.gz create mode 100644 obs-build-20170611.tar.gz diff --git a/PKGBUILD b/PKGBUILD index 64d4f8e..a7856d4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=build -pkgver=20170524 +pkgver=20170611 pkgrel=0 pkgdesc="Build packages in sandbox" arch=('i686' 'x86_64') diff --git a/build.changes b/build.changes index 262a529..57b2872 100644 --- a/build.changes +++ b/build.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Sun Jun 11 12:06:17 UTC 2017 - adrian@suse.de + +- added initial leap 15.0 config +- drop %opensuse_bs from the configs which are only used outside of OBS +- fixed kvm detection for newer Ubuntu versions +- Kiwi: Fix versionstring function +- Make repoprioritoes opt-in +- Normalize arch repository dependencies +- initial native docker container build support + ------------------------------------------------------------------- Fri Mar 17 12:57:03 UTC 2017 - adrian@suse.de diff --git a/build.dsc b/build.dsc index 76102c0..923357d 100644 --- a/build.dsc +++ b/build.dsc @@ -1,6 +1,6 @@ Format: 1.0 Source: build -Version: 20170524-0 +Version: 20170611-0 Binary: build Maintainer: Adrian Schroeter Architecture: all diff --git a/build.spec b/build.spec index 351f32b..316eb35 100644 --- a/build.spec +++ b/build.spec @@ -22,7 +22,7 @@ Name: build Summary: A Script to Build SUSE Linux RPMs License: GPL-2.0+ and GPL-2.0 Group: Development/Tools/Building -Version: 20170524 +Version: 20170611 Release: 0 Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build diff --git a/debian.changelog b/debian.changelog index 1122a85..003c75a 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,4 +1,4 @@ -build (20170524-0) unstable; urgency=low +build (20170611-0) unstable; urgency=low * Update to current git trunk - add sles11sp2 build config and adapt autodetection diff --git a/obs-build-20170524.tar.gz b/obs-build-20170524.tar.gz deleted file mode 100644 index e9084c8..0000000 --- a/obs-build-20170524.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f79dcb812c6b91936cd95dbc748bc9f71b26dd15e2b8a5c3c966db56a45584af -size 285225 diff --git a/obs-build-20170611.tar.gz b/obs-build-20170611.tar.gz new file mode 100644 index 0000000..2ef4539 --- /dev/null +++ b/obs-build-20170611.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd33787c8bd0a6725a36449d3d5dff3eac8d14339e6801381d09c2a62683630e +size 299205 From 7dc2ce5dd9679639e2eb70f043cb55bee228dfc2 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Tue, 13 Jun 2017 09:54:09 +0000 Subject: [PATCH 03/20] go Rev openSUSE:Tools/308 Md5 a0263a6128888ffbd52c6e3537e83152 2017-06-13 09:54:09 adrianSuSE None --- PKGBUILD | 2 +- _multibuild | 6 ++++ _service | 4 ++- build-mkbaselibs-sle.changes | 15 +++++++++ build-mkbaselibs-sle.spec | 59 ++++++++++++++++++++++++++++++++++++ build.changes | 11 ------- build.dsc | 2 +- build.spec | 2 +- debian.changelog | 2 +- obs-build-20170611.tar.gz | 3 -- obs-build-20170613.tar.gz | 3 ++ 11 files changed, 90 insertions(+), 19 deletions(-) create mode 100644 _multibuild create mode 100644 build-mkbaselibs-sle.changes create mode 100644 build-mkbaselibs-sle.spec delete mode 100644 obs-build-20170611.tar.gz create mode 100644 obs-build-20170613.tar.gz diff --git a/PKGBUILD b/PKGBUILD index a7856d4..40e46dd 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=build -pkgver=20170611 +pkgver=20170613 pkgrel=0 pkgdesc="Build packages in sandbox" arch=('i686' 'x86_64') diff --git a/_multibuild b/_multibuild new file mode 100644 index 0000000..e1b9d47 --- /dev/null +++ b/_multibuild @@ -0,0 +1,6 @@ + + + build + + diff --git a/_service b/_service index 8abe886..0eb14ad 100644 --- a/_service +++ b/_service @@ -4,8 +4,10 @@ git://github.com/openSUSE/obs-build.git git dist/build.changes - dist/build.dsc dist/build.spec + dist/build-mkbaselibs-sle.changes + dist/build-mkbaselibs-sle.spec + dist/build.dsc dist/debian.changelog dist/debian.compat dist/debian.control diff --git a/build-mkbaselibs-sle.changes b/build-mkbaselibs-sle.changes new file mode 100644 index 0000000..aba6d28 --- /dev/null +++ b/build-mkbaselibs-sle.changes @@ -0,0 +1,15 @@ +------------------------------------------------------------------- +Thu Jun 30 19:05:52 CEST 2011 - ro@suse.de + +- provide build-mkbaselibs so this can really be used + +------------------------------------------------------------------- +Tue Jun 7 09:31:51 UTC 2011 - k0da@opensuse.org + +- fix build + +------------------------------------------------------------------- +Mon Jun 6 15:12:13 UTC 2011 - adrian@suse.de + +- new package for SLE baselibsconf, including ia64 arch defaults + diff --git a/build-mkbaselibs-sle.spec b/build-mkbaselibs-sle.spec new file mode 100644 index 0000000..877cb75 --- /dev/null +++ b/build-mkbaselibs-sle.spec @@ -0,0 +1,59 @@ +# +# spec file for package build-mkbaselibs-sle +# +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +Name: build-mkbaselibs-sle +Summary: Tools to generate base lib packages +License: GPL-2.0+ +Group: Development/Tools/Building +Version: 20170613 +Release: 0 +#!BuildIgnore: build-mkbaselibs +Provides: build-mkbaselibs +Source: build-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildArch: noarch +# Manual requires to avoid hard require to bash-static +AutoReqProv: off + +%description +This package contains the parts which may be installed in the inner build system +for generating base lib packages. + +This is the SLE variant including IA64 binary generation. + +%prep +%setup -q -n build-%{version} + +%build + +%install +install -m 0755 -d $RPM_BUILD_ROOT/usr/lib/build +install -m 0755 mkbaselibs \ + $RPM_BUILD_ROOT/usr/lib/build/mkbaselibs +install -m 0644 baselibs_global-deb.conf \ + $RPM_BUILD_ROOT/usr/lib/build/baselibs_global-deb.conf +install -m 0644 baselibs_global-sle.conf \ + $RPM_BUILD_ROOT/usr/lib/build/baselibs_global.conf + +%files +%defattr(-,root,root) +%dir /usr/lib/build +/usr/lib/build/mkbaselibs +/usr/lib/build/baselibs* + +%changelog diff --git a/build.changes b/build.changes index 57b2872..262a529 100644 --- a/build.changes +++ b/build.changes @@ -1,14 +1,3 @@ -------------------------------------------------------------------- -Sun Jun 11 12:06:17 UTC 2017 - adrian@suse.de - -- added initial leap 15.0 config -- drop %opensuse_bs from the configs which are only used outside of OBS -- fixed kvm detection for newer Ubuntu versions -- Kiwi: Fix versionstring function -- Make repoprioritoes opt-in -- Normalize arch repository dependencies -- initial native docker container build support - ------------------------------------------------------------------- Fri Mar 17 12:57:03 UTC 2017 - adrian@suse.de diff --git a/build.dsc b/build.dsc index 923357d..0384b03 100644 --- a/build.dsc +++ b/build.dsc @@ -1,6 +1,6 @@ Format: 1.0 Source: build -Version: 20170611-0 +Version: 20170613-0 Binary: build Maintainer: Adrian Schroeter Architecture: all diff --git a/build.spec b/build.spec index 316eb35..5b17455 100644 --- a/build.spec +++ b/build.spec @@ -22,7 +22,7 @@ Name: build Summary: A Script to Build SUSE Linux RPMs License: GPL-2.0+ and GPL-2.0 Group: Development/Tools/Building -Version: 20170611 +Version: 20170613 Release: 0 Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build diff --git a/debian.changelog b/debian.changelog index 003c75a..0ae8126 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,4 +1,4 @@ -build (20170611-0) unstable; urgency=low +build (20170613-0) unstable; urgency=low * Update to current git trunk - add sles11sp2 build config and adapt autodetection diff --git a/obs-build-20170611.tar.gz b/obs-build-20170611.tar.gz deleted file mode 100644 index 2ef4539..0000000 --- a/obs-build-20170611.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd33787c8bd0a6725a36449d3d5dff3eac8d14339e6801381d09c2a62683630e -size 299205 diff --git a/obs-build-20170613.tar.gz b/obs-build-20170613.tar.gz new file mode 100644 index 0000000..e9e0be0 --- /dev/null +++ b/obs-build-20170613.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea468a8c5ecd04070070226fa235a289047262d28515c249cb40e8a857cfc43 +size 299151 From 403100862c2353c07a771ef6eee132c9a7acdb87 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Fri, 14 Jul 2017 11:32:17 +0000 Subject: [PATCH 04/20] Extract new dist/debian.links added by https://github.com/openSUSE/obs-build/pull/368 Rev openSUSE:Tools/309 Md5 c2462f416d0dff6077c47de1ca403deb 2017-07-14 11:32:17 adrianSuSE 510272 --- _service | 1 + 1 file changed, 1 insertion(+) diff --git a/_service b/_service index 0eb14ad..f856f10 100644 --- a/_service +++ b/_service @@ -14,6 +14,7 @@ dist/debian.copyright dist/debian.docs dist/debian.rules + dist/debian.links dist/PKGBUILD From 43644382254f2f0ce32aceb326b3189619b586e7 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Wed, 19 Jul 2017 17:23:42 +0000 Subject: [PATCH 05/20] update Rev openSUSE:Tools/310 Md5 715bb06a0c17046fec4b24cf1a37c066 2017-07-19 17:23:42 adrianSuSE None --- PKGBUILD | 2 +- build-mkbaselibs-sle.spec | 4 +--- build.changes | 15 +++++++++++++++ build.dsc | 2 +- build.spec | 4 +--- debian.changelog | 2 +- debian.compat | 2 +- debian.control | 7 +++++-- debian.rules | 2 +- obs-build-20170613.tar.gz | 3 --- obs-build-20170719.tar.gz | 3 +++ 11 files changed, 30 insertions(+), 16 deletions(-) delete mode 100644 obs-build-20170613.tar.gz create mode 100644 obs-build-20170719.tar.gz diff --git a/PKGBUILD b/PKGBUILD index 40e46dd..d6c54ca 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=build -pkgver=20170613 +pkgver=20170719 pkgrel=0 pkgdesc="Build packages in sandbox" arch=('i686' 'x86_64') diff --git a/build-mkbaselibs-sle.spec b/build-mkbaselibs-sle.spec index 877cb75..3e85e00 100644 --- a/build-mkbaselibs-sle.spec +++ b/build-mkbaselibs-sle.spec @@ -20,15 +20,13 @@ Name: build-mkbaselibs-sle Summary: Tools to generate base lib packages License: GPL-2.0+ Group: Development/Tools/Building -Version: 20170613 +Version: 20170719 Release: 0 #!BuildIgnore: build-mkbaselibs Provides: build-mkbaselibs Source: build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch -# Manual requires to avoid hard require to bash-static -AutoReqProv: off %description This package contains the parts which may be installed in the inner build system diff --git a/build.changes b/build.changes index 262a529..8616f10 100644 --- a/build.changes +++ b/build.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Wed Jul 19 17:16:31 UTC 2017 - adrian@suse.de + +- Initial support for layered kiwi docker image builds +- Initial support of native docker format build support +- debootstrap: generate apt caches +- debtransform: use + for release version suffix +- support full timestamps in rpm changelog +- sync default architecture macros with current rpm 4.13.0 +- support release number handling for AppImage +- drop %opensuse_bs macros for standalone builds +- fix kvm detection for newer ubuntu systems +- build config updates +- lot's of smaller improvements + ------------------------------------------------------------------- Fri Mar 17 12:57:03 UTC 2017 - adrian@suse.de diff --git a/build.dsc b/build.dsc index 0384b03..057b5f7 100644 --- a/build.dsc +++ b/build.dsc @@ -1,6 +1,6 @@ Format: 1.0 Source: build -Version: 20170613-0 +Version: 20170719-0 Binary: build Maintainer: Adrian Schroeter Architecture: all diff --git a/build.spec b/build.spec index 5b17455..251d8ba 100644 --- a/build.spec +++ b/build.spec @@ -22,13 +22,11 @@ Name: build Summary: A Script to Build SUSE Linux RPMs License: GPL-2.0+ and GPL-2.0 Group: Development/Tools/Building -Version: 20170613 +Version: 20170719 Release: 0 Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch -# Manual requires to avoid hard require to bash-static -AutoReqProv: off %if 0%{?suse_version} > 1200 # required for test suite BuildRequires: build-mkbaselibs diff --git a/debian.changelog b/debian.changelog index 0ae8126..8c09aca 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,4 +1,4 @@ -build (20170613-0) unstable; urgency=low +build (20170719-0) unstable; urgency=low * Update to current git trunk - add sles11sp2 build config and adapt autodetection diff --git a/debian.compat b/debian.compat index b8626c4..7ed6ff8 100644 --- a/debian.compat +++ b/debian.compat @@ -1 +1 @@ -4 +5 diff --git a/debian.control b/debian.control index 5f4e243..4823cbe 100644 --- a/debian.control +++ b/debian.control @@ -2,13 +2,16 @@ Source: build Section: devel Priority: optional Maintainer: Adrian Schroeter -Build-Depends: debhelper (>= 4) +Build-Depends: debhelper (>= 5) Standards-Version: 3.7.2 -Package: build +Package: obs-build Architecture: all Depends: ${perl:Depends}, rpm Recommends: rpm2cpio +Conflicts: build +Replaces: build +Provides: build Description: A script to build SUSE Linux RPMs This package provides a script for building RPMs for SUSE Linux in a chroot environment. diff --git a/debian.rules b/debian.rules index 8418007..fe59bc6 100644 --- a/debian.rules +++ b/debian.rules @@ -41,7 +41,7 @@ install: build dh_testroot dh_clean -k dh_installdirs - make DESTDIR=$(CURDIR)/debian/build install + make DESTDIR=$(CURDIR)/debian/obs-build install binary-arch: build install dh_testdir diff --git a/obs-build-20170613.tar.gz b/obs-build-20170613.tar.gz deleted file mode 100644 index e9e0be0..0000000 --- a/obs-build-20170613.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ea468a8c5ecd04070070226fa235a289047262d28515c249cb40e8a857cfc43 -size 299151 diff --git a/obs-build-20170719.tar.gz b/obs-build-20170719.tar.gz new file mode 100644 index 0000000..bff663d --- /dev/null +++ b/obs-build-20170719.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed40bb4fcc8bf567f8fa9dda67baed210f44b565b90a10637bfe7830cbfa3be +size 302897 From 847242488f36b8eafb5a2c8f2c683fbb11660a0e Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Wed, 19 Jul 2017 17:51:02 +0000 Subject: [PATCH 06/20] Extract debian.links - was added to the _service by this request: https://build.opensuse.org/package/rdiff/openSUSE:Tools/build?linkrev=base&rev=309 but it wasn't extracted in the last upload Rev openSUSE:Tools/311 Md5 1619b387474a9536275531b2977921c7 2017-07-19 17:51:02 adrianSuSE 511464 --- debian.links | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 debian.links diff --git a/debian.links b/debian.links new file mode 100644 index 0000000..03eb6de --- /dev/null +++ b/debian.links @@ -0,0 +1,2 @@ +usr/bin/build usr/bin/obs-build +usr/lib/build usr/lib/obs-build From 0ab8bf8d09963bbdd3b1eaeb10d011f9d0b31044 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Wed, 19 Jul 2017 18:06:21 +0000 Subject: [PATCH 07/20] skip test on fedory and friends Rev openSUSE:Tools/312 Md5 3caac58ddf1b1974941c6c77b659f160 2017-07-19 18:06:21 adrianSuSE None --- build.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.spec b/build.spec index 251d8ba..c46768c 100644 --- a/build.spec +++ b/build.spec @@ -156,6 +156,10 @@ if [ `whoami` != "root" ]; then echo "WARNING: Not building as root, tests did not run!" exit 0 fi +if [ ! -f "$RPM_BUILD_ROOT/usr/lib/build/configs/default.conf" ]; then + echo "WARNING: No default config, tests did not run!" + exit 0 +fi # get back the default.conf link cp -av $RPM_BUILD_ROOT/usr/lib/build/configs/default.conf configs/ # do not get confused when building this already with build: From 10bd24a714a2edb183da1b486e23e8d37dadbdee Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Wed, 19 Jul 2017 18:13:43 +0000 Subject: [PATCH 08/20] doesn't work this way Rev openSUSE:Tools/313 Md5 4746bbb1bb0947d4356eea2214b43217 2017-07-19 18:13:43 adrianSuSE None --- _multibuild | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 _multibuild diff --git a/_multibuild b/_multibuild deleted file mode 100644 index e1b9d47..0000000 --- a/_multibuild +++ /dev/null @@ -1,6 +0,0 @@ - - - build - - From 0fd8ec5014203041c0933bfc65bb8a99ca898ca0 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 16:29:47 +0000 Subject: [PATCH 09/20] update Rev openSUSE:Tools/314 Md5 c0e0efb1c749d72cfaf8367f45fe20c0 2017-07-20 16:29:47 adrianSuSE None --- PKGBUILD | 2 +- build-mkbaselibs-sle.spec | 2 +- build.changes | 15 +++---------- build.dsc | 2 +- build.spec | 46 +++++++++++++++++++++++++++++---------- debian.changelog | 2 +- obs-build-20170719.tar.gz | 3 --- obs-build-20170720.tar.gz | 3 +++ 8 files changed, 45 insertions(+), 30 deletions(-) delete mode 100644 obs-build-20170719.tar.gz create mode 100644 obs-build-20170720.tar.gz diff --git a/PKGBUILD b/PKGBUILD index d6c54ca..3e5c633 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=build -pkgver=20170719 +pkgver=20170720 pkgrel=0 pkgdesc="Build packages in sandbox" arch=('i686' 'x86_64') diff --git a/build-mkbaselibs-sle.spec b/build-mkbaselibs-sle.spec index 3e85e00..c168d0d 100644 --- a/build-mkbaselibs-sle.spec +++ b/build-mkbaselibs-sle.spec @@ -20,7 +20,7 @@ Name: build-mkbaselibs-sle Summary: Tools to generate base lib packages License: GPL-2.0+ Group: Development/Tools/Building -Version: 20170719 +Version: 20170720 Release: 0 #!BuildIgnore: build-mkbaselibs Provides: build-mkbaselibs diff --git a/build.changes b/build.changes index 8616f10..7712ee6 100644 --- a/build.changes +++ b/build.changes @@ -1,17 +1,8 @@ ------------------------------------------------------------------- -Wed Jul 19 17:16:31 UTC 2017 - adrian@suse.de +Thu Jul 20 13:59:20 CEST 2017 - mls@suse.de -- Initial support for layered kiwi docker image builds -- Initial support of native docker format build support -- debootstrap: generate apt caches -- debtransform: use + for release version suffix -- support full timestamps in rpm changelog -- sync default architecture macros with current rpm 4.13.0 -- support release number handling for AppImage -- drop %opensuse_bs macros for standalone builds -- fix kvm detection for newer ubuntu systems -- build config updates -- lot's of smaller improvements +- switch baselibs scheme for debuginfo packages from + foo-debuginfo-32bit to foo-32bit-debuginfo [fate#323217] ------------------------------------------------------------------- Fri Mar 17 12:57:03 UTC 2017 - adrian@suse.de diff --git a/build.dsc b/build.dsc index 057b5f7..ec839fd 100644 --- a/build.dsc +++ b/build.dsc @@ -1,6 +1,6 @@ Format: 1.0 Source: build -Version: 20170719-0 +Version: 20170720-0 Binary: build Maintainer: Adrian Schroeter Architecture: all diff --git a/build.spec b/build.spec index c46768c..8fbd3ad 100644 --- a/build.spec +++ b/build.spec @@ -22,7 +22,7 @@ Name: build Summary: A Script to Build SUSE Linux RPMs License: GPL-2.0+ and GPL-2.0 Group: Development/Tools/Building -Version: 20170719 +Version: 20170720 Release: 0 Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -135,20 +135,44 @@ chmod 0644 $RPM_BUILD_ROOT/usr/lib/build/initvm.* # main make DESTDIR=$RPM_BUILD_ROOT install -cd $RPM_BUILD_ROOT/usr/lib/build/configs/ -%if "0%{?suse_version}" == "1315" && 0%{?is_opensuse} -# super special leap distro - ln -s sl42.1.conf default.conf -%else + +# tweak default config on suse %if 0%{?suse_version} -%if 0%{?sles_version} - ln -s sles%{sles_version}.conf default.conf -%else - V=%suse_version - ln -s sl${V:0:2}.${V:2:1}.conf default.conf +cd $RPM_BUILD_ROOT/usr/lib/build/configs/ +SUSE_V=%{?suse_version} +SLE_V=%{?sle_version} +%if 0%{?sle_version} && 0%{?is_opensuse} && %suse_version == 1315 +# this is SUSE Leap 42.X +ln -s sl42.${SLE_V:3:1}.conf default.conf %endif +%if 0%{?sle_version} && 0%{?is_opensuse} && %suse_version > 1315 +# this is SUSE Leap 15 and higher +ln -s sl${SLE_V:0:2}.${SLE_V:3:1}.conf default.conf +%endif +%if !0%{?sle_version} && 0%{?is_opensuse} +# this is old openSUSE releases and Factory +ln -s sl${SUSE_V:0:2}.${SUSE_V:2:1}.conf default.conf +%endif +%if 0%{?sle_version} && !0%{?is_opensuse} +# this is SUSE SLE 12 and higher +ln -s sle${SLE_V:0:2}.${SLE_V:3:1}.conf default.conf +%endif +# make sure that we have a config test -e default.conf || exit 1 %endif + +# tweak baselibs config on suse +%if 0%{?suse_version} +cd $RPM_BUILD_ROOT/usr/lib/build +%if %suse_version == 1500 +# SLE 15 / Leap 15 +ln -sf baselibs_configs/baselibs_global-sle15.conf baselibs_global.conf +%endif +%if %suse_version <= 1315 +# SLE 12 / Leap 42 and older +ln -sf baselibs_configs/baselibs_global-sle12.conf baselibs_global.conf +%endif +test -e baselibs_global.conf || exit 1 %endif %check diff --git a/debian.changelog b/debian.changelog index 8c09aca..a4b1409 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,4 +1,4 @@ -build (20170719-0) unstable; urgency=low +build (20170720-0) unstable; urgency=low * Update to current git trunk - add sles11sp2 build config and adapt autodetection diff --git a/obs-build-20170719.tar.gz b/obs-build-20170719.tar.gz deleted file mode 100644 index bff663d..0000000 --- a/obs-build-20170719.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ed40bb4fcc8bf567f8fa9dda67baed210f44b565b90a10637bfe7830cbfa3be -size 302897 diff --git a/obs-build-20170720.tar.gz b/obs-build-20170720.tar.gz new file mode 100644 index 0000000..9fd995f --- /dev/null +++ b/obs-build-20170720.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0218b60bee43846aca4734548a257cc7267fd792046e3f3c3806367bea7ceeb0 +size 304052 From 4fe7f56baf2142692d8323158b2b6b1acd8ec28c Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 16:41:00 +0000 Subject: [PATCH 10/20] old sle 11 and opensuse fix Rev openSUSE:Tools/315 Md5 ddc1f34f8b1570cf462f0f0e4c85de02 2017-07-20 16:41:00 adrianSuSE None --- build.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.spec b/build.spec index 8fbd3ad..6477be8 100644 --- a/build.spec +++ b/build.spec @@ -149,7 +149,7 @@ ln -s sl42.${SLE_V:3:1}.conf default.conf # this is SUSE Leap 15 and higher ln -s sl${SLE_V:0:2}.${SLE_V:3:1}.conf default.conf %endif -%if !0%{?sle_version} && 0%{?is_opensuse} +%if !0%{?sle_version} && ( 0%{?suse_version} <= 1310 || 0%{?suse_version} == 1320 || 0%{?suse_version} == 1330 ) # this is old openSUSE releases and Factory ln -s sl${SUSE_V:0:2}.${SUSE_V:2:1}.conf default.conf %endif @@ -157,6 +157,10 @@ ln -s sl${SUSE_V:0:2}.${SUSE_V:2:1}.conf default.conf # this is SUSE SLE 12 and higher ln -s sle${SLE_V:0:2}.${SLE_V:3:1}.conf default.conf %endif +%if 0%{?sles_version} == 1110 +# this is SUSE SLE 11 +ln -s sles11sp2.conf default.conf +%endif # make sure that we have a config test -e default.conf || exit 1 %endif From be18f772592ecee06ed1b672713ebde9f718e3ef Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 16:57:48 +0000 Subject: [PATCH 11/20] update Rev openSUSE:Tools/316 Md5 56ff8e50acc98876978fac315264b883 2017-07-20 16:57:48 adrianSuSE None --- obs-build-20170720.tar.gz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/obs-build-20170720.tar.gz b/obs-build-20170720.tar.gz index 9fd995f..cbc71c7 100644 --- a/obs-build-20170720.tar.gz +++ b/obs-build-20170720.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0218b60bee43846aca4734548a257cc7267fd792046e3f3c3806367bea7ceeb0 -size 304052 +oid sha256:759c3f6aa536d5f0c4e532478a9c06c5c95fb02e1d8aeacfc9400cc08c0364bf +size 303721 From 1e2ec93602e8cb6b3bb83b2d147f2ae7d6e8f819 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 17:17:10 +0000 Subject: [PATCH 12/20] update Rev openSUSE:Tools/317 Md5 5820f5aee1eea99cbc82ba80e7689960 2017-07-20 17:17:10 adrianSuSE None --- build-mkbaselibs-sle.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-mkbaselibs-sle.spec b/build-mkbaselibs-sle.spec index c168d0d..419e0db 100644 --- a/build-mkbaselibs-sle.spec +++ b/build-mkbaselibs-sle.spec @@ -24,7 +24,7 @@ Version: 20170720 Release: 0 #!BuildIgnore: build-mkbaselibs Provides: build-mkbaselibs -Source: build-%{version}.tar.gz +Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch @@ -35,7 +35,7 @@ for generating base lib packages. This is the SLE variant including IA64 binary generation. %prep -%setup -q -n build-%{version} +%setup -q -n obs-build-%{version} %build From b54eba035324560dbb180904cbfa0c2aea26d657 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 17:22:11 +0000 Subject: [PATCH 13/20] try Rev openSUSE:Tools/318 Md5 278d1c7dd16111f2ee2700162013bb86 2017-07-20 17:22:11 adrianSuSE None --- _service | 7 ------- obs-build-20170720.tar.gz | 4 ++-- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/_service b/_service index f856f10..bd947fe 100644 --- a/_service +++ b/_service @@ -8,13 +8,6 @@ dist/build-mkbaselibs-sle.changes dist/build-mkbaselibs-sle.spec dist/build.dsc - dist/debian.changelog - dist/debian.compat - dist/debian.control - dist/debian.copyright - dist/debian.docs - dist/debian.rules - dist/debian.links dist/PKGBUILD diff --git a/obs-build-20170720.tar.gz b/obs-build-20170720.tar.gz index cbc71c7..4fc529e 100644 --- a/obs-build-20170720.tar.gz +++ b/obs-build-20170720.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:759c3f6aa536d5f0c4e532478a9c06c5c95fb02e1d8aeacfc9400cc08c0364bf -size 303721 +oid sha256:8da6b3954deb088639510e970b92d25ea7b4465316a7b5fcbedaaa4a688449da +size 304823 From 784bb1dcb258c855bdd405c0c3e9fdb2c9e09cf4 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 17:25:52 +0000 Subject: [PATCH 14/20] ups Rev openSUSE:Tools/319 Md5 bd6429db19f326d07b35a4ed26050497 2017-07-20 17:25:52 adrianSuSE None --- debian.changelog | 201 ----------------------------------------------- debian.compat | 1 - debian.control | 18 ----- debian.copyright | 21 ----- debian.docs | 1 - debian.links | 2 - debian.rules | 65 --------------- 7 files changed, 309 deletions(-) delete mode 100644 debian.changelog delete mode 100644 debian.compat delete mode 100644 debian.control delete mode 100644 debian.copyright delete mode 100644 debian.docs delete mode 100644 debian.links delete mode 100644 debian.rules diff --git a/debian.changelog b/debian.changelog deleted file mode 100644 index a4b1409..0000000 --- a/debian.changelog +++ /dev/null @@ -1,201 +0,0 @@ -build (20170720-0) unstable; urgency=low - - * Update to current git trunk - - add sles11sp2 build config and adapt autodetection - - -- Michael Schroeder Mon, 10 Oct 2011 19:30:22 +0200 - -build (2011.09.26-1) unstable; urgency=low - - * Update to current git trunk - - -- Adrian Schroeter Fri, 01 Jul 2010 10:03:54 +0200 - -build (2011.07.01-1) unstable; urgency=low - - * Update to current git trunk - - -- Adrian Schroeter Fri, 01 Jul 2010 10:03:54 +0200 - -build (2010.12.15-1) unstable; urgency=low - - * Update to current git trunk - - support bsdtar for setting up build enviroment - - make expanddeps use the highest version of a package if multiple - versions aver available in a repository [bnc#656599] - - -- Michael Schroeder Wed, 15 Dec 2010 14:08:29 +0200 - -build (2010.07.28-1) unstable; urgency=low - - * Update to current git trunk - - document --repo and --dist - - update wiki links - - fix bugs in repo handling - - fix distribution autodetection code - - -- Michael Schroeder Wed, 28 Jul 2010 12:46:52 +0200 - -build (2010.07.08-1) unstable; urgency=low - - * Update to current git trunk - - -- Adrian Schroeter Wed, 08 Jul 2010 10:03:54 +0200 - -build (2010.06.29-1) unstable; urgency=low - - * Update to current git trunk - - add 11.3 config - - fix repo creation in --noinit case - - support ovf files directly - - allow multiple --oldpackages - - delta rpm support - - -- Adrian Schroeter Tue, 29 Jun 2010 10:03:54 +0200 - -build (2010.02.02-1) unstable; urgency=low - - * Update to current git trunk - - Support new kiwi 4.1 schema files - - -- Adrian Schroeter Tue, 02 Feb 2010 10:03:54 +0200 - -build (2009.09.23-1) unstable; urgency=low - - * Update to current svn trunk - - -- Michael Schroeder Wed, 23 Sep 2009 12:03:54 +0200 - -build (2009.04.20-1) unstable; urgency=low - - * Update to current svn trunk - - -- Adrian Schroeter Mon, 20 Feb 2009 08:27:13 +0200 - -build (2009.02.20-1) unstable; urgency=low - - * Fix kvm support together with Alexander - * Support for new disturl containing a complete pointer to build - service instance resource - * add support for package compare to allow Build Service to drop - same packages after build - * image repack support from Christoph - - -- Adrian Schroeter Fri, 20 Feb 2009 08:27:13 +0200 - -build (2007.09.14-1) unstable; urgency=low - - * update to 2173: - - add sl10.3 config [#310089] - - also look for BuildRequires in subpackage definitions [#305568] - - allow removal of more config parameters - - -- Michael Schroeder Fri, 14 Sep 2007 18:27:13 +0200 - -build (2007.08.02-1) unstable; urgency=low - - * update to 1902: - - support 'order' config option - - support 'patterntype' config option - - new setdeps() method - - support for flexible query options - - support 'description' query - - fix bug in changelog2spec time cutoff - - make debtransform understand Debtransform-Tar/Debtransform-Files-Tar/ - Debtransform-Series - - fix bug in substitutedeps - - -- Michael Schroeder Thu, 2 Aug 2007 15:58:48 +0200 - -build (2007.06.13-1) unstable; urgency=low - - * update to 1727: - - implement rpm installation order calculation in perl - - make substitute code modify requires, too - - add filelist query support - - add prereq parsing support - - speed up version comparison a bit - - -- Michael Schroeder Wed, 13 Jun 2007 17:18:17 +0100 - -build (2007.05.10-1) unstable; urgency=low - - * update to 1653: - - add _vendor to configs - - fix deban dependency compare - - allow not operator in configs - - fix build from source rpms - - -- Michael Schroeder Thu, 10 May 2007 20:02:29 +0100 - -build (2007.04.12-1) unstable; urgency=low - - * update to 1575: - - add --root to rpm call in rpm to work around a bug in rpm [#255720] - - -- Michael Schroeder Thu, 12 Apr 2007 16:22:51 +0100 - -build (2007.04.05-1) unstable; urgency=low - - * update to 1561: - - support architecture dependand requires in dsc files - - support "global" definitions for rpm - - support vminstall config option - - -- Michael Schroeder Thu, 5 Apr 2007 16:01:51 +0100 - -build (2007.03.12-1) unstable; urgency=low - - * update to r1419: - - fix buildroot in debtransform call - - obey version numbers when expanding - - -- Michael Schroeder Mon, 12 Mar 2007 15:42:48 +0100 - -build (2007.03.02-1) unstable; urgency=low - - * update - - transform suse changes file to rpm specfile format - - improved debian support - - -- Michael Schroeder Fri, 2 Mar 2007 21:22:41 +0100 - -build (2007.01.26-1) unstable; urgency=low - - * update to r1114 - - re-add the lost unrpm script - - make exclarch an array - - remount root rw in xen case, needed if root is not reiserfs - - add repotype/runscripts options - - remove devs in sl10.1/10.2 - - fix boolean test to make "00" false like rpm does - - add rpm_verscmp for version comparison - - runscripts - - macro blocks - - read_config_dist - - useful xen exit status - - add --kill - - update 10.2 config - - extend spec/dsc parser - - fixed two bugs in the specfile parser - - -- Peter Poeml Fri, 26 Jan 2007 14:15:22 +0100 - -build (2006.10.5-1) unstable; urgency=low - - * update for fixed XEN build - - -- Michael Schroeder Thu, 5 Oct 2006 10:58:42 +0200 - -build (2006.8.10-1) unstable; urgency=low - - * update for fixed XEN build and proc mounting - - -- Adrian Schroeter Thu, 10 Aug 2006 12:01:08 +0200 - -build (2006.6.14-1) unstable; urgency=low - - * Initial release based on build-2006.6.14-5.1.src.rpm - - -- Rene Engelhard Thu, 22 Jun 2006 12:01:08 +0200 - diff --git a/debian.compat b/debian.compat deleted file mode 100644 index 7ed6ff8..0000000 --- a/debian.compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian.control b/debian.control deleted file mode 100644 index 4823cbe..0000000 --- a/debian.control +++ /dev/null @@ -1,18 +0,0 @@ -Source: build -Section: devel -Priority: optional -Maintainer: Adrian Schroeter -Build-Depends: debhelper (>= 5) -Standards-Version: 3.7.2 - -Package: obs-build -Architecture: all -Depends: ${perl:Depends}, rpm -Recommends: rpm2cpio -Conflicts: build -Replaces: build -Provides: build -Description: A script to build SUSE Linux RPMs - This package provides a script for building RPMs for SUSE Linux - in a chroot environment. - diff --git a/debian.copyright b/debian.copyright deleted file mode 100644 index 7732754..0000000 --- a/debian.copyright +++ /dev/null @@ -1,21 +0,0 @@ -This package was debianized by Rene Engelhard on -Thu, 22 Jun 2006 12:01:08 +0200. - -It was downloaded from http://software.opensuse.org/download/openSUSE:/Tools/SUSE_Linux_Factory/src - -Upstream authors: Thorsten Kukuk - Michael Schröter - Bernhard Kaindl - Mad Martin Jorgensen - Andreas Schwab - Rüdiger Oertel - Andreas Gruenbacher - -Copyright: (c) 1997-2007 SuSE GmbH Nuernberg, Germany - -License: - -GPL - -The Debian packaging is (C) 2006, Rene Engelhard and -is licensed under the GPL, see `/usr/share/common-licenses/GPL'. diff --git a/debian.docs b/debian.docs deleted file mode 100644 index e845566..0000000 --- a/debian.docs +++ /dev/null @@ -1 +0,0 @@ -README diff --git a/debian.links b/debian.links deleted file mode 100644 index 03eb6de..0000000 --- a/debian.links +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin/build usr/bin/obs-build -usr/lib/build usr/lib/obs-build diff --git a/debian.rules b/debian.rules deleted file mode 100644 index fe59bc6..0000000 --- a/debian.rules +++ /dev/null @@ -1,65 +0,0 @@ -#!/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 From 897e9d77e65ca0fd011dad2a3785e27f2281c560 Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 17:43:25 +0000 Subject: [PATCH 15/20] try Rev openSUSE:Tools/320 Md5 12706ad7a27fc11423a1ba6412194647 2017-07-20 17:43:25 adrianSuSE None --- _service | 1 + debian.control | 18 ++++++++++++++++++ obs-build-20170720.tar.gz | 4 ++-- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 debian.control diff --git a/_service b/_service index bd947fe..98d9999 100644 --- a/_service +++ b/_service @@ -8,6 +8,7 @@ dist/build-mkbaselibs-sle.changes dist/build-mkbaselibs-sle.spec dist/build.dsc + dist/debian.control dist/PKGBUILD diff --git a/debian.control b/debian.control new file mode 100644 index 0000000..4823cbe --- /dev/null +++ b/debian.control @@ -0,0 +1,18 @@ +Source: build +Section: devel +Priority: optional +Maintainer: Adrian Schroeter +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: obs-build +Architecture: all +Depends: ${perl:Depends}, rpm +Recommends: rpm2cpio +Conflicts: build +Replaces: build +Provides: build +Description: A script to build SUSE Linux RPMs + This package provides a script for building RPMs for SUSE Linux + in a chroot environment. + diff --git a/obs-build-20170720.tar.gz b/obs-build-20170720.tar.gz index 4fc529e..4002f23 100644 --- a/obs-build-20170720.tar.gz +++ b/obs-build-20170720.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8da6b3954deb088639510e970b92d25ea7b4465316a7b5fcbedaaa4a688449da -size 304823 +oid sha256:778e6a7d2e474ee6c37ae61e6d7bac42d60683eddfcfe7eed5c742641bb2bf0d +size 304862 From 2157d3d211e737c8ed63563f612282e63998fc1f Mon Sep 17 00:00:00 2001 From: OBS User adrianSuSE Date: Thu, 20 Jul 2017 17:51:51 +0000 Subject: [PATCH 16/20] add debian.changelog again Rev openSUSE:Tools/321 Md5 bf848509a5abeab516752d0552bbea48 2017-07-20 17:51:51 adrianSuSE None --- _service | 1 + debian.changelog | 201 ++++++++++++++++++++++++++++++++++++++ obs-build-20170720.tar.gz | 4 +- 3 files changed, 204 insertions(+), 2 deletions(-) create mode 100644 debian.changelog diff --git a/_service b/_service index 98d9999..ded4763 100644 --- a/_service +++ b/_service @@ -8,6 +8,7 @@ dist/build-mkbaselibs-sle.changes dist/build-mkbaselibs-sle.spec dist/build.dsc + dist/debian.changelog dist/debian.control dist/PKGBUILD diff --git a/debian.changelog b/debian.changelog new file mode 100644 index 0000000..a4b1409 --- /dev/null +++ b/debian.changelog @@ -0,0 +1,201 @@ +build (20170720-0) unstable; urgency=low + + * Update to current git trunk + - add sles11sp2 build config and adapt autodetection + + -- Michael Schroeder Mon, 10 Oct 2011 19:30:22 +0200 + +build (2011.09.26-1) unstable; urgency=low + + * Update to current git trunk + + -- Adrian Schroeter Fri, 01 Jul 2010 10:03:54 +0200 + +build (2011.07.01-1) unstable; urgency=low + + * Update to current git trunk + + -- Adrian Schroeter Fri, 01 Jul 2010 10:03:54 +0200 + +build (2010.12.15-1) unstable; urgency=low + + * Update to current git trunk + - support bsdtar for setting up build enviroment + - make expanddeps use the highest version of a package if multiple + versions aver available in a repository [bnc#656599] + + -- Michael Schroeder Wed, 15 Dec 2010 14:08:29 +0200 + +build (2010.07.28-1) unstable; urgency=low + + * Update to current git trunk + - document --repo and --dist + - update wiki links + - fix bugs in repo handling + - fix distribution autodetection code + + -- Michael Schroeder Wed, 28 Jul 2010 12:46:52 +0200 + +build (2010.07.08-1) unstable; urgency=low + + * Update to current git trunk + + -- Adrian Schroeter Wed, 08 Jul 2010 10:03:54 +0200 + +build (2010.06.29-1) unstable; urgency=low + + * Update to current git trunk + - add 11.3 config + - fix repo creation in --noinit case + - support ovf files directly + - allow multiple --oldpackages + - delta rpm support + + -- Adrian Schroeter Tue, 29 Jun 2010 10:03:54 +0200 + +build (2010.02.02-1) unstable; urgency=low + + * Update to current git trunk + - Support new kiwi 4.1 schema files + + -- Adrian Schroeter Tue, 02 Feb 2010 10:03:54 +0200 + +build (2009.09.23-1) unstable; urgency=low + + * Update to current svn trunk + + -- Michael Schroeder Wed, 23 Sep 2009 12:03:54 +0200 + +build (2009.04.20-1) unstable; urgency=low + + * Update to current svn trunk + + -- Adrian Schroeter Mon, 20 Feb 2009 08:27:13 +0200 + +build (2009.02.20-1) unstable; urgency=low + + * Fix kvm support together with Alexander + * Support for new disturl containing a complete pointer to build + service instance resource + * add support for package compare to allow Build Service to drop + same packages after build + * image repack support from Christoph + + -- Adrian Schroeter Fri, 20 Feb 2009 08:27:13 +0200 + +build (2007.09.14-1) unstable; urgency=low + + * update to 2173: + - add sl10.3 config [#310089] + - also look for BuildRequires in subpackage definitions [#305568] + - allow removal of more config parameters + + -- Michael Schroeder Fri, 14 Sep 2007 18:27:13 +0200 + +build (2007.08.02-1) unstable; urgency=low + + * update to 1902: + - support 'order' config option + - support 'patterntype' config option + - new setdeps() method + - support for flexible query options + - support 'description' query + - fix bug in changelog2spec time cutoff + - make debtransform understand Debtransform-Tar/Debtransform-Files-Tar/ + Debtransform-Series + - fix bug in substitutedeps + + -- Michael Schroeder Thu, 2 Aug 2007 15:58:48 +0200 + +build (2007.06.13-1) unstable; urgency=low + + * update to 1727: + - implement rpm installation order calculation in perl + - make substitute code modify requires, too + - add filelist query support + - add prereq parsing support + - speed up version comparison a bit + + -- Michael Schroeder Wed, 13 Jun 2007 17:18:17 +0100 + +build (2007.05.10-1) unstable; urgency=low + + * update to 1653: + - add _vendor to configs + - fix deban dependency compare + - allow not operator in configs + - fix build from source rpms + + -- Michael Schroeder Thu, 10 May 2007 20:02:29 +0100 + +build (2007.04.12-1) unstable; urgency=low + + * update to 1575: + - add --root to rpm call in rpm to work around a bug in rpm [#255720] + + -- Michael Schroeder Thu, 12 Apr 2007 16:22:51 +0100 + +build (2007.04.05-1) unstable; urgency=low + + * update to 1561: + - support architecture dependand requires in dsc files + - support "global" definitions for rpm + - support vminstall config option + + -- Michael Schroeder Thu, 5 Apr 2007 16:01:51 +0100 + +build (2007.03.12-1) unstable; urgency=low + + * update to r1419: + - fix buildroot in debtransform call + - obey version numbers when expanding + + -- Michael Schroeder Mon, 12 Mar 2007 15:42:48 +0100 + +build (2007.03.02-1) unstable; urgency=low + + * update + - transform suse changes file to rpm specfile format + - improved debian support + + -- Michael Schroeder Fri, 2 Mar 2007 21:22:41 +0100 + +build (2007.01.26-1) unstable; urgency=low + + * update to r1114 + - re-add the lost unrpm script + - make exclarch an array + - remount root rw in xen case, needed if root is not reiserfs + - add repotype/runscripts options + - remove devs in sl10.1/10.2 + - fix boolean test to make "00" false like rpm does + - add rpm_verscmp for version comparison + - runscripts + - macro blocks + - read_config_dist + - useful xen exit status + - add --kill + - update 10.2 config + - extend spec/dsc parser + - fixed two bugs in the specfile parser + + -- Peter Poeml Fri, 26 Jan 2007 14:15:22 +0100 + +build (2006.10.5-1) unstable; urgency=low + + * update for fixed XEN build + + -- Michael Schroeder Thu, 5 Oct 2006 10:58:42 +0200 + +build (2006.8.10-1) unstable; urgency=low + + * update for fixed XEN build and proc mounting + + -- Adrian Schroeter Thu, 10 Aug 2006 12:01:08 +0200 + +build (2006.6.14-1) unstable; urgency=low + + * Initial release based on build-2006.6.14-5.1.src.rpm + + -- Rene Engelhard Thu, 22 Jun 2006 12:01:08 +0200 + diff --git a/obs-build-20170720.tar.gz b/obs-build-20170720.tar.gz index 4002f23..df4f5ef 100644 --- a/obs-build-20170720.tar.gz +++ b/obs-build-20170720.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:778e6a7d2e474ee6c37ae61e6d7bac42d60683eddfcfe7eed5c742641bb2bf0d -size 304862 +oid sha256:dd2e81a5704541c48a5541f040da1c0bcd64fceaead702c9836071986236d01b +size 303973 From 258ba5a8dd7f6c6e45e582a8cf3fe35b006d2f78 Mon Sep 17 00:00:00 2001 From: OBS User lnussel Date: Wed, 2 Aug 2017 15:00:21 +0000 Subject: [PATCH 17/20] - Fix path to files - Temporary hack to aid liblua5_3 -> liblua5_3-5 renam Rev openSUSE:Tools/322 Md5 850ff111853ece5cf9cb35a9ee0a0589 2017-08-02 15:00:21 lnussel None --- PKGBUILD | 2 +- build-mkbaselibs-sle.changes | 5 +++++ build-mkbaselibs-sle.spec | 6 +++--- build.changes | 5 +++++ build.dsc | 2 +- build.spec | 7 ++++++- debian.changelog | 2 +- obs-build-20170720.tar.gz | 3 --- obs-build-20170802.tar.gz | 3 +++ 9 files changed, 25 insertions(+), 10 deletions(-) delete mode 100644 obs-build-20170720.tar.gz create mode 100644 obs-build-20170802.tar.gz diff --git a/PKGBUILD b/PKGBUILD index 3e5c633..2377bfc 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=build -pkgver=20170720 +pkgver=20170802 pkgrel=0 pkgdesc="Build packages in sandbox" arch=('i686' 'x86_64') diff --git a/build-mkbaselibs-sle.changes b/build-mkbaselibs-sle.changes index aba6d28..6d0f857 100644 --- a/build-mkbaselibs-sle.changes +++ b/build-mkbaselibs-sle.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Aug 2 14:58:59 UTC 2017 - lnussel@suse.de + +- Fix path to files + ------------------------------------------------------------------- Thu Jun 30 19:05:52 CEST 2011 - ro@suse.de diff --git a/build-mkbaselibs-sle.spec b/build-mkbaselibs-sle.spec index 419e0db..d63084d 100644 --- a/build-mkbaselibs-sle.spec +++ b/build-mkbaselibs-sle.spec @@ -20,7 +20,7 @@ Name: build-mkbaselibs-sle Summary: Tools to generate base lib packages License: GPL-2.0+ Group: Development/Tools/Building -Version: 20170720 +Version: 20170802 Release: 0 #!BuildIgnore: build-mkbaselibs Provides: build-mkbaselibs @@ -43,9 +43,9 @@ This is the SLE variant including IA64 binary generation. install -m 0755 -d $RPM_BUILD_ROOT/usr/lib/build install -m 0755 mkbaselibs \ $RPM_BUILD_ROOT/usr/lib/build/mkbaselibs -install -m 0644 baselibs_global-deb.conf \ +install -m 0644 baselibs_configs/baselibs_global-deb.conf \ $RPM_BUILD_ROOT/usr/lib/build/baselibs_global-deb.conf -install -m 0644 baselibs_global-sle.conf \ +install -m 0644 baselibs_configs/baselibs_global-sle.conf \ $RPM_BUILD_ROOT/usr/lib/build/baselibs_global.conf %files diff --git a/build.changes b/build.changes index 7712ee6..7e04c6c 100644 --- a/build.changes +++ b/build.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Aug 2 14:59:15 UTC 2017 - lnussel@suse.de + +- Temporary hack to aid liblua5_3 -> liblua5_3-5 renam + ------------------------------------------------------------------- Thu Jul 20 13:59:20 CEST 2017 - mls@suse.de diff --git a/build.dsc b/build.dsc index ec839fd..ac7a4a6 100644 --- a/build.dsc +++ b/build.dsc @@ -1,6 +1,6 @@ Format: 1.0 Source: build -Version: 20170720-0 +Version: 20170802-0 Binary: build Maintainer: Adrian Schroeter Architecture: all diff --git a/build.spec b/build.spec index 6477be8..3bc152d 100644 --- a/build.spec +++ b/build.spec @@ -22,7 +22,7 @@ Name: build Summary: A Script to Build SUSE Linux RPMs License: GPL-2.0+ and GPL-2.0 Group: Development/Tools/Building -Version: 20170720 +Version: 20170802 Release: 0 Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -122,6 +122,11 @@ chroot or a secure virtualized %if 0%{?suse_version} # initvm make CFLAGS="$RPM_BUILD_FLAGS" initvm-all +#XXX temporary hack until lua is actually in +%if 0%{?suse_version} == 1330 + V=%suse_version + sed -i -e 's/liblua5_3/liblua5_3-5/g' configs/sl${V:0:2}.${V:2:1}.conf +%endif %endif %install diff --git a/debian.changelog b/debian.changelog index a4b1409..89ea563 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,4 +1,4 @@ -build (20170720-0) unstable; urgency=low +build (20170802-0) unstable; urgency=low * Update to current git trunk - add sles11sp2 build config and adapt autodetection diff --git a/obs-build-20170720.tar.gz b/obs-build-20170720.tar.gz deleted file mode 100644 index df4f5ef..0000000 --- a/obs-build-20170720.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd2e81a5704541c48a5541f040da1c0bcd64fceaead702c9836071986236d01b -size 303973 diff --git a/obs-build-20170802.tar.gz b/obs-build-20170802.tar.gz new file mode 100644 index 0000000..f6671f2 --- /dev/null +++ b/obs-build-20170802.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3884dbba43347a793771938d1c8cf0c86eb766402aa718ba65b5f356a50dca +size 283909 From b7f004c99a7520df7c0d4debad7e35ab5ca99ee8 Mon Sep 17 00:00:00 2001 From: OBS User lnussel Date: Thu, 3 Aug 2017 12:59:19 +0000 Subject: [PATCH 18/20] Fix build in devel project Rev openSUSE:Tools/323 Md5 51e22c7b5bc121e3b043d60a1156df2c 2017-08-03 12:59:19 lnussel None --- build.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.spec b/build.spec index 3bc152d..300f4dd 100644 --- a/build.spec +++ b/build.spec @@ -124,8 +124,10 @@ chroot or a secure virtualized make CFLAGS="$RPM_BUILD_FLAGS" initvm-all #XXX temporary hack until lua is actually in %if 0%{?suse_version} == 1330 - V=%suse_version - sed -i -e 's/liblua5_3/liblua5_3-5/g' configs/sl${V:0:2}.${V:2:1}.conf +if rpm -q liblua5_3-5; then + V=%suse_version + sed -i -e 's/liblua5_3/liblua5_3-5/g' configs/sl${V:0:2}.${V:2:1}.conf +fi %endif %endif From 7606b9516d07fc0893040d564764f2c4b8b721e1 Mon Sep 17 00:00:00 2001 From: OBS User lnussel Date: Fri, 4 Aug 2017 06:27:08 +0000 Subject: [PATCH 19/20] - Temporary hack to aid liblua5_3 -> liblua5_3-5 rename Rev openSUSE:Tools/324 Md5 332c5117fc571549afab1b616ecbe1e3 2017-08-04 06:27:08 lnussel None --- build.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.changes b/build.changes index 7e04c6c..ddca9ad 100644 --- a/build.changes +++ b/build.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Wed Aug 2 14:59:15 UTC 2017 - lnussel@suse.de -- Temporary hack to aid liblua5_3 -> liblua5_3-5 renam +- Temporary hack to aid liblua5_3 -> liblua5_3-5 rename ------------------------------------------------------------------- Thu Jul 20 13:59:20 CEST 2017 - mls@suse.de From 4d698cd58c71d87a91ab4b5425b676e55157b888 Mon Sep 17 00:00:00 2001 From: OBS User lnussel Date: Fri, 4 Aug 2017 07:51:19 +0000 Subject: [PATCH 20/20] Rev openSUSE:Tools/326 Md5 269b88508fff40036a0638cd05b20f1b 2017-08-04 07:51:19 lnussel None --- PKGBUILD | 2 +- build-mkbaselibs-sle.spec | 4 ++-- build.dsc | 2 +- build.spec | 2 +- debian.changelog | 2 +- obs-build-20170802.tar.gz | 3 --- obs-build-20170804.tar.gz | 3 +++ 7 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 obs-build-20170802.tar.gz create mode 100644 obs-build-20170804.tar.gz diff --git a/PKGBUILD b/PKGBUILD index 2377bfc..e976a94 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,5 +1,5 @@ pkgname=build -pkgver=20170802 +pkgver=20170804 pkgrel=0 pkgdesc="Build packages in sandbox" arch=('i686' 'x86_64') diff --git a/build-mkbaselibs-sle.spec b/build-mkbaselibs-sle.spec index d63084d..356b86e 100644 --- a/build-mkbaselibs-sle.spec +++ b/build-mkbaselibs-sle.spec @@ -20,7 +20,7 @@ Name: build-mkbaselibs-sle Summary: Tools to generate base lib packages License: GPL-2.0+ Group: Development/Tools/Building -Version: 20170802 +Version: 20170804 Release: 0 #!BuildIgnore: build-mkbaselibs Provides: build-mkbaselibs @@ -45,7 +45,7 @@ install -m 0755 mkbaselibs \ $RPM_BUILD_ROOT/usr/lib/build/mkbaselibs install -m 0644 baselibs_configs/baselibs_global-deb.conf \ $RPM_BUILD_ROOT/usr/lib/build/baselibs_global-deb.conf -install -m 0644 baselibs_configs/baselibs_global-sle.conf \ +install -m 0644 baselibs_configs/baselibs_global.conf \ $RPM_BUILD_ROOT/usr/lib/build/baselibs_global.conf %files diff --git a/build.dsc b/build.dsc index ac7a4a6..73181a8 100644 --- a/build.dsc +++ b/build.dsc @@ -1,6 +1,6 @@ Format: 1.0 Source: build -Version: 20170802-0 +Version: 20170804-0 Binary: build Maintainer: Adrian Schroeter Architecture: all diff --git a/build.spec b/build.spec index 300f4dd..e419bb5 100644 --- a/build.spec +++ b/build.spec @@ -22,7 +22,7 @@ Name: build Summary: A Script to Build SUSE Linux RPMs License: GPL-2.0+ and GPL-2.0 Group: Development/Tools/Building -Version: 20170802 +Version: 20170804 Release: 0 Source: obs-build-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build diff --git a/debian.changelog b/debian.changelog index 89ea563..62bddf3 100644 --- a/debian.changelog +++ b/debian.changelog @@ -1,4 +1,4 @@ -build (20170802-0) unstable; urgency=low +build (20170804-0) unstable; urgency=low * Update to current git trunk - add sles11sp2 build config and adapt autodetection diff --git a/obs-build-20170802.tar.gz b/obs-build-20170802.tar.gz deleted file mode 100644 index f6671f2..0000000 --- a/obs-build-20170802.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd3884dbba43347a793771938d1c8cf0c86eb766402aa718ba65b5f356a50dca -size 283909 diff --git a/obs-build-20170804.tar.gz b/obs-build-20170804.tar.gz new file mode 100644 index 0000000..e8c9ef6 --- /dev/null +++ b/obs-build-20170804.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f9e08880031b39a7ffbc8a889587710c09262fef747c5427a901a7a955edc0 +size 281132