Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] tuxc: remove package
@ 2020-12-28 14:34 tibequadorian
  2021-01-06  1:03 ` sgn
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: tibequadorian @ 2020-12-28 14:34 UTC (permalink / raw)
  To: ml

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

There is a new pull request by tibequadorian against master on the void-packages repository

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

tuxc: remove package
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
}
```

A patch file from https://github.com/void-linux/void-packages/pull/27497.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxc-27497.patch --]
[-- Type: text/x-diff, Size: 1004 bytes --]

From c577143d9bbf8454e391d7596d7c30df50d3aa90 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Mon, 28 Dec 2020 15:21:39 +0100
Subject: [PATCH] tuxc: remove package

---
 srcpkgs/tuxc/template | 16 ----------------
 1 file changed, 16 deletions(-)
 delete mode 100644 srcpkgs/tuxc/template

diff --git a/srcpkgs/tuxc/template b/srcpkgs/tuxc/template
deleted file mode 100644
index 861291aef0b..00000000000
--- a/srcpkgs/tuxc/template
+++ /dev/null
@@ -1,16 +0,0 @@
-# Template file for 'tuxc'
-pkgname=tuxc
-version=1.1
-revision=3
-build_style="gnu-makefile"
-hostmakedepends="pkg-config"
-makedepends="lua53-devel"
-short_desc="Modular universal package manager wrapper"
-maintainer="Logen Kain <logen@sudotask.com>"
-license="ISC"
-homepage="https://github.com/logenkain/tuxc/"
-distfiles="https://github.com/logenkain/${pkgname}/archive/v${version}.tar.gz"
-checksum=164c905c4278422c8d75c7be9dfe3b92d0f820bccdae296b9e0db762f5ef614f
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
@ 2021-01-06  1:03 ` sgn
  2021-01-06 13:12 ` [PR PATCH] [Updated] " tibequadorian
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sgn @ 2021-01-06  1:03 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/27497#issuecomment-754997788

Comment:
You may need to update `removed-packages`, too.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
  2021-01-06  1:03 ` sgn
@ 2021-01-06 13:12 ` tibequadorian
  2021-01-07  5:51 ` ericonr
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: tibequadorian @ 2021-01-06 13:12 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by tibequadorian against master on the void-packages repository

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

tuxc: remove package
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
}
```

A patch file from https://github.com/void-linux/void-packages/pull/27497.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxc-27497.patch --]
[-- Type: text/x-diff, Size: 1400 bytes --]

From e3f9e84c9f4672ed1259b73a4191d9e4b916b7ed Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Mon, 28 Dec 2020 15:21:39 +0100
Subject: [PATCH] tuxc: remove package

---
 srcpkgs/removed-packages/template |  1 +
 srcpkgs/tuxc/template             | 16 ----------------
 2 files changed, 1 insertion(+), 16 deletions(-)
 delete mode 100644 srcpkgs/tuxc/template

diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template
index e0f6a5c17b8..cf9ef759e5f 100644
--- a/srcpkgs/removed-packages/template
+++ b/srcpkgs/removed-packages/template
@@ -83,4 +83,5 @@ replaces="
  wireguard-go<=0.0.20181222_2
  wireshark-gtk<=3.0.7_1
  yt-play<=20140117_2
+ tuxc<=1.1_3
 "
diff --git a/srcpkgs/tuxc/template b/srcpkgs/tuxc/template
deleted file mode 100644
index 861291aef0b..00000000000
--- a/srcpkgs/tuxc/template
+++ /dev/null
@@ -1,16 +0,0 @@
-# Template file for 'tuxc'
-pkgname=tuxc
-version=1.1
-revision=3
-build_style="gnu-makefile"
-hostmakedepends="pkg-config"
-makedepends="lua53-devel"
-short_desc="Modular universal package manager wrapper"
-maintainer="Logen Kain <logen@sudotask.com>"
-license="ISC"
-homepage="https://github.com/logenkain/tuxc/"
-distfiles="https://github.com/logenkain/${pkgname}/archive/v${version}.tar.gz"
-checksum=164c905c4278422c8d75c7be9dfe3b92d0f820bccdae296b9e0db762f5ef614f
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package 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
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ericonr @ 2021-01-07  5:51 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/27497#issuecomment-755901346

Comment:
What's the policy for removed-packages? Should it also be revbumped? @Chocimier 

If so, it should be a separate commit.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (2 preceding siblings ...)
  2021-01-07  5:51 ` ericonr
@ 2021-01-07 21:49 ` Chocimier
  2021-01-09  0:13 ` [PR PATCH] [Updated] " tibequadorian
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Chocimier @ 2021-01-07 21:49 UTC (permalink / raw)
  To: ml

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

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/27497#issuecomment-756407186

Comment:
Yes, as package changes, it needs to be revbumped - to greater than in master by now.
Please also save alphabetical order of packages.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (3 preceding siblings ...)
  2021-01-07 21:49 ` Chocimier
@ 2021-01-09  0:13 ` tibequadorian
  2021-01-12  0:20 ` sgn
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: tibequadorian @ 2021-01-09  0:13 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by tibequadorian against master on the void-packages repository

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

tuxc: remove package
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
}
```

A patch file from https://github.com/void-linux/void-packages/pull/27497.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxc-27497.patch --]
[-- Type: text/x-diff, Size: 1701 bytes --]

From ae98550a61c5223e28d4a4637de5bf98ac5b152d Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Mon, 28 Dec 2020 15:21:39 +0100
Subject: [PATCH] tuxc: remove package

---
 srcpkgs/removed-packages/template |  3 ++-
 srcpkgs/tuxc/template             | 16 ----------------
 2 files changed, 2 insertions(+), 17 deletions(-)
 delete mode 100644 srcpkgs/tuxc/template

diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template
index e07c160eafe..de85e5e4cd0 100644
--- a/srcpkgs/removed-packages/template
+++ b/srcpkgs/removed-packages/template
@@ -1,7 +1,7 @@
 # Template file for 'removed-packages'
 pkgname=removed-packages
 version=0.1
-revision=6
+revision=7
 build_style=meta
 short_desc="Uninstalls packages removed from repository"
 maintainer="Piotr Wójcik <chocimier@tlen.pl>"
@@ -70,6 +70,7 @@ replaces="
  soulseekqt<=20160117_2
  spacefm-ng<=1.0.6_3
  ttyload-git<=20141117_4
+ tuxc<=1.1_3
  urlmatch-git<=20141116_2
  v8<=3.24.35.33_4
  vte<=0.28.2_16
diff --git a/srcpkgs/tuxc/template b/srcpkgs/tuxc/template
deleted file mode 100644
index 861291aef0b..00000000000
--- a/srcpkgs/tuxc/template
+++ /dev/null
@@ -1,16 +0,0 @@
-# Template file for 'tuxc'
-pkgname=tuxc
-version=1.1
-revision=3
-build_style="gnu-makefile"
-hostmakedepends="pkg-config"
-makedepends="lua53-devel"
-short_desc="Modular universal package manager wrapper"
-maintainer="Logen Kain <logen@sudotask.com>"
-license="ISC"
-homepage="https://github.com/logenkain/tuxc/"
-distfiles="https://github.com/logenkain/${pkgname}/archive/v${version}.tar.gz"
-checksum=164c905c4278422c8d75c7be9dfe3b92d0f820bccdae296b9e0db762f5ef614f
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Updated] tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (4 preceding siblings ...)
  2021-01-09  0:13 ` [PR PATCH] [Updated] " tibequadorian
@ 2021-01-12  0:20 ` sgn
  2021-01-12  0:23 ` sgn
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sgn @ 2021-01-12  0:20 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by sgn against master on the void-packages repository

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

tuxc: remove package
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
}
```

A patch file from https://github.com/void-linux/void-packages/pull/27497.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-tuxc-27497.patch --]
[-- Type: text/x-diff, Size: 1701 bytes --]

From ae98550a61c5223e28d4a4637de5bf98ac5b152d Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Mon, 28 Dec 2020 15:21:39 +0100
Subject: [PATCH] tuxc: remove package

---
 srcpkgs/removed-packages/template |  3 ++-
 srcpkgs/tuxc/template             | 16 ----------------
 2 files changed, 2 insertions(+), 17 deletions(-)
 delete mode 100644 srcpkgs/tuxc/template

diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template
index e07c160eafe..de85e5e4cd0 100644
--- a/srcpkgs/removed-packages/template
+++ b/srcpkgs/removed-packages/template
@@ -1,7 +1,7 @@
 # Template file for 'removed-packages'
 pkgname=removed-packages
 version=0.1
-revision=6
+revision=7
 build_style=meta
 short_desc="Uninstalls packages removed from repository"
 maintainer="Piotr Wójcik <chocimier@tlen.pl>"
@@ -70,6 +70,7 @@ replaces="
  soulseekqt<=20160117_2
  spacefm-ng<=1.0.6_3
  ttyload-git<=20141117_4
+ tuxc<=1.1_3
  urlmatch-git<=20141116_2
  v8<=3.24.35.33_4
  vte<=0.28.2_16
diff --git a/srcpkgs/tuxc/template b/srcpkgs/tuxc/template
deleted file mode 100644
index 861291aef0b..00000000000
--- a/srcpkgs/tuxc/template
+++ /dev/null
@@ -1,16 +0,0 @@
-# Template file for 'tuxc'
-pkgname=tuxc
-version=1.1
-revision=3
-build_style="gnu-makefile"
-hostmakedepends="pkg-config"
-makedepends="lua53-devel"
-short_desc="Modular universal package manager wrapper"
-maintainer="Logen Kain <logen@sudotask.com>"
-license="ISC"
-homepage="https://github.com/logenkain/tuxc/"
-distfiles="https://github.com/logenkain/${pkgname}/archive/v${version}.tar.gz"
-checksum=164c905c4278422c8d75c7be9dfe3b92d0f820bccdae296b9e0db762f5ef614f
-post_install() {
-	vlicense LICENSE
-}

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (5 preceding siblings ...)
  2021-01-12  0:20 ` sgn
@ 2021-01-12  0:23 ` sgn
  2021-01-12  0:23 ` [PR PATCH] [Closed]: " sgn
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sgn @ 2021-01-12  0:23 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/27497#issuecomment-758309696

Comment:
Merged. Thanks!

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PR PATCH] [Closed]: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (6 preceding siblings ...)
  2021-01-12  0:23 ` sgn
@ 2021-01-12  0:23 ` sgn
  2021-01-13  0:19 ` logenkain
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: sgn @ 2021-01-12  0:23 UTC (permalink / raw)
  To: ml

[-- 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
}
```

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (7 preceding siblings ...)
  2021-01-12  0:23 ` [PR PATCH] [Closed]: " sgn
@ 2021-01-13  0:19 ` logenkain
  2021-01-13  1:07 ` tibequadorian
  2021-01-13  1:09 ` tibequadorian
  10 siblings, 0 replies; 12+ messages in thread
From: logenkain @ 2021-01-13  0:19 UTC (permalink / raw)
  To: ml

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

New comment by logenkain on void-packages repository

https://github.com/void-linux/void-packages/pull/27497#issuecomment-759119981

Comment:
Yup, that was my (bad) C from a long time ago. I probably should go ahead and rewrite that.

Though now than I'm thinking about it, it would be nice if xbps had a built in wrapper for some of the more common commands. I think the first thing I did way back when I first used void was write a quick script to alias xbps commands to pacman commands.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (8 preceding siblings ...)
  2021-01-13  0:19 ` logenkain
@ 2021-01-13  1:07 ` tibequadorian
  2021-01-13  1:09 ` tibequadorian
  10 siblings, 0 replies; 12+ messages in thread
From: tibequadorian @ 2021-01-13  1:07 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/27497#issuecomment-759136296

Comment:
hey nothing personal :D mine is no better ... a compiled language is just probably not the right choice in this case.
When I deploy a new void linux installation I always install `xtools` first because it has most aliases I need and if not I can easily create them. Creating your own aliases is much more simple and extensible in my opinion and this is what I would recommend.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: tuxc: remove package
  2020-12-28 14:34 [PR PATCH] tuxc: remove package tibequadorian
                   ` (9 preceding siblings ...)
  2021-01-13  1:07 ` tibequadorian
@ 2021-01-13  1:09 ` tibequadorian
  10 siblings, 0 replies; 12+ messages in thread
From: tibequadorian @ 2021-01-13  1:09 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/27497#issuecomment-759136296

Comment:
hey nothing personal :D mine is no better ... a compiled language is just probably not the right choice in this case.
When I deploy a new void linux installation I always install `xtools` first because it has most aliases I need and if not I can easily create them. Creating your own aliases is much more simple and extensible and this is what I would recommend.

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2021-01-13  1:09 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-28 14:34 [PR PATCH] tuxc: remove package 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 ` [PR PATCH] [Closed]: " sgn
2021-01-13  0:19 ` logenkain
2021-01-13  1:07 ` tibequadorian
2021-01-13  1:09 ` tibequadorian

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).