ostbuild: Relicense under LGPLv2+, tweak artifact generation

This commit is contained in:
Colin Walters 2011-11-29 16:15:04 -05:00
parent 84562f161f
commit 654a2c295d
4 changed files with 75 additions and 35 deletions

View File

@ -1,21 +0,0 @@
#!/usr/bin/python
import os,sys,re,subprocess
i=1
repo=sys.argv[i]
i += 1
chroot_path=sys.argv[i]
i += 1
args=sys.argv[i:]
def run_in_chroot(args):
proc_path=os.path.join(chroot_path, 'proc')
subprocess.check_call(['mount', '-t', 'proc', 'proc', proc_path])
try:
subprocess.check_call(['chroot', chroot_path])
finally:
subprocess.call(['umount', proc_path])
run_in_chroot(args)

View File

@ -1,7 +1,23 @@
#!/bin/sh #!/bin/sh
# #
# Copyright 2010, 2011 Colin Walters <walters@verbum.org> # Copyright (C) 2011 Colin Walters <walters@verbum.org>
# Licensed under the new-BSD license (http://www.opensource.org/licenses/bsd-license.php) #
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# Author: Colin Walters <walters@verbum.org>
bn=$(basename $(pwd)) bn=$(basename $(pwd))
ostbuild-nice-and-log-output "compile-${bn}.log" ostbuild-compile-one-impl "$@" ostbuild-nice-and-log-output "compile-${bn}.log" ostbuild-compile-one-impl "$@"

View File

@ -1,7 +1,21 @@
#!/usr/bin/python #!/usr/bin/python
# Copyright 2010, 2011 Colin Walters <walters@verbum.org> # Copyright (C) 2011 Colin Walters <walters@verbum.org>
# Licensed under the new-BSD license (http://www.opensource.org/licenses/bsd-license.php) #
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
# ostbuild-compile-one-make wraps systems that implement the GNOME build API: # ostbuild-compile-one-make wraps systems that implement the GNOME build API:
# http://people.gnome.org/~walters/docs/build-api.txt # http://people.gnome.org/~walters/docs/build-api.txt
@ -22,6 +36,12 @@ root = None
prefix = '/usr' prefix = '/usr'
uname=os.uname()
kernel=uname[0].lower()
machine=uname[4]
build_target='%s-%s' % (machine, kernel)
# libdir detection # libdir detection
if os.path.isdir('/lib64'): if os.path.isdir('/lib64'):
libdir=os.path.join(prefix, 'lib64') libdir=os.path.join(prefix, 'lib64')
@ -29,7 +49,8 @@ else:
libdir=os.path.join(prefix, 'lib') libdir=os.path.join(prefix, 'lib')
default_buildapi_jobs = ['-j', '%d' % (cpu_count() * 2, )] default_buildapi_jobs = ['-j', '%d' % (cpu_count() * 2, )]
configargs = ['--prefix=' + prefix, configargs = ['--build=' + build_target,
'--prefix=' + prefix,
'--libdir=' + libdir, '--libdir=' + libdir,
'--sysconfdir=/etc', '--sysconfdir=/etc',
'--localstatedir=/var', '--localstatedir=/var',
@ -44,8 +65,12 @@ makeargs = ['make']
top_srcdir=os.getcwd() top_srcdir=os.getcwd()
ostbuild_resultdir=top_srcdir
for arg in sys.argv[1:]: for arg in sys.argv[1:]:
if arg.startswith('--'): if arg.startswith('OSTBUILD_RESULTDIR='):
ostbuild_resultdir=arg[20:]
elif arg.startswith('--'):
configargs.append(arg) configargs.append(arg)
else: else:
makeargs.append(arg) makeargs.append(arg)
@ -206,7 +231,7 @@ def phase_build(builddir=None):
phase_make_artifacts(builddir=builddir) phase_make_artifacts(builddir=builddir)
def make_artifact(name, from_files, fakeroot_temp=None, tempdir=None): def make_artifact(name, from_files, fakeroot_temp=None, tempdir=None, resultdir=None):
targz_name = name + '.tar.gz' targz_name = name + '.tar.gz'
(fd,filelist_temp)=tempfile.mkstemp(prefix='ostree-filelist-%s' % (name, )) (fd,filelist_temp)=tempfile.mkstemp(prefix='ostree-filelist-%s' % (name, ))
os.close(fd) os.close(fd)
@ -221,9 +246,13 @@ def make_artifact(name, from_files, fakeroot_temp=None, tempdir=None):
args = ['fakeroot', '-i', fakeroot_temp] args = ['fakeroot', '-i', fakeroot_temp]
else: else:
args = [] args = []
args.extend(['tar', '-c', '-z', '-C', tempdir, '-f', targz_name, '-T', filelist_temp]) if resultdir:
result_path = os.path.join(resultdir, targz_name)
else:
result_path = targz_name
args.extend(['tar', '-c', '-z', '-C', tempdir, '-f', result_path, '-T', filelist_temp])
run_sync(args) run_sync(args)
log("created: %s" % (os.path.abspath (targz_name), )) log("created: %s" % (os.path.abspath (result_path), ))
def phase_make_artifacts(builddir=None): def phase_make_artifacts(builddir=None):
basename=os.path.basename(os.getcwd()) basename=os.path.basename(os.getcwd())
@ -234,7 +263,9 @@ def phase_make_artifacts(builddir=None):
version = subprocess.check_output(['git', 'rev-parse', 'HEAD']) version = subprocess.check_output(['git', 'rev-parse', 'HEAD'])
version = version.strip() version = version.strip()
artifact_prefix='artifact-%s,%s' % (basename, version) version = version.replace(',', '_')
artifact_prefix='artifact-%s-%s,%s' % (build_target, basename, version)
if os.getuid() != 0: if os.getuid() != 0:
(fd,fakeroot_temp)=tempfile.mkstemp(prefix='ostree-fakeroot-%s-' % (basename,)) (fd,fakeroot_temp)=tempfile.mkstemp(prefix='ostree-fakeroot-%s-' % (basename,))
@ -271,8 +302,8 @@ def phase_make_artifacts(builddir=None):
os.chdir(oldpwd) os.chdir(oldpwd)
if devel_files: if devel_files:
make_artifact(artifact_prefix + '-devel', devel_files, fakeroot_temp=fakeroot_temp, tempdir=tempdir) make_artifact(artifact_prefix + '-devel', devel_files, fakeroot_temp=fakeroot_temp, tempdir=tempdir, resultdir=ostbuild_resultdir)
make_artifact(artifact_prefix + '-runtime', runtime_files, fakeroot_temp=fakeroot_temp, tempdir=tempdir) make_artifact(artifact_prefix + '-runtime', runtime_files, fakeroot_temp=fakeroot_temp, tempdir=tempdir, resultdir=ostbuild_resultdir)
def phase_complete(): def phase_complete():
for tmpname in tempfiles: for tmpname in tempfiles:

View File

@ -1,7 +1,21 @@
#!/usr/bin/python #!/usr/bin/python
# #
# Copyright 2010, 2011 Colin Walters <walters@verbum.org> # Copyright (C) 2011 Colin Walters <walters@verbum.org>
# Licensed under the new-BSD license (http://www.opensource.org/licenses/bsd-license.php) #
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
import os,sys,subprocess,tempfile,re import os,sys,subprocess,tempfile,re
import select,time,stat,fcntl import select,time,stat,fcntl