help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [External] : Re: Package cl is deprecated


From: Emanuel Berg
Subject: Re: [External] : Re: Package cl is deprecated
Date: Mon, 02 Aug 2021 05:28:52 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

Hongyi Zhao wrote:

> emacs-build-number is a variable defined in ‘version.el’.
>
> Its value is 1
>
>> has Gnus version (C-u M-x gnus-version RET)
>
> This function, `gnus-version', doesn't exist on my side
> at all.

Hm ... maybe it wasn't included in Emacs 1?

Please use these commands to install Emacs from source.

Then do `emacs-version' (or 'emacs --version' in the
shell). And look for `gnus-version'.

It's there :)

#! /bin/zsh
#
# this file:
#   http://user.it.uu.se/~embe8573/conf/.zsh/install-emacs
#   https://dataswamp.org/~incal/conf/.zsh/install-emacs

export EMACS_SOURCE=https://github.com/mirrors/emacs.git

prepare-emacs-install () {
    local ver=${1:-$(emacs --version | head -n 1 | awk '{print $3}' | cut -d 
'.' -f 1)}
    local emacs_pack=emacs${ver}
    sudo apt-get update > /dev/null
    sudo apt-get install build-essential
    sudo apt-get build-dep $emacs_pack
}

reset-emacs-source () {
    git reset --hard
    git clean -xdf
    git pull $EMACS_SOURCE
}

get-emacs-source () {
    git clone $EMACS_SOURCE
}

# $ ./autogen.sh
# $ ./configure --with-modules
# $ make
# $ sudo make install

-- 
underground experts united
https://dataswamp.org/~incal




reply via email to

[Prev in Thread] Current Thread [Next in Thread]