Skip to content

Commit

Permalink
tomato v0.6.0
Browse files Browse the repository at this point in the history
  * Add `tomato status` command alias to `tomato list status` (not
    documented);
  * Add `tomato` with no verb to attach the running tomato image, if
    any, to the current console (not documented);
  * Fix some completions;
  * Fix `tomato list status` error if no database exists.
  • Loading branch information
aji-prod committed Sep 26, 2021
1 parent 1cb5309 commit a853069
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer : aji <[email protected]>
pkgname=tomato
pkgver=0.5.1
pkgver=0.6.0
pkgrel=1
pkgdesc="AUR local repository manager"
arch=('any')
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ operations:
tomato list [all|status|split]
# list maintained packages;
tomato search <package(s)> # search an AUR package;
tomato version [number] # show version 0.5.1;
tomato version [number] # show version 0.6.0;
tomato (usage|help) # this help message.

tomato -Syu # or any other short variant (-Syuu, -Suy,
Expand All @@ -41,7 +41,7 @@ options:
tomato --tomato-config <path> # path to custom tomato config;
tomato --edit # prompt to edit PKGBUILDs or build files.

Tomato v0.5.1
Tomato v0.6.0
```

## Installation
Expand All @@ -53,8 +53,8 @@ options:
[tomato] provides a [prebuilt package] with no other dependencies than [pacman] and can be installed with a [pacman install command]:

```sh
curl -L https://github.com/aji-prod/tomato/releases/download/v0.5.1/tomato-0.5.1-1-any.pkg.tar.zst > tomato-0.5.1-1-any.pkg.tar.zst
pacman -U ./tomato-0.5.1-1-any.pkg.tar.zst
curl -L https://github.com/aji-prod/tomato/releases/download/v0.6.0/tomato-0.6.0-1-any.pkg.tar.zst > tomato-0.6.0-1-any.pkg.tar.zst
pacman -U ./tomato-0.6.0-1-any.pkg.tar.zst
```

#### As an [AUR package]
Expand All @@ -64,10 +64,10 @@ The [AUR package] can be installed with [makepkg] or any other [AUR helper].
#### From sources

```sh
git clone --branch v0.5.1 --depth 1 https://github.com/aji-prod/tomato/ tomato
git clone --branch v0.6.0 --depth 1 https://github.com/aji-prod/tomato/ tomato
cd tomato
make pkg
pacman -U pkg/tomato-0.5.1-1-any.pkg.tar.zst
pacman -U pkg/tomato-0.6.0-1-any.pkg.tar.zst
```

### Enable [tomato] [pacman repository]
Expand Down Expand Up @@ -330,7 +330,7 @@ Or you can try to repeat indefinitely and rapidly _"automate AUR"_.
[pacman.conf]: https://wiki.archlinux.org/index.php/Pacman#Configuration
[pacman]: https://wiki.archlinux.org/index.php/Pacman
[pikaur]: https://github.com/actionless/pikaur
[prebuilt package]: https://github.com/aji-prod/tomato/releases/download/v0.5.1/tomato-0.5.1-1-any.pkg.tar.zst
[prebuilt package]: https://github.com/aji-prod/tomato/releases/download/v0.6.0/tomato-0.6.0-1-any.pkg.tar.zst
[repose]: https://github.com/vodik/repose
[split package]: https://jlk.fjfi.cvut.cz/arch/manpages/man/PKGBUILD.5#PACKAGE_SPLITTING
[systemd timers]: https://wiki.archlinux.org/index.php/Systemd#Timers
Expand Down
2 changes: 1 addition & 1 deletion docker/tomato.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

NAME="tomato"
VERSION=0.5.1
VERSION=0.6.0

REPODIR="${REPODIR:-/var/pkg/${NAME}}"
REPOLST="${REPODIR}/${NAME}.pkglist"
Expand Down
2 changes: 1 addition & 1 deletion tomato
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
NAME=$(basename ${0:-tomato})
VERSION=0.5.1
VERSION=0.6.0
readonly NAME
readonly VERSION

Expand Down

0 comments on commit a853069

Please sign in to comment.