From 9c8e83f9857778b81483966b6616dc44bb6710a2 Mon Sep 17 00:00:00 2001 From: Thomas Penteker Date: Tue, 11 Aug 2015 11:59:32 +0200 Subject: [PATCH 1/5] pinentry: 0.9.4 -> 0.9.5 --- pinentry/.footprint | 1 + pinentry/.md5sum | 2 +- pinentry/Pkgfile | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pinentry/.footprint b/pinentry/.footprint index 2237c6af6..13160e21a 100644 --- a/pinentry/.footprint +++ b/pinentry/.footprint @@ -2,3 +2,4 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/pinentry -rwxr-xr-x root/root usr/bin/pinentry-curses +-rwxr-xr-x root/root usr/bin/pinentry-emacs diff --git a/pinentry/.md5sum b/pinentry/.md5sum index 097cd334a..903c669d9 100644 --- a/pinentry/.md5sum +++ b/pinentry/.md5sum @@ -1,2 +1,2 @@ 422de36ebe2ea9c4102a33f7306c2ae3 pinentry -50dd255d23839079e15a02761f11d4c8 pinentry-0.9.4.tar.bz2 +55439c4436b59573a29e144916ee5b61 pinentry-0.9.5.tar.bz2 diff --git a/pinentry/Pkgfile b/pinentry/Pkgfile index 62653406c..e17ccd8d5 100644 --- a/pinentry/Pkgfile +++ b/pinentry/Pkgfile @@ -6,7 +6,7 @@ # Nice to have: pinentry-gtk2 pinentry-qt4 name=pinentry -version=0.9.4 +version=0.9.5 release=1 source=(ftp://ftp.gnupg.org/gcrypt/$name/$name-$version.tar.bz2 pinentry) From cc9c2f40a406e48b380c8b79608b7608af7c83f8 Mon Sep 17 00:00:00 2001 From: Thomas Penteker Date: Tue, 11 Aug 2015 12:00:33 +0200 Subject: [PATCH 2/5] pinentry-gtk2: 0.9.4 -> 0.9.5 --- pinentry-gtk2/.md5sum | 2 +- pinentry-gtk2/Pkgfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pinentry-gtk2/.md5sum b/pinentry-gtk2/.md5sum index 3c3481be7..48b87b409 100644 --- a/pinentry-gtk2/.md5sum +++ b/pinentry-gtk2/.md5sum @@ -1 +1 @@ -50dd255d23839079e15a02761f11d4c8 pinentry-0.9.4.tar.bz2 +55439c4436b59573a29e144916ee5b61 pinentry-0.9.5.tar.bz2 diff --git a/pinentry-gtk2/Pkgfile b/pinentry-gtk2/Pkgfile index 78c2d8164..a842cf445 100644 --- a/pinentry-gtk2/Pkgfile +++ b/pinentry-gtk2/Pkgfile @@ -5,7 +5,7 @@ # Depends on: pinentry, gtk name=pinentry-gtk2 -version=0.9.4 +version=0.9.5 release=1 source=(ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-$version.tar.bz2) @@ -22,5 +22,5 @@ build() { make DESTDIR=$PKG install rm -rf $PKG/usr/share - rm $PKG/usr/bin/pinentry + rm $PKG/usr/bin/pinentry{,-emacs} } From 419e54bdc0a5af1c25fe5a44a1ce2f2674a91a21 Mon Sep 17 00:00:00 2001 From: Thomas Penteker Date: Tue, 11 Aug 2015 12:05:08 +0200 Subject: [PATCH 3/5] pinentry-qt4: 0.9.4 -> 0.9.5 --- pinentry-qt4/.md5sum | 2 +- pinentry-qt4/Pkgfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pinentry-qt4/.md5sum b/pinentry-qt4/.md5sum index 3c3481be7..48b87b409 100644 --- a/pinentry-qt4/.md5sum +++ b/pinentry-qt4/.md5sum @@ -1 +1 @@ -50dd255d23839079e15a02761f11d4c8 pinentry-0.9.4.tar.bz2 +55439c4436b59573a29e144916ee5b61 pinentry-0.9.5.tar.bz2 diff --git a/pinentry-qt4/Pkgfile b/pinentry-qt4/Pkgfile index 8e8ec1e0c..cdb7f53db 100644 --- a/pinentry-qt4/Pkgfile +++ b/pinentry-qt4/Pkgfile @@ -5,7 +5,7 @@ # Depends on: pinentry qt4 name=pinentry-qt4 -version=0.9.4 +version=0.9.5 release=1 source=(ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-$version.tar.bz2) @@ -23,5 +23,5 @@ build() { make DESTDIR=$PKG install rm -rf $PKG/usr/share - rm $PKG/usr/bin/pinentry + rm $PKG/usr/bin/pinentry{,-emacs} } From 51f6577e2497727ca9225e97aa9eb212fabb89f1 Mon Sep 17 00:00:00 2001 From: Thomas Penteker Date: Tue, 11 Aug 2015 12:22:16 +0200 Subject: [PATCH 4/5] wireshark: check for xattr support in post-install --- wireshark/post-install | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wireshark/post-install b/wireshark/post-install index a52ac140e..43a2b5fae 100755 --- a/wireshark/post-install +++ b/wireshark/post-install @@ -4,6 +4,15 @@ # as non-root users. # +# ugly hack to test for support for capabilities +if ! setfattr -n user.xattr_test /usr/bin/dumpcap 2> /dev/null; then + echo capabilities not supported on this system + echo capturing with wireshark will require root privileges + exit 0 +fi + +setfattr -x user.xattr_test /usr/bin/dumpcap + getent group wireshark >/dev/null || groupadd -r wireshark From e8ae53480eecd0433278d7b31afddc2e7eb93847 Mon Sep 17 00:00:00 2001 From: Fredrik Rinnestam Date: Wed, 12 Aug 2015 00:31:53 +0200 Subject: [PATCH 5/5] [notify] firefox: updated to 40.0. Advisory: https://www.mozilla.org/en-US/security/known-vulnerabilities/firefox/ --- firefox/.footprint | 132 +++++++++++++++++++++++++++++---------------- firefox/.md5sum | 2 +- firefox/Pkgfile | 2 +- 3 files changed, 89 insertions(+), 47 deletions(-) diff --git a/firefox/.footprint b/firefox/.footprint index faaeb44be..142b4ce36 100644 --- a/firefox/.footprint +++ b/firefox/.footprint @@ -3,15 +3,16 @@ drwxr-xr-x root/root usr/bin/ lrwxrwxrwx root/root usr/bin/firefox -> /usr/lib/firefox/firefox drwxr-xr-x root/root usr/include/ drwxr-xr-x root/root usr/include/firefox/ --rw-r--r-- root/root usr/include/firefox/AVCCDecoderModule.h -rw-r--r-- root/root usr/include/firefox/AbstractMediaDecoder.h -rw-r--r-- root/root usr/include/firefox/AbstractThread.h -rw-r--r-- root/root usr/include/firefox/AccEvent.h -rw-r--r-- root/root usr/include/firefox/ActiveLayerTracker.h +-rw-r--r-- root/root usr/include/firefox/AlignedTArray.h -rw-r--r-- root/root usr/include/firefox/AndroidNativeWindow.h -rw-r--r-- root/root usr/include/firefox/AndroidSurfaceTexture.h -rw-r--r-- root/root usr/include/firefox/AnimationCommon.h -rw-r--r-- root/root usr/include/firefox/AsyncEventRunner.h +-rw-r--r-- root/root usr/include/firefox/AsyncScrollBase.h -rw-r--r-- root/root usr/include/firefox/AudioBufferUtils.h -rw-r--r-- root/root usr/include/firefox/AudioChannelAgent.h -rw-r--r-- root/root usr/include/firefox/AudioChannelCommon.h @@ -82,6 +83,7 @@ drwxr-xr-x root/root usr/include/firefox/ -rw-r--r-- root/root usr/include/firefox/ErrorList.h -rw-r--r-- root/root usr/include/firefox/EventTracer.h -rw-r--r-- root/root usr/include/firefox/FFmpegRuntimeLinker.h +-rw-r--r-- root/root usr/include/firefox/FakeInputPortService.h -rw-r--r-- root/root usr/include/firefox/FileBlockCache.h -rw-r--r-- root/root usr/include/firefox/FilterSupport.h -rw-r--r-- root/root usr/include/firefox/ForceDiscreteGPUHelperCGL.h @@ -114,6 +116,8 @@ drwxr-xr-x root/root usr/include/firefox/ -rw-r--r-- root/root usr/include/firefox/GMPAudioHost.h -rw-r--r-- root/root usr/include/firefox/GMPCallbackBase.h -rw-r--r-- root/root usr/include/firefox/GMPChild.h +-rw-r--r-- root/root usr/include/firefox/GMPContentChild.h +-rw-r--r-- root/root usr/include/firefox/GMPContentParent.h -rw-r--r-- root/root usr/include/firefox/GMPDecoderModule.h -rw-r--r-- root/root usr/include/firefox/GMPDecryptorChild.h -rw-r--r-- root/root usr/include/firefox/GMPDecryptorParent.h @@ -126,6 +130,8 @@ drwxr-xr-x root/root usr/include/firefox/ -rw-r--r-- root/root usr/include/firefox/GMPProcessChild.h -rw-r--r-- root/root usr/include/firefox/GMPProcessParent.h -rw-r--r-- root/root usr/include/firefox/GMPService.h +-rw-r--r-- root/root usr/include/firefox/GMPServiceChild.h +-rw-r--r-- root/root usr/include/firefox/GMPServiceParent.h -rw-r--r-- root/root usr/include/firefox/GMPSharedMemManager.h -rw-r--r-- root/root usr/include/firefox/GMPStorageChild.h -rw-r--r-- root/root usr/include/firefox/GMPStorageParent.h @@ -158,6 +164,7 @@ drwxr-xr-x root/root usr/include/firefox/ -rw-r--r-- root/root usr/include/firefox/GraphDriver.h -rw-r--r-- root/root usr/include/firefox/GraphicsFilter.h -rw-r--r-- root/root usr/include/firefox/GreekCasing.h +-rw-r--r-- root/root usr/include/firefox/H264Converter.h -rw-r--r-- root/root usr/include/firefox/HTMLPropertiesCollection.h -rw-r--r-- root/root usr/include/firefox/HTMLSplitOnSpacesTokenizer.h -rw-r--r-- root/root usr/include/firefox/HeapCopyOfStackArray.h @@ -174,9 +181,12 @@ drwxr-xr-x root/root usr/include/firefox/ -rw-r--r-- root/root usr/include/firefox/ImageRegion.h -rw-r--r-- root/root usr/include/firefox/ImageTypes.h -rw-r--r-- root/root usr/include/firefox/InputData.h +-rw-r--r-- root/root usr/include/firefox/InputPortData.h +-rw-r--r-- root/root usr/include/firefox/InputPortListeners.h +-rw-r--r-- root/root usr/include/firefox/InputPortServiceFactory.h -rw-r--r-- root/root usr/include/firefox/IntelWebMVideoDecoder.h +-rw-r--r-- root/root usr/include/firefox/Intervals.h -rw-r--r-- root/root usr/include/firefox/IrishCasing.h --rw-r--r-- root/root usr/include/firefox/JSStreamWriter.h -rw-r--r-- root/root usr/include/firefox/Latency.h -rw-r--r-- root/root usr/include/firefox/LayerScope.h -rw-r--r-- root/root usr/include/firefox/LayerScopePacket.pb.h @@ -246,6 +256,7 @@ drwxr-xr-x root/root usr/include/firefox/ -rw-r--r-- root/root usr/include/firefox/ReadbackLayer.h -rw-r--r-- root/root usr/include/firefox/RoundedRect.h -rw-r--r-- root/root usr/include/firefox/RtspMediaResource.h +-rw-r--r-- root/root usr/include/firefox/RubyUtils.h -rw-r--r-- root/root usr/include/firefox/SVGAttrValueWrapper.h -rw-r--r-- root/root usr/include/firefox/SVGImageContext.h -rw-r--r-- root/root usr/include/firefox/SVGPreserveAspectRatio.h @@ -270,9 +281,12 @@ drwxr-xr-x root/root usr/include/firefox/ -rw-r--r-- root/root usr/include/firefox/SoftwareWebMVideoDecoder.h -rw-r--r-- root/root usr/include/firefox/SpecialSystemDirectory.h -rw-r--r-- root/root usr/include/firefox/StackArena.h +-rw-r--r-- root/root usr/include/firefox/StateMirroring.h +-rw-r--r-- root/root usr/include/firefox/StateWatching.h -rw-r--r-- root/root usr/include/firefox/StreamBuffer.h -rw-r--r-- root/root usr/include/firefox/SurfaceCache.h -rw-r--r-- root/root usr/include/firefox/SurfaceTypes.h +-rw-r--r-- root/root usr/include/firefox/TaskDispatcher.h -rw-r--r-- root/root usr/include/firefox/TextureGarbageBin.h -rw-r--r-- root/root usr/include/firefox/TexturePoolOGL.h -rw-r--r-- root/root usr/include/firefox/ThreadPoolCOMListener.h @@ -467,6 +481,7 @@ drwxr-xr-x root/root usr/include/firefox/harfbuzz/ -rw-r--r-- root/root usr/include/firefox/inISearchObserver.h -rw-r--r-- root/root usr/include/firefox/inISearchProcess.h drwxr-xr-x root/root usr/include/firefox/ipc/ +-rw-r--r-- root/root usr/include/firefox/ipc/ErrorIPCUtils.h -rw-r--r-- root/root usr/include/firefox/ipc/IPCMessageUtils.h -rw-r--r-- root/root usr/include/firefox/ipc/nsGUIEventIPC.h -rw-r--r-- root/root usr/include/firefox/jArray.h @@ -534,6 +549,7 @@ drwxr-xr-x root/root usr/include/firefox/libmkv/ -rw-r--r-- root/root usr/include/firefox/mozIAsyncLivemarks.h -rw-r--r-- root/root usr/include/firefox/mozIColorAnalyzer.h -rw-r--r-- root/root usr/include/firefox/mozIDownloadPlatform.h +-rw-r--r-- root/root usr/include/firefox/mozIGeckoMediaPluginChromeService.h -rw-r--r-- root/root usr/include/firefox/mozIGeckoMediaPluginService.h -rw-r--r-- root/root usr/include/firefox/mozIJSSubScriptLoader.h -rw-r--r-- root/root usr/include/firefox/mozIPersonalDictionary.h @@ -573,6 +589,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/ -rw-r--r-- root/root usr/include/firefox/mozilla/Alignment.h -rw-r--r-- root/root usr/include/firefox/mozilla/AllocPolicy.h -rw-r--r-- root/root usr/include/firefox/mozilla/AlreadyAddRefed.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AnimationUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/AppData.h -rw-r--r-- root/root usr/include/firefox/mozilla/AppProcessChecker.h -rw-r--r-- root/root usr/include/firefox/mozilla/AppUnits.h @@ -583,6 +600,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/ -rw-r--r-- root/root usr/include/firefox/mozilla/Atomics.h -rw-r--r-- root/root usr/include/firefox/mozilla/Attributes.h -rw-r--r-- root/root usr/include/firefox/mozilla/AutoRestore.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AutoTimelineMarker.h -rw-r--r-- root/root usr/include/firefox/mozilla/AvailableMemoryTracker.h -rw-r--r-- root/root usr/include/firefox/mozilla/BackgroundHangMonitor.h -rw-r--r-- root/root usr/include/firefox/mozilla/Base64.h @@ -617,6 +635,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/ -rw-r--r-- root/root usr/include/firefox/mozilla/DeadlockDetector.h -rw-r--r-- root/root usr/include/firefox/mozilla/Debug.h -rw-r--r-- root/root usr/include/firefox/mozilla/DebugOnly.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DebuggerOnGCRunnable.h -rw-r--r-- root/root usr/include/firefox/mozilla/Decimal.h -rw-r--r-- root/root usr/include/firefox/mozilla/DeferredFinalize.h -rw-r--r-- root/root usr/include/firefox/mozilla/DetailedPromise.h @@ -685,6 +704,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/ -rw-r--r-- root/root usr/include/firefox/mozilla/Maybe.h -rw-r--r-- root/root usr/include/firefox/mozilla/MaybeOneOf.h -rw-r--r-- root/root usr/include/firefox/mozilla/MediaManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MediaStreamAudioDestinationNode.h -rw-r--r-- root/root usr/include/firefox/mozilla/MemoryChecking.h -rw-r--r-- root/root usr/include/firefox/mozilla/MemoryReporting.h -rw-r--r-- root/root usr/include/firefox/mozilla/MiscEvents.h @@ -704,7 +724,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/ -rw-r--r-- root/root usr/include/firefox/mozilla/PaintTracker.h -rw-r--r-- root/root usr/include/firefox/mozilla/Pair.h -rw-r--r-- root/root usr/include/firefox/mozilla/PeerIdentity.h --rw-r--r-- root/root usr/include/firefox/mozilla/PendingPlayerTracker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PendingAnimationTracker.h -rw-r--r-- root/root usr/include/firefox/mozilla/PhysicalKeyCodeNameList.h -rw-r--r-- root/root usr/include/firefox/mozilla/PluginLibrary.h -rw-r--r-- root/root usr/include/firefox/mozilla/PluginPRLibrary.h @@ -820,6 +840,8 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/docshell/ -rw-r--r-- root/root usr/include/firefox/mozilla/docshell/OfflineCacheUpdateParent.h drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/APZTestDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AVInputPort.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AVInputPortBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AbortablePromise.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AbortablePromiseBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AbstractWorkerBinding.h @@ -831,12 +853,10 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimatableBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/Animation.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationBinding.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffect.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectReadOnly.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectReadOnlyBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEventBinding.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationPlayer.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationPlayerBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationTimeline.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationTimelineBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnonymousContent.h @@ -909,6 +929,8 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSFontFaceLoadEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSFontFaceLoadEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSLexer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSLexerBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSPrimitiveValueBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSRuleList.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSRuleListBinding.h @@ -1055,6 +1077,10 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceOrientationEventBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceProximityEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceProximityEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceStorageAreaChangedEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceStorageAreaChangedEventBinding.h +-rwxr-xr-x root/root usr/include/firefox/mozilla/dom/DeviceStorageAreaListener.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceStorageAreaListenerBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceStorageBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceStorageChangeEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceStorageChangeEventBinding.h @@ -1062,9 +1088,13 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DirectionalityUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/Directory.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DirectoryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DisplayPortInputPort.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DisplayPortInputPortBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentFragment.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentFragmentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentTimeline.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentTimelineBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentType.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentTypeBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/DownloadEvent.h @@ -1104,7 +1134,6 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchDriver.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchEventBinding.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchIPCUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/File.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileHandle.h @@ -1126,6 +1155,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSet.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSetBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSetIterator.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSourceBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FormDataBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/FragmentOrElement.h @@ -1142,13 +1172,18 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadButtonEventBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadFunctions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadMonitoring.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadServiceTest.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeneratedAtomList.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeneratedEventList.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeolocationBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeometryUtilsBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GetUserMediaRequest.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/GetUserMediaRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HDMIInputPort.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HDMIInputPortBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAllCollection.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAllCollectionBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAnchorElement.h @@ -1330,8 +1365,11 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputEventBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputMethodBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputPort.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputPortBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputPortManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputPortManagerBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/InspectorUtilsBinding.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/InstallEventBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/InstallTriggerBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/InterAppComm.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/InterAppConnectionBinding.h @@ -1346,6 +1384,8 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyEventBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyboardEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyboardEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyframeEffect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyframeEffectBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/LegacyQueryInterfaceBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/Link.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/LinkStyleBinding.h @@ -1566,7 +1606,10 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/PromiseNativeHandler.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/PromiseWorkerProxy.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/PrototypeList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushEventBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushMessageDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushSubscriptionBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/RGBColorBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCConfigurationBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCDataChannelEvent.h @@ -1793,6 +1836,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGZoomAndPanBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGZoomEvent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGZoomEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SameProcessMessageQueue.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScreenBinding.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScreenOrientation.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScriptProcessorNode.h @@ -2065,6 +2109,8 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/cache/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/AutoUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Cache.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheOpChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheOpParent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheParent.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CachePushStreamChild.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CachePushStreamParent.h @@ -2077,7 +2123,6 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/cache/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/DBAction.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/DBSchema.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Feature.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/FetchPut.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/FileUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/IPCUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Manager.h @@ -2089,7 +2134,6 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/cache/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/SavedTypes.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/StreamControl.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/StreamList.h --rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/StreamUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/TypeUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Types.h drwxr-xr-x root/root usr/include/firefox/mozilla/dom/cellbroadcast/ @@ -2195,6 +2239,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/dom/voicemail/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/voicemail/VoicemailParent.h drwxr-xr-x root/root usr/include/firefox/mozilla/dom/workers/ -rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/ServiceWorkerManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/ServiceWorkerPeriodicUpdater.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/WorkerDebuggerManager.h -rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/Workers.h drwxr-xr-x root/root usr/include/firefox/mozilla/dom/workers/bindings/ @@ -2238,9 +2283,11 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/gfx/ -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/HelpersSkia.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Logging.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Matrix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/NumericTools.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PathHelpers.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PatternHelpers.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Point.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Quaternion.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Rect.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/RegionTyped.h -rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Scale.h @@ -2295,6 +2342,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/layers/ -rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZUtils.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/ActiveElementManager.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/AsyncCompositionManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AsyncPanZoomAnimation.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/AsyncTransactionTracker.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/AtomicRefCountedWithFinalize.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/AxisPhysicsMSDModel.h @@ -2316,6 +2364,7 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/layers/ -rw-r--r-- root/root usr/include/firefox/mozilla/layers/ContainerLayerComposite.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/ContentClient.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/ContentHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/D3D11ShareHandleImage.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/D3D9SurfaceImage.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/Effects.h -rw-r--r-- root/root usr/include/firefox/mozilla/layers/FenceUtils.h @@ -2371,6 +2420,8 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/media/ -rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaChild.h -rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaParent.h -rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaUtils.h +drwxr-xr-x root/root usr/include/firefox/mozilla/media/webrtc/ +-rw-r--r-- root/root usr/include/firefox/mozilla/media/webrtc/WebrtcGlobal.h -rw-r--r-- root/root usr/include/firefox/mozilla/mozSpellChecker.h -rw-r--r-- root/root usr/include/firefox/mozilla/mozalloc.h -rw-r--r-- root/root usr/include/firefox/mozilla/mozalloc_abort.h @@ -2456,6 +2507,8 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/plugins/ -rw-r--r-- root/root usr/include/firefox/mozilla/plugins/StreamNotifyChild.h -rw-r--r-- root/root usr/include/firefox/mozilla/plugins/StreamNotifyParent.h -rw-r--r-- root/root usr/include/firefox/mozilla/plugins/TaskFactory.h +drwxr-xr-x root/root usr/include/firefox/mozilla/psm/ +-rw-r--r-- root/root usr/include/firefox/mozilla/psm/PSMContentListener.h drwxr-xr-x root/root usr/include/firefox/mozilla/scache/ -rw-r--r-- root/root usr/include/firefox/mozilla/scache/StartupCache.h -rw-r--r-- root/root usr/include/firefox/mozilla/scache/StartupCacheUtils.h @@ -2467,6 +2520,9 @@ drwxr-xr-x root/root usr/include/firefox/mozilla/storage/ -rw-r--r-- root/root usr/include/firefox/mozilla/throw_gcc.h -rw-r--r-- root/root usr/include/firefox/mozilla/unused.h -rw-r--r-- root/root usr/include/firefox/mozilla/utils.h +drwxr-xr-x root/root usr/include/firefox/mozilla/widget/ +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/PuppetBidiKeyboard.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/WidgetMessageUtils.h -rw-r--r-- root/root usr/include/firefox/mozmemory.h -rw-r--r-- root/root usr/include/firefox/mozmemory_wrap.h drwxr-xr-x root/root usr/include/firefox/mp4_demuxer/ @@ -2479,10 +2535,14 @@ drwxr-xr-x root/root usr/include/firefox/mp4_demuxer/ -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/ByteWriter.h -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/DecoderData.h -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/H264.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Index.h -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Interval.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/MP4Metadata.h -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/MP4TrackDemuxer.h -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/MoofParser.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/ResourceStream.h -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/SinfParser.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Stream.h -rw-r--r-- root/root usr/include/firefox/mp4_demuxer/mp4_demuxer.h drwxr-xr-x root/root usr/include/firefox/mtransport/ -rw-r--r-- root/root usr/include/firefox/mtransport/dtlsidentity.h @@ -2602,7 +2662,6 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsColorNameList.h -rw-r--r-- root/root usr/include/firefox/nsColorNames.h -rw-r--r-- root/root usr/include/firefox/nsCom.h --rw-r--r-- root/root usr/include/firefox/nsCompartmentInfo.h -rw-r--r-- root/root usr/include/firefox/nsCompatibility.h -rw-r--r-- root/root usr/include/firefox/nsComponentManagerUtils.h -rw-r--r-- root/root usr/include/firefox/nsComputedDOMStylePropertyList.h @@ -2918,7 +2977,6 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsICommandLineValidator.h -rw-r--r-- root/root usr/include/firefox/nsICommandManager.h -rw-r--r-- root/root usr/include/firefox/nsICommandParams.h --rw-r--r-- root/root usr/include/firefox/nsICompartmentInfo.h -rw-r--r-- root/root usr/include/firefox/nsIComponentManager.h -rw-r--r-- root/root usr/include/firefox/nsIComponentRegistrar.h -rw-r--r-- root/root usr/include/firefox/nsIConsoleAPIStorage.h @@ -2978,7 +3036,6 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsIDOMAttr.h -rw-r--r-- root/root usr/include/firefox/nsIDOMBeforeUnloadEvent.h -rw-r--r-- root/root usr/include/firefox/nsIDOMCDATASection.h --rw-r--r-- root/root usr/include/firefox/nsIDOMCSSCharsetRule.h -rw-r--r-- root/root usr/include/firefox/nsIDOMCSSConditionRule.h -rw-r--r-- root/root usr/include/firefox/nsIDOMCSSCounterStyleRule.h -rw-r--r-- root/root usr/include/firefox/nsIDOMCSSFontFaceRule.h @@ -3048,14 +3105,12 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLAnchorElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLAppletElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLAreaElement.h --rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLBRElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLBaseElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLBodyElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLButtonElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLCanvasElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLCollection.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLDirectoryElement.h --rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLDivElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLDocument.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLEmbedElement.h @@ -3065,7 +3120,6 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLFrameSetElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLHRElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLHeadElement.h --rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLHeadingElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLHtmlElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLIFrameElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLImageElement.h @@ -3091,11 +3145,8 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLSelectElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLSourceElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLStyleElement.h --rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLTableCaptionElem.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLTableCellElement.h --rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLTableElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLTextAreaElement.h --rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLTitleElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLUListElement.h -rw-r--r-- root/root usr/include/firefox/nsIDOMHistory.h -rw-r--r-- root/root usr/include/firefox/nsIDOMJSWindow.h @@ -3358,6 +3409,7 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsIIncrementalDownload.h -rw-r--r-- root/root usr/include/firefox/nsIInlineSpellChecker.h -rw-r--r-- root/root usr/include/firefox/nsIInputListAutoComplete.h +-rw-r--r-- root/root usr/include/firefox/nsIInputPortService.h -rw-r--r-- root/root usr/include/firefox/nsIInputStream.h -rw-r--r-- root/root usr/include/firefox/nsIInputStreamChannel.h -rw-r--r-- root/root usr/include/firefox/nsIInputStreamPump.h @@ -3435,7 +3487,6 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsIMutableArray.h -rw-r--r-- root/root usr/include/firefox/nsIMutationObserver.h -rw-r--r-- root/root usr/include/firefox/nsINIParser.h --rw-r--r-- root/root usr/include/firefox/nsINSSCertCache.h -rw-r--r-- root/root usr/include/firefox/nsINSSErrorsService.h -rw-r--r-- root/root usr/include/firefox/nsINSSVersion.h -rw-r--r-- root/root usr/include/firefox/nsINativeAppSupport.h @@ -3553,6 +3604,8 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsIProxiedChannel.h -rw-r--r-- root/root usr/include/firefox/nsIProxiedProtocolHandler.h -rw-r--r-- root/root usr/include/firefox/nsIProxyInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIPushNotificationService.h +-rw-r--r-- root/root usr/include/firefox/nsIPushObserverNotification.h -rw-r--r-- root/root usr/include/firefox/nsIQueryContentEventResult.h -rw-r--r-- root/root usr/include/firefox/nsIQuotaManager.h -rw-r--r-- root/root usr/include/firefox/nsIQuotaRequest.h @@ -3618,7 +3671,6 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsISMILAttr.h -rw-r--r-- root/root usr/include/firefox/nsISMILType.h -rw-r--r-- root/root usr/include/firefox/nsISOCKSSocketInfo.h --rw-r--r-- root/root usr/include/firefox/nsISSLErrorListener.h -rw-r--r-- root/root usr/include/firefox/nsISSLSocketControl.h -rw-r--r-- root/root usr/include/firefox/nsISSLStatus.h -rw-r--r-- root/root usr/include/firefox/nsISSLStatusProvider.h @@ -3730,6 +3782,7 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsISystemMessageGlue.h -rw-r--r-- root/root usr/include/firefox/nsISystemMessagesInternal.h -rw-r--r-- root/root usr/include/firefox/nsISystemProxySettings.h +-rw-r--r-- root/root usr/include/firefox/nsITCPPresentationServer.h -rw-r--r-- root/root usr/include/firefox/nsITCPServerSocketChild.h -rw-r--r-- root/root usr/include/firefox/nsITCPServerSocketParent.h -rw-r--r-- root/root usr/include/firefox/nsITCPSocketChild.h @@ -3989,6 +4042,7 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsPropertyTable.h -rw-r--r-- root/root usr/include/firefox/nsProxyRelease.h -rw-r--r-- root/root usr/include/firefox/nsQueryFrame.h +-rw-r--r-- root/root usr/include/firefox/nsQueryObject.h -rw-r--r-- root/root usr/include/firefox/nsQuickSort.h -rw-r--r-- root/root usr/include/firefox/nsRDFCID.h -rw-r--r-- root/root usr/include/firefox/nsRDFResource.h @@ -4003,6 +4057,11 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsRefreshDriver.h -rw-r--r-- root/root usr/include/firefox/nsRegion.h -rw-r--r-- root/root usr/include/firefox/nsRenderingContext.h +-rw-r--r-- root/root usr/include/firefox/nsRubyBaseContainerFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyBaseFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyTextContainerFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyTextFrame.h -rw-r--r-- root/root usr/include/firefox/nsRuleData.h -rw-r--r-- root/root usr/include/firefox/nsRuleNode.h -rw-r--r-- root/root usr/include/firefox/nsRuleProcessorData.h @@ -4145,7 +4204,6 @@ drwxr-xr-x root/root usr/include/firefox/nestegg/ -rw-r--r-- root/root usr/include/firefox/nsView.h -rw-r--r-- root/root usr/include/firefox/nsViewManager.h -rw-r--r-- root/root usr/include/firefox/nsViewportInfo.h --rw-r--r-- root/root usr/include/firefox/nsVoidArray.h -rw-r--r-- root/root usr/include/firefox/nsWeakPtr.h -rw-r--r-- root/root usr/include/firefox/nsWeakReference.h -rw-r--r-- root/root usr/include/firefox/nsWhitespaceTokenizer.h @@ -4582,12 +4640,10 @@ drwxr-xr-x root/root usr/lib/firefox-devel/sdk/bin/ply/ -rwxr-xr-x root/root usr/lib/firefox-devel/sdk/bin/xpt.py drwxr-xr-x root/root usr/lib/firefox-devel/sdk/lib/ -rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libmemory.a --rwxr-xr-x root/root usr/lib/firefox-devel/sdk/lib/libmozalloc.so -rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libmozglue.a -rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libunicharutil_external_s.a -rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libxpcomglue.a -rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libxpcomglue_s.a --rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libxpcomglue_s_nomozalloc.a -rwxr-xr-x root/root usr/lib/firefox-devel/sdk/lib/libxul.so -rw-r--r-- root/root usr/lib/firefox-devel/xpcom-config.h drwxr-xr-x root/root usr/lib/firefox/ @@ -4606,20 +4662,12 @@ drwxr-xr-x root/root usr/lib/firefox/browser/components/ -rwxr-xr-x root/root usr/lib/firefox/browser/components/libbrowsercomps.so drwxr-xr-x root/root usr/lib/firefox/browser/extensions/ drwxr-xr-x root/root usr/lib/firefox/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/ +-rw-r--r-- root/root usr/lib/firefox/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/chrome.manifest -rw-r--r-- root/root usr/lib/firefox/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/icon.png -rw-r--r-- root/root usr/lib/firefox/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}/install.rdf drwxr-xr-x root/root usr/lib/firefox/browser/icons/ -rw-r--r-- root/root usr/lib/firefox/browser/icons/mozicon128.png -rw-r--r-- root/root usr/lib/firefox/browser/omni.ja -drwxr-xr-x root/root usr/lib/firefox/browser/searchplugins/ --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/amazondotcom.xml --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/bing.xml --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/ddg.xml --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/eBay.xml --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/google.xml --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/twitter.xml --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/wikipedia.xml --rw-r--r-- root/root usr/lib/firefox/browser/searchplugins/yahoo.xml -rw-r--r-- root/root usr/lib/firefox/chrome.manifest drwxr-xr-x root/root usr/lib/firefox/components/ -rw-r--r-- root/root usr/lib/firefox/components/components.manifest @@ -4637,7 +4685,6 @@ drwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/ drwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/0.1/ -rw-r--r-- root/root usr/lib/firefox/gmp-clearkey/0.1/clearkey.info -rwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/0.1/libclearkey.so --rwxr-xr-x root/root usr/lib/firefox/libmozalloc.so -rwxr-xr-x root/root usr/lib/firefox/libxul.so -rw-r--r-- root/root usr/lib/firefox/omni.ja -rw-r--r-- root/root usr/lib/firefox/platform.ini @@ -4685,6 +4732,7 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/mozIAsyncLivemarks.idl -rw-r--r-- root/root usr/share/idl/firefox/mozIColorAnalyzer.idl -rw-r--r-- root/root usr/share/idl/firefox/mozIDownloadPlatform.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIGeckoMediaPluginChromeService.idl -rw-r--r-- root/root usr/share/idl/firefox/mozIGeckoMediaPluginService.idl -rw-r--r-- root/root usr/share/idl/firefox/mozIJSSubScriptLoader.idl -rw-r--r-- root/root usr/share/idl/firefox/mozIPersonalDictionary.idl @@ -4861,7 +4909,6 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsICommandLineValidator.idl -rw-r--r-- root/root usr/share/idl/firefox/nsICommandManager.idl -rw-r--r-- root/root usr/share/idl/firefox/nsICommandParams.idl --rw-r--r-- root/root usr/share/idl/firefox/nsICompartmentInfo.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIComponentManager.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIComponentRegistrar.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIConsoleAPIStorage.idl @@ -4913,7 +4960,6 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMAttr.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMBeforeUnloadEvent.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCDATASection.idl --rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSCharsetRule.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSConditionRule.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSCounterStyleRule.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSFontFaceRule.idl @@ -4982,14 +5028,12 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLAnchorElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLAppletElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLAreaElement.idl --rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLBRElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLBaseElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLBodyElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLButtonElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLCanvasElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLCollection.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLDirectoryElement.idl --rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLDivElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLDocument.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLEmbedElement.idl @@ -4999,7 +5043,6 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLFrameSetElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLHRElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLHeadElement.idl --rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLHeadingElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLHtmlElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLIFrameElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLImageElement.idl @@ -5025,11 +5068,8 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLSelectElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLSourceElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLStyleElement.idl --rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLTableCaptionElem.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLTableCellElement.idl --rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLTableElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLTextAreaElement.idl --rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLTitleElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLUListElement.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHistory.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIDOMJSWindow.idl @@ -5264,6 +5304,7 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsIIncrementalDownload.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIInlineSpellChecker.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIInputListAutoComplete.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInputPortService.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIInputStream.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIInputStreamChannel.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIInputStreamPump.idl @@ -5329,7 +5370,6 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsIMultiplexInputStream.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIMutable.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIMutableArray.idl --rw-r--r-- root/root usr/share/idl/firefox/nsINSSCertCache.idl -rw-r--r-- root/root usr/share/idl/firefox/nsINSSErrorsService.idl -rw-r--r-- root/root usr/share/idl/firefox/nsINSSVersion.idl -rw-r--r-- root/root usr/share/idl/firefox/nsINativeAppSupport.idl @@ -5435,6 +5475,8 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsIProxiedChannel.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIProxiedProtocolHandler.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIProxyInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPushNotificationService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPushObserverNotification.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIQueryContentEventResult.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIQuotaManager.idl -rw-r--r-- root/root usr/share/idl/firefox/nsIQuotaRequest.idl @@ -5493,7 +5535,6 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsISHistoryInternal.idl -rw-r--r-- root/root usr/share/idl/firefox/nsISHistoryListener.idl -rw-r--r-- root/root usr/share/idl/firefox/nsISOCKSSocketInfo.idl --rw-r--r-- root/root usr/share/idl/firefox/nsISSLErrorListener.idl -rw-r--r-- root/root usr/share/idl/firefox/nsISSLSocketControl.idl -rw-r--r-- root/root usr/share/idl/firefox/nsISSLStatus.idl -rw-r--r-- root/root usr/share/idl/firefox/nsISSLStatusProvider.idl @@ -5583,6 +5624,7 @@ drwxr-xr-x root/root usr/share/idl/firefox/ -rw-r--r-- root/root usr/share/idl/firefox/nsISystemMessageGlue.idl -rw-r--r-- root/root usr/share/idl/firefox/nsISystemMessagesInternal.idl -rw-r--r-- root/root usr/share/idl/firefox/nsISystemProxySettings.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITCPPresentationServer.idl -rw-r--r-- root/root usr/share/idl/firefox/nsITCPServerSocketChild.idl -rw-r--r-- root/root usr/share/idl/firefox/nsITCPServerSocketParent.idl -rw-r--r-- root/root usr/share/idl/firefox/nsITCPSocketChild.idl diff --git a/firefox/.md5sum b/firefox/.md5sum index e723fbece..ec6b1fe43 100644 --- a/firefox/.md5sum +++ b/firefox/.md5sum @@ -1,3 +1,3 @@ -6ef31cbd34d9905a0648104d916269cb firefox-39.0.3.source.tar.bz2 +62b9e6a4a46874a0be523fe41d3176e2 firefox-40.0.source.tar.bz2 1c53b819f800c61cd50e7c47bdb30bf0 firefox-install-dir.patch cf6971669f70b440cb6ff8df8b2722ae firefox.desktop diff --git a/firefox/Pkgfile b/firefox/Pkgfile index adb89f87a..63438b642 100644 --- a/firefox/Pkgfile +++ b/firefox/Pkgfile @@ -4,7 +4,7 @@ # Depends on: nss, libidl, gtk, python, alsa-lib, xorg-libxt, yasm, mesa3d, gst-plugins-base name=firefox -version=39.0.3 +version=40.0 release=1 source=(http://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.bz2 firefox-install-dir.patch firefox.desktop)