Skip to content

Commit

Permalink
nano: Update to 2.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpux committed Feb 9, 2018
1 parent 0b6b796 commit 581d16c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions nano/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Alexey Pavlov <[email protected]>

pkgname=nano
pkgver=2.8.7
pkgver=2.9.3
pkgrel=1
pkgdesc="Pico editor clone with enhancements"
arch=('i686' 'x86_64')
Expand All @@ -20,10 +20,10 @@ source=(https://www.nano-editor.org/dist/v${pkgver%.*}/${pkgname}-${pkgver}.tar.
2.2.4-wchar.patch
nano-2.3.4-fix-ncurses-location.patch
nano-2.8.0-msys2.patch)
sha256sums=('fbe31746958698d73c6726ee48ad8b0612697157961a2e9aaa83b4aa53d1165a'
sha256sums=('7783bcfd4b2d5dc0bf64d4bd07b1a19e7ba3c91da881a4249772a36b972d4012'
'SKIP'
'60ea17cdaf6ce0dbcf7e21b592e54aa829b34d9aab95a7ad20ddce569605c3d4'
'576d365d7e51fc0fd6268a45023de1ea14a9a4d30df9d6c7bd2188f426422bea'
'62b0e50470254ed09e55c068b29b72fe784d0552f97fbc5a15b6ee791c9cbd72'
'9ff4c257f385ae2d77a97b9f332e5022badf703d1e6f00ebc778c282c8323b82')
validpgpkeys=('8DA6FE7BFA7A418AB3CB2354BCB356DF91009FA7' # "Chris Allegretta <[email protected]>"
'A7F6A64A67DA09EF92782DD79DF4862AF1175C5B' # "Benno Schulenberg <[email protected]>"
Expand Down
24 changes: 12 additions & 12 deletions nano/nano-2.3.4-fix-ncurses-location.patch
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
--- nano-2.3.4/configure.ac.orig 2014-07-12 15:07:04.197241900 +0100
+++ nano-2.3.4/configure.ac 2014-07-12 15:08:08.022892500 +0100
@@ -475,11 +475,11 @@
--- nano-2.9.2/configure.ac.orig 2018-01-11 15:07:04.197241900 +0100
+++ nano-2.9.2/configure.ac 2018-01-11 15:08:08.022892500 +0100
@@ -531,11 +531,11 @@
fi

if eval "test x$CURSES_LIB_NAME = x"; then
- AC_CHECK_HEADERS(ncurses.h)
+ AC_CHECK_HEADERS(ncursesw/ncurses.h)
- AC_CHECK_HEADERS(ncurses.h)
+ AC_CHECK_HEADERS(ncursesw/ncurses.h)

if test "x$enable_utf8" != xno; then
OLDLIBS="$LIBS"
- AC_CHECK_TOOL(NCURSESW_CONFIG, ncursesw5-config, no)
+ AC_CHECK_TOOL(NCURSESW_CONFIG, ncursesw6-config, no)
if test "x$NCURSESW_CONFIG" != xno; then
CURSES_LIB=`$NCURSESW_CONFIG --libs`
LIBS="$CURSES_LIB $LIBS"
if test "x$enable_utf8" != xno; then
OLDLIBS="$LIBS"
- AC_CHECK_TOOL(NCURSESW_CONFIG, ncursesw5-config, no)
+ AC_CHECK_TOOL(NCURSESW_CONFIG, ncursesw6-config, no)
if test "x$NCURSESW_CONFIG" != xno; then
CURSES_LIB=`$NCURSESW_CONFIG --libs`
LIBS="$CURSES_LIB $LIBS"

0 comments on commit 581d16c

Please sign in to comment.