Github messages for voidlinux
 help / color / mirror / Atom feed
From: sgn <sgn@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Closed]: tuxc: remove package
Date: Tue, 12 Jan 2021 01:23:29 +0100	[thread overview]
Message-ID: <20210112002329.Ow37jiV-gBvIHQMoW72DUaYMm-pwpiIHYr9KQ-p1Nug@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-27497@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1307 bytes --]

There's a closed pull request on the void-packages repository

tuxc: remove package
https://github.com/void-linux/void-packages/pull/27497

Description:
It's just a bunch of aliases for xbps and other package managers written in (bad) C.
I think void shouldn't endorse this if there are better ways to do it.

e.g. shell script replacement:
```sh
tux() {
    case "$1" in
        i|install)    sudo xbps-install "${@:2}" ;;
        ri|reinstall) sudo xbps-install -f "${@:2}" ;;
        r|remove)     sudo xbps-remove "${@:2}" ;;
        s|search)     sudo xbps-query -Rs "${@:2}" ;;
        p|purge)      sudo xbps-remove -R "${@:2}" ;;
        u|upgrade)    sudo xbps-install -Su "${@:2}" ;;
        c|clean)      sudo xbps-remove -O "${@:2}" ;;
        su|sup)       sudo xbps-install -Su "${@:2}" ;;
        *) echo -e "\n\nTux: a drop in package manager wrapper\n
Usage: tux [options] [packages]\n
\t[Options]       [Description]\n
\ti  | install    Install Package(s)
\tri | reinstall  Reinstall Package(s)
\tr  | remove     Remove Package(s)
\ts  | search     Search for Packages
\tp  | purge      Remove package(s) and associated files
\tu  | upgrade    Perform System Upgrade
\tc  | clean      Clean Package Cache
\tsu | sup        Sync and Upgrade\n" ;;
    esac
}
```

  parent reply	other threads:[~2021-01-12  0:23 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-28 14:34 [PR PATCH] " tibequadorian
2021-01-06  1:03 ` sgn
2021-01-06 13:12 ` [PR PATCH] [Updated] " tibequadorian
2021-01-07  5:51 ` ericonr
2021-01-07 21:49 ` Chocimier
2021-01-09  0:13 ` [PR PATCH] [Updated] " tibequadorian
2021-01-12  0:20 ` sgn
2021-01-12  0:23 ` sgn
2021-01-12  0:23 ` sgn [this message]
2021-01-13  0:19 ` logenkain
2021-01-13  1:07 ` tibequadorian
2021-01-13  1:09 ` tibequadorian

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210112002329.Ow37jiV-gBvIHQMoW72DUaYMm-pwpiIHYr9KQ-p1Nug@z \
    --to=sgn@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).