Github messages for voidlinux
 help / color / mirror / Atom feed
From: daniel-eys <daniel-eys@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] kopia: update to 0.8.4.
Date: Sat, 10 Jul 2021 16:18:41 +0200	[thread overview]
Message-ID: <20210710141841.mJo8hDVy24DYSXQN00ml-zCB_x9XR0MVNtiLMaBVgrI@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-30146@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1565 bytes --]

There is an updated pull request by daniel-eys against master on the void-packages repository

https://github.com/daniel-eys/void-packages kopia
https://github.com/void-linux/void-packages/pull/30146

kopia: update to 0.8.4.
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!--
#### Does it build and run successfully?
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

A patch file from https://github.com/void-linux/void-packages/pull/30146.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-kopia-30146.patch --]
[-- Type: text/x-diff, Size: 2380 bytes --]

From f2aadc2a103a5040364cd34ec87f90d65c20a38d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Sat, 10 Apr 2021 13:05:03 +0200
Subject: [PATCH] kopia: update to 0.8.4.

---
 .../kopia/patches/0001-Fix-i386-build.patch   | 36 +++++++++++++++++++
 srcpkgs/kopia/template                        |  4 +--
 2 files changed, 38 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/kopia/patches/0001-Fix-i386-build.patch

diff --git a/srcpkgs/kopia/patches/0001-Fix-i386-build.patch b/srcpkgs/kopia/patches/0001-Fix-i386-build.patch
new file mode 100644
index 000000000000..b9bac33e24ad
--- /dev/null
+++ b/srcpkgs/kopia/patches/0001-Fix-i386-build.patch
@@ -0,0 +1,36 @@
+From 5ab8f2e3c495d10ce5a9e824f9ea5b9996569858 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
+Date: Sat, 10 Jul 2021 15:11:38 +0200
+Subject: [PATCH] Fix i386 build
+
+---
+ fs/localfs/local_fs_32bit.go | 2 +-
+ fs/localfs/local_fs_64bit.go | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/fs/localfs/local_fs_32bit.go b/fs/localfs/local_fs_32bit.go
+index 4ab84784..5a80ed5e 100644
+--- a/fs/localfs/local_fs_32bit.go
++++ b/fs/localfs/local_fs_32bit.go
+@@ -1,5 +1,5 @@
+ // +build !windows
+-// +build !amd64,!arm64,!arm darwin
++// +build !amd64,!arm64,!arm,!386 darwin
+ 
+ package localfs
+ 
+diff --git a/fs/localfs/local_fs_64bit.go b/fs/localfs/local_fs_64bit.go
+index 156f85ff..4c653362 100644
+--- a/fs/localfs/local_fs_64bit.go
++++ b/fs/localfs/local_fs_64bit.go
+@@ -1,6 +1,6 @@
+ // +build !windows
+ // +build !darwin
+-// +build amd64 arm64 arm
++// +build amd64 arm64 arm 386
+ 
+ package localfs
+ 
+-- 
+2.32.0
+
diff --git a/srcpkgs/kopia/template b/srcpkgs/kopia/template
index 3e924e38f2e6..9dac954fb965 100644
--- a/srcpkgs/kopia/template
+++ b/srcpkgs/kopia/template
@@ -1,6 +1,6 @@
 # Template file for 'kopia'
 pkgname=kopia
-version=0.7.3
+version=0.8.4
 revision=1
 build_style=go
 go_import_path=github.com/kopia/kopia
@@ -11,4 +11,4 @@ maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
 license="Apache-2.0"
 homepage="https://kopia.io/"
 distfiles="https://github.com/kopia/kopia/archive/v${version}.tar.gz"
-checksum=90200ccf915e6c3514ac9cb68985cc5443f31587be5c581a38aaa4f3a9abfb6e
+checksum=8e2663546fb426faacb4dd9425cdbba4fa2e8ca5df0aac0545d216c8e57d40ef

  parent reply	other threads:[~2021-07-10 14:18 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-11  9:08 [PR PATCH] kopia: update to 0.8.0 daniel-eys
2021-04-11 17:38 ` [PR PATCH] [Updated] [NOMERGE] " daniel-eys
2021-04-16 17:13 ` [NOMERGE] kopia: update to 0.8.1 daniel-eys
2021-04-16 23:53 ` [PR PATCH] [Updated] " daniel-eys
2021-04-17  6:16 ` kopia: update to 0.8.2 ericonr
2021-04-25 12:09 ` [PR PATCH] [Updated] " daniel-eys
2021-04-28 18:56 ` [PR PATCH] [Updated] kopia: update to 0.8.3 daniel-eys
2021-04-28 18:59 ` kopia: update to 0.8.4 daniel-eys
2021-04-28 21:36 ` ericonr
2021-04-28 21:59 ` daniel-eys
2021-04-28 22:53 ` ericonr
2021-04-28 22:53 ` ericonr
2021-06-22 14:24 ` Piraty
2021-07-10 14:18 ` daniel-eys [this message]
2021-07-10 14:24 ` daniel-eys
2021-07-11 22:21 ` [PR PATCH] [Merged]: " Piraty

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210710141841.mJo8hDVy24DYSXQN00ml-zCB_x9XR0MVNtiLMaBVgrI@z \
    --to=daniel-eys@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).