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

Sébastien Luttringer seblu at archlinux.org
Thu Nov 3 10:59:30 UTC 2016


    Date: Thursday, November 3, 2016 @ 10:59:29
  Author: seblu
Revision: 279786

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

Added:
  tar/repos/testing-i686/
  tar/repos/testing-i686/01-When-extracting-skip-.-members.patch
    (from rev 279785, tar/trunk/01-When-extracting-skip-.-members.patch)
  tar/repos/testing-i686/PKGBUILD
    (from rev 279785, tar/trunk/PKGBUILD)
  tar/repos/testing-x86_64/
  tar/repos/testing-x86_64/01-When-extracting-skip-.-members.patch
    (from rev 279785, tar/trunk/01-When-extracting-skip-.-members.patch)
  tar/repos/testing-x86_64/PKGBUILD
    (from rev 279785, tar/trunk/PKGBUILD)

--------------------------------------------------------+
 testing-i686/01-When-extracting-skip-.-members.patch   |   25 +++++++
 testing-i686/PKGBUILD                                  |   52 +++++++++++++++
 testing-x86_64/01-When-extracting-skip-.-members.patch |   25 +++++++
 testing-x86_64/PKGBUILD                                |   52 +++++++++++++++
 4 files changed, 154 insertions(+)

Copied: tar/repos/testing-i686/01-When-extracting-skip-.-members.patch (from rev 279785, tar/trunk/01-When-extracting-skip-.-members.patch)
===================================================================
--- testing-i686/01-When-extracting-skip-.-members.patch	                        (rev 0)
+++ testing-i686/01-When-extracting-skip-.-members.patch	2016-11-03 10:59:29 UTC (rev 279786)
@@ -0,0 +1,25 @@
+diff --git a/src/extract.c b/src/extract.c
+index f982433..7904148 100644
+--- a/src/extract.c
++++ b/src/extract.c
+@@ -1629,12 +1629,20 @@ extract_archive (void)
+ {
+   char typeflag;
+   tar_extractor_t fun;
++  bool skip_dotdot_name;
+ 
+   fatal_exit_hook = extract_finish;
+ 
+   set_next_block_after (current_header);
+ 
++  skip_dotdot_name = (!absolute_names_option
++		      && contains_dot_dot (current_stat_info.orig_file_name));
++  if (skip_dotdot_name)
++    ERROR ((0, 0, _("%s: Member name contains '..'"),
++	    quotearg_colon (current_stat_info.orig_file_name)));
++
+   if (!current_stat_info.file_name[0]
++      || skip_dotdot_name
+       || (interactive_option
+ 	  && !confirm ("extract", current_stat_info.file_name)))
+     {

Copied: tar/repos/testing-i686/PKGBUILD (from rev 279785, tar/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2016-11-03 10:59:29 UTC (rev 279786)
@@ -0,0 +1,52 @@
+# $Id$
+# Mainainer: Sébastien "Seblu" Luttringer <seblu at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Andreas Radke <andyrtr at archlinux.org>
+
+pkgname=tar
+pkgver=1.29
+pkgrel=2
+pkgdesc='Utility used to store, backup, and transport files'
+arch=('i686' 'x86_64')
+url='https://www.gnu.org/software/tar/tar.html'
+license=('GPL3')
+groups=('base')
+depends=('glibc' 'acl' 'attr')
+options=('!emptydirs')
+validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732') # Sergey Poznyakoff
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig}
+        '01-When-extracting-skip-.-members.patch')
+md5sums=('a1802fec550baaeecff6c381629653ef'
+         'SKIP'
+         '21f9b5b3642b5476bd972189c33d06ca')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+    if [[ "$filename" =~ \.patch$ ]]; then
+      msg2 "Applying patch $filename"
+      patch -p1 -N -i "$srcdir/$filename"
+    fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/tar
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: tar/repos/testing-x86_64/01-When-extracting-skip-.-members.patch (from rev 279785, tar/trunk/01-When-extracting-skip-.-members.patch)
===================================================================
--- testing-x86_64/01-When-extracting-skip-.-members.patch	                        (rev 0)
+++ testing-x86_64/01-When-extracting-skip-.-members.patch	2016-11-03 10:59:29 UTC (rev 279786)
@@ -0,0 +1,25 @@
+diff --git a/src/extract.c b/src/extract.c
+index f982433..7904148 100644
+--- a/src/extract.c
++++ b/src/extract.c
+@@ -1629,12 +1629,20 @@ extract_archive (void)
+ {
+   char typeflag;
+   tar_extractor_t fun;
++  bool skip_dotdot_name;
+ 
+   fatal_exit_hook = extract_finish;
+ 
+   set_next_block_after (current_header);
+ 
++  skip_dotdot_name = (!absolute_names_option
++		      && contains_dot_dot (current_stat_info.orig_file_name));
++  if (skip_dotdot_name)
++    ERROR ((0, 0, _("%s: Member name contains '..'"),
++	    quotearg_colon (current_stat_info.orig_file_name)));
++
+   if (!current_stat_info.file_name[0]
++      || skip_dotdot_name
+       || (interactive_option
+ 	  && !confirm ("extract", current_stat_info.file_name)))
+     {

Copied: tar/repos/testing-x86_64/PKGBUILD (from rev 279785, tar/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2016-11-03 10:59:29 UTC (rev 279786)
@@ -0,0 +1,52 @@
+# $Id$
+# Mainainer: Sébastien "Seblu" Luttringer <seblu at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: Andreas Radke <andyrtr at archlinux.org>
+
+pkgname=tar
+pkgver=1.29
+pkgrel=2
+pkgdesc='Utility used to store, backup, and transport files'
+arch=('i686' 'x86_64')
+url='https://www.gnu.org/software/tar/tar.html'
+license=('GPL3')
+groups=('base')
+depends=('glibc' 'acl' 'attr')
+options=('!emptydirs')
+validpgpkeys=('325F650C4C2B6AD58807327A3602B07F55D0C732') # Sergey Poznyakoff
+source=("https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig}
+        '01-When-extracting-skip-.-members.patch')
+md5sums=('a1802fec550baaeecff6c381629653ef'
+         'SKIP'
+         '21f9b5b3642b5476bd972189c33d06ca')
+
+prepare() {
+  cd $pkgname-$pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+    if [[ "$filename" =~ \.patch$ ]]; then
+      msg2 "Applying patch $filename"
+      patch -p1 -N -i "$srcdir/$filename"
+    fi
+  done
+  :
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexecdir=/usr/lib/tar
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list