summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Glagolev2021-02-02 23:24:38 +0000
committerVlad Glagolev2021-02-02 23:24:38 +0000
commit630c0f3218987559833a207994617e03a011a439 (patch)
tree69f40941a97ab00747c307a649407545dd227463
parent2c0112aebf9d998d2144fd3488eb14b362c8c32d (diff)
palemoon-bin: => 29.0.0 [security]
-rwxr-xr-xbin-http/palemoon-bin/DEPENDS7
-rwxr-xr-xbin-http/palemoon-bin/DETAILS6
-rw-r--r--bin-http/palemoon-bin/HISTORY4
-rwxr-xr-xbin-http/palemoon-bin/PREPARE3
4 files changed, 16 insertions, 4 deletions
diff --git a/bin-http/palemoon-bin/DEPENDS b/bin-http/palemoon-bin/DEPENDS
index 4e7819b..58266c0 100755
--- a/bin-http/palemoon-bin/DEPENDS
+++ b/bin-http/palemoon-bin/DEPENDS
@@ -8,7 +8,12 @@ runtime_depends fontconfig &&
runtime_depends freetype2 &&
runtime_depends pango &&
runtime_depends cairo &&
-runtime_depends gtk+2 &&
+
+if [[ ${PALEMOON_GTK} == gtk3 ]]; then
+ runtime_depends gtk+3
+else
+ runtime_depends gtk+2
+fi &&
# X libraries
runtime_depends libx11 &&
diff --git a/bin-http/palemoon-bin/DETAILS b/bin-http/palemoon-bin/DETAILS
index c97eba8..4100c53 100755
--- a/bin-http/palemoon-bin/DETAILS
+++ b/bin-http/palemoon-bin/DETAILS
@@ -1,9 +1,9 @@
SPELL=palemoon-bin
SPELLX=${SPELL/-bin}
- VERSION=28.17.0
- SECURITY_PATCH=28
+ VERSION=29.0.0
+ SECURITY_PATCH=29
ARCH=x86_64
- SOURCE=${SPELLX}-${VERSION}.linux-${ARCH}-gtk2.tar.xz
+ SOURCE=${SPELLX}-${VERSION}.linux-${ARCH}-${PALEMOON_GTK}.tar.xz
SOURCE2=${SOURCE}.sig
SOURCE_URL[0]=http://linux.palemoon.org/datastore/release/${SOURCE}
SOURCE2_URL[0]=${SOURCE_URL}.sig
diff --git a/bin-http/palemoon-bin/HISTORY b/bin-http/palemoon-bin/HISTORY
index 9cb5e7a..e822774 100644
--- a/bin-http/palemoon-bin/HISTORY
+++ b/bin-http/palemoon-bin/HISTORY
@@ -1,3 +1,7 @@
+2021-02-02 Vlad Glagolev <stealth@sourcemage.org>
+ * DETAILS: updated spell to 29.0.0; SECURITY_PATCH++
+ * PREPARE, DEPENDS: added gtk+3 build
+
2020-12-21 Vlad Glagolev <stealth@sourcemage.org>
* DETAILS: updated spell to 28.17.0; SECURITY_PATCH++; drop i686 arch
diff --git a/bin-http/palemoon-bin/PREPARE b/bin-http/palemoon-bin/PREPARE
new file mode 100755
index 0000000..0f37edb
--- /dev/null
+++ b/bin-http/palemoon-bin/PREPARE
@@ -0,0 +1,3 @@
+config_query_list PALEMOON_GTK "Pale Moon can use GTK+2 or GTK+3. Which build to use?" \
+ gtk2 \
+ gtk3