Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add ${VIDEOLAN_SITE}
@ 2022-03-04 12:44 tibequadorian
  2022-03-04 12:45 ` [PR PATCH] [Updated] " tibequadorian
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-04 12:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tibequadorian/void-packages videolan-site
https://github.com/void-linux/void-packages/pull/35961

Add ${VIDEOLAN_SITE}
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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/35961.patch is attached

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

From 0fb3c8374e93f77c66fba878bb3f7407d0b0bc6a Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:41:20 +0100
Subject: [PATCH 1/8] Add and document ${VIDEOLAN_SITE}

---
 Manual.md                        | 1 +
 common/environment/setup/misc.sh | 1 +
 2 files changed, 2 insertions(+)

diff --git a/Manual.md b/Manual.md
index 40b2321f7a25..af5f698debae 100644
--- a/Manual.md
+++ b/Manual.md
@@ -529,6 +529,7 @@ Example:
   | UBUNTU_SITE      | http://archive.ubuntu.com/ubuntu/pool           |
   | XORG_SITE        | https://www.x.org/releases/individual            |
   | KDE_SITE         | https://download.kde.org/stable                 |
+  | VIDEOLAN_SITE    | https://download.videolan.org/pub/videolan      |
 
 - `checksum` The `sha256` digests matching `${distfiles}`. Multiple files can be
 separated by blanks. Please note that the order must be the same than
diff --git a/common/environment/setup/misc.sh b/common/environment/setup/misc.sh
index d22a7388d689..177b1e5622a2 100644
--- a/common/environment/setup/misc.sh
+++ b/common/environment/setup/misc.sh
@@ -17,5 +17,6 @@ MOZILLA_SITE="https://ftp.mozilla.org/pub"
 GNU_SITE="https://ftp.gnu.org/gnu"
 FREEDESKTOP_SITE="https://freedesktop.org/software"
 KDE_SITE="https://download.kde.org/stable"
+VIDEOLAN_SITE="https://download.videolan.org/pub/videolan"
 
 set +a

From bbb6036db200d0575a5c51f6bac01d06b726cd3e Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:29 +0100
Subject: [PATCH 2/8] vlc: use ${VIDEOLAN_SITE}

---
 srcpkgs/vlc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 2cd761b3ddb4..e83d0368a351 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -16,7 +16,7 @@ maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-only, LGPL-2.1-only"
 homepage="https://www.videolan.org/vlc/"
 changelog="https://www.videolan.org/developers/vlc-branch/NEWS"
-distfiles="https://download.videolan.org/pub/videolan/vlc/${version}/vlc-${version}.tar.xz"
+distfiles="${VIDEOLAN_SITE}/vlc/${version}/vlc-${version}.tar.xz"
 checksum=ffae35fc64f625c175571d2346bc5f6207be99762517f15423e74f18399410f6
 
 lib32disabled=yes

From 3ac2e5b9b81e3032b37d79661c2d0c5fc9c03a9a Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:38 +0100
Subject: [PATCH 3/8] x264: use ${VIDEOLAN_SITE}

---
 srcpkgs/x264/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/x264/template b/srcpkgs/x264/template
index 1ed803645ba6..a33dede30ccb 100644
--- a/srcpkgs/x264/template
+++ b/srcpkgs/x264/template
@@ -10,7 +10,7 @@ short_desc="Free library for encoding H264/AVC video streams"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/x264.html"
-distfiles="https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
 checksum=b2495c8f2930167d470994b1ce02b0f4bfb24b3317ba36ba7f112e9809264160
 
 pre_configure() {

From a8e59ec823daa304a6a8b2840f2d63bb090e6040 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:51 +0100
Subject: [PATCH 4/8] libdvdnav: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdnav/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdnav/template b/srcpkgs/libdvdnav/template
index 5a7a859c4c0b..9ff884a90b37 100644
--- a/srcpkgs/libdvdnav/template
+++ b/srcpkgs/libdvdnav/template
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdnav.html"
 changelog="https://code.videolan.org/videolan/libdvdnav/blob/master/ChangeLog"
-distfiles="https://download.videolan.org/pub/videolan/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
 checksum=c191a7475947d323ff7680cf92c0fb1be8237701885f37656c64d04e98d18d48
 
 libdvdnav-devel_package() {

From b40f1a90731717e7f3aa70ffee48ffe49c5d9513 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:04 +0100
Subject: [PATCH 5/8] libdvdcss: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdcss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdcss/template b/srcpkgs/libdvdcss/template
index ca9d26cd31cd..c77443b8e055 100644
--- a/srcpkgs/libdvdcss/template
+++ b/srcpkgs/libdvdcss/template
@@ -7,7 +7,7 @@ short_desc="Simple library designed for accessing DVDs"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdcss.html"
-distfiles="https://download.videolan.org/pub/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
 checksum=233cc92f5dc01c5d3a96f5b3582be7d5cee5a35a52d3a08158745d3d86070079
 
 libdvdcss-devel_package() {

From e4c9025bb12cbe17924850dd09d7e04c463cfede Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:17 +0100
Subject: [PATCH 6/8] libdvbpsi: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvbpsi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvbpsi/template b/srcpkgs/libdvbpsi/template
index c8aa475b2de5..5aac623a13ae 100644
--- a/srcpkgs/libdvbpsi/template
+++ b/srcpkgs/libdvbpsi/template
@@ -7,7 +7,7 @@ short_desc="PSI decoder and generator library for MPEG2 and DVB streams"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-only"
 homepage="https://www.videolan.org/developers/libdvbpsi.html"
-distfiles="https://download.videolan.org/pub/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
 checksum=02b5998bcf289cdfbd8757bedd5987e681309b0a25b3ffe6cebae599f7a00112
 
 libdvbpsi-devel_package() {

From 15a589cc0592872f9a65c315601b124b71390ecf Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:28 +0100
Subject: [PATCH 7/8] libdca: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdca/template b/srcpkgs/libdca/template
index a9007df8387c..a144e80ad73b 100644
--- a/srcpkgs/libdca/template
+++ b/srcpkgs/libdca/template
@@ -8,7 +8,7 @@ short_desc="DTS Coherent Acoustics decoder"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdca.html"
-distfiles="https://download.videolan.org/pub/videolan/libdca/${version}/libdca-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdca/${version}/libdca-${version}.tar.bz2"
 checksum=3a0b13815f582c661d2388ffcabc2f1ea82f471783c400f765f2ec6c81065f6a
 
 pre_configure() {

From f7ac78fc98e684038057c03db12c94cc5382b0db Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:39 +0100
Subject: [PATCH 8/8] libbluray: use ${VIDEOLAN_SITE}

---
 srcpkgs/libbluray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbluray/template b/srcpkgs/libbluray/template
index b81a8ee351de..070c351ee279 100644
--- a/srcpkgs/libbluray/template
+++ b/srcpkgs/libbluray/template
@@ -10,7 +10,7 @@ short_desc="Library to access Blu-Ray disks for video playback"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.videolan.org/developers/libbluray.html"
-distfiles="https://download.videolan.org/pub/videolan/libbluray/${version}/libbluray-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libbluray/${version}/libbluray-${version}.tar.bz2"
 checksum=e2dbaf99e84e0a9725f4985bcb85d41e52c2261cc651d8884b1b790b5ef016f9
 
 pre_build() {

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

* Re: [PR PATCH] [Updated] Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
@ 2022-03-04 12:45 ` tibequadorian
  2022-03-04 12:54 ` tibequadorian
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-04 12:45 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tibequadorian/void-packages videolan-site
https://github.com/void-linux/void-packages/pull/35961

Add ${VIDEOLAN_SITE}
[ci skip]

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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/35961.patch is attached

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

From 0fb3c8374e93f77c66fba878bb3f7407d0b0bc6a Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:41:20 +0100
Subject: [PATCH 1/8] Add and document ${VIDEOLAN_SITE}

---
 Manual.md                        | 1 +
 common/environment/setup/misc.sh | 1 +
 2 files changed, 2 insertions(+)

diff --git a/Manual.md b/Manual.md
index 40b2321f7a25..af5f698debae 100644
--- a/Manual.md
+++ b/Manual.md
@@ -529,6 +529,7 @@ Example:
   | UBUNTU_SITE      | http://archive.ubuntu.com/ubuntu/pool           |
   | XORG_SITE        | https://www.x.org/releases/individual            |
   | KDE_SITE         | https://download.kde.org/stable                 |
+  | VIDEOLAN_SITE    | https://download.videolan.org/pub/videolan      |
 
 - `checksum` The `sha256` digests matching `${distfiles}`. Multiple files can be
 separated by blanks. Please note that the order must be the same than
diff --git a/common/environment/setup/misc.sh b/common/environment/setup/misc.sh
index d22a7388d689..177b1e5622a2 100644
--- a/common/environment/setup/misc.sh
+++ b/common/environment/setup/misc.sh
@@ -17,5 +17,6 @@ MOZILLA_SITE="https://ftp.mozilla.org/pub"
 GNU_SITE="https://ftp.gnu.org/gnu"
 FREEDESKTOP_SITE="https://freedesktop.org/software"
 KDE_SITE="https://download.kde.org/stable"
+VIDEOLAN_SITE="https://download.videolan.org/pub/videolan"
 
 set +a

From bbb6036db200d0575a5c51f6bac01d06b726cd3e Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:29 +0100
Subject: [PATCH 2/8] vlc: use ${VIDEOLAN_SITE}

---
 srcpkgs/vlc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 2cd761b3ddb4..e83d0368a351 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -16,7 +16,7 @@ maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-only, LGPL-2.1-only"
 homepage="https://www.videolan.org/vlc/"
 changelog="https://www.videolan.org/developers/vlc-branch/NEWS"
-distfiles="https://download.videolan.org/pub/videolan/vlc/${version}/vlc-${version}.tar.xz"
+distfiles="${VIDEOLAN_SITE}/vlc/${version}/vlc-${version}.tar.xz"
 checksum=ffae35fc64f625c175571d2346bc5f6207be99762517f15423e74f18399410f6
 
 lib32disabled=yes

From 3ac2e5b9b81e3032b37d79661c2d0c5fc9c03a9a Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:38 +0100
Subject: [PATCH 3/8] x264: use ${VIDEOLAN_SITE}

---
 srcpkgs/x264/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/x264/template b/srcpkgs/x264/template
index 1ed803645ba6..a33dede30ccb 100644
--- a/srcpkgs/x264/template
+++ b/srcpkgs/x264/template
@@ -10,7 +10,7 @@ short_desc="Free library for encoding H264/AVC video streams"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/x264.html"
-distfiles="https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
 checksum=b2495c8f2930167d470994b1ce02b0f4bfb24b3317ba36ba7f112e9809264160
 
 pre_configure() {

From a8e59ec823daa304a6a8b2840f2d63bb090e6040 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:51 +0100
Subject: [PATCH 4/8] libdvdnav: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdnav/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdnav/template b/srcpkgs/libdvdnav/template
index 5a7a859c4c0b..9ff884a90b37 100644
--- a/srcpkgs/libdvdnav/template
+++ b/srcpkgs/libdvdnav/template
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdnav.html"
 changelog="https://code.videolan.org/videolan/libdvdnav/blob/master/ChangeLog"
-distfiles="https://download.videolan.org/pub/videolan/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
 checksum=c191a7475947d323ff7680cf92c0fb1be8237701885f37656c64d04e98d18d48
 
 libdvdnav-devel_package() {

From b40f1a90731717e7f3aa70ffee48ffe49c5d9513 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:04 +0100
Subject: [PATCH 5/8] libdvdcss: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdcss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdcss/template b/srcpkgs/libdvdcss/template
index ca9d26cd31cd..c77443b8e055 100644
--- a/srcpkgs/libdvdcss/template
+++ b/srcpkgs/libdvdcss/template
@@ -7,7 +7,7 @@ short_desc="Simple library designed for accessing DVDs"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdcss.html"
-distfiles="https://download.videolan.org/pub/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
 checksum=233cc92f5dc01c5d3a96f5b3582be7d5cee5a35a52d3a08158745d3d86070079
 
 libdvdcss-devel_package() {

From e4c9025bb12cbe17924850dd09d7e04c463cfede Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:17 +0100
Subject: [PATCH 6/8] libdvbpsi: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvbpsi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvbpsi/template b/srcpkgs/libdvbpsi/template
index c8aa475b2de5..5aac623a13ae 100644
--- a/srcpkgs/libdvbpsi/template
+++ b/srcpkgs/libdvbpsi/template
@@ -7,7 +7,7 @@ short_desc="PSI decoder and generator library for MPEG2 and DVB streams"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-only"
 homepage="https://www.videolan.org/developers/libdvbpsi.html"
-distfiles="https://download.videolan.org/pub/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
 checksum=02b5998bcf289cdfbd8757bedd5987e681309b0a25b3ffe6cebae599f7a00112
 
 libdvbpsi-devel_package() {

From 15a589cc0592872f9a65c315601b124b71390ecf Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:28 +0100
Subject: [PATCH 7/8] libdca: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdca/template b/srcpkgs/libdca/template
index a9007df8387c..a144e80ad73b 100644
--- a/srcpkgs/libdca/template
+++ b/srcpkgs/libdca/template
@@ -8,7 +8,7 @@ short_desc="DTS Coherent Acoustics decoder"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdca.html"
-distfiles="https://download.videolan.org/pub/videolan/libdca/${version}/libdca-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdca/${version}/libdca-${version}.tar.bz2"
 checksum=3a0b13815f582c661d2388ffcabc2f1ea82f471783c400f765f2ec6c81065f6a
 
 pre_configure() {

From 011635c26be3db700a7498812b9df65909d019b3 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:39 +0100
Subject: [PATCH 8/8] libbluray: use ${VIDEOLAN_SITE}

---
 srcpkgs/libbluray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbluray/template b/srcpkgs/libbluray/template
index b81a8ee351de..070c351ee279 100644
--- a/srcpkgs/libbluray/template
+++ b/srcpkgs/libbluray/template
@@ -10,7 +10,7 @@ short_desc="Library to access Blu-Ray disks for video playback"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.videolan.org/developers/libbluray.html"
-distfiles="https://download.videolan.org/pub/videolan/libbluray/${version}/libbluray-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libbluray/${version}/libbluray-${version}.tar.bz2"
 checksum=e2dbaf99e84e0a9725f4985bcb85d41e52c2261cc651d8884b1b790b5ef016f9
 
 pre_build() {

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

* Re: [PR PATCH] [Updated] Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
  2022-03-04 12:45 ` [PR PATCH] [Updated] " tibequadorian
@ 2022-03-04 12:54 ` tibequadorian
  2022-03-16 20:20 ` tibequadorian
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-04 12:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tibequadorian/void-packages videolan-site
https://github.com/void-linux/void-packages/pull/35961

Add ${VIDEOLAN_SITE}
[ci skip]

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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/35961.patch is attached

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

From 6fcd1118ba4d1c1f20af743efad73f4dc46f93f2 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:54:08 +0100
Subject: [PATCH 1/9] common/environment/setup/misc.sh: add ${VIDEOLAN_SITE}

---
 common/environment/setup/misc.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/environment/setup/misc.sh b/common/environment/setup/misc.sh
index d22a7388d689..177b1e5622a2 100644
--- a/common/environment/setup/misc.sh
+++ b/common/environment/setup/misc.sh
@@ -17,5 +17,6 @@ MOZILLA_SITE="https://ftp.mozilla.org/pub"
 GNU_SITE="https://ftp.gnu.org/gnu"
 FREEDESKTOP_SITE="https://freedesktop.org/software"
 KDE_SITE="https://download.kde.org/stable"
+VIDEOLAN_SITE="https://download.videolan.org/pub/videolan"
 
 set +a

From d951b4334f68a21a10060e2dba26d93007858dd8 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:53:17 +0100
Subject: [PATCH 2/9] Manual.md: document ${VIDEOLAN_SITE}

---
 Manual.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Manual.md b/Manual.md
index 40b2321f7a25..af5f698debae 100644
--- a/Manual.md
+++ b/Manual.md
@@ -529,6 +529,7 @@ Example:
   | UBUNTU_SITE      | http://archive.ubuntu.com/ubuntu/pool           |
   | XORG_SITE        | https://www.x.org/releases/individual            |
   | KDE_SITE         | https://download.kde.org/stable                 |
+  | VIDEOLAN_SITE    | https://download.videolan.org/pub/videolan      |
 
 - `checksum` The `sha256` digests matching `${distfiles}`. Multiple files can be
 separated by blanks. Please note that the order must be the same than

From 051bc515f5a443e1d2e5932d8c094562ec28b71e Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:29 +0100
Subject: [PATCH 3/9] vlc: use ${VIDEOLAN_SITE}

---
 srcpkgs/vlc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 2cd761b3ddb4..e83d0368a351 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -16,7 +16,7 @@ maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-only, LGPL-2.1-only"
 homepage="https://www.videolan.org/vlc/"
 changelog="https://www.videolan.org/developers/vlc-branch/NEWS"
-distfiles="https://download.videolan.org/pub/videolan/vlc/${version}/vlc-${version}.tar.xz"
+distfiles="${VIDEOLAN_SITE}/vlc/${version}/vlc-${version}.tar.xz"
 checksum=ffae35fc64f625c175571d2346bc5f6207be99762517f15423e74f18399410f6
 
 lib32disabled=yes

From b080e7e9345247c08535832820bb77b0ff9c0923 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:38 +0100
Subject: [PATCH 4/9] x264: use ${VIDEOLAN_SITE}

---
 srcpkgs/x264/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/x264/template b/srcpkgs/x264/template
index 1ed803645ba6..a33dede30ccb 100644
--- a/srcpkgs/x264/template
+++ b/srcpkgs/x264/template
@@ -10,7 +10,7 @@ short_desc="Free library for encoding H264/AVC video streams"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/x264.html"
-distfiles="https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
 checksum=b2495c8f2930167d470994b1ce02b0f4bfb24b3317ba36ba7f112e9809264160
 
 pre_configure() {

From ce6a5595a629a868611bf36ced573e8431da7846 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:51 +0100
Subject: [PATCH 5/9] libdvdnav: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdnav/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdnav/template b/srcpkgs/libdvdnav/template
index 5a7a859c4c0b..9ff884a90b37 100644
--- a/srcpkgs/libdvdnav/template
+++ b/srcpkgs/libdvdnav/template
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdnav.html"
 changelog="https://code.videolan.org/videolan/libdvdnav/blob/master/ChangeLog"
-distfiles="https://download.videolan.org/pub/videolan/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
 checksum=c191a7475947d323ff7680cf92c0fb1be8237701885f37656c64d04e98d18d48
 
 libdvdnav-devel_package() {

From 6435a752e8e790d1f3d3a078a3fc481c43df6f42 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:04 +0100
Subject: [PATCH 6/9] libdvdcss: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdcss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdcss/template b/srcpkgs/libdvdcss/template
index ca9d26cd31cd..c77443b8e055 100644
--- a/srcpkgs/libdvdcss/template
+++ b/srcpkgs/libdvdcss/template
@@ -7,7 +7,7 @@ short_desc="Simple library designed for accessing DVDs"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdcss.html"
-distfiles="https://download.videolan.org/pub/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
 checksum=233cc92f5dc01c5d3a96f5b3582be7d5cee5a35a52d3a08158745d3d86070079
 
 libdvdcss-devel_package() {

From 33b064bbde74dea8846099c6fdcd368539e7062c Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:17 +0100
Subject: [PATCH 7/9] libdvbpsi: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvbpsi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvbpsi/template b/srcpkgs/libdvbpsi/template
index c8aa475b2de5..5aac623a13ae 100644
--- a/srcpkgs/libdvbpsi/template
+++ b/srcpkgs/libdvbpsi/template
@@ -7,7 +7,7 @@ short_desc="PSI decoder and generator library for MPEG2 and DVB streams"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-only"
 homepage="https://www.videolan.org/developers/libdvbpsi.html"
-distfiles="https://download.videolan.org/pub/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
 checksum=02b5998bcf289cdfbd8757bedd5987e681309b0a25b3ffe6cebae599f7a00112
 
 libdvbpsi-devel_package() {

From 087d08f513982353c7fc9a5c09f66ea971524c3d Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:28 +0100
Subject: [PATCH 8/9] libdca: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdca/template b/srcpkgs/libdca/template
index a9007df8387c..a144e80ad73b 100644
--- a/srcpkgs/libdca/template
+++ b/srcpkgs/libdca/template
@@ -8,7 +8,7 @@ short_desc="DTS Coherent Acoustics decoder"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdca.html"
-distfiles="https://download.videolan.org/pub/videolan/libdca/${version}/libdca-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdca/${version}/libdca-${version}.tar.bz2"
 checksum=3a0b13815f582c661d2388ffcabc2f1ea82f471783c400f765f2ec6c81065f6a
 
 pre_configure() {

From 8464b74ab1550608815335d96489ddf99292af32 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:39 +0100
Subject: [PATCH 9/9] libbluray: use ${VIDEOLAN_SITE}

---
 srcpkgs/libbluray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbluray/template b/srcpkgs/libbluray/template
index b81a8ee351de..070c351ee279 100644
--- a/srcpkgs/libbluray/template
+++ b/srcpkgs/libbluray/template
@@ -10,7 +10,7 @@ short_desc="Library to access Blu-Ray disks for video playback"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.videolan.org/developers/libbluray.html"
-distfiles="https://download.videolan.org/pub/videolan/libbluray/${version}/libbluray-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libbluray/${version}/libbluray-${version}.tar.bz2"
 checksum=e2dbaf99e84e0a9725f4985bcb85d41e52c2261cc651d8884b1b790b5ef016f9
 
 pre_build() {

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

* Re: [PR PATCH] [Updated] Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
  2022-03-04 12:45 ` [PR PATCH] [Updated] " tibequadorian
  2022-03-04 12:54 ` tibequadorian
@ 2022-03-16 20:20 ` tibequadorian
  2022-03-16 20:25 ` tibequadorian
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-16 20:20 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tibequadorian/void-packages videolan-site
https://github.com/void-linux/void-packages/pull/35961

Add ${VIDEOLAN_SITE}
[ci skip]

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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/35961.patch is attached

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

From da440e3f0b4774baf7c923debc2ef6b5c0aa9a81 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:54:08 +0100
Subject: [PATCH 1/9] common/environment/setup/misc.sh: add ${VIDEOLAN_SITE}

---
 common/environment/setup/misc.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/environment/setup/misc.sh b/common/environment/setup/misc.sh
index d22a7388d689..177b1e5622a2 100644
--- a/common/environment/setup/misc.sh
+++ b/common/environment/setup/misc.sh
@@ -17,5 +17,6 @@ MOZILLA_SITE="https://ftp.mozilla.org/pub"
 GNU_SITE="https://ftp.gnu.org/gnu"
 FREEDESKTOP_SITE="https://freedesktop.org/software"
 KDE_SITE="https://download.kde.org/stable"
+VIDEOLAN_SITE="https://download.videolan.org/pub/videolan"
 
 set +a

From 3188d1cfd7ed0d7425fa238941b0e476370e6cff Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:53:17 +0100
Subject: [PATCH 2/9] Manual.md: document ${VIDEOLAN_SITE}

---
 Manual.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Manual.md b/Manual.md
index 40b2321f7a25..af5f698debae 100644
--- a/Manual.md
+++ b/Manual.md
@@ -529,6 +529,7 @@ Example:
   | UBUNTU_SITE      | http://archive.ubuntu.com/ubuntu/pool           |
   | XORG_SITE        | https://www.x.org/releases/individual            |
   | KDE_SITE         | https://download.kde.org/stable                 |
+  | VIDEOLAN_SITE    | https://download.videolan.org/pub/videolan      |
 
 - `checksum` The `sha256` digests matching `${distfiles}`. Multiple files can be
 separated by blanks. Please note that the order must be the same than

From d69392223aa065ddc16d13c7afc5a48d0dfd2cda Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:29 +0100
Subject: [PATCH 3/9] vlc: use ${VIDEOLAN_SITE}

---
 srcpkgs/vlc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 309477a2f775..bb2f6573b69d 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -16,7 +16,7 @@ maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-only, LGPL-2.1-only"
 homepage="https://www.videolan.org/vlc/"
 changelog="https://www.videolan.org/developers/vlc-branch/NEWS"
-distfiles="https://download.videolan.org/pub/videolan/vlc/${version}/vlc-${version}.tar.xz"
+distfiles="${VIDEOLAN_SITE}/vlc/${version}/vlc-${version}.tar.xz"
 checksum=48bd9bf337aa107a1524eba57c52dc4a91e29f5a97fbdee92f6a4dba90383cd0
 
 lib32disabled=yes

From 43d9b9eebb105291e2f33e69a0689709518b6ee5 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:38 +0100
Subject: [PATCH 4/9] x264: use ${VIDEOLAN_SITE}

---
 srcpkgs/x264/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/x264/template b/srcpkgs/x264/template
index 1ed803645ba6..a33dede30ccb 100644
--- a/srcpkgs/x264/template
+++ b/srcpkgs/x264/template
@@ -10,7 +10,7 @@ short_desc="Free library for encoding H264/AVC video streams"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/x264.html"
-distfiles="https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
 checksum=b2495c8f2930167d470994b1ce02b0f4bfb24b3317ba36ba7f112e9809264160
 
 pre_configure() {

From 9413debb88eecfb8aaa473bee70ecee3610e0ff1 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:51 +0100
Subject: [PATCH 5/9] libdvdnav: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdnav/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdnav/template b/srcpkgs/libdvdnav/template
index 5a7a859c4c0b..9ff884a90b37 100644
--- a/srcpkgs/libdvdnav/template
+++ b/srcpkgs/libdvdnav/template
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdnav.html"
 changelog="https://code.videolan.org/videolan/libdvdnav/blob/master/ChangeLog"
-distfiles="https://download.videolan.org/pub/videolan/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
 checksum=c191a7475947d323ff7680cf92c0fb1be8237701885f37656c64d04e98d18d48
 
 libdvdnav-devel_package() {

From 42198120d929e999c708e691df20ef487eb7aa54 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:04 +0100
Subject: [PATCH 6/9] libdvdcss: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdcss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdcss/template b/srcpkgs/libdvdcss/template
index ca9d26cd31cd..c77443b8e055 100644
--- a/srcpkgs/libdvdcss/template
+++ b/srcpkgs/libdvdcss/template
@@ -7,7 +7,7 @@ short_desc="Simple library designed for accessing DVDs"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdcss.html"
-distfiles="https://download.videolan.org/pub/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
 checksum=233cc92f5dc01c5d3a96f5b3582be7d5cee5a35a52d3a08158745d3d86070079
 
 libdvdcss-devel_package() {

From 37c65bbeb4d09f2cbadbdcb6c8ede0f797c56726 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:17 +0100
Subject: [PATCH 7/9] libdvbpsi: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvbpsi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvbpsi/template b/srcpkgs/libdvbpsi/template
index c8aa475b2de5..5aac623a13ae 100644
--- a/srcpkgs/libdvbpsi/template
+++ b/srcpkgs/libdvbpsi/template
@@ -7,7 +7,7 @@ short_desc="PSI decoder and generator library for MPEG2 and DVB streams"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-only"
 homepage="https://www.videolan.org/developers/libdvbpsi.html"
-distfiles="https://download.videolan.org/pub/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
 checksum=02b5998bcf289cdfbd8757bedd5987e681309b0a25b3ffe6cebae599f7a00112
 
 libdvbpsi-devel_package() {

From 280ddc5e836a18832cbb2435c2027301f6c230ae Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:28 +0100
Subject: [PATCH 8/9] libdca: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdca/template b/srcpkgs/libdca/template
index a9007df8387c..a144e80ad73b 100644
--- a/srcpkgs/libdca/template
+++ b/srcpkgs/libdca/template
@@ -8,7 +8,7 @@ short_desc="DTS Coherent Acoustics decoder"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdca.html"
-distfiles="https://download.videolan.org/pub/videolan/libdca/${version}/libdca-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdca/${version}/libdca-${version}.tar.bz2"
 checksum=3a0b13815f582c661d2388ffcabc2f1ea82f471783c400f765f2ec6c81065f6a
 
 pre_configure() {

From c3e02fc039ed9c0221031625314606bb55a0ee76 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:39 +0100
Subject: [PATCH 9/9] libbluray: use ${VIDEOLAN_SITE}

---
 srcpkgs/libbluray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbluray/template b/srcpkgs/libbluray/template
index b81a8ee351de..070c351ee279 100644
--- a/srcpkgs/libbluray/template
+++ b/srcpkgs/libbluray/template
@@ -10,7 +10,7 @@ short_desc="Library to access Blu-Ray disks for video playback"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.videolan.org/developers/libbluray.html"
-distfiles="https://download.videolan.org/pub/videolan/libbluray/${version}/libbluray-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libbluray/${version}/libbluray-${version}.tar.bz2"
 checksum=e2dbaf99e84e0a9725f4985bcb85d41e52c2261cc651d8884b1b790b5ef016f9
 
 pre_build() {

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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (2 preceding siblings ...)
  2022-03-16 20:20 ` tibequadorian
@ 2022-03-16 20:25 ` tibequadorian
  2022-03-18 20:45 ` tibequadorian
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-16 20:25 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1069590621

Comment:
@paper42 

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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (3 preceding siblings ...)
  2022-03-16 20:25 ` tibequadorian
@ 2022-03-18 20:45 ` tibequadorian
  2022-03-19 17:34 ` [PR PATCH] [Updated] " tibequadorian
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-18 20:45 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1069590621

Comment:
@paper42 

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

* Re: [PR PATCH] [Updated] Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (4 preceding siblings ...)
  2022-03-18 20:45 ` tibequadorian
@ 2022-03-19 17:34 ` tibequadorian
  2022-03-19 17:34 ` tibequadorian
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-19 17:34 UTC (permalink / raw)
  To: ml

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

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

https://github.com/tibequadorian/void-packages videolan-site
https://github.com/void-linux/void-packages/pull/35961

Add ${VIDEOLAN_SITE}
[ci skip]

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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/35961.patch is attached

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

From c64e881240d572bc3b514a7051da23719e081308 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:54:08 +0100
Subject: [PATCH 1/9] common/environment/setup/misc.sh: add ${VIDEOLAN_SITE}

---
 common/environment/setup/misc.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/environment/setup/misc.sh b/common/environment/setup/misc.sh
index d22a7388d689..177b1e5622a2 100644
--- a/common/environment/setup/misc.sh
+++ b/common/environment/setup/misc.sh
@@ -17,5 +17,6 @@ MOZILLA_SITE="https://ftp.mozilla.org/pub"
 GNU_SITE="https://ftp.gnu.org/gnu"
 FREEDESKTOP_SITE="https://freedesktop.org/software"
 KDE_SITE="https://download.kde.org/stable"
+VIDEOLAN_SITE="https://download.videolan.org/pub/videolan"
 
 set +a

From 929734ae6234f6c78f2d44c7da29258802a8d140 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:53:17 +0100
Subject: [PATCH 2/9] Manual.md: document ${VIDEOLAN_SITE}

---
 Manual.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Manual.md b/Manual.md
index 40b2321f7a25..af5f698debae 100644
--- a/Manual.md
+++ b/Manual.md
@@ -529,6 +529,7 @@ Example:
   | UBUNTU_SITE      | http://archive.ubuntu.com/ubuntu/pool           |
   | XORG_SITE        | https://www.x.org/releases/individual            |
   | KDE_SITE         | https://download.kde.org/stable                 |
+  | VIDEOLAN_SITE    | https://download.videolan.org/pub/videolan      |
 
 - `checksum` The `sha256` digests matching `${distfiles}`. Multiple files can be
 separated by blanks. Please note that the order must be the same than

From 59ca8202d69e816dfe72a1e7d1d61f4189f515cb Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:29 +0100
Subject: [PATCH 3/9] vlc: use ${VIDEOLAN_SITE}

---
 srcpkgs/vlc/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/vlc/template b/srcpkgs/vlc/template
index 318e7ac12ce1..14a00043a651 100644
--- a/srcpkgs/vlc/template
+++ b/srcpkgs/vlc/template
@@ -16,7 +16,7 @@ maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 license="GPL-2.0-only, LGPL-2.1-only"
 homepage="https://www.videolan.org/vlc/"
 changelog="https://www.videolan.org/developers/vlc-branch/NEWS"
-distfiles="https://download.videolan.org/pub/videolan/vlc/${version}/vlc-${version}.tar.xz"
+distfiles="${VIDEOLAN_SITE}/vlc/${version}/vlc-${version}.tar.xz"
 checksum=6f7e90ef8973d31d96de64db817173e345150829717a94084b1bb8321cde2014
 
 lib32disabled=yes

From becf6caece123687172a4953c099fed4dc44f489 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:38 +0100
Subject: [PATCH 4/9] x264: use ${VIDEOLAN_SITE}

---
 srcpkgs/x264/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/x264/template b/srcpkgs/x264/template
index 1ed803645ba6..a33dede30ccb 100644
--- a/srcpkgs/x264/template
+++ b/srcpkgs/x264/template
@@ -10,7 +10,7 @@ short_desc="Free library for encoding H264/AVC video streams"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/x264.html"
-distfiles="https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/x264/snapshots/x264-snapshot-${version//./-}-stable.tar.bz2"
 checksum=b2495c8f2930167d470994b1ce02b0f4bfb24b3317ba36ba7f112e9809264160
 
 pre_configure() {

From b37712e4a676f8cb7bdf683573cf0365b444fa6a Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:42:51 +0100
Subject: [PATCH 5/9] libdvdnav: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdnav/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdnav/template b/srcpkgs/libdvdnav/template
index 5a7a859c4c0b..9ff884a90b37 100644
--- a/srcpkgs/libdvdnav/template
+++ b/srcpkgs/libdvdnav/template
@@ -10,7 +10,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdnav.html"
 changelog="https://code.videolan.org/videolan/libdvdnav/blob/master/ChangeLog"
-distfiles="https://download.videolan.org/pub/videolan/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvdnav/${version}/libdvdnav-${version}.tar.bz2"
 checksum=c191a7475947d323ff7680cf92c0fb1be8237701885f37656c64d04e98d18d48
 
 libdvdnav-devel_package() {

From 9ca437ecee2bc442516c24efbda080863bf16697 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:04 +0100
Subject: [PATCH 6/9] libdvdcss: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvdcss/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvdcss/template b/srcpkgs/libdvdcss/template
index ca9d26cd31cd..c77443b8e055 100644
--- a/srcpkgs/libdvdcss/template
+++ b/srcpkgs/libdvdcss/template
@@ -7,7 +7,7 @@ short_desc="Simple library designed for accessing DVDs"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdvdcss.html"
-distfiles="https://download.videolan.org/pub/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
 checksum=233cc92f5dc01c5d3a96f5b3582be7d5cee5a35a52d3a08158745d3d86070079
 
 libdvdcss-devel_package() {

From a03cbc267e46bfe8d12b1b0155aa5dd8ad45728c Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:17 +0100
Subject: [PATCH 7/9] libdvbpsi: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdvbpsi/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdvbpsi/template b/srcpkgs/libdvbpsi/template
index c8aa475b2de5..5aac623a13ae 100644
--- a/srcpkgs/libdvbpsi/template
+++ b/srcpkgs/libdvbpsi/template
@@ -7,7 +7,7 @@ short_desc="PSI decoder and generator library for MPEG2 and DVB streams"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-only"
 homepage="https://www.videolan.org/developers/libdvbpsi.html"
-distfiles="https://download.videolan.org/pub/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdvbpsi/${version}/${pkgname}-${version}.tar.bz2"
 checksum=02b5998bcf289cdfbd8757bedd5987e681309b0a25b3ffe6cebae599f7a00112
 
 libdvbpsi-devel_package() {

From 043d31db4e316d10a26e2bdd74d7ae514d56a4bf Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:28 +0100
Subject: [PATCH 8/9] libdca: use ${VIDEOLAN_SITE}

---
 srcpkgs/libdca/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libdca/template b/srcpkgs/libdca/template
index a9007df8387c..a144e80ad73b 100644
--- a/srcpkgs/libdca/template
+++ b/srcpkgs/libdca/template
@@ -8,7 +8,7 @@ short_desc="DTS Coherent Acoustics decoder"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
 homepage="https://www.videolan.org/developers/libdca.html"
-distfiles="https://download.videolan.org/pub/videolan/libdca/${version}/libdca-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libdca/${version}/libdca-${version}.tar.bz2"
 checksum=3a0b13815f582c661d2388ffcabc2f1ea82f471783c400f765f2ec6c81065f6a
 
 pre_configure() {

From a665ecec7d29ede0f15147a1f6a745f4901541a6 Mon Sep 17 00:00:00 2001
From: tibequadorian <tibequadorian@posteo.de>
Date: Fri, 4 Mar 2022 13:43:39 +0100
Subject: [PATCH 9/9] libbluray: use ${VIDEOLAN_SITE}

---
 srcpkgs/libbluray/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/libbluray/template b/srcpkgs/libbluray/template
index b81a8ee351de..070c351ee279 100644
--- a/srcpkgs/libbluray/template
+++ b/srcpkgs/libbluray/template
@@ -10,7 +10,7 @@ short_desc="Library to access Blu-Ray disks for video playback"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.1-or-later"
 homepage="https://www.videolan.org/developers/libbluray.html"
-distfiles="https://download.videolan.org/pub/videolan/libbluray/${version}/libbluray-${version}.tar.bz2"
+distfiles="${VIDEOLAN_SITE}/libbluray/${version}/libbluray-${version}.tar.bz2"
 checksum=e2dbaf99e84e0a9725f4985bcb85d41e52c2261cc651d8884b1b790b5ef016f9
 
 pre_build() {

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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (5 preceding siblings ...)
  2022-03-19 17:34 ` [PR PATCH] [Updated] " tibequadorian
@ 2022-03-19 17:34 ` tibequadorian
  2022-03-20  7:02 ` [PR PATCH] [Merged]: " Hoshpak
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-19 17:34 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1073050218

Comment:
@Hoshpak could you take a look at this?

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

* Re: [PR PATCH] [Merged]: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (6 preceding siblings ...)
  2022-03-19 17:34 ` tibequadorian
@ 2022-03-20  7:02 ` Hoshpak
  2022-03-20 18:19 ` Duncaen
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Hoshpak @ 2022-03-20  7:02 UTC (permalink / raw)
  To: ml

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

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

Add ${VIDEOLAN_SITE}
https://github.com/void-linux/void-packages/pull/35961

Description:
[ci skip]

<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- 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
-->


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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (7 preceding siblings ...)
  2022-03-20  7:02 ` [PR PATCH] [Merged]: " Hoshpak
@ 2022-03-20 18:19 ` Duncaen
  2022-03-20 18:21 ` Duncaen
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Duncaen @ 2022-03-20 18:19 UTC (permalink / raw)
  To: ml

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

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1073305321

Comment:
What is the point of this, is there anything to gain from using variables?

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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (8 preceding siblings ...)
  2022-03-20 18:19 ` Duncaen
@ 2022-03-20 18:21 ` Duncaen
  2022-03-20 20:14 ` tibequadorian
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Duncaen @ 2022-03-20 18:21 UTC (permalink / raw)
  To: ml

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

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1073305638

Comment:
From `Manual.md`:

> To avoid repetition, several variables for common hosting sites exist:

This is useless, there is no repetition, we just set the distfiles once, adding the variable into the copied download link is more work.
It also makes it harder to just copy the download link out of the template.

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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (9 preceding siblings ...)
  2022-03-20 18:21 ` Duncaen
@ 2022-03-20 20:14 ` tibequadorian
  2022-03-20 20:26 ` Duncaen
  2022-03-20 21:54 ` tibequadorian
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-20 20:14 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1073340874

Comment:
> What is the point of this, is there anything to gain from using variables?

It makes it easier to switch to a mirror

>This is useless, there is no repetition, we just set the distfiles once, adding the variable into the copied download link is more work.
It also makes it harder to just copy the download link out of the template.

Sorry, I don't understand how this is different to other `*_SITE` variables, can you explain?

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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (10 preceding siblings ...)
  2022-03-20 20:14 ` tibequadorian
@ 2022-03-20 20:26 ` Duncaen
  2022-03-20 21:54 ` tibequadorian
  12 siblings, 0 replies; 14+ messages in thread
From: Duncaen @ 2022-03-20 20:26 UTC (permalink / raw)
  To: ml

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

New comment by Duncaen on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1073342519

Comment:
> Sorry, I don't understand how this is different to other `*_SITE` variables, can you explain?

Its not, I'm also questioning its value of the other examples.

We just haven't added any new `_SITE` variables in 4 years so its just coming up now again.

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

* Re: Add ${VIDEOLAN_SITE}
  2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
                   ` (11 preceding siblings ...)
  2022-03-20 20:26 ` Duncaen
@ 2022-03-20 21:54 ` tibequadorian
  12 siblings, 0 replies; 14+ messages in thread
From: tibequadorian @ 2022-03-20 21:54 UTC (permalink / raw)
  To: ml

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

New comment by tibequadorian on void-packages repository

https://github.com/void-linux/void-packages/pull/35961#issuecomment-1073356176

Comment:
> Its not, I'm also questioning its value of the other examples.

Didn't know that the use of these variables is controversial. In this and some other cases I see its value for switching to a mirror.

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

end of thread, other threads:[~2022-03-20 21:54 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-04 12:44 [PR PATCH] Add ${VIDEOLAN_SITE} tibequadorian
2022-03-04 12:45 ` [PR PATCH] [Updated] " tibequadorian
2022-03-04 12:54 ` tibequadorian
2022-03-16 20:20 ` tibequadorian
2022-03-16 20:25 ` tibequadorian
2022-03-18 20:45 ` tibequadorian
2022-03-19 17:34 ` [PR PATCH] [Updated] " tibequadorian
2022-03-19 17:34 ` tibequadorian
2022-03-20  7:02 ` [PR PATCH] [Merged]: " Hoshpak
2022-03-20 18:19 ` Duncaen
2022-03-20 18:21 ` Duncaen
2022-03-20 20:14 ` tibequadorian
2022-03-20 20:26 ` Duncaen
2022-03-20 21:54 ` tibequadorian

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