Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
madonuko committed Feb 22, 2023
1 parent 4091ebe commit a47868c
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 24 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Cargo workspace
[package]
name = "anda"
version = "0.1.14"
version = "0.1.15"
edition = "2021"
description = "Andaman Build toolchain"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Fyra Labs
Copyright (c) 2022-2023 Fyra Labs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@ Andaman is simply a meta-build system that calls upon other build systems to bui

## How we use it at Fyra Labs

We use Andaman to quickly build packages for our distributions, Ultramarine Linux and tauOS.
The artifacts generated by Andaman are then sent to Subatomic, our compose and repository manager.
We use Andaman to quickly build packages for our distributions, [Ultramarine Linux] and [TauOS].
Another notable usage is the [Terra] repository, which provides more than 1000 packages for Fedora-based distributions.
The artifacts generated by Andaman are then sent to [Subatomic], our compose and repository manager.

## History

The Andaman project has gone through many forms. We initially wrote Andaman as a custom RPM frontend as an alternative to DNF that is similar to that of an AUR helper. However, there were issues with rust and RPM support and we decided to move to a more general CI server based on BuildKit. This however turned into a massive feature creep of projects and so we decided to simply write a build system that can build artifacts for various package formats.

[Subatomic]: https://github.com/FyraLabs/subatomic
[Terra]: https://terra.fyralabs.com
[Ultramarine Linux]: https://ultramarine-linux.org
[TauOS]: https://github.com/tau-OS
2 changes: 1 addition & 1 deletion anda-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anda-config"
description = "Configuration module for Andaman"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "MIT"

Expand Down
2 changes: 1 addition & 1 deletion andax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "andax"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
description = "Andaman scripting runtime"
Expand Down
11 changes: 0 additions & 11 deletions andax/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,6 @@ lazy_static! {

#[instrument(name = "traceback")]
pub fn _tb(proj: &str, scr: &Path, nanitozo: TbErr, pos: Position, rhai_fn: &str, fn_src: &str) {
// {
// let _proj = proj.to_string();
// let _nntz = format!("{nanitozo}");
// let _fn = rhai_fn.to_string();
// let _src = fn_src.to_string();
// let _pos = format!("{pos:?}");
// let _scr = scr.display().to_string();
// std::panic::set_hook(Box::new(move |_| {
// error!(_proj, ?_scr, _nntz, _pos, _fn, _src, "BUG: PANIC during traceback generation");
// }));
// }
if let Some((line, col)) = _gpos(pos) {
// Print code
let f = std::fs::File::open(scr);
Expand Down
2 changes: 1 addition & 1 deletion rust-anda-git.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

%global crate anda

%global _version 0.1.14
%global _version 0.1.15

Name: rust-anda
Version: %{_version}.%{autogitversion}
Expand Down
2 changes: 1 addition & 1 deletion rust-anda.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
%global crate anda

Name: rust-anda
Version: 0.1.14
Version: 0.1.15
Release: 1%{?dist}
Summary: Andaman Build toolchain

Expand Down

0 comments on commit a47868c

Please sign in to comment.