Package Details: textadept 12.4-1

Git Clone URL: https://aur.archlinux.org/textadept.git (read-only, click to copy)
Package Base: textadept
Description: Fast, minimalist, and remarkably extensible cross-platform text editor
Upstream URL: https://github.com/orbitalquark/textadept
Keywords: editor lua
Licenses: MIT
Submitter: bitwave
Maintainer: TwoFinger
Last Packager: TwoFinger
Votes: 31
Popularity: 0.026045
First Submitted: 2015-09-04 11:30 (UTC)
Last Updated: 2024-05-01 05:22 (UTC)

Pinned Comments

TwoFinger commented on 2023-08-02 10:30 (UTC) (edited on 2023-08-02 14:31 (UTC) by TwoFinger)

This is no longer a split package, it only contains the Qt build, which is the new upstream default.

The other builds are in separate packages:

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

Popolon commented on 2017-09-20 23:15 (UTC) (edited on 2017-09-30 20:42 (UTC) by Popolon)

Can't clone it due to unsecure protocol settings on the mercurial server :(. Edit : Oops thanks, just seen it.

mufeed commented on 2017-06-08 23:40 (UTC)

9.4 has been out for some time now.

twitt commented on 2016-10-05 12:13 (UTC)

Just small addition: `hg config -e` always opens $HOME/.hgrc for editing and ignores $HGRCPATH if set. But Mercurial itself will ignore $HOME/.hgrc if $HGRCPATH is set. So make sure to open the right hgrc file.

reztho commented on 2016-10-03 18:14 (UTC)

fusion809, it's explained inside the PKGBUILD: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=textadept ,line 19 onward. But here's the text anyway: "If textadept can't be compiled try the following things in this order: - Run: hg config -e , and then add these lines: [hostsecurity] foicica.com:minimumprotocol = tls1.0 - Run makepkg with the -C argument"

fusion809 commented on 2016-10-03 03:26 (UTC)

I'm getting the error: -> Cloning textadept hg repo... (could not negotiate a common security protocol (tls1.1+) with foicica.com; the likely cause is Mercurial is configured to be more secure than the server can support) (consider contacting the operator of this server and ask them to support modern TLS protocol versions; or, set hostsecurity.foicica.com:minimumprotocol=tls1.0 to allow use of legacy, less secure protocols when communicating with this server) (see https://mercurial-scm.org/wiki/SecureConnections for more info) abort: error: [SSL: UNSUPPORTED_PROTOCOL] unsupported protocol (_ssl.c:590) ==> ERROR: Failure while downloading textadept hg repo Aborting..

chetgray commented on 2016-05-09 19:30 (UTC)

@reztho, I didn't flag the package out-of-date to demand you update it (I already had for my local PKGBUILD), merely to helpfully send notification that a new version was released, in case it fell by the wayside. No rush intended; I appreciate you maintaining a package for a mighty fine text editor. Cheers!

reztho commented on 2016-05-08 16:00 (UTC)

Ok, it's done. Make sure you build this package like this: makepkg -C , so makepkg cleans the src folder before compiling.

reztho commented on 2016-05-08 15:50 (UTC) (edited on 2016-05-08 16:25 (UTC) by reztho)

duarnimator, chetgray: I made the package the way it is now, because that was what was available at the time. EDIT: well, the modules link can be versioned, but still no tag for the latest version in the hg repository, so I'll keep using a revision changeset number. I'm going to update the package now. I'm sorry if I can't update the package the very same day a new version is released. I have things to do in real life, you know. So please, be patient next time. Anyways I think this text editor is very interesting and should be in [community]. The more of you ask for it in the mailing list so a TU would like to get in charge of it, the better. Thanks for the help though.

daurnimator commented on 2016-05-05 04:21 (UTC)

diff --git a/PKGBUILD b/PKGBUILD index 60f686d..8274716 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Based on a contribution of: bitwave pkgname=textadept pkgver=8.6 -pkgrel=2 +pkgrel=3 pkgdesc="A fast, minimalist, and remarkably extensible cross-platform text editor" arch=('i686' 'x86_64') url="http://foicica.com/textadept/" @@ -12,8 +12,8 @@ makedepends=('mercurial' 'wget' 'unzip') provides=("$pkgname") conflicts=('textadept-bin') replaces=('textadept-bin') -source=("hg+http://foicica.com/hg/textadept#revision=f27778cd1d49" - 'http://foicica.com/textadept/download/textadept_LATEST.modules.zip') +source=("hg+http://foicica.com/hg/textadept#tag=textadept_${pkgver}" + "http://foicica.com/textadept/download/textadept_${pkgver}.modules.zip") build() { cd "$srcdir/$pkgname/src"

chetgray commented on 2016-05-03 13:17 (UTC)

Better sources, using pkgver: source=("hg+http://foicica.com/hg/textadept#tag=textadept_${pkgver}" "http://foicica.com/textadept/download/textadept_${pkgver}.modules.zip") Currently, textadept_LATEST.modules.zip points to textadept_8.7.modules.zip, breaking package() that expects 8.6. N.b. There is currently no Hg tag for 8.7, but there are binary tgz packages for both i386 and x64_86 (http://foicica.com/textadept/CHANGELOG.html)