[arch-commits] Commit in emacs-nox/repos/community-i686 (6 files)
Jaroslav Lichtblau
jlichtblau at nymeria.archlinux.org
Sat Apr 20 17:33:18 UTC 2013
Date: Saturday, April 20, 2013 @ 19:33:17
Author: jlichtblau
Revision: 88622
archrelease: copy trunk to community-i686
Added:
emacs-nox/repos/community-i686/PKGBUILD
(from rev 88621, emacs-nox/trunk/PKGBUILD)
emacs-nox/repos/community-i686/emacs-nox.changelog
(from rev 88621, emacs-nox/trunk/emacs-nox.changelog)
emacs-nox/repos/community-i686/emacs-nox.install
(from rev 88621, emacs-nox/trunk/emacs-nox.install)
Deleted:
emacs-nox/repos/community-i686/PKGBUILD
emacs-nox/repos/community-i686/emacs-nox.changelog
emacs-nox/repos/community-i686/emacs-nox.install
---------------------+
PKGBUILD | 94 ++++++++++++++++++++++++--------------------------
emacs-nox.changelog | 55 +++++++++++++++--------------
emacs-nox.install | 50 +++++++++++++-------------
3 files changed, 100 insertions(+), 99 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2013-04-20 17:17:19 UTC (rev 88621)
+++ PKGBUILD 2013-04-20 17:33:17 UTC (rev 88622)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-# Contributor: Chris Brannon <cmbrannon at cox.net>
-
-pkgname=emacs-nox
-pkgver=24.2
-pkgrel=1
-pkgdesc="The Emacs Editor, without X11 support"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/emacs/emacs.html"
-license=('GPL3')
-depends=('dbus-core' 'ncurses' 'perl')
-provides=('emacs')
-conflicts=('emacs' 'emacs-cvs')
-options=('docs')
-changelog=$pkgname.changelog
-install=$pkgname.install
-source=(ftp://ftp.gnu.org/gnu/emacs/emacs-${pkgver}.tar.gz)
-sha256sums=('6d9892dff6e1761d4a5eba20712beba4f37d77a196f8021081a2e69fcb5bd357')
-
-build() {
- cd ${srcdir}/emacs-$pkgver
-
- ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
- --localstatedir=/var --without-x --without-sound
- make
-}
-
-package() {
- cd ${srcdir}/emacs-$pkgver
- make DESTDIR=${pkgdir} install
-
- # remove conflict with ctags package
- mv ${pkgdir}/usr/bin/{ctags,ctags.emacs}
- mv ${pkgdir}/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
-
- # fix all the 777 perms on directories
- find ${pkgdir}/usr/share/emacs/$pkgver -type d -exec chmod 755 {} \;
- # fix user/root permissions on usr/share files
- find ${pkgdir}/usr/share/emacs/$pkgver -exec chown root.root {} \;
- # remove .desktop file and icons
- rm -rf ${pkgdir}/usr/share/{applications,icons}
- # fix perms on /var/games
- chmod 775 ${pkgdir}/var/games
- chmod 775 ${pkgdir}/var/games/emacs
- chmod 664 ${pkgdir}/var/games/emacs/*
- chown -R root:games ${pkgdir}/var/games
-}
Copied: emacs-nox/repos/community-i686/PKGBUILD (from rev 88621, emacs-nox/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2013-04-20 17:33:17 UTC (rev 88622)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: Chris Brannon <cmbrannon at cox.net>
+
+pkgname=emacs-nox
+pkgver=24.3
+pkgrel=1
+pkgdesc="The extensible, customizable, self-documenting real-time display editor, without X11 support"
+arch=('i686' 'x86_64')
+url="http://www.gnu.org/software/emacs/emacs.html"
+license=('GPL3')
+depends=('dbus-core' 'ncurses' 'perl')
+provides=('emacs')
+conflicts=('emacs')
+changelog=$pkgname.changelog
+install=$pkgname.install
+source=(ftp://ftp.gnu.org/gnu/emacs/emacs-${pkgver}.tar.gz)
+sha256sums=('0098ca3204813d69cd8412045ba33e8701fa2062f4bff56bedafc064979eef41')
+
+build() {
+ cd ${srcdir}/emacs-$pkgver
+
+ ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+ --localstatedir=/var --without-x --without-sound
+ make
+}
+
+package() {
+ cd ${srcdir}/emacs-$pkgver
+ make DESTDIR=${pkgdir} install
+
+ # remove conflict with ctags package
+ mv ${pkgdir}/usr/bin/{ctags,ctags.emacs}
+ mv ${pkgdir}/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
+ # remove conflict with texinfo
+ rm "$pkgdir"/usr/share/info/info.info.gz
+ # fix user/root permissions on usr/share files
+ find ${pkgdir}/usr/share/emacs/$pkgver -exec chown root.root {} \;
+ # remove .desktop file and icons
+ rm -rf ${pkgdir}/usr/share/{applications,icons}
+ # fix perms on /var/games
+ chmod 775 ${pkgdir}/var/games
+ chmod 775 ${pkgdir}/var/games/emacs
+ chmod 664 ${pkgdir}/var/games/emacs/*
+ chown -R root:games ${pkgdir}/var/games
+}
Deleted: emacs-nox.changelog
===================================================================
--- emacs-nox.changelog 2013-04-20 17:17:19 UTC (rev 88621)
+++ emacs-nox.changelog 2013-04-20 17:33:17 UTC (rev 88622)
@@ -1,26 +0,0 @@
-2012-09-12 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
- * emacs-nox 24.2-1
-
-2012-06-12 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
- * emacs-nox 24.1-1
-
-2011-03-13 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
- * emacs-nox 23.3-1
-
-2010-05-12 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
- * Update to major release 23.2
-
-2010-03-17 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
- * 23.1-2 - fix for FS#18688 - [emacs-nox] compiled with SSE2 instructions
-
-2009-12-18 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
- * Update to major release 23.1
-
-2008-11-01 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
- * New PKGBUILD/install method provided by Chris Brannon <cmbrannon at cox.net>
- * => Added an install script
- * => Info files are now installed using install-info
-
-2008-09-08 Jaroslav Lichtblau <tu at dragonlord.cz>
- * Package moved to [community]
- * Update to major release 22.3
Copied: emacs-nox/repos/community-i686/emacs-nox.changelog (from rev 88621, emacs-nox/trunk/emacs-nox.changelog)
===================================================================
--- emacs-nox.changelog (rev 0)
+++ emacs-nox.changelog 2013-04-20 17:33:17 UTC (rev 88622)
@@ -0,0 +1,29 @@
+2013-04-20 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * emacs-nox 24.3-1
+
+2012-09-12 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * emacs-nox 24.2-1
+
+2012-06-12 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * emacs-nox 24.1-1
+
+2011-03-13 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * emacs-nox 23.3-1
+
+2010-05-12 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * Update to major release 23.2
+
+2010-03-17 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * 23.1-2 - fix for FS#18688 - [emacs-nox] compiled with SSE2 instructions
+
+2009-12-18 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * Update to major release 23.1
+
+2008-11-01 Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+ * New PKGBUILD/install method provided by Chris Brannon <cmbrannon at cox.net>
+ * => Added an install script
+ * => Info files are now installed using install-info
+
+2008-09-08 Jaroslav Lichtblau <tu at dragonlord.cz>
+ * Package moved to [community]
+ * Update to major release 22.3
Deleted: emacs-nox.install
===================================================================
--- emacs-nox.install 2013-04-20 17:17:19 UTC (rev 88621)
+++ emacs-nox.install 2013-04-20 17:33:17 UTC (rev 88622)
@@ -1,25 +0,0 @@
-INFO_DIR=usr/share/info
-
-INFO_FILES=(ada-mode auth autotype calc ccmode cl dbus dired-x ebrowse
-ede ediff edt efaq eieio eintr elisp emacs emacs-mime epa erc eshell eudc flymake
-forms gnus idlwave info mairix-el message mh-e newsticker nxml-mode
-org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail
-speedbar tramp url vip viper widget woman)
-
-post_install() {
- [[ -x usr/bin/install-info ]] || return 0
- for f in ${INFO_FILES[@]}; do
- install-info ${INFO_DIR}/$f.gz ${INFO_DIR}/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [[ -x usr/bin/install-info ]] || return 0
- for f in ${INFO_FILES[@]}; do
- install-info --delete ${INFO_DIR}/$f.gz ${INFO_DIR}/dir 2> /dev/null
- done
-}
Copied: emacs-nox/repos/community-i686/emacs-nox.install (from rev 88621, emacs-nox/trunk/emacs-nox.install)
===================================================================
--- emacs-nox.install (rev 0)
+++ emacs-nox.install 2013-04-20 17:33:17 UTC (rev 88622)
@@ -0,0 +1,25 @@
+INFO_DIR=usr/share/info
+
+INFO_FILES=(ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse
+ede ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc ert eshell eudc flymake
+forms gnus htmlfontify idlwave mairix-el message mh-e newsticker nxml-mode
+org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail
+speedbar srecode tramp url vip viper widget wisent woman)
+
+post_install() {
+ [[ -x usr/bin/install-info ]] || return 0
+ for f in ${INFO_FILES[@]}; do
+ install-info ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+pre_remove() {
+ [[ -x usr/bin/install-info ]] || return 0
+ for f in ${INFO_FILES[@]}; do
+ install-info --delete ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null
+ done
+}
More information about the arch-commits
mailing list