Crates.io | tiempo |
lib.rs | tiempo |
version | 1.11.1 |
source | src |
created_at | 2021-08-14 16:55:48.180152 |
updated_at | 2024-07-04 12:45:59.971841 |
description | A command line time tracker |
homepage | https://gitlab.com/categulario/tiempo-rs |
repository | https://gitlab.com/categulario/tiempo-rs |
max_upload_size | |
id | 436644 |
size | 533,400 |
A timetrap compatible command line time tracking application. Read the fine manual. Chat in the matrix room #tiempo:matrix.cuates.net.
There are both binary and source packages in the AUR:
Go to gitlab releases page
and grab the latest binary for your linux. There is a .deb
file for Debian and
Ubuntu as well as a binary for any x86_64
Linux.
In the case of the tar archive you just need to run the included install.sh
script.
You have cargo
! you can run:
cargo install tiempo
However that will not install the beautiful man page. Although you can still see it at https://tiempo.categulario.xyz .
You need to compile tiempo
by yourself. But don't worry! It is not that hard.
Just clone the repository, make sure
you have rust installed and run:
cargo build --release
inside the repository. The binary will be named t
(or t.exe
if you use
windows) and it is located inside the target/release
directory that was
created during compilation.
You need rust, then clone the repo and simply run
cargo test
to check that everything is working, and then
cargo build --release
to have a binary at target/release/t
that you can then move to a
directory in your PATH
or use it by its absoulte or relative paths.
Run
t --help
to see the options.
When developing I prefer not to mess with my own database, so I use this .env
file:
export TIMETRAP_CONFIG_FILE=/absolute/path/to/repo/dev_config.toml
PS1="$ "
and when I want to test some commands against such config file I just source it:
source .env
cargo run -- in 'hola'
The docs are written using sphinx. To
install the required dependencies enter the docs
directory and create a virual
environment:
virtualenv .venv
then activate it and install the dependencies:
source .venv/bin/activate
pip install -r requirements.txt
To build the docs just do:
make html
for the html version (output located at docs/build/html
), or
make man
for the man page (output located at docs/build/man/tiempo.1
). To test the man
page you can do:
man -l build/man/tiempo.1
To get a live-reloaded server with the html docs do:
sphinx-autobuild source/ build/html/
The contents of the man page are located in docs/source/index.rst
,
formatted as
reStructuredText.
First pull the image:
podman pull tiempo-build-env
Or build it yourself from this repo:
podman build -t docker.io/categulario/tiempo-build-env .
Then build the artifacts:
./scripts/podman-build.sh
To build the archlinux PKGBUILDs (depends on the artifacts folder created by the previous command):
./scripts/podman-build-aur-bin.sh
./scripts/podman-build-aur-git.sh
Both of the previous commands produce PKGBUILDs in the current directory so if you run both sequentially you'll lose the PKGBUILD of the first command.
To timetrap for existing, to samg for creating it. It is the tool I was looking for and whose design I took as reference, keeping compatibility when possible.
(mostly to remind myself)
CHANGELOG.md
with the target version, commit itvbump