* [PATCH] Add bwm-ng.
@ 2016-08-24 19:25 Arun
2016-08-27 12:06 ` ng0
2016-08-27 19:42 ` Ricardo Wurmus
0 siblings, 2 replies; 6+ messages in thread
From: Arun @ 2016-08-24 19:25 UTC (permalink / raw)
To: guix-devel@gnu.org
[-- Attachment #1.1: Type: text/plain, Size: 103 bytes --]
Please find attached patch to add new package 'bwm-ng' to (gnu packages
admin).
Regards,
Arun Isaac
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-Add-bwm-ng.patch --]
[-- Type: text/x-patch, Size: 1483 bytes --]
From 2a88508183f9b8005c2a0694992f1b3ae4208049 Mon Sep 17 00:00:00 2001
From: Arun Isaac <arunisaac@systemreboot.net>
Date: Wed, 24 Aug 2016 23:49:46 +0530
Subject: [PATCH] gnu: Add bwm-ng.
To: guix-devel@gnu.org
* gnu/packages/admin.scm (bwm-ng): New variable.
---
gnu/packages/admin.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 3ba5947..d3da2d8 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1767,3 +1767,21 @@ the status of your battery in the system tray.")
shortcut syntax and completion options.")
(home-page "https://github.com/TrilbyWhite/interrobang")
(license license:gpl3+))))
+
+(define-public bwm-ng
+ (package
+ (name "bwm-ng")
+ (version "0.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://www.gropp.org/bwm-ng/bwm-ng-" version ".tar.gz"))
+ (sha256 (base32 "1w0dwpjjm9pqi613i8glxrgca3rdyqyp3xydzagzr5ndc34z6z02"))))
+ (build-system gnu-build-system)
+ (inputs `(("ncurses" ,ncurses)))
+ (synopsis "Console based live network and disk I/O bandwidth monitor")
+ (description "Bandwidth Monitor NG is a small and simple
+console based live network and disk I/O bandwidth monitor for Linux,
+BSD, Solaris, Mac OS X and others.")
+ (home-page "https://www.gropp.org/?id=projects&sub=bwm-ng")
+ (license license:gpl2)))
--
2.9.3
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Add bwm-ng.
2016-08-24 19:25 [PATCH] Add bwm-ng Arun
@ 2016-08-27 12:06 ` ng0
2016-08-27 17:16 ` Arun Isaac
2016-08-27 19:42 ` Ricardo Wurmus
1 sibling, 1 reply; 6+ messages in thread
From: ng0 @ 2016-08-27 12:06 UTC (permalink / raw)
To: Arun, guix-devel@gnu.org
Hi Arun,
thanks for your contribution.
Arun <arunisaac@systemreboot.net> writes:
> [ Unknown signature status ]
>
> Please find attached patch to add new package 'bwm-ng' to (gnu packages
> admin).
>
> Regards,
> Arun Isaac
>
> From 2a88508183f9b8005c2a0694992f1b3ae4208049 Mon Sep 17 00:00:00 2001
> From: Arun Isaac <arunisaac@systemreboot.net>
> Date: Wed, 24 Aug 2016 23:49:46 +0530
> Subject: [PATCH] gnu: Add bwm-ng.
> To: guix-devel@gnu.org
>
> * gnu/packages/admin.scm (bwm-ng): New variable.
> ---
> gnu/packages/admin.scm | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 3ba5947..d3da2d8 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -1767,3 +1767,21 @@ the status of your battery in the system tray.")
> shortcut syntax and completion options.")
> (home-page "https://github.com/TrilbyWhite/interrobang")
> (license license:gpl3+))))
> +
> +(define-public bwm-ng
> + (package
> + (name "bwm-ng")
> + (version "0.6.1")
> + (source
> + (origin
> + (method url-fetch)
The package is good and well written. Whoever commits it, can make the
stylistic adjustments. I can not commit, but I can tell you that your
package builds here and that the section below will be corrected to
> + (uri (string-append "https://www.gropp.org/bwm-ng/bwm-ng-" version ".tar.gz"))
> + (sha256 (base32 "1w0dwpjjm9pqi613i8glxrgca3rdyqyp3xydzagzr5ndc34z6z02"))))
(uri
(string-append "https://www.gropp.org/bwm-ng/"
name "-" version ".tar.gz"))
(sha256
(base32
"1w0dwpjjm9pqi613i8glxrgca3rdyqyp3xydzagzr5ndc34z6z02"))))
Or something similar to this. These are just minor details, so don't
worry about them now, same goes for:
> + (build-system gnu-build-system)
> + (inputs `(("ncurses" ,ncurses)))
(inputs
`(("ncurses" ,ncurses)))
which would be my choice, but a simple one line works too.
> + (synopsis "Console based live network and disk I/O bandwidth monitor")
> + (description "Bandwidth Monitor NG is a small and simple
> +console based live network and disk I/O bandwidth monitor for Linux,
> +BSD, Solaris, Mac OS X and others.")
> + (home-page "https://www.gropp.org/?id=projects&sub=bwm-ng")
> + (license license:gpl2)))
> --
> 2.9.3
>
For a first(?) package this is very good.
Other than these changes, which the person commiting your patch can
apply on your behalf, it looks good to me!
--
ng0
For non-prism friendly talk find me on http://www.psyced.org
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add bwm-ng.
2016-08-27 12:06 ` ng0
@ 2016-08-27 17:16 ` Arun Isaac
0 siblings, 0 replies; 6+ messages in thread
From: Arun Isaac @ 2016-08-27 17:16 UTC (permalink / raw)
To: guix-devel@gnu.org
[-- Attachment #1: Type: text/plain, Size: 207 bytes --]
> For a first(?) package this is very good.
> Other than these changes, which the person commiting your patch can
> apply on your behalf, it looks good to me!
Yes, this is my first package. Thank you! :-)
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add bwm-ng.
2016-08-24 19:25 [PATCH] Add bwm-ng Arun
2016-08-27 12:06 ` ng0
@ 2016-08-27 19:42 ` Ricardo Wurmus
2016-08-28 0:19 ` Arun Isaac
1 sibling, 1 reply; 6+ messages in thread
From: Ricardo Wurmus @ 2016-08-27 19:42 UTC (permalink / raw)
To: Arun; +Cc: guix-devel@gnu.org
Hi Arun,
> Please find attached patch to add new package 'bwm-ng' to (gnu packages
> admin).
thanks for the patch. I’ve made a couple of cosmetic changes and
removed the list of supported operating systems from the description. I
also moved it from admin.scm to networking.scm where we already have a
couple of network monitoring packages.
I’d like to add a copyright line to the header, like this:
;;; Coypright © 2016 Arun Isaac <arunisaac@systemreboot.net>
Is this okay or would you like some other email address to be listed
there? Once I get your okay I’ll push the commit to master.
Thanks again!
~~ Ricardo
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add bwm-ng.
2016-08-27 19:42 ` Ricardo Wurmus
@ 2016-08-28 0:19 ` Arun Isaac
2016-08-28 7:50 ` Ricardo Wurmus
0 siblings, 1 reply; 6+ messages in thread
From: Arun Isaac @ 2016-08-28 0:19 UTC (permalink / raw)
To: guix-devel@gnu.org
[-- Attachment #1: Type: text/plain, Size: 587 bytes --]
> thanks for the patch. I’ve made a couple of cosmetic changes and
> removed the list of supported operating systems from the description. I
> also moved it from admin.scm to networking.scm where we already have a
> couple of network monitoring packages.
Sure.
> I’d like to add a copyright line to the header, like this:
>
> ;;; Coypright © 2016 Arun Isaac <arunisaac@systemreboot.net>
>
> Is this okay or would you like some other email address to be listed
> there? Once I get your okay I’ll push the commit to master.
Yeah, this is fine. Thank you!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add bwm-ng.
2016-08-28 0:19 ` Arun Isaac
@ 2016-08-28 7:50 ` Ricardo Wurmus
0 siblings, 0 replies; 6+ messages in thread
From: Ricardo Wurmus @ 2016-08-28 7:50 UTC (permalink / raw)
To: Arun Isaac; +Cc: guix-devel@gnu.org
Arun Isaac <arunisaac@systemreboot.net> writes:
>> thanks for the patch. I’ve made a couple of cosmetic changes and
>> removed the list of supported operating systems from the description. I
>> also moved it from admin.scm to networking.scm where we already have a
>> couple of network monitoring packages.
>
> Sure.
>
>> I’d like to add a copyright line to the header, like this:
>>
>> ;;; Coypright © 2016 Arun Isaac <arunisaac@systemreboot.net>
>>
>> Is this okay or would you like some other email address to be listed
>> there? Once I get your okay I’ll push the commit to master.
>
> Yeah, this is fine. Thank you!
Okay. I’ve pushed this to master as
be9f3a83319ac8936654aa44d4fa55a5336fb62e.
Thanks again and welcome :)
~~ Ricardo
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-08-28 7:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-24 19:25 [PATCH] Add bwm-ng Arun
2016-08-27 12:06 ` ng0
2016-08-27 17:16 ` Arun Isaac
2016-08-27 19:42 ` Ricardo Wurmus
2016-08-28 0:19 ` Arun Isaac
2016-08-28 7:50 ` Ricardo Wurmus
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.