Skip to content

Commit

Permalink
tomato: v0.9.0
Browse files Browse the repository at this point in the history
> Jamming With Edward

  * Remove `repose` dependency for the pacman's tooling.

As `repose` seems to no longer be active, let to use the
proper pacman's tooling, such as `repo-add` and `repo-del`.

NOTE: tomato may not be able to be updated through tomato,
run `tomato --remove-update` or rebuild tomato from AUR.
  • Loading branch information
aji-prod committed Oct 2, 2024
1 parent e0b246d commit 77c247b
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.8.4
pkgver=0.9.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 @@ -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.4;
tomato version [number] # show version 0.9.0;
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.4
Tomato v0.9.0
```

## 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.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
curl -L https://github.com/aji-prod/tomato/releases/download/v0.9.0/tomato-0.9.0-1-any.pkg.tar.zst > tomato-0.9.0-1-any.pkg.tar.zst
pacman -U ./tomato-0.9.0-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.4 --depth 1 https://github.com/aji-prod/tomato/ tomato
git clone --branch v0.9.0 --depth 1 https://github.com/aji-prod/tomato/ tomato
cd tomato
make pkg
pacman -U pkg/tomato-0.8.4-1-any.pkg.tar.zst
pacman -U pkg/tomato-0.9.0-1-any.pkg.tar.zst
```

### Enable [tomato] [pacman repository]
Expand Down Expand Up @@ -353,7 +353,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.4/tomato-0.8.4-1-any.pkg.tar.zst
[prebuilt package]: https://github.com/aji-prod/tomato/releases/download/v0.9.0/tomato-0.9.0-1-any.pkg.tar.zst
[split package]: https://jlk.fjfi.cvut.cz/arch/manpages/man/PKGBUILD.5#PACKAGE_SPLITTING
[systemd timers]: https://wiki.archlinux.org/index.php/Systemd#Timers
[systemd]: https://wiki.archlinux.org/index.php/Systemd
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.4
VERSION=0.9.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.8.4
VERSION=0.9.0
readonly NAME
readonly VERSION

Expand Down

0 comments on commit 77c247b

Please sign in to comment.