Date: Thursday, October 13, 2022 @ 06:24:37
Author: arojas
Revision: 1327951
archrelease: copy trunk to community-x86_64
Added:
cryfs/repos/community-x86_64/PKGBUILD
(from rev 1327950, cryfs/trunk/PKGBUILD)
cryfs/repos/community-x86_64/cryfs-fmt-9.0.patch
(from rev 1327950, cryfs/trunk/cryfs-fmt-9.0.patch)
cryfs/repos/community-x86_64/keys/
Deleted:
cryfs/repos/community-x86_64/PKGBUILD
cryfs/repos/community-x86_64/cryfs-fmt-9.0.patch
cryfs/repos/community-x86_64/keys/
---------------------+
PKGBUILD | 79 +++++++++++++++++-------------------
cryfs-fmt-9.0.patch | 108 +++++++++++++++++++++++++-------------------------
2 files changed, 92 insertions(+), 95 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-13 06:24:25 UTC (rev 1327950)
+++ PKGBUILD 2022-10-13 06:24:37 UTC (rev 1327951)
@@ -1,41 +0,0 @@
-# Maintainer: Antonio Rojas <[email protected]>
-# Contributor: Andy Weidenbaum <[email protected]>
-# Contributor: kaylyn
-# Contributor: Giuseppe Calà <[email protected]>
-
-pkgname=cryfs
-pkgver=0.11.2
-pkgrel=5
-pkgdesc='Cryptographic filesystem for the cloud'
-arch=(x86_64)
-depends=(fuse2 curl spdlog fmt boost-libs)
-makedepends=(cmake python boost range-v3)
-url='https://www.cryfs.org'
-license=(LGPL3)
-source=(https://github.com/cryfs/cryfs/releases/download/$pkgver/cryfs-$pkgver.tar.xz{,.asc}
- $pkgname-fmt-9.0.patch)
-sha256sums=('951ef565d37521df5586b00ed898f1cb76188739c27b9db866cc91ca14fdf1bd'
- 'SKIP'
- 'ab49804bf583de28f50e9aeac74f1e8308994866ad57e2b25e75df183dd70903')
-validpgpkeys=(5D5EC7BC6F1443EC2AF7177A9E6C996C991D25E1) # CryFS Team
<[email protected]>
-
-prepare() {
- patch -p1 -i $pkgname-fmt-9.0.patch
- sed -e '/Release/d' -i doc/CMakeLists.txt # Install man page also with
dafault build type
-}
-
-build() {
- cmake -B build -S . \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DBUILD_TESTING=OFF \
- -DCRYFS_UPDATE_CHECKS=OFF \
- -DDEPENDENCY_CONFIG="cmake-utils/DependenciesFromLocalSystem.cmake"
- cmake --build build
-}
-
-package() {
- DESTDIR="$pkgdir" cmake --install build
-
- install -Dm 644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
- install -Dm 644 README.md -t "$pkgdir"/usr/share/doc/$pkgname
-}
Copied: cryfs/repos/community-x86_64/PKGBUILD (from rev 1327950,
cryfs/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-13 06:24:37 UTC (rev 1327951)
@@ -0,0 +1,38 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andy Weidenbaum <[email protected]>
+# Contributor: kaylyn
+# Contributor: Giuseppe Calà <[email protected]>
+
+pkgname=cryfs
+pkgver=0.11.3
+pkgrel=1
+pkgdesc='Cryptographic filesystem for the cloud'
+arch=(x86_64)
+depends=(fuse2 curl spdlog fmt boost-libs)
+makedepends=(cmake python boost range-v3)
+url='https://www.cryfs.org'
+license=(LGPL3)
+source=(https://github.com/cryfs/cryfs/releases/download/$pkgver/cryfs-$pkgver.tar.xz{,.asc})
+sha256sums=('18f68e0defdcb7985f4add17cc199b6653d5f2abc6c4d237a0d48ae91a6c81c0'
+ 'SKIP')
+validpgpkeys=(5D5EC7BC6F1443EC2AF7177A9E6C996C991D25E1) # CryFS Team
<[email protected]>
+
+prepare() {
+ sed -e '/Release/d' -i doc/CMakeLists.txt # Install man page also with
dafault build type
+}
+
+build() {
+ cmake -B build -S . \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DBUILD_TESTING=OFF \
+ -DCRYFS_UPDATE_CHECKS=OFF \
+ -DDEPENDENCY_CONFIG="cmake-utils/DependenciesFromLocalSystem.cmake"
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+
+ install -Dm 644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/$pkgname
+ install -Dm 644 README.md -t "$pkgdir"/usr/share/doc/$pkgname
+}
Deleted: cryfs-fmt-9.0.patch
===================================================================
--- cryfs-fmt-9.0.patch 2022-10-13 06:24:25 UTC (rev 1327950)
+++ cryfs-fmt-9.0.patch 2022-10-13 06:24:37 UTC (rev 1327951)
@@ -1,54 +0,0 @@
-From 27515e0116fd7cb034bd4e9763d1f3bfdc855a5f Mon Sep 17 00:00:00 2001
-From: Bernhard Rosenkraenzer <[email protected]>
-Date: Fri, 22 Jul 2022 14:13:38 +0200
-Subject: [PATCH] Fix build with fmt 9.0 (#433)
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-* Fix build with fmt 9.0
-
-Co-authored-by: Sebastian Meßmer <[email protected]>
----
- ChangeLog.txt | 4 ++++
- src/fspp/fuse/Fuse.cpp | 8 ++++----
- 2 files changed, 8 insertions(+), 4 deletions(-)
-
-diff --git a/src/fspp/fuse/Fuse.cpp b/src/fspp/fuse/Fuse.cpp
-index 4e9dbd7f..4b881815 100644
---- a/src/fspp/fuse/Fuse.cpp
-+++ b/src/fspp/fuse/Fuse.cpp
-@@ -603,21 +603,21 @@ int Fuse::mknod(const bf::path &path, ::mode_t mode,
dev_t rdev) {
- UNUSED(mode);
- UNUSED(path);
- ThreadNameForDebugging _threadName("mknod");
-- LOG(WARN, "Called non-implemented mknod({}, {}, _)", path, mode);
-+ LOG(WARN, "Called non-implemented mknod({}, {}, _)", path.string(), mode);
- return ENOSYS;
- }
-
- int Fuse::mkdir(const bf::path &path, ::mode_t mode) {
- ThreadNameForDebugging _threadName("mkdir");
- #ifdef FSPP_LOG
-- LOG(DEBUG, "mkdir({}, {})", path, mode);
-+ LOG(DEBUG, "mkdir({}, {})", path.string(), mode);
- #endif
- try {
- ASSERT(is_valid_fspp_path(path), "has to be an absolute path");
- // DokanY seems to call mkdir("/"). Ignore that
- if ("/" == path) {
- #ifdef FSPP_LOG
-- LOG(DEBUG, "mkdir({}, {}): ignored", path, mode);
-+ LOG(DEBUG, "mkdir({}, {}): ignored", path.string(), mode);
- #endif
- return 0;
- }
-@@ -766,7 +766,7 @@ int Fuse::rename(const bf::path &from, const bf::path &to)
{
- //TODO
- int Fuse::link(const bf::path &from, const bf::path &to) {
- ThreadNameForDebugging _threadName("link");
-- LOG(WARN, "NOT IMPLEMENTED: link({}, {})", from, to);
-+ LOG(WARN, "NOT IMPLEMENTED: link({}, {})", from.string(), to.string());
- //auto real_from = _impl->RootDir() / from;
- //auto real_to = _impl->RootDir() / to;
- //int retstat = ::link(real_from.string().c_str(),
real_to.string().c_str());
Copied: cryfs/repos/community-x86_64/cryfs-fmt-9.0.patch (from rev 1327950,
cryfs/trunk/cryfs-fmt-9.0.patch)
===================================================================
--- cryfs-fmt-9.0.patch (rev 0)
+++ cryfs-fmt-9.0.patch 2022-10-13 06:24:37 UTC (rev 1327951)
@@ -0,0 +1,54 @@
+From 27515e0116fd7cb034bd4e9763d1f3bfdc855a5f Mon Sep 17 00:00:00 2001
+From: Bernhard Rosenkraenzer <[email protected]>
+Date: Fri, 22 Jul 2022 14:13:38 +0200
+Subject: [PATCH] Fix build with fmt 9.0 (#433)
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+* Fix build with fmt 9.0
+
+Co-authored-by: Sebastian Meßmer <[email protected]>
+---
+ ChangeLog.txt | 4 ++++
+ src/fspp/fuse/Fuse.cpp | 8 ++++----
+ 2 files changed, 8 insertions(+), 4 deletions(-)
+
+diff --git a/src/fspp/fuse/Fuse.cpp b/src/fspp/fuse/Fuse.cpp
+index 4e9dbd7f..4b881815 100644
+--- a/src/fspp/fuse/Fuse.cpp
++++ b/src/fspp/fuse/Fuse.cpp
+@@ -603,21 +603,21 @@ int Fuse::mknod(const bf::path &path, ::mode_t mode,
dev_t rdev) {
+ UNUSED(mode);
+ UNUSED(path);
+ ThreadNameForDebugging _threadName("mknod");
+- LOG(WARN, "Called non-implemented mknod({}, {}, _)", path, mode);
++ LOG(WARN, "Called non-implemented mknod({}, {}, _)", path.string(), mode);
+ return ENOSYS;
+ }
+
+ int Fuse::mkdir(const bf::path &path, ::mode_t mode) {
+ ThreadNameForDebugging _threadName("mkdir");
+ #ifdef FSPP_LOG
+- LOG(DEBUG, "mkdir({}, {})", path, mode);
++ LOG(DEBUG, "mkdir({}, {})", path.string(), mode);
+ #endif
+ try {
+ ASSERT(is_valid_fspp_path(path), "has to be an absolute path");
+ // DokanY seems to call mkdir("/"). Ignore that
+ if ("/" == path) {
+ #ifdef FSPP_LOG
+- LOG(DEBUG, "mkdir({}, {}): ignored", path, mode);
++ LOG(DEBUG, "mkdir({}, {}): ignored", path.string(), mode);
+ #endif
+ return 0;
+ }
+@@ -766,7 +766,7 @@ int Fuse::rename(const bf::path &from, const bf::path &to)
{
+ //TODO
+ int Fuse::link(const bf::path &from, const bf::path &to) {
+ ThreadNameForDebugging _threadName("link");
+- LOG(WARN, "NOT IMPLEMENTED: link({}, {})", from, to);
++ LOG(WARN, "NOT IMPLEMENTED: link({}, {})", from.string(), to.string());
+ //auto real_from = _impl->RootDir() / from;
+ //auto real_to = _impl->RootDir() / to;
+ //int retstat = ::link(real_from.string().c_str(),
real_to.string().c_str());