summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorPavel Vinogradov2021-11-08 20:06:03 -0500
committerPavel Vinogradov2021-11-08 20:06:03 -0500
commit24b389f9228cf07cb0dbe98ac6281299c7178ebb (patch)
tree0ed770e843edc56bc94fd7aef3e143be66181bda /libs
parent6b0d28b659c17ba596e32a8ce141843168989f60 (diff)
libs/ncurses: version 6.3
Diffstat (limited to 'libs')
-rwxr-xr-xlibs/ncurses/DETAILS13
-rw-r--r--libs/ncurses/HISTORY5
-rwxr-xr-xlibs/ncurses/INSTALL2
3 files changed, 12 insertions, 8 deletions
diff --git a/libs/ncurses/DETAILS b/libs/ncurses/DETAILS
index 5da53a9409..feeb17a593 100755
--- a/libs/ncurses/DETAILS
+++ b/libs/ncurses/DETAILS
@@ -1,17 +1,16 @@
SPELL=ncurses
- VERSION=6.2
- PATCHLEVEL=1
+ VERSION=6.3
SOURCE=$SPELL-$VERSION.tar.gz
- SOURCE2=$SOURCE.sig
+ SOURCE2=$SOURCE.asc
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
SOURCE_URL[0]=$GNU_URL/$SPELL/$SOURCE
SOURCE_URL[1]=ftp://invisible-island.net/ncurses/$SOURCE
SOURCE_URL[2]="https://invisible-mirror.net/archives/$SPELL/$SOURCE"
- SOURCE2_URL[0]=$SOURCE_URL.sig
- SOURCE2_URL[1]=${SOURCE_URL[1]}.sig
- SOURCE2_URL[2]=${SOURCE_URL[2]}.sig
+ SOURCE2_URL[0]=$SOURCE_URL.asc
+ SOURCE2_URL[1]=${SOURCE_URL[1]}.asc
+ SOURCE2_URL[2]=${SOURCE_URL[2]}.asc
SOURCE2_IGNORE=signature
- SOURCE_GPG=dickey.gpg:$SOURCE.sig:UPSTREAM_KEY
+ SOURCE_GPG=dickey.gpg:$SOURCE2:UPSTREAM_KEY
WEB_SITE=http://www.gnu.org/software/ncurses/
ENTERED=20010922
LICENSE[0]=MIT
diff --git a/libs/ncurses/HISTORY b/libs/ncurses/HISTORY
index dce769fadc..61e02a4fa8 100644
--- a/libs/ncurses/HISTORY
+++ b/libs/ncurses/HISTORY
@@ -1,3 +1,8 @@
+2021-11-08 Pavel Vinogradov <public@sourcemage.org>
+ * DETAILS: version 6.3, sig -> asc
+ * INSTALL: fixed sediting Makefile, commenting the line caused error,
+ deleting works
+
2021-08-20 Ismael Luceno <ismael@sourcemage.org>
* DETAILS: PATCHLEVEL++
* BUILD: fixed path of pkgconfig files
diff --git a/libs/ncurses/INSTALL b/libs/ncurses/INSTALL
index f9c9611821..40032d033d 100755
--- a/libs/ncurses/INSTALL
+++ b/libs/ncurses/INSTALL
@@ -18,7 +18,7 @@ fixlinks $INSTALL_ROOT &&
# Do not install the libs again. Causes problems. Bug #13408
-sedit 's/cd ncurses /# cd ncurses /' Makefile &&
+sed '/cd ncurses /d' -i Makefile &&
# really install it -- all the libs should be in place
make install DESTDIR="$INSTALL_ROOT" &&