Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Sep 2022 14:50:29 +0200
From:      Rodrigo Osorio <rodrigo@osorio.me>
To:        Piotr Kubaj <pkubaj@anongoth.pl>, =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernando.apesteguia@gmail.com>
Cc:        Gleb Popov <arrowd@freebsd.org>, ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org
Subject:   Re: git: 690a4c91c944 - main - sysutils/bsdebfetch: + Simple system info tool in bash
Message-ID:  <b53575e5-6431-a139-1baf-5cec0957c40c@osorio.me>
In-Reply-To: <YzWRGEGVEOzVzC5w@talos>
References:  <202209291218.28TCI0G0066014@gitrepo.freebsd.org> <CAGwOe2aBxSZQ4HgH3bsb%2Bc80zCjWq6iYzzCv6a5S6mOuM7pdqQ@mail.gmail.com> <YzWRGEGVEOzVzC5w@talos>

next in thread | previous in thread | raw e-mail | index | archive | help
Hi,

Sorry but I have to complain, the he package name is
confusing bsdebfetch is a bsdinfo like tool write in
shell -see the console output in the git repo[1] -
and not a fetch tool.

In my opinion a port for a wrapper around a couple of
shell commands is probably not the best candidate for
packaging, but If you wrote a bsd dedicated tool, having
bsd in its own name at least try to chose a proper license
and GPLv3 is clearly not my first choice.

My two cents,
-- rodrigo

[1] https://git.sr.ht/~shiorid/bsdebfetch/blob/main/screenshot.png

On 9/29/22 14:35, Piotr Kubaj wrote:
> Add rsfetch :)
>
> On 22-09-29 14:27:30, Fernando ApesteguĂ­a wrote:
>> On Thu, Sep 29, 2022 at 2:18 PM Gleb Popov <arrowd@freebsd.org> wrote:
>>> The branch main has been updated by arrowd:
>>>
>>> URL: https://cgit.FreeBSD.org/ports/commit/?id=690a4c91c9449548ae9f2c0c867694970e12d110
>>>
>>> commit 690a4c91c9449548ae9f2c0c867694970e12d110
>>> Author:     Filipe da Silva Santos <contact@shiori.com.br>
>>> AuthorDate: 2022-09-29 11:50:29 +0000
>>> Commit:     Gleb Popov <arrowd@FreeBSD.org>
>>> CommitDate: 2022-09-29 12:17:37 +0000
>>>
>>>      sysutils/bsdebfetch: + Simple system info tool in bash
>>>
>>>      Summary:
>>>      BSDebfetch is a simple yet beautiful system information tool for FreeBSD
>>>      based on Debfetch, written in GNU Bash.
>> Not that I complain, but how many of these do we have now in the ports? :-)
>>
>> neofetch
>> onefetch
>> pfetch
>> screenfetch
>> ufetch
>>
>> How different are they from each other?
>> I talked a submitter out of committing another similar one because as
>> he admitted, it did not add any value in terms of new features
>> whatsoever.
>>
>> Cheers.
>>>      WWW: https://git.sr.ht/~shiorid/bsdebfetch
>>>
>>>      Test Plan: Both ` poudriere testport` and `portlint -A` doesn't complain.
>>>
>>>      Reviewed by: arrowd
>>>
>>>      Differential Revision: https://reviews.freebsd.org/D34337
>>> ---
>>>   sysutils/Makefile             |  1 +
>>>   sysutils/bsdebfetch/Makefile  | 21 +++++++++++++++++++++
>>>   sysutils/bsdebfetch/distinfo  |  3 +++
>>>   sysutils/bsdebfetch/pkg-descr |  2 ++
>>>   4 files changed, 27 insertions(+)
>>>
>>> diff --git a/sysutils/Makefile b/sysutils/Makefile
>>> index 9e88daddf4ef..f99cabdb71c0 100644
>>> --- a/sysutils/Makefile
>>> +++ b/sysutils/Makefile
>>> @@ -138,6 +138,7 @@
>>>       SUBDIR += bsd-splash-changer
>>>       SUBDIR += bsdconfig
>>>       SUBDIR += bsdcrashtar
>>> +    SUBDIR += bsdebfetch
>>>       SUBDIR += bsdfan
>>>       SUBDIR += bsdhwmon
>>>       SUBDIR += bsdinfo
>>> diff --git a/sysutils/bsdebfetch/Makefile b/sysutils/bsdebfetch/Makefile
>>> new file mode 100644
>>> index 000000000000..811d1c7c8c45
>>> --- /dev/null
>>> +++ b/sysutils/bsdebfetch/Makefile
>>> @@ -0,0 +1,21 @@
>>> +PORTNAME=      bsdebfetch
>>> +DISTVERSION=   1.1-bsd
>>> +CATEGORIES=    sysutils
>>> +MASTER_SITES=  https://git.sr.ht/~shiorid/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/
>>> +
>>> +MAINTAINER=    ports@shiori.com.br
>>> +COMMENT=       Simple system info tool written in bash
>>> +WWW=           https://git.sr.ht/~shiorid/bsdebfetch
>>> +
>>> +LICENSE=       GPLv3
>>> +LICENSE_FILE=  ${WRKSRC}/LICENSE
>>> +
>>> +RUN_DEPENDS=   bash:shells/bash
>>> +
>>> +NO_ARCH=       yes
>>> +NO_BUILD=      yes
>>> +
>>> +PLIST_FILES=   bin/bsdebfetch \
>>> +               share/man/man1/bsdebfetch.1.gz
>>> +
>>> +.include <bsd.port.mk>
>>> diff --git a/sysutils/bsdebfetch/distinfo b/sysutils/bsdebfetch/distinfo
>>> new file mode 100644
>>> index 000000000000..13e293fdae6b
>>> --- /dev/null
>>> +++ b/sysutils/bsdebfetch/distinfo
>>> @@ -0,0 +1,3 @@
>>> +TIMESTAMP = 1645509241
>>> +SHA256 (bsdebfetch-1.1-bsd.tar.gz) = b3eba6f94e7a3f57769b3a90a10276a6ffefc9ad1f2802e75c9a3031ab21197f
>>> +SIZE (bsdebfetch-1.1-bsd.tar.gz) = 40372
>>> diff --git a/sysutils/bsdebfetch/pkg-descr b/sysutils/bsdebfetch/pkg-descr
>>> new file mode 100644
>>> index 000000000000..d2ec4acee9ac
>>> --- /dev/null
>>> +++ b/sysutils/bsdebfetch/pkg-descr
>>> @@ -0,0 +1,2 @@
>>> +BSDebfetch is a simple yet beautiful system information tool for FreeBSD
>>> +based on Debfetch, written in GNU Bash.





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?b53575e5-6431-a139-1baf-5cec0957c40c>