Package Details: emacs-org-mode 9.6.6-2

Git Clone URL: https://aur.archlinux.org/emacs-org-mode.git (read-only, click to copy)
Package Base: emacs-org-mode
Description: Emacs Org Mode
Upstream URL: http://orgmode.org/
Keywords: emacs org-mode
Licenses: GPL
Submitter: tgirod
Maintainer: jdev082
Last Packager: jdev082
Votes: 106
Popularity: 0.28
First Submitted: 2008-07-02 18:45 (UTC)
Last Updated: 2023-05-19 22:34 (UTC)

Dependencies (3)

Required by (2)

Sources (1)

Latest Comments

1 2 3 4 5 6 .. 9 Next › Last »

jdev082 commented on 2023-07-18 01:43 (UTC)

@dreieck I am unable to reproduce the error you are having.

dreieck commented on 2023-06-01 08:47 (UTC)

For some reason, package() now fails for me, even if emacs-org-mode is not installed:

==> Starting package()...
[...]
==================== dirall ====================
[...]
Compiling /tmp/makepkg/build/emacs-org-mode/src/org-mode-release_9.6.6/lisp/ob-core.el...
Warning (emacs): Org version mismatch.  Org loading aborted.
This warning usually appears when a built-in Org version is loaded
prior to the more recent Org version.
[...]
make[1]: *** [Makefile:44: orgguide.texi] Error 255
make[1]: Leaving directory '/tmp/makepkg/build/emacs-org-mode/src/org-mode-release_9.6.6/doc'
make: *** [mk/targets.mk:124: install-doc] Error 2
make: *** Waiting for unfinished jobs....
[...]
==> ERROR: A failure occurred in package().

Regards!

jdev082 commented on 2023-05-19 22:35 (UTC)

@dreieck fixed!

dreieck commented on 2023-05-19 09:44 (UTC)

Thanks for updating!

Checksum verification fails:

==> Validating source files with sha256sums...
    org-mode-release_9.6.6.tar.gz ... FAILED

regards!

jdev082 commented on 2023-05-19 00:37 (UTC)

This package has been updated from 9.5.0 to 9.6.6

jdev082 commented on 2023-05-19 00:14 (UTC)

Very sorry for leaving this package unmaintained. Shortly I will push an update to this package.

dreieck commented on 2023-02-13 17:48 (UTC)

Thanks, @Levitating, your patch makes emacs-org-mode build and install.

@Maintainer, please fix this package.

Current version now is 9.6.1, by the way.

Levitating commented on 2023-02-08 20:22 (UTC) (edited on 2023-02-08 20:40 (UTC) by Levitating)

Hey guys And hey @dreieck with whom I maintain opentrack-git I believe, it's a small world.

According to https://orgmode.org/org.html#Installation the contrib packages have been moved to a repository outside org. These packages are now unmaintained. You can install the org-contrib packages from NonGNU ELPA.

So this patch should suffice:

diff --git a/PKGBUILD b/PKGBUILD
old mode 100755
new mode 100644
index 9f4215a..917bae2
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,8 +5,8 @@
 # Previous Maintainer: gryffyn <aur@evan.mp>

 pkgname=emacs-org-mode
-_srcname=org
-pkgver=9.5.0
+_srcname=org-mode-release
+pkgver=9.6.1
 pkgrel=1
 pkgdesc="Emacs Org Mode"
 arch=('any')
@@ -16,26 +16,24 @@ optdepends=('java-runtime: For using ditaa.jar in the contrib directory'
        'zsh: for using dir2org.zsh in the contrib directory')
 license=('GPL')
 install=emacs-org-mode.install
-source=("http://orgmode.org/$_srcname-$pkgver.tar.gz")
-sha256sums=('028be6615587693698e50d8d51186da87766547b37fd84af6f5c2e2146b2324a')
+source=("https://git.savannah.gnu.org/cgit/emacs/org-mode.git/snapshot/${_srcname}_${pkgver}.tar.gz")
+sha256sums=('946843b98bfb3109cbb6dcbdb2bf01d0d63807ea0699005c60b08fe4bacfba25')

 build() {
-  cd "$_srcname-$pkgver"
-  make
+  cd "${_srcname}_${pkgver}"
+  make autoloads
 }

 package() {
-  cd "$_srcname-$pkgver"
+  cd "${_srcname}_${pkgver}"
   make DESTDIR="$pkgdir" install

-  ## by default now we install also the contrib directory
-  install -d -m755 "$pkgdir"/usr/share/emacs/site-lisp/org_contrib
-  cp -r contrib/* "$pkgdir"/usr/share/emacs/site-lisp/org_contrib
+  ls

   ##! proper install of info files (thanks mdev)
   ##! replace "orgmode" with "org" in the following lines if you want
   ##! to replace emacs own org's info files. You also need to change the  .install.
-  install -D -m644 doc/org "$pkgdir"/usr/share/info/orgmode
-  gzip -9 "$pkgdir"/usr/share/info/orgmode
-  rm "$pkgdir"/usr/share/info/org
+  install -D -m644 doc/org.info "$pkgdir"/usr/share/info/orgmode.info
+  gzip -9 "$pkgdir"/usr/share/info/orgmode.info
+  rm "$pkgdir"/usr/share/info/org.info
 }

The install script does have an error but I wonder if all steps in that script are still required. Seems to work fine in any case.

xanc commented on 2022-12-27 22:05 (UTC)

@deieck Same errors here