Skip to content

Commit

Permalink
tomato: 0.8.4
Browse files Browse the repository at this point in the history
> I'm not a criminal. Woah, that makes me sound more like a criminal, doesn't it.

  * Let tomato repository to be in the `alpm` user group;
  * Fix pikaur invalid configuration;
  * Fix makepkg out of date.
  • Loading branch information
aji-prod committed Sep 24, 2024
1 parent 4aa3be3 commit 5c326b0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer : aji <[email protected]>
pkgname=tomato
pkgver=0.8.3
pkgrel=2
pkgver=0.8.4
pkgrel=1
pkgdesc="AUR local repository manager"
arch=('any')
url="https://github.com/aji-prod/tomato"
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ operations:
tomato list [all|status|split]
# list maintained packages;
tomato search <package(s)> # search an AUR package;
tomato version [number] # show version 0.8.3;
tomato version [number] # show version 0.8.4;
tomato (usage|help) # this help message.

tomato -Syu # or any other short variant (-Syuu, -Suy,
Expand All @@ -47,7 +47,7 @@ options:
tomato --remote-update # update tomato from the remote pre-built
# package.

Tomato v0.8.3
Tomato v0.8.4
```

## Installation
Expand All @@ -59,8 +59,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.8.3/tomato-0.8.3-1-any.pkg.tar.zst > tomato-0.8.3-1-any.pkg.tar.zst
pacman -U ./tomato-0.8.3-1-any.pkg.tar.zst
curl -L https://github.com/aji-prod/tomato/releases/download/v0.8.4/tomato-0.8.4-1-any.pkg.tar.zst > tomato-0.8.4-1-any.pkg.tar.zst
pacman -U ./tomato-0.8.4-1-any.pkg.tar.zst
```

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

```sh
git clone --branch v0.8.3 --depth 1 https://github.com/aji-prod/tomato/ tomato
git clone --branch v0.8.4 --depth 1 https://github.com/aji-prod/tomato/ tomato
cd tomato
make pkg
pacman -U pkg/tomato-0.8.3-1-any.pkg.tar.zst
pacman -U pkg/tomato-0.8.4-1-any.pkg.tar.zst
```

### Enable [tomato] [pacman repository]
Expand Down Expand Up @@ -354,7 +354,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.8.3/tomato-0.8.3-1-any.pkg.tar.zst
[prebuilt package]: https://github.com/aji-prod/tomato/releases/download/v0.8.4/tomato-0.8.4-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.8.3
VERSION=0.8.4

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.8.3
VERSION=0.8.4
readonly NAME
readonly VERSION

Expand Down

0 comments on commit 5c326b0

Please sign in to comment.