Package Details: emacs-pgtk-native-comp-git 29.0.50.155762-1

Git Clone URL: https://aur.archlinux.org/emacs-pgtk-native-comp-git.git (read-only, click to copy)
Package Base: emacs-pgtk-native-comp-git
Description: GNU Emacs. Development master branch.
Upstream URL: http://www.gnu.org/software/emacs/
Licenses: GPL3
Provides: emacs
Replaces: emacs
Submitter: flatwhatson
Maintainer: TomFryers
Last Packager: TomFryers
Votes: 14
Popularity: 0.000008
First Submitted: 2020-08-21 14:09 (UTC)
Last Updated: 2022-12-08 14:37 (UTC)

Required by (319)

Sources (2)

Latest Comments

1 2 3 4 5 6 Next › Last »

TomFryers commented on 2023-08-08 19:27 (UTC)

Now that emacs-wayland is available in Extra, I think this package has run its course. Run sudo pacman -S emacs-wayland to switch to Emacs 29.1, with native compilation and pure GTK if – like, I suspect, most people – that's what you're after.

I think that, between emacs-git and emacs-wayland, this package is now redundant, so I plan to submit a deletion request for it after a while. If for whatever reason you still find it valuable, please speak up.

TomFryers commented on 2023-03-13 09:01 (UTC)

@OmayaO texinfo is part of the base-devel group, so any AUR package may freely depend on it to build.

OmayaO commented on 2023-03-09 04:41 (UTC)

it needed texinfo to compile. I'm not sure if it's a runtime dependency or not

rhoit commented on 2022-09-28 11:18 (UTC)

not sure but after running this command pkg-config --list-all configure found the dependencies

rhoit commented on 2022-09-23 03:04 (UTC) (edited on 2022-09-23 03:12 (UTC) by rhoit)

@TomFryers when I disable ALSA I got stuck in gtk+. I have not been able to compile since 2020 March 01 after changed the SDD and re-installed OS, I use my custom build https://github.com/rhoit/dot-emacs/blob/master/build/PKGBUILD which have been failing without fail, and need too be sure where I have messed up, but seems like still nowhere.

TomFryers commented on 2022-09-21 16:45 (UTC)

@rhoit Not sure what's causing that, but disabling ALSA in the PKGBUILD will probably fix it. I've gone ahead and set it do be disabled by default (why would I want Emacs making noise?), so it should just work now.

rhoit commented on 2022-09-21 04:46 (UTC)

i'm getting this error

checking for alsa >= 1.0.0... no configure: error: ALSA sound support requested but not found. ==> ERROR: A failure occurred in build(). Aborting...

ruy16109 commented on 2022-08-15 04:44 (UTC) (edited on 2022-08-15 04:52 (UTC) by ruy16109)

The commit 59206529a17a8ae976072d8306882c4ff37a2fbd made on July 5 broke the version parsing, regarding line 26 in configure.ac. If I understand the pkgver() logic correctly, only a single line is expected for the AC_INIT line, but now there are two lines.

In addition, since they also added quoting using square brackets, just merging the two lines into a single line does not help -- I only get the expected result when I also remove the square brackets. For reference, here is what I changed:

diff --git a/configure.ac b/configure.ac
index 1a264275bd..f1efb94919 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,8 +23,7 @@ dnl  along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.

 AC_PREREQ([2.65])
 dnl Note this is parsed by (at least) make-dist and lisp/cedet/ede/emacs.el.
-AC_INIT([GNU Emacs], [29.0.50], [bug-gnu-emacs@gnu.org], [],
-  [https://www.gnu.org/software/emacs/])
+AC_INIT(GNU Emacs, 29.0.50, bug-gnu-emacs@gnu.org, , https://www.gnu.org/software/emacs/)

 dnl Set emacs_config_options to the options of 'configure', quoted for the shell,
 dnl and then quoted again for a C string.  Separate options with spaces.

TomFryers commented on 2022-07-06 10:07 (UTC)

I've switched the remote to GitHub.

chinmaya1011 commented on 2022-07-05 14:28 (UTC) (edited on 2022-07-18 17:15 (UTC) by chinmaya1011)

You can clone the GitHub mirror and change the remotes (git remote remove origin and git add remote origin <Savannah repository> followed by git fetch) for a faster download