summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFigue2018-11-10 01:46:28 +0100
committerFigue2018-11-10 01:46:28 +0100
commitb5914d9e3186277e46b6ad6d889a1224d0758e81 (patch)
tree3391be7a82504697d47201e398b857b1be8b7ebb
parent5b72cad540176a0a6ba63abc6bb828624fe34cdd (diff)
downloadaur-b5914d9e3186277e46b6ad6d889a1224d0758e81.tar.gz
60.3.0
-rw-r--r--.SRCINFO12
-rw-r--r--0000-rust-1.29.patch36
-rw-r--r--PKGBUILD22
3 files changed, 13 insertions, 57 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 455c34d405b3..c0b2e03d0042 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = icecat
pkgdesc = GNU version of the Firefox browser.
- pkgver = 60.2.0
- pkgrel = 2
+ pkgver = 60.3.0
+ pkgrel = 1
url = http://www.gnu.org/software/gnuzilla/
arch = i686
arch = x86_64
@@ -40,17 +40,15 @@ pkgbase = icecat
optdepends = libnotify: Notification integration
optdepends = pulseaudio: Audio support
optdepends = speech-dispatcher: Text-to-Speech
- source = http://alpha.gnu.org/gnu/gnuzilla/60.2.0/icecat-60.2.0-gnu1.tar.bz2
- source = http://alpha.gnu.org/gnu/gnuzilla/60.2.0/icecat-60.2.0-gnu1.tar.bz2.sig
+ source = https://ftp.gnu.org/gnu/gnuzilla/60.3.0/icecat-60.3.0-gnu1.tar.bz2
+ source = https://ftp.gnu.org/gnu/gnuzilla/60.3.0/icecat-60.3.0-gnu1.tar.bz2.sig
source = icecat.desktop
source = icecat-safe.desktop
- source = 0000-rust-1.29.patch
validpgpkeys = A57369A8BABC2542B5A0368C3C76EED7D7E04784
- sha256sums = f40746f1c44b4ae3e5ae6da9d30efbdb78abb9d37864097320a9849ece3b1d53
+ sha256sums = 6145327092b4b195a4f63d0e86f4857eeba5607ffeb69b6f3bceb36e89a19645
sha256sums = SKIP
sha256sums = c44eab35f71dd3028a74632463710d674b2e8a0682e5e887535e3233a3b7bbb3
sha256sums = 190577ad917bccfc89a9bcafbc331521f551b6f54e190bb6216eada48dcb1303
- sha256sums = ce243b1e835651723d2186709fcd5218ad050ff56550c3ef25e23c718a69497b
pkgname = icecat
diff --git a/0000-rust-1.29.patch b/0000-rust-1.29.patch
deleted file mode 100644
index 023dbfd1d857..000000000000
--- a/0000-rust-1.29.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-
-diff --git a/build/moz.configure/init.configure b/build/moz.configure/init.configure
---- a/build/moz.configure/init.configure
-+++ b/build/moz.configure/init.configure
-@@ -587,17 +587,26 @@ option('--target', nargs=1,
- @imports(_from='__builtin__', _import='KeyError')
- @imports(_from='__builtin__', _import='ValueError')
- def split_triplet(triplet, allow_unknown=False):
- # The standard triplet is defined as
- # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
- # There is also a quartet form:
- # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
- # But we can consider the "KERNEL-OPERATING_SYSTEM" as one.
-- cpu, manufacturer, os = triplet.split('-', 2)
-+ # Additionally, some may omit "unknown" when the manufacturer
-+ # is not specified and emit
-+ # CPU_TYPE-OPERATING_SYSTEM
-+ parts = triplet.split('-', 2)
-+ if len(parts) == 3:
-+ cpu, _, os = parts
-+ elif len(parts) == 2:
-+ cpu, os = parts
-+ else:
-+ die("Unexpected triplet string: %s" % triplet)
-
- # Autoconf uses config.sub to validate and canonicalize those triplets,
- # but the granularity of its results has never been satisfying to our
- # use, so we've had our own, different, canonicalization. We've also
- # historically not been very consistent with how we use the canonicalized
- # values. Hopefully, this will help us make things better.
- # The tests are inherited from our decades-old autoconf-based configure,
- # which can probably be improved/cleaned up because they are based on a
-
-
-
-
diff --git a/PKGBUILD b/PKGBUILD
index d7b7bdea6fa7..d4674a2d8421 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,10 +6,10 @@
# Contributor: Muhammad 'MJ' Jassim <UnbreakableMJ@gmail.com>
pkgname=icecat
-pkgver=60.2.0
+pkgver=60.3.0
_pkgver=${pkgver}-gnu1
_pkgverbase=${pkgver%%.*}
-pkgrel=2
+pkgrel=1
pkgdesc="GNU version of the Firefox browser."
arch=(i686 x86_64)
url="http://www.gnu.org/software/gnuzilla/"
@@ -29,18 +29,16 @@ optdepends=('networkmanager: Location detection via available WiFi networks'
[ "$_CLANG" ] && [ "$_CLANG" -eq "1" ] && makedepends+=(clang)
#source=(http://ftpmirror.gnu.org/gnuzilla/${pkgver}/${pkgname}-${_pkgver}.tar.bz2{,.sig}
-#source=(https://ftp.gnu.org/gnu/gnuzilla/${pkgver}/${pkgname}-${_pkgver}.tar.bz2{,.sig} ## Main upstream download site
+source=(https://ftp.gnu.org/gnu/gnuzilla/${pkgver}/${pkgname}-${_pkgver}.tar.bz2{,.sig} ## Main upstream download site
#source=(https://mirrors.kernel.org/gnu/gnuzilla/${pkgver}/${pkgname}-${_pkgver}.tar.bz2 ## Good mirror
#source=(http://jenkins.trisquel.info/icecat/${pkgname}-${_pkgver}.tar.bz2 ## Official developer (Ruben Rodriguez) site. Probably only has developer releases.
-source=(http://alpha.gnu.org/gnu/gnuzilla/${pkgver}/${pkgname}-${_pkgver}.tar.bz2{,.sig}
- icecat.desktop icecat-safe.desktop
- 0000-rust-1.29.patch)
+#source=(http://alpha.gnu.org/gnu/gnuzilla/${pkgver}/${pkgname}-${_pkgver}.tar.bz2{,.sig}
+ icecat.desktop icecat-safe.desktop)
-sha256sums=('f40746f1c44b4ae3e5ae6da9d30efbdb78abb9d37864097320a9849ece3b1d53'
+sha256sums=('6145327092b4b195a4f63d0e86f4857eeba5607ffeb69b6f3bceb36e89a19645'
'SKIP'
'c44eab35f71dd3028a74632463710d674b2e8a0682e5e887535e3233a3b7bbb3'
- '190577ad917bccfc89a9bcafbc331521f551b6f54e190bb6216eada48dcb1303'
- 'ce243b1e835651723d2186709fcd5218ad050ff56550c3ef25e23c718a69497b')
+ '190577ad917bccfc89a9bcafbc331521f551b6f54e190bb6216eada48dcb1303')
validpgpkeys=(A57369A8BABC2542B5A0368C3C76EED7D7E04784) # Ruben Rodriguez (GNU IceCat releases key) <ruben@gnu.org>
@@ -52,11 +50,7 @@ prepare() {
sed -e 's;$(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION);$(libdir)/$(MOZ_APP_NAME);g' -i config/baseconfig.mk
sed -e 's;$(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION);$(libdir)/$(MOZ_APP_NAME)-devel;g' -i config/baseconfig.mk
- # Bug 1479540 - Accept "triplet" strings with only two parts in moz.configure
- # https://hg.mozilla.org/mozreview/gecko/rev/e820a3a4ce2284ecd2992dc827fedc357b75eeb7#index_header
- patch -Np1 -i ../0000-rust-1.29.patch
-
- printf '%b' " \e[1;36m->\e[0m\033[1m Starting build...\n"
+ printf '%b' " \e[1;36m->\e[0m\033[1m Starting build...\n"
cat >.mozconfig <<END
ac_add_options --enable-application=browser