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: dseg
Last Packager: dseg
Votes: 44
Popularity: 0.000049
First Submitted: 2010-11-13 15:06 (UTC)
Last Updated: 2017-11-13 06:24 (UTC)

Latest Comments

1 2 Next › Last »

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

dseg commented on 2016-06-01 15:26 (UTC)

@nimakinho >In the aur git repo, .SRCINFO has pkgrel = 3 but PKGBUILD has pkgrel=4. Those should match, normally. Exactly. Very sorry, I haven't noticed that. By the way, no sed error for me.

nirnakinho commented on 2016-05-31 17:30 (UTC)

@dseg: In the aur git repo, .SRCINFO has pkgrel = 3 but PKGBUILD has pkgrel=4. Those should match, normally. Are you sure you have actually committed the latest version of the PKGBUILD? the sed command in the build() function fails with a syntax error. Unless you are using a different version of sed, that should fail with yaourt as well, I've tried plain makepkg and pacaur and both fail. Regards

dseg commented on 2016-05-29 10:38 (UTC)

@nirnakinho .SRCINFO is correct, was updated to the latest. https://aur.archlinux.org/cgit/aur.git/tree/.SRCINFO?h=jed >I am still seeing the same build error as Voice reported a year ago. Hmm, I've just checked, and got no errors on build. $ yaourt -S --noconfirm jed # buildlog https://gist.github.com/a2015484ac8da86595ec6fe4842335eb