Package Details: jed 0.99.19-6

Git Clone URL: https://aur.archlinux.org/jed.git (read-only, click to copy)
Package Base: jed
Description: A freely available text editor for Unix and others OS
Upstream URL: http://www.jedsoft.org/jed
Licenses: GPL
Submitter: ilpianista
Maintainer: None
Last Packager: dseg
Votes: 43
Popularity: 0.000000
First Submitted: 2010-11-13 15:06 (UTC)
Last Updated: 2017-11-13 06:24 (UTC)

Latest Comments

1 2 Next › Last »

scorici commented on 2024-09-23 18:24 (UTC)

Download https://dpaste.com//DNK4H4VC5 as jed.patch and path the PKGBUILD: patch PKGBUILD -i jed.patch

vtanger commented on 2024-03-23 21:18 (UTC)

The required source repository ftp://space.mit.edu/pub/davis/jed/ no longer exists. The user probably has left the space (or MIT).

The AUR "jed-git" works, though.

kseistrup commented on 2024-01-31 15:20 (UTC)

The current jed.install removes *.slc and *.dfa upon removal. However, this may remove other such files that other packages (notably jedstate-git) may have installed. jed should only remove its own files. This can be done by including them in the package itself and let pacman handle it.

See the PKGBUILD of e.g. jed-git in case of doubt.

Cheers.

erkin commented on 2019-06-15 05:27 (UTC)

Build fails with

install: cannot stat 'src/objs/rgrep': No such file or directory

Replacing src/objs with src/${ARCH}objs (ie src/x86_64objs) in PKGBUILD solves this problem.

dseg commented on 2017-11-13 06:24 (UTC)

Just added 'armv7h' into supported architecture.

AstroFloyd commented on 2017-11-11 21:52 (UTC)

Yep, builds fine on armv7h.

kseistrup commented on 2016-07-31 12:24 (UTC)

Please add 'armv7h' to the list of architectures.

dseg commented on 2016-06-05 21:48 (UTC)

@nirnakinho Thank you very much for the patch. Updated.

nirnakinho commented on 2016-06-02 15:00 (UTC)

@dseg: I've found the cause for the problem: In the sed scripts, you are using the underscore character '_' as delimiter for the s command. However, as my $pkgdir does contain such an underscore, the command has one underscore too many, causing the sed command to fail. I'd recommend using a pipe symbol as seen in the following patch: Regards, diff --git a/PKGBUILD b/PKGBUILD index 9febc94..4a25d98 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -26,8 +26,8 @@ build() { ./configure --prefix=/usr JED_ROOT=/usr/share/jed sed \ - -e "s_\(^all.*\)_\1 xjed rgrep_" \ - -e "s_..DEST.*doc_${pkgdir}/usr/share/doc/${pkgname}_g" \ + -e "s|\(^all.*\)|\1 xjed rgrep|" \ + -e "s|..DEST.*doc|${pkgdir}/usr/share/doc/${pkgname}|g" \ -i src/Makefile make