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

Jan Steffens heftig at nymeria.archlinux.org
Sun Apr 21 22:16:44 UTC 2013


    Date: Monday, April 22, 2013 @ 00:16:44
  Author: heftig
Revision: 88677

db-move: moved elinks from [community-testing] to [community] (i686, x86_64)

Added:
  elinks/repos/community-i686/PKGBUILD
    (from rev 88672, elinks/repos/community-testing-i686/PKGBUILD)
  elinks/repos/community-x86_64/PKGBUILD
    (from rev 88672, elinks/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  elinks/repos/community-i686/PKGBUILD
  elinks/repos/community-testing-i686/
  elinks/repos/community-testing-x86_64/
  elinks/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |   80 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   60 ---------------------------------
 community-x86_64/PKGBUILD |   60 ---------------------------------
 3 files changed, 80 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-04-21 22:16:43 UTC (rev 88676)
+++ community-i686/PKGBUILD	2013-04-21 22:16:44 UTC (rev 88677)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-# Contributor: Ben <contrasutra at myrealbox.com>
-
-pkgname=elinks
-pkgver=0.13
-_commit="9313aae9062e1d9ff084858fa6844259cd8237d6"
-pkgrel=11
-pkgdesc="An advanced and well-established feature-rich text mode web browser."
-arch=("i686" "x86_64")
-url="http://elinks.or.cz"
-license=('GPL')
-depends=('bzip2' 'expat>=2.0' 'gpm>=1.20.4' 'openssl' 'lua51' 'libidn' 'js'
-	 'gc' 'tre')
-makedepends=('git')
-source=()
-md5sums=()
-
-__gitroot="http://elinks.cz/elinks.git"
-__gitname="elinks"
-
-build() {
-  cd "$srcdir"
-  msg "Connecting to GIT server...."
- 
-  if [ -d $__gitname ] ; then
-    cd $__gitname && git pull origin
-    msg "The local files are updated."
-  else
-    git clone $__gitroot
-  fi
- 
-  msg "GIT checkout done or server timeout"
-  msg "Starting make..."
- 
-  rm -rf "$srcdir/$__gitname-build"
-  git clone "$srcdir/$__gitname" "$srcdir/$__gitname-build"
-  cd "$srcdir/$__gitname-build"
-  git checkout "$_commit"
-
-  [ -x configure ] || sh autogen.sh
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-              --sysconfdir=/etc \
-              --disable-smb --without-x --enable-cgi \
-              --enable-leds --enable-256-colors --enable-html-highlight \
-              --with-zlib
-  make
-}
-
-package() {
-  cd "$srcdir/$__gitname-build"
-  make DESTDIR="$pkgdir" install
-  rm -f "$pkgdir/usr/share/locale/locale.alias"
-
-  install -D -m644 "contrib/debian/$pkgname.desktop" \
-    "$pkgdir/usr/share/applications/$pkgname.desktop"
-}

Copied: elinks/repos/community-i686/PKGBUILD (from rev 88672, elinks/repos/community-testing-i686/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-04-21 22:16:44 UTC (rev 88677)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+# Contributor: Ben <contrasutra at myrealbox.com>
+
+pkgname=elinks
+pkgver=0.13
+_commit="9313aae9062e1d9ff084858fa6844259cd8237d6"
+pkgrel=12
+pkgdesc="An advanced and well-established feature-rich text mode web browser."
+arch=("i686" "x86_64")
+url="http://elinks.or.cz"
+license=('GPL')
+depends=('bzip2' 'expat>=2.0' 'gpm>=1.20.4' 'openssl' 'lua51' 'libidn' 'js185'
+	 'gc' 'tre')
+makedepends=('git')
+source=("git+http://elinks.cz/elinks.git#commit=$_commit")
+md5sums=('SKIP')
+
+build() {
+  cd elinks
+  [ -x configure ] || sh autogen.sh
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+              --sysconfdir=/etc \
+              --disable-smb --without-x --enable-cgi \
+              --enable-leds --enable-256-colors --enable-html-highlight \
+              --with-zlib
+  make
+}
+
+package() {
+  cd elinks
+  make DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/share/locale/locale.alias"
+
+  install -D -m644 "contrib/debian/$pkgname.desktop" \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-04-21 22:16:43 UTC (rev 88676)
+++ community-x86_64/PKGBUILD	2013-04-21 22:16:44 UTC (rev 88677)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Andrea Scarpino <andrea at archlinux.org>
-# Contributor: damir <damir at archlinux.org>
-# Contributor: Ben <contrasutra at myrealbox.com>
-
-pkgname=elinks
-pkgver=0.13
-_commit="9313aae9062e1d9ff084858fa6844259cd8237d6"
-pkgrel=11
-pkgdesc="An advanced and well-established feature-rich text mode web browser."
-arch=("i686" "x86_64")
-url="http://elinks.or.cz"
-license=('GPL')
-depends=('bzip2' 'expat>=2.0' 'gpm>=1.20.4' 'openssl' 'lua51' 'libidn' 'js'
-	 'gc' 'tre')
-makedepends=('git')
-source=()
-md5sums=()
-
-__gitroot="http://elinks.cz/elinks.git"
-__gitname="elinks"
-
-build() {
-  cd "$srcdir"
-  msg "Connecting to GIT server...."
- 
-  if [ -d $__gitname ] ; then
-    cd $__gitname && git pull origin
-    msg "The local files are updated."
-  else
-    git clone $__gitroot
-  fi
- 
-  msg "GIT checkout done or server timeout"
-  msg "Starting make..."
- 
-  rm -rf "$srcdir/$__gitname-build"
-  git clone "$srcdir/$__gitname" "$srcdir/$__gitname-build"
-  cd "$srcdir/$__gitname-build"
-  git checkout "$_commit"
-
-  [ -x configure ] || sh autogen.sh
-  ./configure --prefix=/usr --mandir=/usr/share/man \
-              --sysconfdir=/etc \
-              --disable-smb --without-x --enable-cgi \
-              --enable-leds --enable-256-colors --enable-html-highlight \
-              --with-zlib
-  make
-}
-
-package() {
-  cd "$srcdir/$__gitname-build"
-  make DESTDIR="$pkgdir" install
-  rm -f "$pkgdir/usr/share/locale/locale.alias"
-
-  install -D -m644 "contrib/debian/$pkgname.desktop" \
-    "$pkgdir/usr/share/applications/$pkgname.desktop"
-}

Copied: elinks/repos/community-x86_64/PKGBUILD (from rev 88672, elinks/repos/community-testing-x86_64/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-04-21 22:16:44 UTC (rev 88677)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: damir <damir at archlinux.org>
+# Contributor: Ben <contrasutra at myrealbox.com>
+
+pkgname=elinks
+pkgver=0.13
+_commit="9313aae9062e1d9ff084858fa6844259cd8237d6"
+pkgrel=12
+pkgdesc="An advanced and well-established feature-rich text mode web browser."
+arch=("i686" "x86_64")
+url="http://elinks.or.cz"
+license=('GPL')
+depends=('bzip2' 'expat>=2.0' 'gpm>=1.20.4' 'openssl' 'lua51' 'libidn' 'js185'
+	 'gc' 'tre')
+makedepends=('git')
+source=("git+http://elinks.cz/elinks.git#commit=$_commit")
+md5sums=('SKIP')
+
+build() {
+  cd elinks
+  [ -x configure ] || sh autogen.sh
+  ./configure --prefix=/usr --mandir=/usr/share/man \
+              --sysconfdir=/etc \
+              --disable-smb --without-x --enable-cgi \
+              --enable-leds --enable-256-colors --enable-html-highlight \
+              --with-zlib
+  make
+}
+
+package() {
+  cd elinks
+  make DESTDIR="$pkgdir" install
+  rm -f "$pkgdir/usr/share/locale/locale.alias"
+
+  install -D -m644 "contrib/debian/$pkgname.desktop" \
+    "$pkgdir/usr/share/applications/$pkgname.desktop"
+}




More information about the arch-commits mailing list