[arch-commits] Commit in btrfs-progs/repos (15 files)

2019-02-06 Thread Sébastien Luttringer via arch-commits
Date: Wednesday, February 6, 2019 @ 23:50:17
  Author: seblu
Revision: 345340

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

Added:
  btrfs-progs/repos/core-x86_64/FS#61471.patch
(from rev 345339, btrfs-progs/repos/testing-x86_64/FS#61471.patch)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 345339, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 345339, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
(from rev 345339, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
(from rev 345339, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 345339, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 345339, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/

+
 /PKGBUILD  |   71 +++
 /btrfs-progs.install   |   15 +++
 /btrfs-scrub@.service  |8 +++
 /btrfs-scrub@.timer|   10 
 /initcpio-hook-btrfs   |7 +++
 /initcpio-install-btrfs|   17 
 core-x86_64/FS#58237.patch |   16 ---
 core-x86_64/FS#61471.patch |   12 +
 core-x86_64/PKGBUILD   |   61 --
 core-x86_64/btrfs-progs.install|   15 ---
 core-x86_64/btrfs-scrub@.service   |8 ---
 core-x86_64/btrfs-scrub@.timer |   10 
 core-x86_64/initcpio-hook-btrfs|7 ---
 core-x86_64/initcpio-install-btrfs |   17 
 14 files changed, 140 insertions(+), 134 deletions(-)

Deleted: core-x86_64/FS#58237.patch
===
--- core-x86_64/FS#58237.patch  2019-02-06 22:35:04 UTC (rev 345339)
+++ core-x86_64/FS#58237.patch  2019-02-06 23:50:17 UTC (rev 345340)
@@ -1,16 +0,0 @@
-diff --git a/utils.c b/utils.c
-index e9cb3a82f..f867e5a7f 100644
 a/utils.c
-+++ b/utils.c
-@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
-   if (!len)
-   return full_path;
- 
--  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
--  error("not on mount point: %s", mnt);
--  exit(1);
--  }
--
-   if (mnt[len - 1] != '/')
-   len += 1;
- 

Copied: btrfs-progs/repos/core-x86_64/FS#61471.patch (from rev 345339, 
btrfs-progs/repos/testing-x86_64/FS#61471.patch)
===
--- core-x86_64/FS#61471.patch  (rev 0)
+++ core-x86_64/FS#61471.patch  2019-02-06 23:50:17 UTC (rev 345340)
@@ -0,0 +1,12 @@
+diff -u -r btrfs-progs-v4.20.1/utils.c btrfs-progs-v4.20.1-issue162/utils.c
+--- btrfs-progs-v4.20.1/utils.c2019-01-23 12:56:53.0 +
 btrfs-progs-v4.20.1-issue162/utils.c   2019-02-02 22:56:06.320029310 
+
+@@ -2079,7 +2079,7 @@
+   while ((ent = getmntent(mnttab))) {
+   len = strlen(ent->mnt_dir);
+   if (strncmp(ent->mnt_dir, path, len) == 0 &&
+-  (path[len] == '/' || path[len] == '\0')) {
++  (len == 1 || path[len] == '/' || path[len] == '\0')) {
+   /* match found and use the latest match */
+   if (longest_matchlen <= len) {
+   free(longest_match);

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2019-02-06 22:35:04 UTC (rev 345339)
+++ core-x86_64/PKGBUILD2019-02-06 23:50:17 UTC (rev 345340)
@@ -1,61 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.19.1
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('x86_64')
-makedepends=('git' 'asciidoc' 'xmlto' 'systemd' 'python' 'python-setuptools')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib' 'zstd')
-optdepends=('python: libbtrfsutil python bindings')
-url='https://btrfs.wiki.kernel.org'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')

[arch-commits] Commit in btrfs-progs/repos (15 files)

2018-12-25 Thread Sébastien Luttringer via arch-commits
Date: Wednesday, December 26, 2018 @ 02:35:22
  Author: seblu
Revision: 342739

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

Added:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
(from rev 342738, btrfs-progs/repos/testing-x86_64/FS#58237.patch)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 342738, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 342738, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
(from rev 342738, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
(from rev 342738, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 342738, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 342738, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/

+
 /FS#58237.patch|   16 +
 /PKGBUILD  |   61 +++
 /btrfs-progs.install   |   15 
 /btrfs-scrub@.service  |8 
 /btrfs-scrub@.timer|   10 +
 /initcpio-hook-btrfs   |7 
 /initcpio-install-btrfs|   17 +
 core-x86_64/FS#58237.patch |   16 -
 core-x86_64/PKGBUILD   |   61 ---
 core-x86_64/btrfs-progs.install|   15 
 core-x86_64/btrfs-scrub@.service   |8 
 core-x86_64/btrfs-scrub@.timer |   10 -
 core-x86_64/initcpio-hook-btrfs|7 
 core-x86_64/initcpio-install-btrfs |   17 -
 14 files changed, 134 insertions(+), 134 deletions(-)

Deleted: core-x86_64/FS#58237.patch
===
--- core-x86_64/FS#58237.patch  2018-12-26 02:35:19 UTC (rev 342738)
+++ core-x86_64/FS#58237.patch  2018-12-26 02:35:22 UTC (rev 342739)
@@ -1,16 +0,0 @@
-diff --git a/utils.c b/utils.c
-index e9cb3a82f..f867e5a7f 100644
 a/utils.c
-+++ b/utils.c
-@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
-   if (!len)
-   return full_path;
- 
--  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
--  error("not on mount point: %s", mnt);
--  exit(1);
--  }
--
-   if (mnt[len - 1] != '/')
-   len += 1;
- 

Copied: btrfs-progs/repos/core-x86_64/FS#58237.patch (from rev 342738, 
btrfs-progs/repos/testing-x86_64/FS#58237.patch)
===
--- core-x86_64/FS#58237.patch  (rev 0)
+++ core-x86_64/FS#58237.patch  2018-12-26 02:35:22 UTC (rev 342739)
@@ -0,0 +1,16 @@
+diff --git a/utils.c b/utils.c
+index e9cb3a82f..f867e5a7f 100644
+--- a/utils.c
 b/utils.c
+@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
+   if (!len)
+   return full_path;
+ 
+-  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
+-  error("not on mount point: %s", mnt);
+-  exit(1);
+-  }
+-
+   if (mnt[len - 1] != '/')
+   len += 1;
+ 

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2018-12-26 02:35:19 UTC (rev 342738)
+++ core-x86_64/PKGBUILD2018-12-26 02:35:22 UTC (rev 342739)
@@ -1,61 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.19
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('x86_64')
-makedepends=('git' 'asciidoc' 'xmlto' 'systemd' 'python' 'python-setuptools')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib' 'zstd')
-optdepends=('python: libbtrfsutil python bindings')
-url='https://btrfs.wiki.kernel.org'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
-source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs'
-'btrfs-scrub@.service'
-'btrfs-scrub@.timer')

[arch-commits] Commit in btrfs-progs/repos (15 files)

2018-11-07 Thread Sébastien Luttringer via arch-commits
Date: Thursday, November 8, 2018 @ 04:57:05
  Author: seblu
Revision: 338056

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

Added:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
(from rev 338055, btrfs-progs/repos/testing-x86_64/FS#58237.patch)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 338055, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 338055, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
(from rev 338055, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
(from rev 338055, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 338055, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 338055, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/

+
 /FS#58237.patch|   16 +
 /PKGBUILD  |   61 ++
 /btrfs-progs.install   |   15 
 /btrfs-scrub@.service  |8 
 /btrfs-scrub@.timer|   10 +
 /initcpio-hook-btrfs   |7 +++
 /initcpio-install-btrfs|   17 +
 core-x86_64/FS#58237.patch |   16 -
 core-x86_64/PKGBUILD   |   62 ---
 core-x86_64/btrfs-progs.install|   15 
 core-x86_64/btrfs-scrub@.service   |8 
 core-x86_64/btrfs-scrub@.timer |   10 -
 core-x86_64/initcpio-hook-btrfs|7 ---
 core-x86_64/initcpio-install-btrfs |   17 -
 14 files changed, 134 insertions(+), 135 deletions(-)

Deleted: core-x86_64/FS#58237.patch
===
--- core-x86_64/FS#58237.patch  2018-11-08 00:49:45 UTC (rev 338055)
+++ core-x86_64/FS#58237.patch  2018-11-08 04:57:05 UTC (rev 338056)
@@ -1,16 +0,0 @@
-diff --git a/utils.c b/utils.c
-index e9cb3a82f..f867e5a7f 100644
 a/utils.c
-+++ b/utils.c
-@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
-   if (!len)
-   return full_path;
- 
--  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
--  error("not on mount point: %s", mnt);
--  exit(1);
--  }
--
-   if (mnt[len - 1] != '/')
-   len += 1;
- 

Copied: btrfs-progs/repos/core-x86_64/FS#58237.patch (from rev 338055, 
btrfs-progs/repos/testing-x86_64/FS#58237.patch)
===
--- core-x86_64/FS#58237.patch  (rev 0)
+++ core-x86_64/FS#58237.patch  2018-11-08 04:57:05 UTC (rev 338056)
@@ -0,0 +1,16 @@
+diff --git a/utils.c b/utils.c
+index e9cb3a82f..f867e5a7f 100644
+--- a/utils.c
 b/utils.c
+@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
+   if (!len)
+   return full_path;
+ 
+-  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
+-  error("not on mount point: %s", mnt);
+-  exit(1);
+-  }
+-
+   if (mnt[len - 1] != '/')
+   len += 1;
+ 

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2018-11-08 00:49:45 UTC (rev 338055)
+++ core-x86_64/PKGBUILD2018-11-08 04:57:05 UTC (rev 338056)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.17.1
-pkgrel=1
-pkgdesc='Btrfs filesystem utilities'
-arch=('x86_64')
-makedepends=('git' 'asciidoc' 'xmlto' 'systemd' 'python' 'python-setuptools')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib' 'zstd')
-optdepends=('python: libbtrfsutil python bindings')
-url='https://btrfs.wiki.kernel.org'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
-source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs'
-'btrfs-scrub@.service'
-'btrfs-scrub@.timer')

[arch-commits] Commit in btrfs-progs/repos (15 files)

2018-08-14 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, August 14, 2018 @ 22:15:04
  Author: seblu
Revision: 331526

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

Added:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
(from rev 331525, btrfs-progs/repos/testing-x86_64/FS#58237.patch)
  btrfs-progs/repos/core-x86_64/PKGBUILD
(from rev 331525, btrfs-progs/repos/testing-x86_64/PKGBUILD)
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
(from rev 331525, btrfs-progs/repos/testing-x86_64/btrfs-progs.install)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
(from rev 331525, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.service)
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
(from rev 331525, btrfs-progs/repos/testing-x86_64/btrfs-scrub@.timer)
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
(from rev 331525, btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs)
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
(from rev 331525, btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/core-x86_64/FS#58237.patch
  btrfs-progs/repos/core-x86_64/PKGBUILD
  btrfs-progs/repos/core-x86_64/btrfs-progs.install
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.service
  btrfs-progs/repos/core-x86_64/btrfs-scrub@.timer
  btrfs-progs/repos/core-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/core-x86_64/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/

+
 /FS#58237.patch|   16 +
 /PKGBUILD  |   62 +++
 /btrfs-progs.install   |   15 
 /btrfs-scrub@.service  |8 
 /btrfs-scrub@.timer|   10 +
 /initcpio-hook-btrfs   |7 +++
 /initcpio-install-btrfs|   17 +
 core-x86_64/FS#58237.patch |   16 -
 core-x86_64/PKGBUILD   |   62 ---
 core-x86_64/btrfs-progs.install|   15 
 core-x86_64/btrfs-scrub@.service   |8 
 core-x86_64/btrfs-scrub@.timer |   10 -
 core-x86_64/initcpio-hook-btrfs|7 ---
 core-x86_64/initcpio-install-btrfs |   17 -
 14 files changed, 135 insertions(+), 135 deletions(-)

Deleted: core-x86_64/FS#58237.patch
===
--- core-x86_64/FS#58237.patch  2018-08-14 21:29:03 UTC (rev 331525)
+++ core-x86_64/FS#58237.patch  2018-08-14 22:15:04 UTC (rev 331526)
@@ -1,16 +0,0 @@
-diff --git a/utils.c b/utils.c
-index e9cb3a82f..f867e5a7f 100644
 a/utils.c
-+++ b/utils.c
-@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
-   if (!len)
-   return full_path;
- 
--  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
--  error("not on mount point: %s", mnt);
--  exit(1);
--  }
--
-   if (mnt[len - 1] != '/')
-   len += 1;
- 

Copied: btrfs-progs/repos/core-x86_64/FS#58237.patch (from rev 331525, 
btrfs-progs/repos/testing-x86_64/FS#58237.patch)
===
--- core-x86_64/FS#58237.patch  (rev 0)
+++ core-x86_64/FS#58237.patch  2018-08-14 22:15:04 UTC (rev 331526)
@@ -0,0 +1,16 @@
+diff --git a/utils.c b/utils.c
+index e9cb3a82f..f867e5a7f 100644
+--- a/utils.c
 b/utils.c
+@@ -2484,11 +2484,6 @@ const char *subvol_strip_mountpoint(const char *mnt, 
const char *full_path)
+   if (!len)
+   return full_path;
+ 
+-  if ((strncmp(mnt, full_path, len) != 0) || (full_path[len] != '/')) {
+-  error("not on mount point: %s", mnt);
+-  exit(1);
+-  }
+-
+   if (mnt[len - 1] != '/')
+   len += 1;
+ 

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2018-08-14 21:29:03 UTC (rev 331525)
+++ core-x86_64/PKGBUILD2018-08-14 22:15:04 UTC (rev 331526)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien "Seblu" Luttringer 
-# Contributor: Tom Gundersen 
-# Contributor: Tobias Powalowski 
-
-pkgname=btrfs-progs
-pkgver=4.17
-pkgrel=2
-pkgdesc='Btrfs filesystem utilities'
-arch=('x86_64')
-makedepends=('git' 'asciidoc' 'xmlto' 'systemd' 'python' 'python-setuptools')
-depends=('glibc' 'libutil-linux' 'e2fsprogs' 'lzo' 'zlib' 'zstd')
-optdepends=('python: libbtrfsutil python bindings')
-url='https://btrfs.wiki.kernel.org'
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-validpgpkeys=('F2B41200C54EFB30380C1756C565D5F9D76D583B')
-source=("https://www.kernel.org/pub/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v$pkgver.tar."{sign,xz}
-'initcpio-install-btrfs'
-'initcpio-hook-btrfs'
-'btrfs-scrub@.service'
-'btrfs-scrub@.timer')