[arch-commits] Commit in aspell/repos (6 files)

Felix Yan fyan at archlinux.org
Wed Apr 27 14:39:05 UTC 2016


    Date: Wednesday, April 27, 2016 @ 16:39:04
  Author: fyan
Revision: 266218

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  aspell/repos/extra-i686/PKGBUILD
    (from rev 266217, aspell/trunk/PKGBUILD)
  aspell/repos/extra-x86_64/PKGBUILD
    (from rev 266217, aspell/trunk/PKGBUILD)
Deleted:
  aspell/repos/extra-i686/PKGBUILD
  aspell/repos/extra-i686/aspell.install
  aspell/repos/extra-x86_64/PKGBUILD
  aspell/repos/extra-x86_64/aspell.install

-----------------------------+
 /PKGBUILD                   |   64 ++++++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD         |   33 ---------------------
 extra-i686/aspell.install   |   24 ---------------
 extra-x86_64/PKGBUILD       |   33 ---------------------
 extra-x86_64/aspell.install |   24 ---------------
 5 files changed, 64 insertions(+), 114 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2016-04-27 14:38:27 UTC (rev 266217)
+++ extra-i686/PKGBUILD	2016-04-27 14:39:04 UTC (rev 266218)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Jochem Kossen <j.kossen at home.nl>
-# Contributor: dorphell <dorphell at archlinux.org>
-# Contributor: Thayer Williams <thayer at archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=aspell
-pkgver=0.60.6.1
-_pkgmajorver=0.60
-pkgrel=4
-pkgdesc="A spell checker designed to eventually replace Ispell"
-arch=('i686' 'x86_64')
-url="http://aspell.net/"
-license=('LGPL')
-depends=('gcc-libs' 'ncurses')
-optdepends=('perl: to import old dictionaries')
-install=aspell.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('e66a9c9af6a60dc46134fdacf6ce97d7')
-sha1sums=('ff1190db8de279f950c242c6f4c5d5cdc2cbdc49')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  ln -s ${pkgname}-${_pkgmajorver} "${pkgdir}/usr/lib/${pkgname}"
-}

Copied: aspell/repos/extra-i686/PKGBUILD (from rev 266217, aspell/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2016-04-27 14:39:04 UTC (rev 266218)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at gmail.com>
+# Contributor: Jochem Kossen <j.kossen at home.nl>
+# Contributor: dorphell <dorphell at archlinux.org>
+# Contributor: Thayer Williams <thayer at archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=aspell
+pkgver=0.60.6.1
+_pkgmajorver=0.60
+pkgrel=5
+pkgdesc="A spell checker designed to eventually replace Ispell"
+arch=('i686' 'x86_64')
+url="http://aspell.net/"
+license=('LGPL')
+depends=('gcc-libs' 'ncurses')
+optdepends=('perl: to import old dictionaries')
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('e66a9c9af6a60dc46134fdacf6ce97d7')
+sha1sums=('ff1190db8de279f950c242c6f4c5d5cdc2cbdc49')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  ln -s ${pkgname}-${_pkgmajorver} "${pkgdir}/usr/lib/${pkgname}"
+}

Deleted: extra-i686/aspell.install
===================================================================
--- extra-i686/aspell.install	2016-04-27 14:38:27 UTC (rev 266217)
+++ extra-i686/aspell.install	2016-04-27 14:39:04 UTC (rev 266218)
@@ -1,24 +0,0 @@
-infodir=usr/share/info
-filelist=(aspell.info aspell-dev.info)
-
-post_install() {
-  echo "==> aspell comes with no default dictionary"
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2016-04-27 14:38:27 UTC (rev 266217)
+++ extra-x86_64/PKGBUILD	2016-04-27 14:39:04 UTC (rev 266218)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Jochem Kossen <j.kossen at home.nl>
-# Contributor: dorphell <dorphell at archlinux.org>
-# Contributor: Thayer Williams <thayer at archlinux.org>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=aspell
-pkgver=0.60.6.1
-_pkgmajorver=0.60
-pkgrel=4
-pkgdesc="A spell checker designed to eventually replace Ispell"
-arch=('i686' 'x86_64')
-url="http://aspell.net/"
-license=('LGPL')
-depends=('gcc-libs' 'ncurses')
-optdepends=('perl: to import old dictionaries')
-install=aspell.install
-source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('e66a9c9af6a60dc46134fdacf6ce97d7')
-sha1sums=('ff1190db8de279f950c242c6f4c5d5cdc2cbdc49')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  ln -s ${pkgname}-${_pkgmajorver} "${pkgdir}/usr/lib/${pkgname}"
-}

Copied: aspell/repos/extra-x86_64/PKGBUILD (from rev 266217, aspell/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2016-04-27 14:39:04 UTC (rev 266218)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at gmail.com>
+# Contributor: Jochem Kossen <j.kossen at home.nl>
+# Contributor: dorphell <dorphell at archlinux.org>
+# Contributor: Thayer Williams <thayer at archlinux.org>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=aspell
+pkgver=0.60.6.1
+_pkgmajorver=0.60
+pkgrel=5
+pkgdesc="A spell checker designed to eventually replace Ispell"
+arch=('i686' 'x86_64')
+url="http://aspell.net/"
+license=('LGPL')
+depends=('gcc-libs' 'ncurses')
+optdepends=('perl: to import old dictionaries')
+source=(ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('e66a9c9af6a60dc46134fdacf6ce97d7')
+sha1sums=('ff1190db8de279f950c242c6f4c5d5cdc2cbdc49')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  ln -s ${pkgname}-${_pkgmajorver} "${pkgdir}/usr/lib/${pkgname}"
+}

Deleted: extra-x86_64/aspell.install
===================================================================
--- extra-x86_64/aspell.install	2016-04-27 14:38:27 UTC (rev 266217)
+++ extra-x86_64/aspell.install	2016-04-27 14:39:04 UTC (rev 266218)
@@ -1,24 +0,0 @@
-infodir=usr/share/info
-filelist=(aspell.info aspell-dev.info)
-
-post_install() {
-  echo "==> aspell comes with no default dictionary"
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info $infodir/$file $infodir/dir 2> /dev/null
-  done
-}
-
-pre_remove() {
-  [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-    install-info --delete $infodir/$file $infodir/dir 2> /dev/null
-  done
-}



More information about the arch-commits mailing list