Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] nano: update to 8.0.
@ 2024-05-28 12:37 0x5c
  2024-05-28 12:41 ` [PR PATCH] [Updated] " 0x5c
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: 0x5c @ 2024-05-28 12:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages update/nano
https://github.com/void-linux/void-packages/pull/50552

nano: update to 8.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 702b64c8a9ae263221e1d0c936f7933ab451a983 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Tue, 28 May 2024 08:35:46 -0400
Subject: [PATCH] nano: update to 8.0.

---
 srcpkgs/nano/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/nano/template b/srcpkgs/nano/template
index f87a38ca56faf7..e07a2b9d427345 100644
--- a/srcpkgs/nano/template
+++ b/srcpkgs/nano/template
@@ -1,18 +1,20 @@
 # Template file for 'nano'
 pkgname=nano
-version=7.2
+version=8.0
 revision=1
 build_style=gnu-configure
 configure_args="--enable-utf8"
+hostmakedepends="pkg-config groff"
 makedepends="file-devel ncurses-devel"
 short_desc="GNU nano text editor"
 maintainer="0x5c <dev@0x5c.io>"
 license="GPL-3.0-or-later"
 homepage="https://www.nano-editor.org/"
-changelog="http://git.savannah.gnu.org/cgit/nano.git/plain/NEWS"
+changelog="https://git.savannah.gnu.org/cgit/nano.git/plain/NEWS"
 distfiles="https://www.nano-editor.org/dist/v${version%%.*}/nano-${version}.tar.xz"
-checksum=86f3442768bd2873cec693f83cdf80b4b444ad3cc14760b74361474fc87a4526
+checksum=c17f43fc0e37336b33ee50a209c701d5beb808adc2d9f089ca831b40539c9ac4
 
 post_install() {
 	vsconf doc/sample.nanorc
+	ln -s /usr/bin/nano ${DESTDIR}/usr/bin/enano
 }

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

* Re: [PR PATCH] [Updated] nano: update to 8.0.
  2024-05-28 12:37 [PR PATCH] nano: update to 8.0 0x5c
@ 2024-05-28 12:41 ` 0x5c
  2024-05-28 13:20 ` 0x5c
  2024-05-29 10:17 ` [PR PATCH] [Merged]: " classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: 0x5c @ 2024-05-28 12:41 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages update/nano
https://github.com/void-linux/void-packages/pull/50552

nano: update to 8.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

Closes #50546

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From 60e8d9a5e345298b2bc05f886f3301523752e288 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Tue, 28 May 2024 08:35:46 -0400
Subject: [PATCH] nano: update to 8.0.

- Enable building the html docs
- Added the `enano` symlink, which activates the emacs bindings mode
- Fixed the changelog URL
---
 srcpkgs/nano/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/nano/template b/srcpkgs/nano/template
index f87a38ca56faf7..e07a2b9d427345 100644
--- a/srcpkgs/nano/template
+++ b/srcpkgs/nano/template
@@ -1,18 +1,20 @@
 # Template file for 'nano'
 pkgname=nano
-version=7.2
+version=8.0
 revision=1
 build_style=gnu-configure
 configure_args="--enable-utf8"
+hostmakedepends="pkg-config groff"
 makedepends="file-devel ncurses-devel"
 short_desc="GNU nano text editor"
 maintainer="0x5c <dev@0x5c.io>"
 license="GPL-3.0-or-later"
 homepage="https://www.nano-editor.org/"
-changelog="http://git.savannah.gnu.org/cgit/nano.git/plain/NEWS"
+changelog="https://git.savannah.gnu.org/cgit/nano.git/plain/NEWS"
 distfiles="https://www.nano-editor.org/dist/v${version%%.*}/nano-${version}.tar.xz"
-checksum=86f3442768bd2873cec693f83cdf80b4b444ad3cc14760b74361474fc87a4526
+checksum=c17f43fc0e37336b33ee50a209c701d5beb808adc2d9f089ca831b40539c9ac4
 
 post_install() {
 	vsconf doc/sample.nanorc
+	ln -s /usr/bin/nano ${DESTDIR}/usr/bin/enano
 }

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

* Re: [PR PATCH] [Updated] nano: update to 8.0.
  2024-05-28 12:37 [PR PATCH] nano: update to 8.0 0x5c
  2024-05-28 12:41 ` [PR PATCH] [Updated] " 0x5c
@ 2024-05-28 13:20 ` 0x5c
  2024-05-29 10:17 ` [PR PATCH] [Merged]: " classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: 0x5c @ 2024-05-28 13:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/0x5c/void-packages update/nano
https://github.com/void-linux/void-packages/pull/50552

nano: update to 8.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

Closes #50546

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

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

From c408ad5e7989682d0801e31595e6933b3af54774 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Tue, 28 May 2024 08:35:46 -0400
Subject: [PATCH] nano: update to 8.0.

- Enable building the html docs
- Added the `enano` symlink, which activates the emacs bindings mode
- Fixed the changelog URL
---
 srcpkgs/nano/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/nano/template b/srcpkgs/nano/template
index f87a38ca56faf7..bba6c6cedbe1fd 100644
--- a/srcpkgs/nano/template
+++ b/srcpkgs/nano/template
@@ -1,18 +1,20 @@
 # Template file for 'nano'
 pkgname=nano
-version=7.2
+version=8.0
 revision=1
 build_style=gnu-configure
 configure_args="--enable-utf8"
+hostmakedepends="pkg-config groff"
 makedepends="file-devel ncurses-devel"
 short_desc="GNU nano text editor"
 maintainer="0x5c <dev@0x5c.io>"
 license="GPL-3.0-or-later"
 homepage="https://www.nano-editor.org/"
-changelog="http://git.savannah.gnu.org/cgit/nano.git/plain/NEWS"
+changelog="https://git.savannah.gnu.org/cgit/nano.git/plain/NEWS"
 distfiles="https://www.nano-editor.org/dist/v${version%%.*}/nano-${version}.tar.xz"
-checksum=86f3442768bd2873cec693f83cdf80b4b444ad3cc14760b74361474fc87a4526
+checksum=c17f43fc0e37336b33ee50a209c701d5beb808adc2d9f089ca831b40539c9ac4
 
 post_install() {
 	vsconf doc/sample.nanorc
+	ln -s nano ${DESTDIR}/usr/bin/enano
 }

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

* Re: [PR PATCH] [Merged]: nano: update to 8.0.
  2024-05-28 12:37 [PR PATCH] nano: update to 8.0 0x5c
  2024-05-28 12:41 ` [PR PATCH] [Updated] " 0x5c
  2024-05-28 13:20 ` 0x5c
@ 2024-05-29 10:17 ` classabbyamp
  2 siblings, 0 replies; 4+ messages in thread
From: classabbyamp @ 2024-05-29 10:17 UTC (permalink / raw)
  To: ml

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

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

nano: update to 8.0.
https://github.com/void-linux/void-packages/pull/50552

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

Closes #50546

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2024-05-29 10:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-28 12:37 [PR PATCH] nano: update to 8.0 0x5c
2024-05-28 12:41 ` [PR PATCH] [Updated] " 0x5c
2024-05-28 13:20 ` 0x5c
2024-05-29 10:17 ` [PR PATCH] [Merged]: " classabbyamp

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