LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Requests for -current (14.2-->15.0) (https://www.linuxquestions.org/questions/slackware-14/requests-for-current-14-2-15-0-a-4175620463/)

Ne01eX 03-20-2018 06:59 PM

pcre-8.42.tar.bz2

Not present in to Slackware:

GlusterFS is a network/cluster filesystem.
glusterfs-3.12.7.tar.gz
nginx is a lightweight fast web server/reverse proxy and e-mail (IMAP/POP3) proxy. "Mainline" version.
nginx-1.13.10.tar.gz

And GNU Mcron 1.1 - 100% compatible replacement for Vixie cron. mcron-1.1.tar.gz

Ne01eX 03-20-2018 07:13 PM

Quote:

Originally Posted by Didier Spaier (Post 5833381)

/etc/rc.d/rc.font can always be edited after installation to change the font and/or its size.

I can recompile and assemble Slackware myself. All. From scratch, from another GNU/Linux distribution. For another platform.

But if I asked to include it in the basic delivery, then this is why it is necessary. :-)

At the moment there is no terminus-font in the dialog setconsolefont at all. No version. No terminus font. :-)

I will be satisfied with any option with terminus-font out of the box, without having to go into rc.font and rc.keymap. :-)

P.S. This my setlang script from RTK GNU/Linux:

Code:

#!/bin/sh
# Select Language
# Witten by Ne01eX@rambler.ru for
# Russian Technology Kit Linux, http://rtklinux.com
# (c) 2007, RTK LinuxSecurity Team.
PID_TP=`ps ax | grep "ecmd setlang" | awk '{ print $1 }'`
BSTART="" # set beforestart yellow color
ASTART="" # set afterstart green color
FSTART="" # set failstart red color
NTEXT="" # set normaltext color

SHABANG="#!/bin/sh"
TMPDIR="/tmp/setupvar"
mkdir -p $TMPDIR
SETLANG="$TMPDIR/setlang.var"
LCFILE=/etc/profile.d/lang.sh
RFFILE=/etc/rc.d/rc.font
RKFILE=/etc/rc.d/rc.keymap
FLANG="ru_RU.koi8r"
STALL="export LC_ALL="
STLNG="export LANG="
RCKM1="if [ -x /usr/bin/loadkeys ]; then"
RCKM2="  /usr/bin/loadkeys"
RCKM3="> /dev/null 2> /dev/null"

cr_langsh()
{
  echo "$SHABANG" > $LCFILE
  echo >> $LCFILE
  echo "$STALL${FLANG}" >> $LCFILE
  echo "$STLNG${FLANG}" >> $LCFILE
  echo >> $LCFILE
  chmod 755 $LCFILE
  echo "${FLANG}" > $TMPDIR/tlc_all.var
}

cr_rcfont()
{
  echo "$SHABANG" > $RFFILE
  echo >> $RFFILE
  echo "$RCFONT" >> $RFFILE
  echo >> $RFFILE
  echo "for n in 1 2 3 4 5 6; do" >> $RFFILE
  echo "  echo -ne \"\033(K\" > /dev/tty\$n" >> $RFFILE
  echo "done" >> $RFFILE
  chmod 755 $RFFILE
}

cr_rckeymap()
{
  echo "$SHABANG" > $RKFILE
  echo >> $RKFILE
  echo "$RCKM1" >> $RKFILE
  echo "$RCKM2 $RCKEYMAP $RCKM3" >> $RKFILE
  echo "fi" >> $RKFILE
  echo >> $RKFILE
  chmod 755 $RKFILE
}

cs_lang()
{
case "$setlang" in

  "BE" | "be" | "Be" )
  FLANG="be_BY.cp1251"
  RCFONT="setfont ter-c16b.psf.gz -m cp1251_to_uni.trans"
  RCKEYMAP="by.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "DE" | "de" | "De" )
  FLANG="de_DE.iso88591"
  RCFONT="setfont ter-116b.psf.gz -m 8859-1_to_uni.trans"
  RCKEYMAP="de.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "EN" | "en" | "En" )
  FLANG="en_GB.iso88591"
  RCFONT="setfont ter-116b.psf.gz -m 8859-1_to_uni.trans"
  RCKEYMAP="us.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "FR" | "fr" | "Fr" )
  FLANG="fr_FR.iso88591"
  RCFONT="setfont ter-116b.psf.gz -m 8859-1_to_uni.trans"
  RCKEYMAP="fr.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "RU" | "ru" | "Ru" )
  FLANG="ru_RU.koi8r"
  RCFONT="setfont ter-k16b.psf.gz -m koi8-r_to_uni.trans"
  RCKEYMAP="ru-ms.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "SR" | "sr" | "Sr" )
  FLANG="sr_CS.iso88595"
  RCFONT="setfont ter-c16b.psf.gz -m 8859-5_to_uni.trans"
  RCKEYMAP="sr-cy.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "UK" | "uk" | "Uk" )
  FLANG="uk_UA.koi8u"
  RCFONT="setfont ter-u16b.psf.gz -m koi8-u_to_uni.trans"
  RCKEYMAP="ua.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  * )
  FLANG="ru_RU.koi8r"
  RCFONT="setfont ter-k16b.psf.gz -m koi8-r_to_uni.trans"
  RCKEYMAP="ru-ms.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

esac
clear
}

clear
if [ -x /bin/dialog ]; then
    dialog --clear --title "Set language" \
        --menu "Please select language:" 14 50 7 \
        "RU" "Russian [default]" \
        "BE" "Belarussian" \
        "DE" "Deutsch" \
        "EN" "English (Britain)" \
        "FR" "Francais" \
        "SR" "Serbian (Cyrillic)" \
        "UK" "Ukrainian" 2> $SETLANG
    retval=$?

    setlang=`cat $SETLANG`

    case $retval in
      0)
        cs_lang;;
      1)
        cs_lang
        exit 0;;
      255)
        cs_lang
        exit 0;;
    esac
else
    echo "${BSTART}Please select language:${NTEXT}"
    echo
    echo "[${ASTART}RU${NTEXT}] - Russian ${FSTART}[default]${NTEXT}"
    echo "[${ASTART}BE${NTEXT}] - Belarussian"
    echo "[${ASTART}DE${NTEXT}] - Deutsch"
    echo "[${ASTART}EN${NTEXT}] - English ${FSTART}(Britain)${NTEXT}"
    echo "[${ASTART}FR${NTEXT}] - Francais"
    echo "[${ASTART}SR${NTEXT}] - Serbian ${FSTART}(Cyrillic)${NTEXT}"
    echo "[${ASTART}UK${NTEXT}] - Ukrainian"
    echo
    read lang
    cs_lang
fi

kill $PID_TP >/dev/null 2>/dev/null

Can be used with small modifications today. :-D

volkerdi 03-20-2018 07:25 PM

Quote:

Originally Posted by Ne01eX (Post 5833402)
I will be satisfied with any option with terminus-font out of the box, without having to go into rc.font and rc.keymap. :-)

If you need a menu for everything and don't like editing config files, you're gonna have a bad time here.

mralk3 03-20-2018 07:32 PM

Quote:

Originally Posted by volkerdi (Post 5833410)
If you need a menu for everything and don't like editing config files, you're gonna have a bad time here.

Ha. Let's hope he will learn the Slackware way quickly and that won't be the case. Don't want to scare away the new people too much now. ;)

Ne01eX 03-20-2018 08:11 PM

Quote:

Originally Posted by volkerdi (Post 5833410)
If you need a menu for everything and don't like editing config files, you're gonna have a bad time here.

Thanks for the answer, Patrick. This is not for me. This is not only for me. This is for all users of Slackware, for which the English language is not native.

Quote:

Originally Posted by mralk3 (Post 5833414)
Ha. Let's hope he will learn the Slackware way quickly and that won't be the case. Don't want to scare away the new people too much now. ;)

:-D :-D :-D

Every time, I climb there, it ends with a creating new fork of Slackware. :-D :-D :-D

1. Last (only) version of RTK GNU/Linux
2. S.C.R. GNU/Linux
3. Three??? o_O

atelszewski 03-21-2018 12:42 AM

Hi,

I'm too all for Terminus.
I'm using it on X terminals too.

BTW, which variant is best for having best Unicode coverage?

--
Best regards,
Andrzej Telszewski

Didier Spaier 03-21-2018 02:50 AM

Quote:

Originally Posted by atelszewski (Post 5833502)
BTW, which variant is best for having best Unicode coverage?

All terminus fonts include an Unicode mapping. For Polish, use ter-2* (mappings iso02, cp1250, codepages ISO8859-2, Windows-1250) or to get all available glyphs, ter-v as suggested by Gazl, cf. /usr/doc/terminus-font-<version>/README.

That being said, under X I'd rather just let fontconfig do its homework and select Monospace, with in ~/.Xresources:
Code:

Xft.dpi: 96
Xft.hinting:1
Xft.hintstyle:hintfull

Other than that, DejaVu is not bad.

IMHO mate-terminal is the best, but I digress.

gmgf 03-21-2018 03:23 AM

xf86-input-libinput-0.27.0:

https://cgit.freedesktop.org/xorg/dr...nput-libinput/
ftp://ftp.x.org/pub/individual/drive...-0.27.0.tar.gz

Didier Spaier 03-21-2018 06:36 AM

1 Attachment(s)
Quote:

Originally Posted by Ne01eX (Post 5833402)
I can recompile and assemble Slackware myself. All. From scratch, from another GNU/Linux distribution. For another platform.

But if I asked to include it in the basic delivery, then this is why it is necessary. :-)

At the moment there is no terminus-font in the dialog setconsolefont at all. No version. No terminus font. :-)

I will be satisfied with any option with terminus-font out of the box, without having to go into rc.font and rc.keymap. :-)

P.S. This my setlang script from RTK GNU/Linux:

Code:

#!/bin/sh
# Select Language
# Witten by Ne01eX@rambler.ru for
# Russian Technology Kit Linux, http://rtklinux.com
# (c) 2007, RTK LinuxSecurity Team.
PID_TP=`ps ax | grep "ecmd setlang" | awk '{ print $1 }'`
BSTART="" # set beforestart yellow color
ASTART="" # set afterstart green color
FSTART="" # set failstart red color
NTEXT="" # set normaltext color

SHABANG="#!/bin/sh"
TMPDIR="/tmp/setupvar"
mkdir -p $TMPDIR
SETLANG="$TMPDIR/setlang.var"
LCFILE=/etc/profile.d/lang.sh
RFFILE=/etc/rc.d/rc.font
RKFILE=/etc/rc.d/rc.keymap
FLANG="ru_RU.koi8r"
STALL="export LC_ALL="
STLNG="export LANG="
RCKM1="if [ -x /usr/bin/loadkeys ]; then"
RCKM2="  /usr/bin/loadkeys"
RCKM3="> /dev/null 2> /dev/null"

cr_langsh()
{
  echo "$SHABANG" > $LCFILE
  echo >> $LCFILE
  echo "$STALL${FLANG}" >> $LCFILE
  echo "$STLNG${FLANG}" >> $LCFILE
  echo >> $LCFILE
  chmod 755 $LCFILE
  echo "${FLANG}" > $TMPDIR/tlc_all.var
}

cr_rcfont()
{
  echo "$SHABANG" > $RFFILE
  echo >> $RFFILE
  echo "$RCFONT" >> $RFFILE
  echo >> $RFFILE
  echo "for n in 1 2 3 4 5 6; do" >> $RFFILE
  echo "  echo -ne \"\033(K\" > /dev/tty\$n" >> $RFFILE
  echo "done" >> $RFFILE
  chmod 755 $RFFILE
}

cr_rckeymap()
{
  echo "$SHABANG" > $RKFILE
  echo >> $RKFILE
  echo "$RCKM1" >> $RKFILE
  echo "$RCKM2 $RCKEYMAP $RCKM3" >> $RKFILE
  echo "fi" >> $RKFILE
  echo >> $RKFILE
  chmod 755 $RKFILE
}

cs_lang()
{
case "$setlang" in

  "BE" | "be" | "Be" )
  FLANG="be_BY.cp1251"
  RCFONT="setfont ter-c16b.psf.gz -m cp1251_to_uni.trans"
  RCKEYMAP="by.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "DE" | "de" | "De" )
  FLANG="de_DE.iso88591"
  RCFONT="setfont ter-116b.psf.gz -m 8859-1_to_uni.trans"
  RCKEYMAP="de.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "EN" | "en" | "En" )
  FLANG="en_GB.iso88591"
  RCFONT="setfont ter-116b.psf.gz -m 8859-1_to_uni.trans"
  RCKEYMAP="us.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "FR" | "fr" | "Fr" )
  FLANG="fr_FR.iso88591"
  RCFONT="setfont ter-116b.psf.gz -m 8859-1_to_uni.trans"
  RCKEYMAP="fr.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "RU" | "ru" | "Ru" )
  FLANG="ru_RU.koi8r"
  RCFONT="setfont ter-k16b.psf.gz -m koi8-r_to_uni.trans"
  RCKEYMAP="ru-ms.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "SR" | "sr" | "Sr" )
  FLANG="sr_CS.iso88595"
  RCFONT="setfont ter-c16b.psf.gz -m 8859-5_to_uni.trans"
  RCKEYMAP="sr-cy.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  "UK" | "uk" | "Uk" )
  FLANG="uk_UA.koi8u"
  RCFONT="setfont ter-u16b.psf.gz -m koi8-u_to_uni.trans"
  RCKEYMAP="ua.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

  * )
  FLANG="ru_RU.koi8r"
  RCFONT="setfont ter-k16b.psf.gz -m koi8-r_to_uni.trans"
  RCKEYMAP="ru-ms.map"
  cr_langsh
  cr_rcfont
  cr_rckeymap
  ;;

esac
clear
}

clear
if [ -x /bin/dialog ]; then
    dialog --clear --title "Set language" \
        --menu "Please select language:" 14 50 7 \
        "RU" "Russian [default]" \
        "BE" "Belarussian" \
        "DE" "Deutsch" \
        "EN" "English (Britain)" \
        "FR" "Francais" \
        "SR" "Serbian (Cyrillic)" \
        "UK" "Ukrainian" 2> $SETLANG
    retval=$?

    setlang=`cat $SETLANG`

    case $retval in
      0)
        cs_lang;;
      1)
        cs_lang
        exit 0;;
      255)
        cs_lang
        exit 0;;
    esac
else
    echo "${BSTART}Please select language:${NTEXT}"
    echo
    echo "[${ASTART}RU${NTEXT}] - Russian ${FSTART}[default]${NTEXT}"
    echo "[${ASTART}BE${NTEXT}] - Belarussian"
    echo "[${ASTART}DE${NTEXT}] - Deutsch"
    echo "[${ASTART}EN${NTEXT}] - English ${FSTART}(Britain)${NTEXT}"
    echo "[${ASTART}FR${NTEXT}] - Francais"
    echo "[${ASTART}SR${NTEXT}] - Serbian ${FSTART}(Cyrillic)${NTEXT}"
    echo "[${ASTART}UK${NTEXT}] - Ukrainian"
    echo
    read lang
    cs_lang
fi

kill $PID_TP >/dev/null 2>/dev/null

Can be used with small modifications today. :-D

I have requested that Slackware be internationalized several year ago but failed to convince our BDFL. So instead I started the Slint project:
http://slint.fr/wiki/start?id=en/start
There is also a Russian tanslation but it needs to be updated:
http://slint.fr/wiki/start?id=ru/start

Main repository for the most recent version:
http://slackware.uk/slint/x86_64/slint-14.2.1/
Read also:
http://slackware.uk/slint/x86_64/sli...EADME-14.2.1.1

PS Alexandr, I just started RTK Linux 0.7 alpha3 in a QEMU VM, Unfortunately it fails to complete the startup sequence, see attached pic.

gmgf 03-21-2018 12:06 PM

mesa-17.3.7:

https://mesa3d.org/relnotes/17.3.7.html
https://mesa.freedesktop.org/archive/mesa-17.3.7.tar.xz

gmgf 03-21-2018 12:21 PM

util-linux-2.32:

http://www.kernel.org/pub/linux/util...ux-2.32.tar.xz
https://mirrors.edge.kernel.org/pub/...ux-2.32.tar.xz

ghostscript-9.23:

https://www.ghostscript.com/doc/9.23/News.htm
https://github.com/ArtifexSoftware/g...pt-9.23.tar.gz

gmgf 03-22-2018 01:39 AM

meson-0.45.1:

https://github.com/mesonbuild/meson/releases
https://github.com/mesonbuild/meson/...-0.45.1.tar.gz

Didier Spaier 03-22-2018 05:29 AM

Lynx-2.8.9dev17
 
Yes it is a development release, but from Thomas E. Dickey.

Changes since 2.8

USUARIONUEVO 03-22-2018 07:50 PM

pip-9.0.3.tar.gz
https://pypi.python.org/packages/c4/...p-9.0.3.tar.gz

USUARIONUEVO 03-22-2018 08:45 PM

crda-4.14
https://git.kernel.org/pub/scm/linux...da-4.14.tar.gz


All times are GMT -5. The time now is 06:58 AM.