summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-10-14 09:12:23 +0200
committerMatthias Beyer <mail@beyermatthias.de>2020-10-14 09:12:28 +0200
commit57950548dbc8f7cb8df7968e061889bf15ff349c (patch)
tree77b54027a148d32058912f9a13ec83815bfe2c1c
parent71a54205d7a4052a29eef852a01371dccfce6c08 (diff)
Rename: yabos -> butido
Because, after some google-fu, I noticed that "yabos" is indeed not a very good or even decent name for a piece of software. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--Cargo.toml2
-rw-r--r--README.md10
-rw-r--r--examples/packages/example_1/Makefile2
-rw-r--r--examples/packages/example_1/config.toml4
-rw-r--r--examples/packages/example_2/Makefile2
-rw-r--r--examples/packages/example_2/config.toml4
-rw-r--r--src/cli.rs2
7 files changed, 16 insertions, 10 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6eb2511..eb6b01f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "yabos"
+name = "butido"
version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
edition = "2018"
diff --git a/README.md b/README.md
index 80a2760..32120e1 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,9 @@
-# YABOS
+# BUTIDO
+
+"butido" could stand for "but i do", "BUild Things In DOcker" or
+"Better Universal Task Instrumentation Docker Obersavtor".
+
+Anyways, it is a tool for building packages for linux distributions in docker
+and it does not make assumptions about the build procedure itself (and thus can
+build .rpm, .deb, or any other package format your scripts can build).
-Yet Another Build Orchestration System
diff --git a/examples/packages/example_1/Makefile b/examples/packages/example_1/Makefile
index 52c87ef..fca5cb0 100644
--- a/examples/packages/example_1/Makefile
+++ b/examples/packages/example_1/Makefile
@@ -1,4 +1,4 @@
-REPO=/tmp/yabos_example_1
+REPO=/tmp/butido_example_1
setup:
@echo Setting up repository in ${REPO}
diff --git a/examples/packages/example_1/config.toml b/examples/packages/example_1/config.toml
index dc56f49..db34ede 100644
--- a/examples/packages/example_1/config.toml
+++ b/examples/packages/example_1/config.toml
@@ -1,7 +1,7 @@
-# Configuration file for YABOS for this repository
+# Configuration file for BUTIDO for this repository
# repository of package definitions
-repository = "/tmp/yabos_example_1"
+repository = "/tmp/butido_example_1"
# Phases which can be configured in the packages
available_phases = [ "unpack", "build", "install", "package" ]
diff --git a/examples/packages/example_2/Makefile b/examples/packages/example_2/Makefile
index 330a9c2..5c7df20 100644
--- a/examples/packages/example_2/Makefile
+++ b/examples/packages/example_2/Makefile
@@ -1,4 +1,4 @@
-REPO=/tmp/yabos_example_2
+REPO=/tmp/butido_example_2
setup:
@echo Setting up repository in ${REPO}
diff --git a/examples/packages/example_2/config.toml b/examples/packages/example_2/config.toml
index a461e46..2a241f0 100644
--- a/examples/packages/example_2/config.toml
+++ b/examples/packages/example_2/config.toml
@@ -1,7 +1,7 @@
-# Configuration file for YABOS for this repository
+# Configuration file for BUTIDO for this repository
# repository of package definitions
-repository = "/tmp/yabos_example_2"
+repository = "/tmp/butido_example_2"
# Phases which can be configured in the packages
available_phases = [ "unpack", "build", "install", "package" ]
diff --git a/src/cli.rs b/src/cli.rs
index 47ebbc9..92538d1 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -5,7 +5,7 @@ use clap::crate_authors;
use clap::crate_version;
pub fn cli<'a>() -> App<'a> {
- App::new("yabos")
+ App::new("butido")
.author(crate_authors!())
.version(crate_version!())
.about("Generic Build Orchestration System for building linux packages with docker")