]> git.tdb.fi Git - builder.git/commitdiff
Better way of specifying the source tarball in Build files
authorMikko Rasa <tdb@tdb.fi>
Thu, 19 Jul 2012 12:53:37 +0000 (15:53 +0300)
committerMikko Rasa <tdb@tdb.fi>
Thu, 19 Jul 2012 12:53:37 +0000 (15:53 +0300)
Build
source/sourcepackage.cpp
source/sourcepackage.h

diff --git a/Build b/Build
index d51fa01eefabe7f22e719479450796ada6d25eef..9e7ee86f035ffd7c7c51d3cbc3e51cfba34141ef 100644 (file)
--- a/Build
+++ b/Build
@@ -15,7 +15,7 @@ package "builder"
                install true;
        };
 
-       tarball "@src"
+       source_tarball
        {
                source "bootstrap.sh";
                source "Readme.txt";
index ea63655368b7eadc60b9c4fcdc0335c25f83f18f..e74c0b7540c409fd07e0ed3048dd7ee167da3be4 100644 (file)
@@ -35,6 +35,7 @@ SourcePackage::SourcePackage(Builder &b, const string &n, const FS::Path &f):
        if(!build_file)
                build_file = new File(builder, *this, f);
        components.push_back(Component(*this, Component::TARBALL, "@src"));
+       source_tarball = &components.back();
 }
 
 void SourcePackage::set_build_type(const BuildType &t)
@@ -158,6 +159,7 @@ void SourcePackage::Loader::init(const Config::InputOptions *o)
        add("headers",     &Loader::headers);
        add("install",     &Loader::component<Component::INSTALL>);
        add("datafile",    &Loader::component<Component::DATAFILE>);
+       add("source_tarball", &Loader::source_tarball);
        add("tarball",     &Loader::tarball);
        add("tar_file",    &Loader::tar_file);
 }
@@ -266,13 +268,17 @@ void SourcePackage::Loader::if_feature(const string &cond)
                load_sub_with(*this);
 }
 
+void SourcePackage::Loader::source_tarball()
+{
+       load_sub(*obj.source_tarball);
+}
+
 void SourcePackage::Loader::tarball(const string &n)
 {
        if(n=="@src")
        {
-               for(ComponentList::iterator i=obj.components.begin(); i!=obj.components.end(); ++i)
-                       if(i->get_type()==Component::TARBALL && i->get_name()==n)
-                               load_sub(*i);
+               IO::print("%s: Note: Use source_tarball instead of tarball \"@src\"\n", get_source());
+               load_sub(*obj.source_tarball);
        }
        else
        {
index 97c9b32eb8ffa233ca980892d704a3c5ea1d8d6b..bdcba478262a786d5e3a91369787ec2b00632bb7 100644 (file)
@@ -48,6 +48,7 @@ public:
                void headers(const std::string &);
                void if_arch(const std::string &);
                void if_feature(const std::string &);
+               void source_tarball();
                void tarball(const std::string &);
                void tar_file(const std::string &);
        };
@@ -64,6 +65,7 @@ private:
        FeatureList features;
        BuildInfo build_info;
        ComponentList components;
+       Component *source_tarball;
        Config config;
        mutable Cache cache;