mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-23 21:35:26 +03:00
f4aba2a339
First, "resolve" now just picks git commits. We don't expand config-opts and patches, nor do we generate tree contents. This makes the generated files *much* more human editable. Next, fold "build-components" and "compose" into just "build". One never really wants to just build components. This lets us eliminate binary snapshots as a concept; instead we always have a combination of source snapshot and component/ refs.
58 lines
2.4 KiB
Plaintext
58 lines
2.4 KiB
Plaintext
# Copyright (C) 2011 Colin Walters <walters@verbum.org>
|
|
#
|
|
# 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: src/ostbuild/ostbuild.in Makefile
|
|
sed -e s,@libdir\@,$(libdir), -e s,@datarootdir\@,$(datarootdir), -e s,@PYTHON\@,$(PYTHON), $< > $@.tmp && mv $@.tmp $@
|
|
bin_SCRIPTS += ostbuild
|
|
EXTRA_DIST += src/ostbuild/ostbuild.in
|
|
|
|
pyostbuilddir=$(libdir)/ostbuild/pyostbuild
|
|
pyostbuild_PYTHON = \
|
|
src/ostbuild/pyostbuild/buildutil.py \
|
|
src/ostbuild/pyostbuild/builtin_branch_prefix.py \
|
|
src/ostbuild/pyostbuild/builtin_build.py \
|
|
src/ostbuild/pyostbuild/builtin_checkout.py \
|
|
src/ostbuild/pyostbuild/builtin_chroot_compile_one.py \
|
|
src/ostbuild/pyostbuild/builtin_compile_one.py \
|
|
src/ostbuild/pyostbuild/builtin_deploy_qemu.py \
|
|
src/ostbuild/pyostbuild/builtin_deploy_root.py \
|
|
src/ostbuild/pyostbuild/builtin_import_tree.py \
|
|
src/ostbuild/pyostbuild/builtin_pull_components.py \
|
|
src/ostbuild/pyostbuild/builtin_privhelper_deploy_qemu.py \
|
|
src/ostbuild/pyostbuild/builtin_git_mirror.py \
|
|
src/ostbuild/pyostbuild/builtin_prefix.py \
|
|
src/ostbuild/pyostbuild/builtin_resolve.py \
|
|
src/ostbuild/pyostbuild/builtin_init.py \
|
|
src/ostbuild/pyostbuild/builtin_status.py \
|
|
src/ostbuild/pyostbuild/builtins.py \
|
|
src/ostbuild/pyostbuild/filemonitor.py \
|
|
src/ostbuild/pyostbuild/fileutil.py \
|
|
src/ostbuild/pyostbuild/__init__.py \
|
|
src/ostbuild/pyostbuild/jsondb.py \
|
|
src/ostbuild/pyostbuild/kvfile.py \
|
|
src/ostbuild/pyostbuild/main.py \
|
|
src/ostbuild/pyostbuild/mainloop.py \
|
|
src/ostbuild/pyostbuild/odict.py \
|
|
src/ostbuild/pyostbuild/ostbuildlog.py \
|
|
src/ostbuild/pyostbuild/ostbuildrc.py \
|
|
src/ostbuild/pyostbuild/privileged_subproc.py \
|
|
src/ostbuild/pyostbuild/warningfilter.py \
|
|
src/ostbuild/pyostbuild/subprocess_helpers.py \
|
|
src/ostbuild/pyostbuild/vcs.py \
|
|
$(NULL)
|
|
|