[arch-commits] Commit in tdl/repos (8 files)

Alexander Rødseth arodseth at nymeria.archlinux.org
Sat Apr 12 16:55:40 UTC 2014


    Date: Saturday, April 12, 2014 @ 18:55:40
  Author: arodseth
Revision: 109251

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

Added:
  tdl/repos/community-i686/PKGBUILD
    (from rev 109250, tdl/trunk/PKGBUILD)
  tdl/repos/community-i686/readline63.patch
    (from rev 109250, tdl/trunk/readline63.patch)
  tdl/repos/community-x86_64/PKGBUILD
    (from rev 109250, tdl/trunk/PKGBUILD)
  tdl/repos/community-x86_64/readline63.patch
    (from rev 109250, tdl/trunk/readline63.patch)
Deleted:
  tdl/repos/community-i686/ChangeLog
  tdl/repos/community-i686/PKGBUILD
  tdl/repos/community-x86_64/ChangeLog
  tdl/repos/community-x86_64/PKGBUILD

-----------------------------------+
 /PKGBUILD                         |   70 ++++++++++++++++++++++++++++++++++++
 community-i686/ChangeLog          |    3 -
 community-i686/PKGBUILD           |   26 -------------
 community-i686/readline63.patch   |   32 ++++++++++++++++
 community-x86_64/ChangeLog        |    3 -
 community-x86_64/PKGBUILD         |   26 -------------
 community-x86_64/readline63.patch |   32 ++++++++++++++++
 7 files changed, 134 insertions(+), 58 deletions(-)

Deleted: community-i686/ChangeLog
===================================================================
--- community-i686/ChangeLog	2014-04-12 16:55:28 UTC (rev 109250)
+++ community-i686/ChangeLog	2014-04-12 16:55:40 UTC (rev 109251)
@@ -1,3 +0,0 @@
-2007-06-27 tardo <tardo at nagi-fanboi.net>
-* Built for x86_64
-

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-04-12 16:55:28 UTC (rev 109250)
+++ community-i686/PKGBUILD	2014-04-12 16:55:40 UTC (rev 109251)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jeff Mickey <j at codemac.net>
-# Contributor: Jeff "codemac" Mickey <j at codemac.net>
-
-pkgname=tdl
-pkgver=1.5.2
-pkgrel=5
-pkgdesc="A to-do list manager."
-arch=('i686' 'x86_64')
-url="http://www.rc0.org.uk/tdl/"
-license=('GPL')
-depends=('ncurses')
-source=("http://www.rpcurnow.force9.co.uk/tdl/$pkgname-$pkgver.tar.gz")
-md5sums=('620cb00bf99b7e786e2b54cda6339a1e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: tdl/repos/community-i686/PKGBUILD (from rev 109250, tdl/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-04-12 16:55:40 UTC (rev 109251)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Jeff Mickey <j at codemac.net>
+
+pkgname=tdl
+pkgver=1.5.2
+pkgrel=6
+pkgdesc='TODO list manager'
+arch=('x86_64' 'i686')
+url='https://github.com/rc0/tdl'
+license=('GPL')
+depends=('readline')
+makedepends=('git')
+source=("$pkgname::git://github.com/T-J-Teru/tdl.git#commit=382c52a2d1f2d064110c189459fe09a6edb12761" 'readline63.patch')
+md5sums=('SKIP'
+         'dada1488632f9d672e75e15cfb011ecb')
+
+prepare() {
+  cd "$pkgname"
+
+  patch -p1 -i "$srcdir/readline63.patch"
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+package() {
+  make -C "$pkgname" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: tdl/repos/community-i686/readline63.patch (from rev 109250, tdl/trunk/readline63.patch)
===================================================================
--- community-i686/readline63.patch	                        (rev 0)
+++ community-i686/readline63.patch	2014-04-12 16:55:40 UTC (rev 109251)
@@ -0,0 +1,32 @@
+--- a/inter.c	2014-04-12 18:48:39.020103780 +0200
++++ b/inter.c	2014-04-12 18:48:33.323365100 +0200
+@@ -556,7 +556,7 @@
+ static char *interactive_text_readline(char *prompt, char *initval, int *is_blank, int *error)/*{{{*/
+ {
+   char *line;
+-  Function *old_rl_pre_input_hook = NULL;
++  rl_command_func_t *old_rl_pre_input_hook = NULL;
+   
+   *error = 0;
+   old_rl_pre_input_hook = rl_pre_input_hook;
+@@ -633,9 +633,9 @@
+ #ifdef USE_READLINE
+   if (isatty(0)) {
+     char *result;
+-    rl_attempted_completion_function = (CPPFunction *) null_tdl_completion;
++    rl_attempted_completion_function = null_tdl_completion;
+     result = interactive_text_readline(prompt, initval, is_blank, error);
+-    rl_attempted_completion_function = (CPPFunction *) tdl_completion;
++    rl_attempted_completion_function = tdl_completion;
+     return result;
+   } else {
+     /* In case someone wants to drive tdl from a script, by redirecting stdin to it. */
+@@ -653,7 +653,7 @@
+ #ifdef USE_READLINE
+   if (isatty(0)) {
+     rl_completion_entry_function = NULL;
+-    rl_attempted_completion_function = (CPPFunction *) tdl_completion;
++    rl_attempted_completion_function = tdl_completion;
+     interactive_readline();
+   } else {
+     /* In case someone wants to drive tdl from a script, by redirecting stdin to it. */

Deleted: community-x86_64/ChangeLog
===================================================================
--- community-x86_64/ChangeLog	2014-04-12 16:55:28 UTC (rev 109250)
+++ community-x86_64/ChangeLog	2014-04-12 16:55:40 UTC (rev 109251)
@@ -1,3 +0,0 @@
-2007-06-27 tardo <tardo at nagi-fanboi.net>
-* Built for x86_64
-

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-04-12 16:55:28 UTC (rev 109250)
+++ community-x86_64/PKGBUILD	2014-04-12 16:55:40 UTC (rev 109251)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jeff Mickey <j at codemac.net>
-# Contributor: Jeff "codemac" Mickey <j at codemac.net>
-
-pkgname=tdl
-pkgver=1.5.2
-pkgrel=5
-pkgdesc="A to-do list manager."
-arch=('i686' 'x86_64')
-url="http://www.rc0.org.uk/tdl/"
-license=('GPL')
-depends=('ncurses')
-source=("http://www.rpcurnow.force9.co.uk/tdl/$pkgname-$pkgver.tar.gz")
-md5sums=('620cb00bf99b7e786e2b54cda6339a1e')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: tdl/repos/community-x86_64/PKGBUILD (from rev 109250, tdl/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-04-12 16:55:40 UTC (rev 109251)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Jeff Mickey <j at codemac.net>
+
+pkgname=tdl
+pkgver=1.5.2
+pkgrel=6
+pkgdesc='TODO list manager'
+arch=('x86_64' 'i686')
+url='https://github.com/rc0/tdl'
+license=('GPL')
+depends=('readline')
+makedepends=('git')
+source=("$pkgname::git://github.com/T-J-Teru/tdl.git#commit=382c52a2d1f2d064110c189459fe09a6edb12761" 'readline63.patch')
+md5sums=('SKIP'
+         'dada1488632f9d672e75e15cfb011ecb')
+
+prepare() {
+  cd "$pkgname"
+
+  patch -p1 -i "$srcdir/readline63.patch"
+}
+
+build() {
+  cd "$pkgname"
+
+  ./configure --prefix=/usr --mandir=/usr/share/man
+  make
+}
+
+package() {
+  make -C "$pkgname" DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: tdl/repos/community-x86_64/readline63.patch (from rev 109250, tdl/trunk/readline63.patch)
===================================================================
--- community-x86_64/readline63.patch	                        (rev 0)
+++ community-x86_64/readline63.patch	2014-04-12 16:55:40 UTC (rev 109251)
@@ -0,0 +1,32 @@
+--- a/inter.c	2014-04-12 18:48:39.020103780 +0200
++++ b/inter.c	2014-04-12 18:48:33.323365100 +0200
+@@ -556,7 +556,7 @@
+ static char *interactive_text_readline(char *prompt, char *initval, int *is_blank, int *error)/*{{{*/
+ {
+   char *line;
+-  Function *old_rl_pre_input_hook = NULL;
++  rl_command_func_t *old_rl_pre_input_hook = NULL;
+   
+   *error = 0;
+   old_rl_pre_input_hook = rl_pre_input_hook;
+@@ -633,9 +633,9 @@
+ #ifdef USE_READLINE
+   if (isatty(0)) {
+     char *result;
+-    rl_attempted_completion_function = (CPPFunction *) null_tdl_completion;
++    rl_attempted_completion_function = null_tdl_completion;
+     result = interactive_text_readline(prompt, initval, is_blank, error);
+-    rl_attempted_completion_function = (CPPFunction *) tdl_completion;
++    rl_attempted_completion_function = tdl_completion;
+     return result;
+   } else {
+     /* In case someone wants to drive tdl from a script, by redirecting stdin to it. */
+@@ -653,7 +653,7 @@
+ #ifdef USE_READLINE
+   if (isatty(0)) {
+     rl_completion_entry_function = NULL;
+-    rl_attempted_completion_function = (CPPFunction *) tdl_completion;
++    rl_attempted_completion_function = tdl_completion;
+     interactive_readline();
+   } else {
+     /* In case someone wants to drive tdl from a script, by redirecting stdin to it. */




More information about the arch-commits mailing list