[arch-commits] Commit in parted/repos (10 files)

Giovanni Scafora giovanni at nymeria.archlinux.org
Wed Mar 5 18:41:12 UTC 2014


    Date: Wednesday, March 5, 2014 @ 19:41:12
  Author: giovanni
Revision: 206906

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

Added:
  parted/repos/extra-i686/PKGBUILD
    (from rev 206905, parted/trunk/PKGBUILD)
  parted/repos/extra-i686/parted-3.1-readline.patch
    (from rev 206905, parted/trunk/parted-3.1-readline.patch)
  parted/repos/extra-i686/parted.install
    (from rev 206905, parted/trunk/parted.install)
  parted/repos/extra-x86_64/PKGBUILD
    (from rev 206905, parted/trunk/PKGBUILD)
  parted/repos/extra-x86_64/parted-3.1-readline.patch
    (from rev 206905, parted/trunk/parted-3.1-readline.patch)
  parted/repos/extra-x86_64/parted.install
    (from rev 206905, parted/trunk/parted.install)
Deleted:
  parted/repos/extra-i686/PKGBUILD
  parted/repos/extra-i686/parted.install
  parted/repos/extra-x86_64/PKGBUILD
  parted/repos/extra-x86_64/parted.install

----------------------------------------+
 /PKGBUILD                              |   80 +++++++++++++++++++++++++++++++
 /parted.install                        |   36 +++++++++++++
 extra-i686/PKGBUILD                    |   32 ------------
 extra-i686/parted-3.1-readline.patch   |   11 ++++
 extra-i686/parted.install              |   18 ------
 extra-x86_64/PKGBUILD                  |   32 ------------
 extra-x86_64/parted-3.1-readline.patch |   11 ++++
 extra-x86_64/parted.install            |   18 ------
 8 files changed, 138 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2014-03-05 18:41:06 UTC (rev 206905)
+++ extra-i686/PKGBUILD	2014-03-05 18:41:12 UTC (rev 206906)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Aaron Griffin <aaron at archlinux.org>
-
-pkgname=parted
-pkgver=3.1
-pkgrel=3
-pkgdesc="A program for creating, destroying, resizing, checking and copying partitions"
-arch=('i686' 'x86_64')
-license=('GPL3')
-url="http://www.gnu.org/software/parted/parted.html"
-depends=('device-mapper' 'e2fsprogs')
-makedepends=('pkg-config')
-install=parted.install
-source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('5d89d64d94bcfefa9ce8f59f4b81bdcb')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-              --sbindir=/usr/bin \
-              --disable-debug \
-              --disable-rpath
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: parted/repos/extra-i686/PKGBUILD (from rev 206905, parted/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2014-03-05 18:41:12 UTC (rev 206906)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Aaron Griffin <aaron at archlinux.org>
+
+pkgname=parted
+pkgver=3.1
+pkgrel=4
+pkgdesc="A program for creating, destroying, resizing, checking and copying partitions"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/parted/parted.html"
+depends=('device-mapper' 'e2fsprogs')
+makedepends=('pkg-config')
+install=parted.install
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"
+        'parted-3.1-readline.patch')
+md5sums=('5d89d64d94bcfefa9ce8f59f4b81bdcb'
+         '7f3c0f9d2fa2569054734149c1bf9d0c')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -Np1 -i "${srcdir}/parted-3.1-readline.patch"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+              --sbindir=/usr/bin \
+              --disable-debug \
+              --disable-rpath
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: parted/repos/extra-i686/parted-3.1-readline.patch (from rev 206905, parted/trunk/parted-3.1-readline.patch)
===================================================================
--- extra-i686/parted-3.1-readline.patch	                        (rev 0)
+++ extra-i686/parted-3.1-readline.patch	2014-03-05 18:41:12 UTC (rev 206906)
@@ -0,0 +1,11 @@
+--- a/parted/ui.c
++++ b/parted/ui.c
+@@ -1474,7 +1474,7 @@
+ #ifdef HAVE_LIBREADLINE
+   if (!opt_script_mode) {
+     rl_initialize ();
+-    rl_attempted_completion_function = (CPPFunction*) complete_function;
++    rl_attempted_completion_function = (rl_completion_func_t*) complete_function;
+     readline_state.in_readline = 0;
+   }
+ #endif

Deleted: extra-i686/parted.install
===================================================================
--- extra-i686/parted.install	2014-03-05 18:41:06 UTC (rev 206905)
+++ extra-i686/parted.install	2014-03-05 18:41:12 UTC (rev 206906)
@@ -1,18 +0,0 @@
-info_dir=/usr/share/info
-info_files=(parted.info)
-
-post_install() {
-  for f in ${info_files[@]}; do
-    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  for f in ${info_files[@]}; do
-    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}

Copied: parted/repos/extra-i686/parted.install (from rev 206905, parted/trunk/parted.install)
===================================================================
--- extra-i686/parted.install	                        (rev 0)
+++ extra-i686/parted.install	2014-03-05 18:41:12 UTC (rev 206906)
@@ -0,0 +1,18 @@
+info_dir=/usr/share/info
+info_files=(parted.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2014-03-05 18:41:06 UTC (rev 206905)
+++ extra-x86_64/PKGBUILD	2014-03-05 18:41:12 UTC (rev 206906)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: Aaron Griffin <aaron at archlinux.org>
-
-pkgname=parted
-pkgver=3.1
-pkgrel=3
-pkgdesc="A program for creating, destroying, resizing, checking and copying partitions"
-arch=('i686' 'x86_64')
-license=('GPL3')
-url="http://www.gnu.org/software/parted/parted.html"
-depends=('device-mapper' 'e2fsprogs')
-makedepends=('pkg-config')
-install=parted.install
-source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz")
-md5sums=('5d89d64d94bcfefa9ce8f59f4b81bdcb')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
-              --sbindir=/usr/bin \
-              --disable-debug \
-              --disable-rpath
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: parted/repos/extra-x86_64/PKGBUILD (from rev 206905, parted/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2014-03-05 18:41:12 UTC (rev 206906)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: Aaron Griffin <aaron at archlinux.org>
+
+pkgname=parted
+pkgver=3.1
+pkgrel=4
+pkgdesc="A program for creating, destroying, resizing, checking and copying partitions"
+arch=('i686' 'x86_64')
+license=('GPL3')
+url="http://www.gnu.org/software/parted/parted.html"
+depends=('device-mapper' 'e2fsprogs')
+makedepends=('pkg-config')
+install=parted.install
+source=("http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"
+        'parted-3.1-readline.patch')
+md5sums=('5d89d64d94bcfefa9ce8f59f4b81bdcb'
+         '7f3c0f9d2fa2569054734149c1bf9d0c')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -Np1 -i "${srcdir}/parted-3.1-readline.patch"
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+              --sbindir=/usr/bin \
+              --disable-debug \
+              --disable-rpath
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: parted/repos/extra-x86_64/parted-3.1-readline.patch (from rev 206905, parted/trunk/parted-3.1-readline.patch)
===================================================================
--- extra-x86_64/parted-3.1-readline.patch	                        (rev 0)
+++ extra-x86_64/parted-3.1-readline.patch	2014-03-05 18:41:12 UTC (rev 206906)
@@ -0,0 +1,11 @@
+--- a/parted/ui.c
++++ b/parted/ui.c
+@@ -1474,7 +1474,7 @@
+ #ifdef HAVE_LIBREADLINE
+   if (!opt_script_mode) {
+     rl_initialize ();
+-    rl_attempted_completion_function = (CPPFunction*) complete_function;
++    rl_attempted_completion_function = (rl_completion_func_t*) complete_function;
+     readline_state.in_readline = 0;
+   }
+ #endif

Deleted: extra-x86_64/parted.install
===================================================================
--- extra-x86_64/parted.install	2014-03-05 18:41:06 UTC (rev 206905)
+++ extra-x86_64/parted.install	2014-03-05 18:41:12 UTC (rev 206906)
@@ -1,18 +0,0 @@
-info_dir=/usr/share/info
-info_files=(parted.info)
-
-post_install() {
-  for f in ${info_files[@]}; do
-    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}
-
-post_upgrade() {
-  post_install
-}
-
-pre_remove() {
-  for f in ${info_files[@]}; do
-    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
-  done
-}

Copied: parted/repos/extra-x86_64/parted.install (from rev 206905, parted/trunk/parted.install)
===================================================================
--- extra-x86_64/parted.install	                        (rev 0)
+++ extra-x86_64/parted.install	2014-03-05 18:41:12 UTC (rev 206906)
@@ -0,0 +1,18 @@
+info_dir=/usr/share/info
+info_files=(parted.info)
+
+post_install() {
+  for f in ${info_files[@]}; do
+    install-info ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  for f in ${info_files[@]}; do
+    install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2> /dev/null
+  done
+}




More information about the arch-commits mailing list