Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] opera: update to 79.0.4143.72, adopt.
@ 2021-10-02 18:25 mobinmob
  2021-10-02 18:31 ` [PR PATCH] [Updated] " mobinmob
                   ` (20 more replies)
  0 siblings, 21 replies; 22+ messages in thread
From: mobinmob @ 2021-10-02 18:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 79.0.4143.72, adopt.
Also:
 - change distfile to rpm (no need for do_extract() )
 - remove autoupdater.
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From 9f20001ce07319c2062d61bbbd6dda10eb1b5c05 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 2 Oct 2021 21:17:16 +0300
Subject: [PATCH] opera: update to 79.0.4143.72, adopt.

Also:
 - change distfile to rpm (no need for do_extract)
 - remove autoupdater.
---
 srcpkgs/opera/template | 35 ++++++++++++++++++-----------------
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index 7885c301f441..06ca2c6ea95d 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,36 @@
 # Template file for 'opera'
 pkgname=opera
-version=79.0.4143.50
+version=79.0.4143.72
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=d7429be47cd28d8ff6ebf392f19bc20a6349a20b998cd14fbc91affa81ce98c8
+distfiles="https://get.geo.opera.com/pub/opera/desktop/${version}/linux/opera-stable_${version}_amd64.rpm"
+checksum=3449be73c676bf7a65fcb5df4405b72e35a73138bd2b95fe1f289498b9f4520b
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
-
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
 	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	chmod 4755 "${DESTDIR}/usr/lib/opera/opera_sandbox"
+
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: [PR PATCH] [Updated] opera: update to 79.0.4143.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
@ 2021-10-02 18:31 ` mobinmob
  2021-10-02 18:46 ` mobinmob
                   ` (19 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-02 18:31 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 79.0.4143.72, adopt.
Also:
 - change distfile to rpm (no need for do_extract() )
 - remove autoupdater.
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From fcf3bbcca940388eed5645315583a559a2f12e1b Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 2 Oct 2021 21:17:16 +0300
Subject: [PATCH] opera: update to 79.0.4143.72, adopt.

Also:
 - change distfile to rpm (no need for do_extract())
 - remove autoupdater.
---
 srcpkgs/opera/template | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index 7885c301f441..cf74a604c588 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,36 @@
 # Template file for 'opera'
 pkgname=opera
-version=79.0.4143.50
+version=79.0.4143.72
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=d7429be47cd28d8ff6ebf392f19bc20a6349a20b998cd14fbc91affa81ce98c8
+distfiles="https://get.geo.opera.com/pub/opera/desktop/${version}/linux/opera-stable_${version}_amd64.rpm"
+checksum=3449be73c676bf7a65fcb5df4405b72e35a73138bd2b95fe1f289498b9f4520b
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
-
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
 	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	chmod 4755 "${DESTDIR}/usr/lib/opera/opera_sandbox"
+
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: [PR PATCH] [Updated] opera: update to 79.0.4143.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
  2021-10-02 18:31 ` [PR PATCH] [Updated] " mobinmob
@ 2021-10-02 18:46 ` mobinmob
  2021-10-13 13:06 ` mobinmob
                   ` (18 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-02 18:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 79.0.4143.72, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From 6cbcf03915b909ffddb60c44eab4b8f8414ed378 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 2 Oct 2021 21:17:16 +0300
Subject: [PATCH] opera: update to 79.0.4143.72, adopt.

Also:
 - change distfile to rpm (no need for do_extract()).
---
 srcpkgs/opera/template | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index 7885c301f441..cf74a604c588 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,36 @@
 # Template file for 'opera'
 pkgname=opera
-version=79.0.4143.50
+version=79.0.4143.72
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=d7429be47cd28d8ff6ebf392f19bc20a6349a20b998cd14fbc91affa81ce98c8
+distfiles="https://get.geo.opera.com/pub/opera/desktop/${version}/linux/opera-stable_${version}_amd64.rpm"
+checksum=3449be73c676bf7a65fcb5df4405b72e35a73138bd2b95fe1f289498b9f4520b
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
-
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
 	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	chmod 4755 "${DESTDIR}/usr/lib/opera/opera_sandbox"
+
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: [PR PATCH] [Updated] opera: update to 79.0.4143.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
  2021-10-02 18:31 ` [PR PATCH] [Updated] " mobinmob
  2021-10-02 18:46 ` mobinmob
@ 2021-10-13 13:06 ` mobinmob
  2021-10-13 13:07 ` opera: update to 80.0.4170.16, adopt mobinmob
                   ` (17 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-13 13:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 79.0.4143.72, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From dd6608b8280f433ab5625ba3206373b3557597b9 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 2 Oct 2021 21:17:16 +0300
Subject: [PATCH] opera: update to 80.0.4170.16, adopt.

Also:
 - change distfile to rpm (no need for do_extract()).
---
 srcpkgs/opera/template | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index 7885c301f441..72749d04d23a 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,36 @@
 # Template file for 'opera'
 pkgname=opera
-version=79.0.4143.50
+version=80.0.4170.16
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=d7429be47cd28d8ff6ebf392f19bc20a6349a20b998cd14fbc91affa81ce98c8
+distfiles="https://get.geo.opera.com/pub/opera/desktop/${version}/linux/opera-stable_${version}_amd64.rpm"
+checksum=7be8c89a593f24c26e2302babe0536ed864e49d8e56805dc43c2effccb9e6f65
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
-
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
 	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	chmod 4755 "${DESTDIR}/usr/lib/opera/opera_sandbox"
+
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: opera: update to 80.0.4170.16, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (2 preceding siblings ...)
  2021-10-13 13:06 ` mobinmob
@ 2021-10-13 13:07 ` mobinmob
  2021-10-17 19:49 ` [PR PATCH] [Updated] " mobinmob
                   ` (16 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-13 13:07 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-942287164

Comment:
- Rebase on master.
- Update to version 80.0.4170.16.

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

* Re: [PR PATCH] [Updated] opera: update to 80.0.4170.16, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (3 preceding siblings ...)
  2021-10-13 13:07 ` opera: update to 80.0.4170.16, adopt mobinmob
@ 2021-10-17 19:49 ` mobinmob
  2021-10-17 19:51 ` opera: update to 80.0.4170.40, adopt mobinmob
                   ` (15 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-17 19:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 80.0.4170.16, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From 1e30b004859105501e1f85551bf20512f28f4563 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 2 Oct 2021 21:17:16 +0300
Subject: [PATCH] opera: update to 80.0.4170.40, adopt.

Also:
 - change distfile to rpm (no need for do_extract()).
---
 srcpkgs/opera/template | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index 7885c301f441..0e3720cf0690 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,36 @@
 # Template file for 'opera'
 pkgname=opera
-version=79.0.4143.50
+version=80.0.4170.40
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=d7429be47cd28d8ff6ebf392f19bc20a6349a20b998cd14fbc91affa81ce98c8
+distfiles="https://rpm.opera.com/rpm/opera_stable-${version}-linux-release-x64-signed.rpm"
+checksum=ede0b8051ee3961c53f4a7b1f56fe886590bda393a8f5ae164cfa970cc5aa297
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
-
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
 	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	chmod 4755 "${DESTDIR}/usr/lib/opera/opera_sandbox"
+
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: opera: update to 80.0.4170.40, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (4 preceding siblings ...)
  2021-10-17 19:49 ` [PR PATCH] [Updated] " mobinmob
@ 2021-10-17 19:51 ` mobinmob
  2021-10-23 18:57 ` [PR PATCH] [Updated] " mobinmob
                   ` (14 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-17 19:51 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-945184446

Comment:
- Rebase on master.
- Update to version 80.0.4170.40.
- Use the new rpm repo for the distfile.

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

* Re: [PR PATCH] [Updated] opera: update to 80.0.4170.40, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (5 preceding siblings ...)
  2021-10-17 19:51 ` opera: update to 80.0.4170.40, adopt mobinmob
@ 2021-10-23 18:57 ` mobinmob
  2021-10-23 18:59 ` [PR PATCH] [Updated] opera: update to 0.0.4170.63, adopt mobinmob
                   ` (13 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-23 18:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 80.0.4170.40, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From a034d463e3da93fa84bf43b7da900465a2b3d65c Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 2 Oct 2021 21:17:16 +0300
Subject: [PATCH] opera: update to 80.0.4170.40, adopt.

Also:
 - change distfile to rpm (no need for do_extract()).
---
 srcpkgs/opera/template | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index 7885c301f441..2a59a76580cc 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,36 @@
 # Template file for 'opera'
 pkgname=opera
-version=79.0.4143.50
+version=80.0.4170.63
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=d7429be47cd28d8ff6ebf392f19bc20a6349a20b998cd14fbc91affa81ce98c8
+distfiles="https://rpm.opera.com/rpm/opera_stable-${version}-linux-release-x64-signed.rpm"
+checksum=ac864ac5e434538b4bdabb4bf33cde18e97b1206d9e457b608939c37a9309bda
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
-
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
 	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	chmod 4755 "${DESTDIR}/usr/lib/opera/opera_sandbox"
+
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: [PR PATCH] [Updated] opera: update to 0.0.4170.63, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (6 preceding siblings ...)
  2021-10-23 18:57 ` [PR PATCH] [Updated] " mobinmob
@ 2021-10-23 18:59 ` mobinmob
  2021-10-23 19:00 ` mobinmob
                   ` (12 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-23 18:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 0.0.4170.63, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From 9063b83b450009258571eb395382de47cb1560f5 Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 2 Oct 2021 21:17:16 +0300
Subject: [PATCH] opera: update to 80.0.4170.40, adopt.

Also:
 - change distfile to rpm (no need for do_extract()).
---
 srcpkgs/opera/template | 37 +++++++++++++++++++------------------
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index 7885c301f441..2a59a76580cc 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,36 @@
 # Template file for 'opera'
 pkgname=opera
-version=79.0.4143.50
+version=80.0.4170.63
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=d7429be47cd28d8ff6ebf392f19bc20a6349a20b998cd14fbc91affa81ce98c8
+distfiles="https://rpm.opera.com/rpm/opera_stable-${version}-linux-release-x64-signed.rpm"
+checksum=ac864ac5e434538b4bdabb4bf33cde18e97b1206d9e457b608939c37a9309bda
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
-
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
 	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	chmod 4755 "${DESTDIR}/usr/lib/opera/opera_sandbox"
+
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: opera: update to 0.0.4170.63, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (7 preceding siblings ...)
  2021-10-23 18:59 ` [PR PATCH] [Updated] opera: update to 0.0.4170.63, adopt mobinmob
@ 2021-10-23 19:00 ` mobinmob
  2021-10-29  2:47 ` ericonr
                   ` (11 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-23 19:00 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-950197800

Comment:
- Rebase on master.
- Update to 80.0.4170.63.

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

* Re: opera: update to 0.0.4170.63, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (8 preceding siblings ...)
  2021-10-23 19:00 ` mobinmob
@ 2021-10-29  2:47 ` ericonr
  2021-10-29  2:48 ` [PR REVIEW] " ericonr
                   ` (10 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: ericonr @ 2021-10-29  2:47 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-954365291

Comment:
I merged an update, please rebase.

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

* Re: [PR REVIEW] opera: update to 0.0.4170.63, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (9 preceding siblings ...)
  2021-10-29  2:47 ` ericonr
@ 2021-10-29  2:48 ` ericonr
  2021-10-30 12:48 ` [PR PATCH] [Updated] " mobinmob
                   ` (9 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: ericonr @ 2021-10-29  2:48 UTC (permalink / raw)
  To: ml

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

New review comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#discussion_r738897589

Comment:
Any chance it can stop using the suid sandbox and depend on user namespaces instead?

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

* Re: [PR PATCH] [Updated] opera: update to 0.0.4170.63, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (10 preceding siblings ...)
  2021-10-29  2:48 ` [PR REVIEW] " ericonr
@ 2021-10-30 12:48 ` mobinmob
  2021-10-30 12:48 ` mobinmob
                   ` (8 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-30 12:48 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 0.0.4170.63, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From d85109bd0527e926f570cf6f6122f5fd0abd5dea Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 30 Oct 2021 15:45:37 +0300
Subject: [PATCH] opera: update to 80.0.4170.72, adopt.

 Also:
     - change distfile to rpm (no need for do_extract()).
---
 srcpkgs/opera/template | 34 ++++++++++++++++------------------
 1 file changed, 16 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index e71fb90b9313..f9cf304b765c 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -3,33 +3,31 @@ pkgname=opera
 version=80.0.4170.72
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=f6b9e132c9cd2f7343ffb5fae1edb80a08087bac90ddb53d5fb2e475f834177a
+distfiles="https://rpm.opera.com/rpm/opera_stable-${version}-linux-release-x64-signed.rpm"
+checksum=3f3ece9bae6576b6ef5e2908733c112695ea535801bc6fb422b9fe7a79c097cc
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
-
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
-	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: opera: update to 0.0.4170.63, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (11 preceding siblings ...)
  2021-10-30 12:48 ` [PR PATCH] [Updated] " mobinmob
@ 2021-10-30 12:48 ` mobinmob
  2021-10-30 12:49 ` [PR REVIEW] " mobinmob
                   ` (7 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-30 12:48 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-955204170

Comment:
> I merged an update, please rebase.

Done.

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

* Re: [PR REVIEW] opera: update to 0.0.4170.63, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (12 preceding siblings ...)
  2021-10-30 12:48 ` mobinmob
@ 2021-10-30 12:49 ` mobinmob
  2021-10-30 12:55 ` [PR REVIEW] opera: update to 80.0.4170.72, adopt mobinmob
                   ` (6 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-30 12:49 UTC (permalink / raw)
  To: ml

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

New review comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#discussion_r739651155

Comment:
I think removing the line does the trick, I am not sure how I can test it.

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

* Re: [PR REVIEW] opera: update to 80.0.4170.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (13 preceding siblings ...)
  2021-10-30 12:49 ` [PR REVIEW] " mobinmob
@ 2021-10-30 12:55 ` mobinmob
  2021-10-30 18:27 ` ericonr
                   ` (5 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-30 12:55 UTC (permalink / raw)
  To: ml

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

New review comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#discussion_r739651690

Comment:
`lsns` shows opera processes in different namespaces.

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

* Re: opera: update to 80.0.4170.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (14 preceding siblings ...)
  2021-10-30 12:55 ` [PR REVIEW] opera: update to 80.0.4170.72, adopt mobinmob
@ 2021-10-30 18:27 ` ericonr
  2021-10-31 12:06 ` [PR PATCH] [Updated] " mobinmob
                   ` (4 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: ericonr @ 2021-10-30 18:27 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-955573843

Comment:
I think commit message has to change? Just mention that it's changing to the RPM source.

And needs a revbump maybe? Unsure.

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

* Re: [PR PATCH] [Updated] opera: update to 80.0.4170.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (15 preceding siblings ...)
  2021-10-30 18:27 ` ericonr
@ 2021-10-31 12:06 ` mobinmob
  2021-10-31 12:08 ` mobinmob
                   ` (3 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-31 12:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 80.0.4170.72, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From c9e1719a425bd7567aeb8594270ace1479624a1a Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 30 Oct 2021 15:45:37 +0300
Subject: [PATCH] opera: change distfile to rpm, adopt.

 Also:
     - enable sandboxing with user namespaces.
---
 srcpkgs/opera/template | 34 ++++++++++++++++------------------
 1 file changed, 16 insertions(+), 18 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index e71fb90b9313..f9cf304b765c 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -3,33 +3,31 @@ pkgname=opera
 version=80.0.4170.72
 revision=1
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=f6b9e132c9cd2f7343ffb5fae1edb80a08087bac90ddb53d5fb2e475f834177a
+distfiles="https://rpm.opera.com/rpm/opera_stable-${version}-linux-release-x64-signed.rpm"
+checksum=3f3ece9bae6576b6ef5e2908733c112695ea535801bc6fb422b9fe7a79c097cc
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
-
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
-	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: [PR PATCH] [Updated] opera: update to 80.0.4170.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (16 preceding siblings ...)
  2021-10-31 12:06 ` [PR PATCH] [Updated] " mobinmob
@ 2021-10-31 12:08 ` mobinmob
  2021-10-31 12:08 ` mobinmob
                   ` (2 subsequent siblings)
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-31 12:08 UTC (permalink / raw)
  To: ml

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

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

https://github.com/mobinmob/void-packages opera
https://github.com/void-linux/void-packages/pull/33269

opera: update to 80.0.4170.72, adopt.
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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/33269.patch is attached

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

From 392efe4cf98dfc5922a5f3de7aadcf99a683c77e Mon Sep 17 00:00:00 2001
From: mobinmob <mobinmob@disroot.org>
Date: Sat, 30 Oct 2021 15:45:37 +0300
Subject: [PATCH] opera: change distfile to rpm, adopt.

 Also:
     - enable sandboxing with user namespaces.
---
 srcpkgs/opera/template | 36 +++++++++++++++++-------------------
 1 file changed, 17 insertions(+), 19 deletions(-)

diff --git a/srcpkgs/opera/template b/srcpkgs/opera/template
index e71fb90b9313..09e301a7f394 100644
--- a/srcpkgs/opera/template
+++ b/srcpkgs/opera/template
@@ -1,35 +1,33 @@
 # Template file for 'opera'
 pkgname=opera
 version=80.0.4170.72
-revision=1
+revision=2
 archs="x86_64"
+create_wrksrc=yes
+hostmakedepends="rpmextract"
 depends="ffmpeg desktop-file-utils hicolor-icon-theme"
 short_desc="Fast, secure, easy to use browser"
-maintainer="Diogo Leal <diogo@diogoleal.com>"
+maintainer="mobinmob <mobinmob@disroot.org>"
 license="custom:Proprietary"
 homepage="https://www.opera.com/computer"
-distfiles="http://get.geo.opera.com/pub/opera/desktop/${version}/linux/${pkgname}-stable_${version}_amd64.deb"
-checksum=f6b9e132c9cd2f7343ffb5fae1edb80a08087bac90ddb53d5fb2e475f834177a
+distfiles="https://rpm.opera.com/rpm/opera_stable-${version}-linux-release-x64-signed.rpm"
+checksum=3f3ece9bae6576b6ef5e2908733c112695ea535801bc6fb422b9fe7a79c097cc
 repository="nonfree"
 nostrip=yes
 
-do_extract() {
-	ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${pkgname}-stable_${version}_amd64.deb
-	bsdtar xf data.tar.xz --exclude=./usr/share/{lintian,menu}
-}
-
 do_install() {
-	vmkdir /usr/lib
-	vcopy usr/lib/x86_64-linux-gnu/opera /usr/lib
-
-	vmkdir /usr/bin
-	ln -s ../lib/opera/opera ${DESTDIR}/usr/bin/opera
+	# Create necessary dirs
+	vmkdir usr/bin
+	vmkdir usr/lib
 
-	vlicense usr/share/doc/opera-stable/copyright
-	rm -rf usr/share/doc
+	# Copy files
+	vcopy usr/lib64/opera /usr/lib/
+	vcopy usr/share /usr/share/
 
-	vcopy usr/share /usr
+	# Link executable in path
+	ln -s ../lib/opera/opera "${DESTDIR}/usr/bin/opera"
 
-	# suid opera_sandbox
-	chmod 4755 ${DESTDIR}/usr/lib/opera/opera_sandbox
+	# Install licenses
+	vlicense usr/lib64/opera/resources/eula_desktop_eea.txt
+	vlicense usr/lib64/opera/resources/eula_desktop_row.txt
 }

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

* Re: opera: update to 80.0.4170.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (17 preceding siblings ...)
  2021-10-31 12:08 ` mobinmob
@ 2021-10-31 12:08 ` mobinmob
  2021-10-31 18:19 ` ericonr
  2021-10-31 18:19 ` [PR PATCH] [Merged]: " ericonr
  20 siblings, 0 replies; 22+ messages in thread
From: mobinmob @ 2021-10-31 12:08 UTC (permalink / raw)
  To: ml

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

New comment by mobinmob on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-955687809

Comment:
> I think commit message has to change? Just mention that it's changing to the RPM source.

Done.


> And needs a revbump maybe? Unsure.

I think it does, for the sandbox change.


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

* Re: opera: update to 80.0.4170.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (18 preceding siblings ...)
  2021-10-31 12:08 ` mobinmob
@ 2021-10-31 18:19 ` ericonr
  2021-10-31 18:19 ` [PR PATCH] [Merged]: " ericonr
  20 siblings, 0 replies; 22+ messages in thread
From: ericonr @ 2021-10-31 18:19 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/33269#issuecomment-955768759

Comment:
Wonderful, thanks!

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

* Re: [PR PATCH] [Merged]: opera: update to 80.0.4170.72, adopt.
  2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
                   ` (19 preceding siblings ...)
  2021-10-31 18:19 ` ericonr
@ 2021-10-31 18:19 ` ericonr
  20 siblings, 0 replies; 22+ messages in thread
From: ericonr @ 2021-10-31 18:19 UTC (permalink / raw)
  To: ml

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

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

opera: update to 80.0.4170.72, adopt.
https://github.com/void-linux/void-packages/pull/33269

Description:
Also:
 - change distfile to rpm (no need for do_extract() ).
 
 @diogoleal 

<!-- 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?
- [ ] 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
-->


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

end of thread, other threads:[~2021-10-31 18:19 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-02 18:25 [PR PATCH] opera: update to 79.0.4143.72, adopt mobinmob
2021-10-02 18:31 ` [PR PATCH] [Updated] " mobinmob
2021-10-02 18:46 ` mobinmob
2021-10-13 13:06 ` mobinmob
2021-10-13 13:07 ` opera: update to 80.0.4170.16, adopt mobinmob
2021-10-17 19:49 ` [PR PATCH] [Updated] " mobinmob
2021-10-17 19:51 ` opera: update to 80.0.4170.40, adopt mobinmob
2021-10-23 18:57 ` [PR PATCH] [Updated] " mobinmob
2021-10-23 18:59 ` [PR PATCH] [Updated] opera: update to 0.0.4170.63, adopt mobinmob
2021-10-23 19:00 ` mobinmob
2021-10-29  2:47 ` ericonr
2021-10-29  2:48 ` [PR REVIEW] " ericonr
2021-10-30 12:48 ` [PR PATCH] [Updated] " mobinmob
2021-10-30 12:48 ` mobinmob
2021-10-30 12:49 ` [PR REVIEW] " mobinmob
2021-10-30 12:55 ` [PR REVIEW] opera: update to 80.0.4170.72, adopt mobinmob
2021-10-30 18:27 ` ericonr
2021-10-31 12:06 ` [PR PATCH] [Updated] " mobinmob
2021-10-31 12:08 ` mobinmob
2021-10-31 12:08 ` mobinmob
2021-10-31 18:19 ` ericonr
2021-10-31 18:19 ` [PR PATCH] [Merged]: " ericonr

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