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

Sébastien Luttringer seblu at archlinux.org
Tue Dec 19 12:55:52 UTC 2017


    Date: Tuesday, December 19, 2017 @ 12:55:49
  Author: seblu
Revision: 313349

db-move: moved tar from [testing] to [core] (x86_64)

Added:
  tar/repos/core-x86_64/PKGBUILD
    (from rev 313348, tar/repos/testing-x86_64/PKGBUILD)
Deleted:
  tar/repos/core-x86_64/01-When-extracting-skip-.-members.patch
  tar/repos/core-x86_64/PKGBUILD
  tar/repos/testing-x86_64/

-----------------------------------------------------+
 /PKGBUILD                                           |   50 +++++++++++++++++
 core-x86_64/01-When-extracting-skip-.-members.patch |   25 --------
 core-x86_64/PKGBUILD                                |   52 ------------------
 3 files changed, 50 insertions(+), 77 deletions(-)

Deleted: core-x86_64/01-When-extracting-skip-.-members.patch
===================================================================
--- core-x86_64/01-When-extracting-skip-.-members.patch	2017-12-19 09:37:44 UTC (rev 313348)
+++ core-x86_64/01-When-extracting-skip-.-members.patch	2017-12-19 12:55:49 UTC (rev 313349)
@@ -1,25 +0,0 @@
-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)))
-     {

Deleted: core-x86_64/PKGBUILD
===================================================================
--- core-x86_64/PKGBUILD	2017-12-19 09:37:44 UTC (rev 313348)
+++ core-x86_64/PKGBUILD	2017-12-19 12:55:49 UTC (rev 313349)
@@ -1,52 +0,0 @@
-# $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/core-x86_64/PKGBUILD (from rev 313348, tar/repos/testing-x86_64/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD	                        (rev 0)
+++ core-x86_64/PKGBUILD	2017-12-19 12:55:49 UTC (rev 313349)
@@ -0,0 +1,50 @@
+# $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.30
+pkgrel=1
+pkgdesc='Utility used to store, backup, and transport files'
+arch=('x86_64')
+url='https://www.gnu.org/software/tar/'
+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})
+md5sums=('2d01c6cd1387be98f57a0ec4e6e35826'
+         'SKIP')
+
+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