From d0673473798011f6378a19314f9a18b6f48bda20 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 4 Sep 2018 08:45:31 +0200 Subject: [PATCH 1/3] evince: Update version from 3.28.2 to 3.30.0 From the [announcement][1]: > Highlights: > > For this releases we focused on making the user experience simpler: we > unified the menues, removed redundancies. made explicit actions, > enabled shortcuts for most of the features available, and documented > them to avoid easter eggs. In this release, we also include snap and > flatpack packages, to make testing and contribute Evince simpler. > There will be more user interface changes in the next release, but > those should be minimal in comparison with this one. [1]: https://mail.gnome.org/archives/evince-list/2018-September/msg00000.html --- evince.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evince.be0 b/evince.be0 index a668b9c65..1b040b4c3 100755 --- a/evince.be0 +++ b/evince.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION evince-3.28.2-0 +# BEE_VERSION evince-3.30.0-0 BEE_BUILDTYPE=configure From 71802035ace6d6c453a797bc347a2d228074ad37 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 4 Sep 2018 08:46:54 +0200 Subject: [PATCH 2/3] evince: Securely download source archive over HTTPS --- evince.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evince.be0 b/evince.be0 index 1b040b4c3..544017811 100755 --- a/evince.be0 +++ b/evince.be0 @@ -11,7 +11,7 @@ BEE_BUILDTYPE=configure ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="http://ftp.gnome.org/pub/gnome/sources/evince/${PKGVERSION[2]}/evince-${PKGVERSION}.tar.xz" +SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/evince/${PKGVERSION[2]}/evince-${PKGVERSION}.tar.xz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. From cdf886ee2d46a266c317bcfe160eb88f681057ce Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 4 Sep 2018 08:47:01 +0200 Subject: [PATCH 3/3] evince: Use download.gnome.org download.gnome.org sets HSTS, so it looks to be better maintained. $ curl -I https://ftp.gnome.org HTTP/1.1 200 OK Date: Tue, 04 Sep 2018 06:45:56 GMT Server: Apache/2.4.33 (Unix) Last-Modified: Mon, 02 Apr 2018 05:19:14 GMT Cache-Control: max-age=300 Expires: Tue, 04 Sep 2018 06:50:56 GMT Content-Type: text/html;charset=UTF-8 $ curl -I https://download.gnome.org HTTP/1.1 200 OK Date: Tue, 04 Sep 2018 06:46:04 GMT Server: Apache/2.4.6 (Red Hat Enterprise Linux) Strict-Transport-Security: max-age=15768000;includeSubdomains Content-Type: text/html;charset=UTF-8 --- evince.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evince.be0 b/evince.be0 index 544017811..4322a5131 100755 --- a/evince.be0 +++ b/evince.be0 @@ -11,7 +11,7 @@ BEE_BUILDTYPE=configure ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/evince/${PKGVERSION[2]}/evince-${PKGVERSION}.tar.xz" +SRCURL[0]="https://download.gnome.org/sources/evince/${PKGVERSION[2]}/evince-${PKGVERSION}.tar.xz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array.