Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] duplicity: update to 1.2.3.
@ 2023-06-30 14:01 toomyem
  2023-07-01 16:47 ` dkwo
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: toomyem @ 2023-06-30 14:01 UTC (permalink / raw)
  To: ml

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

There is a new pull request by toomyem against master on the void-packages repository

https://github.com/toomyem/void-packages duplicity-1.2.3
https://github.com/void-linux/void-packages/pull/44740

duplicity: update to 1.2.3.
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86-64)


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

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

From ae1c8b5f3856989adca2b3d38102bf6719d656e8 Mon Sep 17 00:00:00 2001
From: toomyem <toomyem@gmail.com>
Date: Fri, 30 Jun 2023 15:58:23 +0200
Subject: [PATCH] duplicity: update to 1.2.3.

---
 srcpkgs/duplicity/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/duplicity/template b/srcpkgs/duplicity/template
index 99fa984231ab4..7a917836a4f84 100644
--- a/srcpkgs/duplicity/template
+++ b/srcpkgs/duplicity/template
@@ -1,7 +1,7 @@
 # Template file for 'duplicity'
 pkgname=duplicity
-version=1.2.1
-revision=2
+version=1.2.3
+revision=1
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools_scm"
 makedepends="python3-devel librsync-devel"
@@ -14,7 +14,7 @@ license="GPL-2.0-or-later"
 homepage="https://duplicity.gitlab.io"
 changelog="https://gitlab.com/duplicity/duplicity/-/raw/main/CHANGELOG.md"
 distfiles="${PYPI_SITE}/d/duplicity/duplicity-${version}.tar.gz"
-checksum=15d768fb0ab86a30d734011e6e6371b3c6752e13ab239057c22d291324932099
+checksum=fcbcdea289128d9d0988ed66fa2408196ce940e8029ca5036254bfd2e3f4a568
 
 duplicity-doc_package() {
 	short_desc+=" - documentation"

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: duplicity: update to 1.2.3.
  2023-06-30 14:01 [PR PATCH] duplicity: update to 1.2.3 toomyem
@ 2023-07-01 16:47 ` dkwo
  2023-07-03  6:57 ` toomyem
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: dkwo @ 2023-07-01 16:47 UTC (permalink / raw)
  To: ml

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

New comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/44740#issuecomment-1615995350

Comment:
it's failing one test:
```
=================================== FAILURES ===================================
____________________________ PathTest.test_compare _____________________________

self = <testing.unit.test_path.PathTest testMethod=test_compare>

    @unittest.skipIf(os.path.exists(u"/.dockenv") or                        # Docker
                     os.environ.get(u"USER", None) == u"buildd" or          # Launchpad
                     os.environ.get(u"NON_NATIVE", None) == u"true",        # GitLab
                     u"Skip on non-native environs")
    def test_compare(self):
        u"""Test directory comparisons"""
        assert not os.system(u"cp -pR {0}/testfiles/dir1/ {0}/testfiles/output".format(_runtest_dir))
>       assert Path(u"{0}/testfiles/dir1".format(_runtest_dir)).compare_recursive(
            Path(u"{0}/testfiles/output".format(_runtest_dir)), 1)
E       AssertionError: assert None
E        +  where None = <bound method Path.compare_recursive of (() b'/tmp/testfiles/dir1' dir)>((() b'/tmp/testfiles/output' dir), 1)
E        +    where <bound method Path.compare_recursive of (() b'/tmp/testfiles/dir1' dir)> = (() b'/tmp/testfiles/dir1' dir).compare_recursive
E        +      where (() b'/tmp/testfiles/dir1' dir) = Path('/tmp/testfiles/dir1')
E        +        where '/tmp/testfiles/dir1' = <built-in method format of str object at 0x7fd2fa9dc3a0>('/tmp')
E        +          where <built-in method format of str object at 0x7fd2fa9dc3a0> = '{0}/testfiles/dir1'.format
E        +    and   (() b'/tmp/testfiles/output' dir) = Path('/tmp/testfiles/output')
E        +      where '/tmp/testfiles/output' = <built-in method format of str object at 0x7fd2fa9dc260>('/tmp')
E        +        where <built-in method format of str object at 0x7fd2fa9dc260> = '{0}/testfiles/output'.format

/builddir/duplicity-1.2.3/testing/unit/test_path.py:55: AssertionError
----------------------------- Captured stdout call -----------------------------
(. dir) not equal to (. dir)
=============================== warnings summary ===============================
../../usr/lib/python3.11/site-packages/future/standard_library/__init__.py:65
  /usr/lib/python3.11/site-packages/future/standard_library/__init__.py:65: DeprecationWarning: the imp module is deprecated in favour of importlib and slated for removal in Python 3.12; see the module's documentation for alternative uses
    import imp

testing/functional/__init__.py:37
  /builddir/duplicity-1.2.3/testing/functional/__init__.py:37: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
    from pkg_resources import parse_version

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
----------- generated xml file: /builddir/duplicity-1.2.3/report.xml -----------
=========================== short test summary info ============================
FAILED testing/unit/test_path.py::PathTest::test_compare - AssertionError: as...
====== 1 failed, 467 passed, 10 skipped, 2 warnings in 968.00s (0:16:08) =======
```

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: duplicity: update to 1.2.3.
  2023-06-30 14:01 [PR PATCH] duplicity: update to 1.2.3 toomyem
  2023-07-01 16:47 ` dkwo
@ 2023-07-03  6:57 ` toomyem
  2023-10-02  1:45 ` github-actions
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: toomyem @ 2023-07-03  6:57 UTC (permalink / raw)
  To: ml

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

New comment by toomyem on void-packages repository

https://github.com/void-linux/void-packages/pull/44740#issuecomment-1617482081

Comment:
I know. I'm trying to figure out why it is failing and how to fix it.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: duplicity: update to 1.2.3.
  2023-06-30 14:01 [PR PATCH] duplicity: update to 1.2.3 toomyem
  2023-07-01 16:47 ` dkwo
  2023-07-03  6:57 ` toomyem
@ 2023-10-02  1:45 ` github-actions
  2023-10-11 15:37 ` Johnnynator
  2023-10-11 15:37 ` [PR PATCH] [Closed]: " Johnnynator
  4 siblings, 0 replies; 6+ messages in thread
From: github-actions @ 2023-10-02  1:45 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/44740#issuecomment-1742297150

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: duplicity: update to 1.2.3.
  2023-06-30 14:01 [PR PATCH] duplicity: update to 1.2.3 toomyem
                   ` (2 preceding siblings ...)
  2023-10-02  1:45 ` github-actions
@ 2023-10-11 15:37 ` Johnnynator
  2023-10-11 15:37 ` [PR PATCH] [Closed]: " Johnnynator
  4 siblings, 0 replies; 6+ messages in thread
From: Johnnynator @ 2023-10-11 15:37 UTC (permalink / raw)
  To: ml

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

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/44740#issuecomment-1757979154

Comment:
Superseeded by deac2136e78046b69886201becfe1d86d2ac4446

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PR PATCH] [Closed]: duplicity: update to 1.2.3.
  2023-06-30 14:01 [PR PATCH] duplicity: update to 1.2.3 toomyem
                   ` (3 preceding siblings ...)
  2023-10-11 15:37 ` Johnnynator
@ 2023-10-11 15:37 ` Johnnynator
  4 siblings, 0 replies; 6+ messages in thread
From: Johnnynator @ 2023-10-11 15:37 UTC (permalink / raw)
  To: ml

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

There's a closed pull request on the void-packages repository

duplicity: update to 1.2.3.
https://github.com/void-linux/void-packages/pull/44740

Description:
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86-64)


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-10-11 15:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-30 14:01 [PR PATCH] duplicity: update to 1.2.3 toomyem
2023-07-01 16:47 ` dkwo
2023-07-03  6:57 ` toomyem
2023-10-02  1:45 ` github-actions
2023-10-11 15:37 ` Johnnynator
2023-10-11 15:37 ` [PR PATCH] [Closed]: " Johnnynator

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).