From 77c247bc80694d9934dba7924454bcc3405c5eb2 Mon Sep 17 00:00:00 2001 From: aji <43468383+aji-prod@users.noreply.github.com> Date: Wed, 2 Oct 2024 21:50:10 +0200 Subject: [PATCH] tomato: v0.9.0 > 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. --- PKGBUILD | 2 +- README.md | 14 +++++++------- docker/tomato.sh | 2 +- tomato | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index f6d5723..36bcf33 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer : aji <43468383+aji-prod@users.noreply.github.com> pkgname=tomato -pkgver=0.8.4 +pkgver=0.9.0 pkgrel=1 pkgdesc="AUR local repository manager" arch=('any') diff --git a/README.md b/README.md index af46657..d7b4025 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ operations: tomato list [all|status|split] # list maintained packages; tomato search # 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, @@ -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 @@ -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] @@ -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] @@ -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 diff --git a/docker/tomato.sh b/docker/tomato.sh index 857b3f4..edb257d 100644 --- a/docker/tomato.sh +++ b/docker/tomato.sh @@ -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" diff --git a/tomato b/tomato index fb91745..d6e9c69 100755 --- a/tomato +++ b/tomato @@ -1,6 +1,6 @@ #!/bin/sh NAME=$(basename ${0:-tomato}) -VERSION=0.8.4 +VERSION=0.9.0 readonly NAME readonly VERSION