Package Details: emacs-org-mode-git 1:9.2.3.r339.gab311b85a-1

Git Clone URL: https://aur.archlinux.org/emacs-org-mode-git.git (read-only, click to copy)
Package Base: emacs-org-mode-git
Description: Emacs Org Mode from git
Upstream URL: http://orgmode.org/
Licenses: GPL
Conflicts: emacs-org-mode
Provides: emacs-org-mode
Submitter: None
Maintainer: None
Last Packager: haawda
Votes: 18
Popularity: 0.000000
First Submitted: 2009-04-04 06:40 (UTC)
Last Updated: 2019-04-13 16:34 (UTC)

Dependencies (7)

Required by (2)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4

<deleted-account> commented on 2011-03-11 10:21 (UTC)

Re: --depth 1 See the discussion in emacs-git: https://aur.archlinux.org/packages.php?ID=22256

listx commented on 2011-03-06 21:36 (UTC)

Here is a PKGBUILD for those who do not want to download 50MB+ of useless revision history data: pkgname=emacs-org-mode-git pkgver=20110306 pkgrel=1 pkgdesc="Emacs Org Mode from git" arch=('i686' 'x86_64') url="http://orgmode.org/" depends=(emacs) makedepends=('git' 'texlive-core') license=('GPL') provides=('emacs-org-mode') conflicts=('emacs-org-mode') options=(!zipman) _gitroot="git://repo.or.cz/org-mode.git" _gitname="emacs-org-mode" build() { cd $srcdir msg "Connecting to the GIT server...." if [[ -d $srcdir/$_gitname ]] ; then cd $_gitname git pull origin msg "The local files are updated." else git clone --depth 1 $_gitroot $_gitname fi msg "GIT checkout done" msg "Starting make..." rm -rf $srcdir/$_gitname-build cp -r $srcdir/$_gitname $srcdir/$_gitname-build cd $srcdir/$_gitname-build make all doc || return 1 make prefix=$pkgdir/usr lispdir=$pkgdir/usr/share/emacs/site-lisp/org install install-info || return 1 install -d $pkgdir/usr/share/doc/$_gitname || return 1 cp doc/*.pdf $pkgdir/usr/share/doc/$_gitname || return 1 install -d $pkgdir/usr/share/emacs/site-lisp/org_contrib || return 1 cp -r contrib/{babel,lisp,scripts} $pkgdir/usr/share/emacs/site-lisp/org_contrib || return 1 rm -rf $srcdir/$_gitname-build }

listx commented on 2011-02-26 04:02 (UTC)

I suggest: git clone --depth 1 <url> because no one here cares about the thousands of past commits/revision history. This should make the initial clone *much* faster, especially as the project grows with more and more commits...