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

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