From 8df973b24690d0c7d0b38618b4bf3520c3078e2f Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Tue, 10 Jan 2017 21:52:41 -0500 Subject: Another commit ! --- build-build.bst | 10 ++++++++++ build.bst | 10 ++++++++++ dep-one.bst | 16 ++++++++++++++++ dep-two.bst | 18 ++++++++++++++++++ project.conf | 7 +++++++ project.yaml | 6 ------ run-build.bst | 5 +++++ run.bst | 5 +++++ target.bst | 23 +++++++++++++---------- 9 files changed, 84 insertions(+), 16 deletions(-) create mode 100644 build-build.bst create mode 100644 build.bst create mode 100644 dep-one.bst create mode 100644 dep-two.bst create mode 100644 project.conf delete mode 100644 project.yaml create mode 100644 run-build.bst create mode 100644 run.bst diff --git a/build-build.bst b/build-build.bst new file mode 100644 index 00000000..f9fe50fb --- /dev/null +++ b/build-build.bst @@ -0,0 +1,10 @@ +kind: autotools +description: Some kinda autotools element +sources: +- kind: git + url: gnome:glade + track: master + ref: b696f16aceec7562d653510eaf0670c135ad8a5e +config: + configure-commands: + - pony diff --git a/build.bst b/build.bst new file mode 100644 index 00000000..9f3ad36e --- /dev/null +++ b/build.bst @@ -0,0 +1,10 @@ +kind: autotools +description: Some kinda autotools element +config: + configure-commands: + - pony +depends: +- filename: build-build.bst + type: build +- filename: run-build.bst + type: runtime diff --git a/dep-one.bst b/dep-one.bst new file mode 100644 index 00000000..453ad9c6 --- /dev/null +++ b/dep-one.bst @@ -0,0 +1,16 @@ +kind: autotools +description: Some kinda autotools element +sources: +- kind: git + url: gnome:gedit + track: master + submodules: + libgd: + url: gnome:libgd + ref: 3bdfa5764deb9909dae9ef041a7e9b6d6297341a +config: + configure-commands: + - pony +depends: +- filename: build.bst + type: build diff --git a/dep-two.bst b/dep-two.bst new file mode 100644 index 00000000..f438bc67 --- /dev/null +++ b/dep-two.bst @@ -0,0 +1,18 @@ +kind: autotools +description: Some kinda autotools element +config: + configure-commands: + - pony +depends: +- filename: build.bst + type: build +- filename: run.bst + type: runtime +sources: +- kind: git + url: gnome:nautilus + track: master + submodules: + libgd: + url: gnome:libgd + ref: 53cee1de89c5bd9fe2d0c3b68ba78583c7fae6e6 diff --git a/project.conf b/project.conf new file mode 100644 index 00000000..b96f2f22 --- /dev/null +++ b/project.conf @@ -0,0 +1,7 @@ +# Basic project configuration that doesnt override anything +# +name: pony + +aliases: + local: file:///home/tristan/codethink/GNOME/TEST_GIT/ + gnome: git://git.gnome.org/ diff --git a/project.yaml b/project.yaml deleted file mode 100644 index 4aaf1af4..00000000 --- a/project.yaml +++ /dev/null @@ -1,6 +0,0 @@ -# Basic project configuration that doesnt override anything -# -name: pony - -aliases: - local: file:///home/tristan/codethink/GNOME/TEST_GIT/ diff --git a/run-build.bst b/run-build.bst new file mode 100644 index 00000000..cd1f7396 --- /dev/null +++ b/run-build.bst @@ -0,0 +1,5 @@ +kind: autotools +description: Some kinda autotools element +config: + configure-commands: + - pony diff --git a/run.bst b/run.bst new file mode 100644 index 00000000..cd1f7396 --- /dev/null +++ b/run.bst @@ -0,0 +1,5 @@ +kind: autotools +description: Some kinda autotools element +config: + configure-commands: + - pony diff --git a/target.bst b/target.bst index 02351e3a..10a61564 100644 --- a/target.bst +++ b/target.bst @@ -1,18 +1,21 @@ kind: autotools description: Some kinda autotools element sources: -# This one has a comment ! -- kind: git - url: local:repoa - ref: db1710143fccf78c3fa185e33f616361c1cce711 - track: master -- kind: git - url: local:repob - track: master - ref: 162dbaa938ab3de9577beefba9b7f3a3dd09dc2e + # This one has a comment ! + - kind: git + url: local:repoa + track: master + ref: db1710143fccf78c3fa185e33f616361c1cce711 + - kind: git + url: local:repob + track: pony + ref: 5975641ef40174b9ed505b26cdb31c1ac178e258 config: pony-dict: - # Has a comment ! + # Has a comment ! - pony: cheese thisone: 5 +depends: +- dep-one.bst +- dep-two.bst -- cgit v1.2.1