Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] duplicity: update to 0.8.23, split subpkgs, update homepage
@ 2022-06-06 14:33 dkwo
  2022-06-06 17:44 ` [PR REVIEW] " Chocimier
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: dkwo @ 2022-06-06 14:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages dupli
https://github.com/void-linux/void-packages/pull/37421

duplicity: update to 0.8.23, split subpkgs, update homepage
- I tested the changes in this PR: briefly
- I built this PR locally for my native architecture, x86-64-musl.

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

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

From cd7b1ccc62fbc9380ad81955e91170b2a11c8a10 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 6 Jun 2022 16:17:55 +0200
Subject: [PATCH] duplicity: update to 0.8.23, split subpkgs, update homepage

---
 srcpkgs/duplicity-doc      |  1 +
 srcpkgs/duplicity-lang     |  1 +
 srcpkgs/duplicity/template | 29 ++++++++++++++++++++---------
 3 files changed, 22 insertions(+), 9 deletions(-)
 create mode 120000 srcpkgs/duplicity-doc
 create mode 120000 srcpkgs/duplicity-lang

diff --git a/srcpkgs/duplicity-doc b/srcpkgs/duplicity-doc
new file mode 120000
index 000000000000..3c49d7bc8b8b
--- /dev/null
+++ b/srcpkgs/duplicity-doc
@@ -0,0 +1 @@
+duplicity
\ No newline at end of file
diff --git a/srcpkgs/duplicity-lang b/srcpkgs/duplicity-lang
new file mode 120000
index 000000000000..3c49d7bc8b8b
--- /dev/null
+++ b/srcpkgs/duplicity-lang
@@ -0,0 +1 @@
+duplicity
\ No newline at end of file
diff --git a/srcpkgs/duplicity/template b/srcpkgs/duplicity/template
index 7098a587a79d..16b494e27b8c 100644
--- a/srcpkgs/duplicity/template
+++ b/srcpkgs/duplicity/template
@@ -1,7 +1,7 @@
 # Template file for 'duplicity'
 pkgname=duplicity
-version=0.8.20
-revision=2
+version=0.8.23
+revision=1
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools_scm"
 makedepends="python3-devel librsync-devel"
@@ -11,12 +11,23 @@ checkdepends="$depends python3-pytest python3-mock python3-pexpect
 short_desc="Encrypted bandwidth-efficient backup using the rsync algorithm"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
-homepage="http://duplicity.nongnu.org/"
-changelog="http://duplicity.nongnu.org/vers8/CHANGELOG.md"
-distfiles="http://launchpad.net/duplicity/${version%.*}-series/${version}/+download/duplicity-${version}.tar.gz"
-checksum=bbe4679d37cc5523c2302d6d7933d32f365f7c9aea7ffc7827c45e3b7b2d2234
+homepage="https://duplicity.gitlab.io"
+changelog="${homepage}/vers8/CHANGELOG.html"
+distfiles="https://launchpad.net/duplicity/${version%.*}-series/${version}/+download/duplicity-${version}.tar.gz"
+checksum=b24aec0df4849a71de64b743fe9957f09bb80259898e455bdc612c78bdb374e2
 
-post_install() {
-	# drop doc
-	rm -rf ${DESTDIR}/usr/share/doc
+duplicity-doc_package() {
+	short_desc+=" - documentation"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/share/doc
+	}
+}
+
+duplicity-lang_package() {
+	short_desc+=" - languages"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/share/locale
+	}
 }

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

* Re: [PR REVIEW] duplicity: update to 0.8.23, split subpkgs, update homepage
  2022-06-06 14:33 [PR PATCH] duplicity: update to 0.8.23, split subpkgs, update homepage dkwo
@ 2022-06-06 17:44 ` Chocimier
  2022-06-06 18:37 ` [PR PATCH] [Updated] " dkwo
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Chocimier @ 2022-06-06 17:44 UTC (permalink / raw)
  To: ml

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

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/37421#discussion_r890384574

Comment:
No, translations go to same package as binary using them.

If you do not like having translations to languages you do not know, set up noextract at `/etc/xbps.d/`:

    noextract=/usr/share/locale/??/LC_*
    noextract=/usr/share/locale/???/LC_*
    noextract=/usr/share/locale/??@*/LC_*
    noextract=/usr/share/locale/??_*/LC_*
    noextract=!/usr/share/locale/pl/LC_*
    noextract=!/usr/share/locale/pl_*/LC_*
    noextract=!/usr/share/locale/en/LC_*
    noextract=!/usr/share/locale/en_GB/LC_*
    noextract=!/usr/share/locale/en_US/LC_*

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

* Re: [PR PATCH] [Updated] duplicity: update to 0.8.23, split subpkgs, update homepage
  2022-06-06 14:33 [PR PATCH] duplicity: update to 0.8.23, split subpkgs, update homepage dkwo
  2022-06-06 17:44 ` [PR REVIEW] " Chocimier
@ 2022-06-06 18:37 ` dkwo
  2022-06-06 18:38 ` [PR REVIEW] " dkwo
  2022-06-25  0:10 ` [PR PATCH] [Merged]: " classabbyamp
  3 siblings, 0 replies; 5+ messages in thread
From: dkwo @ 2022-06-06 18:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dkwo/void-packages dupli
https://github.com/void-linux/void-packages/pull/37421

duplicity: update to 0.8.23, split subpkgs, update homepage
- I tested the changes in this PR: briefly
- I built this PR locally for my native architecture, x86-64-musl.

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

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

From 2995a9b6c218dbb06b48306f63cc434206e725f6 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Mon, 6 Jun 2022 16:17:55 +0200
Subject: [PATCH] duplicity: update to 0.8.23, split subpkg, update homepage

---
 srcpkgs/duplicity-doc      |  1 +
 srcpkgs/duplicity/template | 21 ++++++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)
 create mode 120000 srcpkgs/duplicity-doc

diff --git a/srcpkgs/duplicity-doc b/srcpkgs/duplicity-doc
new file mode 120000
index 000000000000..3c49d7bc8b8b
--- /dev/null
+++ b/srcpkgs/duplicity-doc
@@ -0,0 +1 @@
+duplicity
\ No newline at end of file
diff --git a/srcpkgs/duplicity/template b/srcpkgs/duplicity/template
index 7098a587a79d..afb1eeabaf66 100644
--- a/srcpkgs/duplicity/template
+++ b/srcpkgs/duplicity/template
@@ -1,7 +1,7 @@
 # Template file for 'duplicity'
 pkgname=duplicity
-version=0.8.20
-revision=2
+version=0.8.23
+revision=1
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools_scm"
 makedepends="python3-devel librsync-devel"
@@ -11,12 +11,15 @@ checkdepends="$depends python3-pytest python3-mock python3-pexpect
 short_desc="Encrypted bandwidth-efficient backup using the rsync algorithm"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
-homepage="http://duplicity.nongnu.org/"
-changelog="http://duplicity.nongnu.org/vers8/CHANGELOG.md"
-distfiles="http://launchpad.net/duplicity/${version%.*}-series/${version}/+download/duplicity-${version}.tar.gz"
-checksum=bbe4679d37cc5523c2302d6d7933d32f365f7c9aea7ffc7827c45e3b7b2d2234
+homepage="https://duplicity.gitlab.io"
+changelog="${homepage}/vers8/CHANGELOG.html"
+distfiles="https://launchpad.net/duplicity/${version%.*}-series/${version}/+download/duplicity-${version}.tar.gz"
+checksum=b24aec0df4849a71de64b743fe9957f09bb80259898e455bdc612c78bdb374e2
 
-post_install() {
-	# drop doc
-	rm -rf ${DESTDIR}/usr/share/doc
+duplicity-doc_package() {
+	short_desc+=" - documentation"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove usr/share/doc
+	}
 }

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

* Re: [PR REVIEW] duplicity: update to 0.8.23, split subpkgs, update homepage
  2022-06-06 14:33 [PR PATCH] duplicity: update to 0.8.23, split subpkgs, update homepage dkwo
  2022-06-06 17:44 ` [PR REVIEW] " Chocimier
  2022-06-06 18:37 ` [PR PATCH] [Updated] " dkwo
@ 2022-06-06 18:38 ` dkwo
  2022-06-25  0:10 ` [PR PATCH] [Merged]: " classabbyamp
  3 siblings, 0 replies; 5+ messages in thread
From: dkwo @ 2022-06-06 18:38 UTC (permalink / raw)
  To: ml

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

New review comment by dkwo on void-packages repository

https://github.com/void-linux/void-packages/pull/37421#discussion_r890432229

Comment:
Done, thanks.

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

* Re: [PR PATCH] [Merged]: duplicity: update to 0.8.23, split subpkgs, update homepage
  2022-06-06 14:33 [PR PATCH] duplicity: update to 0.8.23, split subpkgs, update homepage dkwo
                   ` (2 preceding siblings ...)
  2022-06-06 18:38 ` [PR REVIEW] " dkwo
@ 2022-06-25  0:10 ` classabbyamp
  3 siblings, 0 replies; 5+ messages in thread
From: classabbyamp @ 2022-06-25  0:10 UTC (permalink / raw)
  To: ml

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

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

duplicity: update to 0.8.23, split subpkgs, update homepage
https://github.com/void-linux/void-packages/pull/37421

Description:
- I tested the changes in this PR: briefly
- I built this PR locally for my native architecture, x86-64-musl.

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

end of thread, other threads:[~2022-06-25  0:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-06 14:33 [PR PATCH] duplicity: update to 0.8.23, split subpkgs, update homepage dkwo
2022-06-06 17:44 ` [PR REVIEW] " Chocimier
2022-06-06 18:37 ` [PR PATCH] [Updated] " dkwo
2022-06-06 18:38 ` [PR REVIEW] " dkwo
2022-06-25  0:10 ` [PR PATCH] [Merged]: " classabbyamp

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