17516703 update GNU Emacs to 24.3 s11-update
authorAli Bahrami <Ali.Bahrami@Oracle.COM>
Wed, 18 Dec 2013 15:13:15 -0700
branchs11-update
changeset 2856 47b35501403f
parent 2855 576d5a7857b7
child 2857 4d5915524762
17516703 update GNU Emacs to 24.3
components/emacs/Makefile
components/emacs/README
components/emacs/augment/man/man1/emacs-gtk.1
components/emacs/augment/man/man1/emacs-nox.1
components/emacs/augment/man/man1/emacs-x.1
components/emacs/gnu-emacs-gtk.p5m
components/emacs/gnu-emacs-lisp.p5m
components/emacs/gnu-emacs-no-x11.p5m
components/emacs/gnu-emacs-x11.p5m
components/emacs/gnu-emacs.p5m
components/emacs/patches/dldump.patch
components/emacs/patches/eval_file_local_var.patch
components/emacs/patches/face_for_font.patch
components/emacs/patches/find.patch
components/emacs/patches/gtkutil.patch
components/emacs/patches/sysmalloc.patch
components/emacs/patches/tty_startup_hang.patch
components/emacs/patches/xft.patch
components/emacs/resolve.deps
--- a/components/emacs/Makefile	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/Makefile	Wed Dec 18 15:13:15 2013 -0700
@@ -23,12 +23,12 @@
 include ../../make-rules/shared-macros.mk
 
 COMPONENT_NAME=		emacs
-COMPONENT_VERSION=	23.4
+COMPONENT_VERSION=	24.3
 COMPONENT_PROJECT_URL=	http://www.gnu.org/software/emacs/
 COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
-COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.bz2
+COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
 COMPONENT_ARCHIVE_HASH=	\
-    sha256:26576f9e664397c729f78f5ffcd092969251988461896fe8793062346ee988b9
+    sha256:0098ca3204813d69cd8412045ba33e8701fa2062f4bff56bedafc064979eef41
 COMPONENT_ARCHIVE_URL=	http://ftp.gnu.org/gnu/emacs/$(COMPONENT_ARCHIVE)
 COMPONENT_BUGDB=	utility/emacs
 
@@ -58,12 +58,6 @@
 LD_MAP_NOEXSTK.sparc=
 LD_MAP_NOEXDATA.sparc=
 
-# This code is built with gcc. The primary reason for this is that the
-# configure script has problems using a non-GNU cpp. I am not aware of
-# any reason Sun Studio could not be made to work, but simply made a
-# cost/benefit decision not to pursue it at this time
-COMPILER =	gcc3
-
 # Uncomment this for debugging only. It configures emacs to run from the
 # local proto instead of from its final installed location.
 #CONFIGURE_PREFIX =	$(PROTO_DIR)/usr
@@ -74,14 +68,14 @@
 
 # configure options common to all variants of emacs that we want to build.
 CONFIGURE_OPTIONS +=	CC="$(CC) -m64"
-CONFIGURE_OPTIONS +=	--infodir=$(CONFIGURE_INFODIR)
+CONFIGURE_OPTIONS +=	--infodir=$(CONFIGURE_INFODIR) --with-compress-info=no
 CONFIGURE_OPTIONS +=	--datarootdir=$(CONFIGURE_PREFIX)/share
 CONFIGURE_OPTIONS +=	--libexecdir=$(CONFIGURE_PREFIX)/lib
 CONFIGURE_OPTIONS +=	--with-gif=no
 CONFIGURE_OPTIONS +=	ac_cv_sys_long_file_names=yes
 
 # variant specific configure options
-$(BUILD_DIR)/%-nox/.configured: CONFIGURE_OPTIONS +=	--without-x
+$(BUILD_DIR)/%-nox/.configured: CONFIGURE_OPTIONS += --without-all --without-x
 $(BUILD_DIR)/%-x/.configured:    CONFIGURE_OPTIONS +=	--with-x-toolkit=lucid
 $(BUILD_DIR)/%-gtk/.configured:  CONFIGURE_OPTIONS +=	--with-x-toolkit=gtk
 
@@ -101,7 +95,8 @@
 PSHAREMAN1=	$(PROTO_DIR)/usr/share/man/man1
 PVAR=		$(PROTO_DIR)/var
 
-# Remove emacs existing emacs executables/script from usr/bin
+# Remove existing emacs executable from usr/bin, so that we can replace
+# it with our script.
 COMPONENT_POST_INSTALL_ACTION += $(RM) $(PBIN)/emacs $(PBIN)/emacs-* ;
 
 # GTK binaries
@@ -129,7 +124,11 @@
 COMPONENT_POST_INSTALL_ACTION += $(CP) augment/emacs $(PBIN) ;
 COMPONENT_POST_INSTALL_ACTION += $(CHMOD) +x $(PBIN)/emacs ;
 
-# ctags and etags go in /usr/gnu/bin instead of /usr/bin
+# ctags and etags go in /usr/gnu/bin instead of /usr/bin. At this time,
+# etags could arguably go into /usr/bin, but we'd like to preserve the
+# ability to replace the standard Solaris /usr/bin/ctags, along with
+# both of the ones we're delivering, with Exuberant Ctags. Putting both
+# emacs tags programs in /usr/gnu/bin helps that, and is a simpler story.
 COMPONENT_POST_INSTALL_ACTION += $(MKDIR) $(PGBIN) ;
 COMPONENT_POST_INSTALL_ACTION += $(MV) $(PBIN)/ctags $(PBIN)/etags $(PGBIN) ;
 
@@ -146,6 +145,8 @@
 	$(CP) $(BUILD_DIR)/$(MACH64)-x/etc/DOC-$(COMPONENT_VERSION).1 \
 		$(PETC)/DOC-$(COMPONENT_VERSION).1 ;
 
+# Provide manpages for the emacs variants, which are our creation, refering
+# the reader to the main emacs(1) manpage.
 COMPONENT_POST_INSTALL_ACTION += \
 	$(CP) augment/man/man1/emacs-gtk.1 $(PSHAREMAN1)/emacs-gtk.1 ;
 COMPONENT_POST_INSTALL_ACTION += \
--- a/components/emacs/README	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/README	Wed Dec 18 15:13:15 2013 -0700
@@ -22,7 +22,7 @@
 #
 
 NAME:             emacs
-VERSION:          23.4
+VERSION:          24.3
 DESCRIPTION:      GNU Emacs editor
 LICENSE:          GPLv3
 BUGTRAQ:          solaris/utility/emacs
@@ -36,40 +36,92 @@
 
 - We patch the following changes to the emacs sources:
 
-	sysmalloc.patch
-	    Use the system malloc instead of the built in one.
-
-	dldump.patch
-	    Use the native Solaris dldump() function (emacs/src/unexsol.c)
-	    to produce the dumped emacs, rather than the generic ELF
-	    code (emacs-xxx/src/unexelf.c).
-
-	xft.patch
-	    Patch configure script to provide necessary missing
-	    libraries for the GTK version of emacs.
-
-	eval_file_local_var.patch
-	    When the Emacs user option `enable-local-variables' is set to
-	    `:safe' (the default value is t), Emacs should automatically refuse
-	    to evaluate `eval' forms in file-local variable sections. See:
-
-		http://www.openwall.com/lists/oss-security/2012/08/13/1
-		http://www.openwall.com/lists/oss-security/2012/08/13/2
+	face_for_font.patch
+	    xdisp.c has a call to face_for_font(), a function that is
+	    only present when window system support is included, which is
+	    not the case for emacs-nox. This patch ifdefs the offending
+	    call away.
 
 	find.patch
 	    The rgrep function uses the GNU-specific -path option to the
 	    find command. Change the default value for the find-program
 	    variable in grep.el to use GNU find.
 
-	tty_startup_hang.patch
-	    Emacs 23.x has a latent bug that causes it to run the X11 input
-	    select code even when running without a window system via the
-	    -nw option. This worked because a variable in libglib.so used
-	    to be zero, but in newer versions of libglib.so it is not. The
-	    result is that 'emacs -nw' hangs on startup and has to be killed
-	    from another shell. This is fixed in eamcs 24.2. See:
+	gtkutil.patch
+	    This fixes a bug in emacs 24.3 in which a message like the
+	    following is emitted to stderr on startup if emacs was started
+	    with a specified geometry:
+
+	    (emacs:4090): Gtk-WARNING **: gtk_window_parse_geometry() called
+	    on a window with no visible children; the window should be set up
+	    before gtk_window_parse_geometry() is called.
+
+	    This was fixed upstream: 
+
+	        https://bugzilla.redhat.com/show_bug.cgi?id=929353
+		http://bzr.savannah.gnu.org/lh/emacs/trunk/revision/111078
+
+- The emacs distribution used to have a subdirectory, src/s, which
+  contained per-platform header files. We would apply the following
+  patches:
+
+    sol2-6.h: Enable the use of the native Solaris dldump()
 
-		http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9754
+        --- sol2-6.h.~1~        2011-10-17 19:20:46.000000000 -0600
+        +++ sol2-6.h    2013-09-23 13:34:26.683033182 -0600
+        @@ -2,10 +2,17 @@
+         
+         #include "sol2-5.h"
+         
+        -#if 0 /* dldump does not handle all the extensions used by GNU ld.  */
+        +/*
+        + * Use the Solaris dldump() function to dump emacs, instead of
+        + * the generic unexelf code.
+        + *
+        + * If you encounter a problem using dldump(), please consider sending
+        + * a message to the OpenSolaris tools-linking mailing list:
+        + *      http://mail.opensolaris.org/mailman/listinfo/tools-linking
+        + */
+        +
+         #undef UNEXEC
+         #define UNEXEC unexsol.o
+        -#endif
+         
+         /* arch-tag: 71ea3857-89dc-4395-9623-77964e6ed3ca
+            (do not change this comment) */
+
+    sol2-5.h: Use the system malloc instead of the GNU malloc:
+
+        --- sol2-5.h.~1~        2011-10-17 19:20:46.000000000 -0600
+        +++ sol2-5.h    2013-09-23 13:34:26.732656398 -0600
+        @@ -17,6 +17,7 @@
+         /* This is not always necessary.  Turned off at present for testers to
+            identify any problems with gmalloc more accurately.  */
+         /* #define SYSTEM_MALLOC */
+        +#define SYSTEM_MALLOC
+         
+         /* There have problems reported with mmap at least on Solaris 2.6
+            and 2.7.  For simplicity, let's not use mmap for anything >= 2.5.
+
+  These are both handled by default by the configure process, and in fact,
+  comments from the header file appear to have been carried over. With every
+  update, we must verify that these settings stick and remain enabled.
+
+    System Malloc:
+    The information output at the end of the configure step verifies this:
+
+        Configured for `x86_64-pc-solaris2.12'.
+	...
+          Should Emacs use the GNU version of malloc?             no
+            (The GNU allocators don't work with this system configuration.)
+
+    dldump:
+    One could examine the configure script looking for the setting
+    "UNEXEC_OBJ=unexsol.o", but it seems easier/better to simply examine
+    the final executable:
+
+        % pvs -nos emacs | grep dldump
+        emacs - libc.so.1 (SUNW_1.22): dldump;
 
 - Emacs can be built as either 32-bit or 64-bit, depending on the target
   machine. The benefit of a 64-bit emacs is that the size of the files it
@@ -98,17 +150,34 @@
   versions are quite stable from release to release, so this isn't a large
   burden.
 
+- In the past, we built emacs with gcc. The Makefile contained:
+
+    # This code is built with gcc. The primary reason for this is that the
+    # configure script has problems using a non-GNU cpp. I am not aware of
+    # any reason Sun Studio could not be made to work, but simply made a
+    # cost/benefit decision not to pursue it at this time
+    COMPILER =      gcc
+
+  With emacs 24.3, I removed this, and find that studio now builds
+  emacs without issue. This is something that should be reverified
+  with each update.
+
+- Remember to update resolve.deps when updating to a new version,
+  as dependencies can change. Instructions are on the Userland website.
+
 - We deliver the following packages:
 
 	gnu-emacs - Everything you need to run emacs, except the
 	    emacs binaries.
 
-	gnu-emacs-gtk - Binaries for the X11 version using the GTK toolkit.
+	gnu-emacs-gtk - Binary for the X11 version using the GTK toolkit.
 
-	gnu-emacs-no-x11 - Pure tty emacs binaries, built without
-	    any X11 linkage. Ideal for headless server systems.
+	gnu-emacs-no-x11 - Pure tty emacs binary, built without
+	    any X11 linkage or other extra support (i.e. D-bus). This
+	    is the most basic emacs possible, ideal for headless server
+	    systems.
 
-	gnu-emacs-x11 - Binaries for the X11 version using the Athena
+	gnu-emacs-x11 - Binary for the X11 version using the Athena
 	    widget (Xaw) toolkit.
 
 	gnu-emacs-lisp - The compressed LISP files for which compiled
--- a/components/emacs/augment/man/man1/emacs-gtk.1	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/augment/man/man1/emacs-gtk.1	Wed Dec 18 15:13:15 2013 -0700
@@ -1,6 +1,6 @@
-.\" Copyright (C) 2008  Free Software Foundation, Inc.
+.\" Copyright (C) 2008-2013  Free Software Foundation, Inc.
 .\" See section COPYING for conditions for redistribution
-.TH b2m 1 "21jul2008" "GNU Tools" "GNU Tools"
+.TH b2m 1 "24 Sep 2013" "GNU Tools" "GNU Tools"
 .de BP
 .sp
 .ti -.2i
@@ -31,8 +31,8 @@
 .SH COPYING
 Copyright
 .if t \(co
-.if n (c)
-2008  Free Software Foundation, Inc.
+.if n (C)
+1995, 1999-2013 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of this
 document provided the copyright notice and this permission notice are
@@ -47,5 +47,4 @@
 document into another language, under the above conditions for
 modified versions, except that this permission notice may be stated
 in a translation approved by the Free Software Foundation.
-
-.\" arch-tag: 9534977f-af78-42f0-991d-1df6b6c05573
+.
--- a/components/emacs/augment/man/man1/emacs-nox.1	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/augment/man/man1/emacs-nox.1	Wed Dec 18 15:13:15 2013 -0700
@@ -1,6 +1,6 @@
-.\" Copyright (C) 2008  Free Software Foundation, Inc.
+.\" Copyright (C) 2008-2013  Free Software Foundation, Inc.
 .\" See section COPYING for conditions for redistribution
-.TH b2m 1 "21jul2008" "GNU Tools" "GNU Tools"
+.TH b2m 1 "24 Sep 2013" "GNU Tools" "GNU Tools"
 .de BP
 .sp
 .ti -.2i
@@ -31,8 +31,8 @@
 .SH COPYING
 Copyright
 .if t \(co
-.if n (c)
-2008  Free Software Foundation, Inc.
+.if n (C)
+1995, 1999-2013 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of this
 document provided the copyright notice and this permission notice are
@@ -47,5 +47,4 @@
 document into another language, under the above conditions for
 modified versions, except that this permission notice may be stated
 in a translation approved by the Free Software Foundation.
-
-.\" arch-tag: 9534977f-af78-42f0-991d-1df6b6c05573
+.
--- a/components/emacs/augment/man/man1/emacs-x.1	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/augment/man/man1/emacs-x.1	Wed Dec 18 15:13:15 2013 -0700
@@ -1,6 +1,6 @@
-.\" Copyright (C) 2008  Free Software Foundation, Inc.
+.\" Copyright (C) 2008-2013  Free Software Foundation, Inc.
 .\" See section COPYING for conditions for redistribution
-.TH b2m 1 "21jul2008" "GNU Tools" "GNU Tools"
+.TH b2m 1 "24 Sep 2013" "GNU Tools" "GNU Tools"
 .de BP
 .sp
 .ti -.2i
@@ -31,8 +31,8 @@
 .SH COPYING
 Copyright
 .if t \(co
-.if n (c)
-2008  Free Software Foundation, Inc.
+.if n (C)
+1995, 1999-2013 Free Software Foundation, Inc.
 .PP
 Permission is granted to make and distribute verbatim copies of this
 document provided the copyright notice and this permission notice are
@@ -47,5 +47,4 @@
 document into another language, under the above conditions for
 modified versions, except that this permission notice may be stated
 in a translation approved by the Free Software Foundation.
-
-.\" arch-tag: 9534977f-af78-42f0-991d-1df6b6c05573
+.
--- a/components/emacs/gnu-emacs-gtk.p5m	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/gnu-emacs-gtk.p5m	Wed Dec 18 15:13:15 2013 -0700
@@ -25,20 +25,16 @@
 set name=pkg.fmri value=pkg:/editor/gnu-emacs/gnu-emacs-gtk@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
 set name=pkg.summary value="GNU emacs with X11 support (GTK toolkit)"
 set name=com.oracle.info.description value="GNU emacs with X11 support (GTK toolkit)"
+set name=com.oracle.info.tpno value=15684
 set name=info.classification value="org.opensolaris.category.2008:Development/Editors"
+set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
-set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=org.opensolaris.arc-caseid \
     value=PSARC/2008/494
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 
 license emacs.license license="GPLv3"
 
-dir path=usr
-dir path=usr/bin
-dir path=usr/share
-dir path=usr/share/man
-dir path=usr/share/man/man1
 
 file path=usr/bin/emacs-gtk
 hardlink path=usr/bin/emacs-gtk-$(COMPONENT_VERSION) target=emacs-gtk
--- a/components/emacs/gnu-emacs-lisp.p5m	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/gnu-emacs-lisp.p5m	Wed Dec 18 15:13:15 2013 -0700
@@ -25,52 +25,16 @@
 set name=pkg.summary value="GNU emacs LISP (.el) files"
 set name=pkg.description value="GNU emacs LISP (.el) files not accessed in normal use but necessary for emacs development"
 set name=com.oracle.info.description value="GNU emacs LISP (.el) files"
+set name=com.oracle.info.tpno value=15684
 set name=info.classification value="org.opensolaris.category.2008:Development/Editors"
+set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
-set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=org.opensolaris.arc-caseid \
     value=PSARC/2008/494
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 
 license emacs.license license="GPLv3"
 
-dir  path=usr
-dir  path=usr/share
-dir  path=usr/share/emacs
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/leim
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/leim/ja-dic
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/calc
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/calendar
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/ede
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/analyze
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/decorate
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/symref
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/srecode
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/international
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mh-e
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url
 
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/ja-dic/ja-dic.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/4Corner.el.gz
@@ -104,6 +68,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/hanja3.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/hebrew.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/indian.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/ipa-praat.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/ipa.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/japanese.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/lao.el.gz
@@ -112,6 +77,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/latin-post.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/latin-pre.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/lrt.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/persian.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/py-punct.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/pypunct-b5.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/quick-b5.el.gz
@@ -128,11 +94,11 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/uni-input.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/viqr.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/vntelex.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/vnvni.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/welsh.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/abbrev.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/abbrevlist.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/add-log.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/align.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/allout-widgets.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/allout.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ansi-color.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/apropos.el.gz
@@ -277,6 +243,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/debug.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/el.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/gcc.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/grammar.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/make-by.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/make.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/scm-by.el.gz
@@ -337,6 +304,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/comp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/grammar.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/java-tags.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/javascript.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/javat-wy.el.gz
@@ -371,9 +339,8 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/srecode/texi.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/chistory.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cmuscheme.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/color.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/comint.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/compare-w.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/complete.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/completion.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/composite.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cus-dep.el.gz
@@ -382,15 +349,12 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cus-start.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cus-theme.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/custom.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cvs-status.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dabbrev.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/delim-col.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/delsel.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/descr-text.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/desktop.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dframe.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/diff-mode.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/diff.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dired-aux.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dired-x.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dired.el.gz
@@ -402,25 +366,14 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dos-vars.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dos-w32.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/double.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dynamic-setting.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ebuff-menu.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/echistory.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-diff.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-help.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-hook.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-init.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-merg.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-mult.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-ptch.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-util.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-vers.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-wind.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/edmacro.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ehelp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/electric.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/elide-head.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/advice.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/assoc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/authors.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/autoload.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/avl-tree.el.gz
@@ -430,17 +383,18 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/byte-opt.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/byte-run.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/bytecomp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cconv.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/chart.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/check-declare.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/checkdoc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-extra.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-indent.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-lib.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-macs.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-seq.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/copyright.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/crm.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cust-print.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/debug.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/derived.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/disass.el.gz
@@ -448,7 +402,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/easymenu.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/edebug.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-base.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-comp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-custom.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-datadebug.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-opt.el.gz
@@ -457,18 +410,24 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eldoc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/elint.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/elp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/ert-x.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/ert.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/ewoc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/find-func.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/find-gc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/float-sup.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/generic.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/gulp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/gv.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/helper.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/lisp-mnt.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/lisp-mode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/lisp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/macroexp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/map-ynp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/package-x.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/package.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/pcase.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/pp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/re-builder.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/regexp-opt.el.gz
@@ -477,8 +436,8 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/rx.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/shadow.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/smie.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/sregex.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/syntax.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/tabulated-list.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/tcover-ses.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/tcover-unsafep.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/testcover.el.gz
@@ -488,7 +447,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/unsafep.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/warnings.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lock.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emerge.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/crisp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/cua-base.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/cua-gmrk.el.gz
@@ -499,8 +457,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/edt-vt100.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/edt.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/keypad.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/pc-mode.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/pc-select.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/tpu-edt.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/tpu-extras.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/tpu-mapper.el.gz
@@ -529,10 +485,10 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-capab.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-compat.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-dcc.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-desktop-notifications.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-ezbounce.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-fill.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-goodies.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-hecomplete.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-ibuffer.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-identd.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-imenu.el.gz
@@ -582,7 +538,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-module.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-opt.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-proc.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-test.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-var.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/eshell.el.gz
@@ -606,7 +561,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/follow.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/font-core.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/font-lock.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/font-setting.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/format-spec.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/format.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/forms.el.gz
@@ -617,14 +571,12 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/canlock.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/compface.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/deuglify.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/earcon.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/ecomplete.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/flow-fill.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gmm-utils.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-agent.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-art.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-async.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-audio.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-bcklg.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-bookmark.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-cache.el.gz
@@ -639,16 +591,17 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-eform.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-ems.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-fun.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-gravatar.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-group.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-html.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-int.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-kill.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-logic.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-mh.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-ml.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-mlspl.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-move.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-msg.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-nocem.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-notifications.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-picon.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-range.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-registry.el.gz
@@ -656,11 +609,11 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-score.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-setup.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-sieve.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-soup.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-spec.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-srvr.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-start.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-sum.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-sync.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-topic.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-undo.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-util.el.gz
@@ -668,6 +621,8 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-vm.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-win.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gravatar.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gssapi.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/html2text.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/ietf-drums.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/legacy-gnus-agent.el.gz
@@ -677,6 +632,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mailcap.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/message.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/messcompat.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-archive.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-bodies.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-decode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-encode.el.gz
@@ -693,7 +649,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mml2015.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnagent.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnbabyl.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndb.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndiary.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndir.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndoc.el.gz
@@ -704,8 +659,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnheader.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnimap.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnir.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnkiboze.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnlistserv.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnmail.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnmaildir.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnmairix.el.gz
@@ -714,24 +667,25 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnml.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnnil.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnoo.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnregistry.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnrss.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnslashdot.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnsoup.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnspool.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nntp.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnultimate.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnvirtual.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnwarchive.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnweb.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnwfm.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/plstore.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/pop3.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/qp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/registry.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc1843.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2045.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2047.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2104.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2231.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rtree.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/score-mode.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/shr-color.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/shr.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/sieve-manage.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/sieve-mode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/sieve.el.gz
@@ -743,7 +697,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/spam.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/starttls.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/utf7.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/webmail.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/yenc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gs.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/help-at-pt.el.gz
@@ -809,32 +762,47 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/json.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/kermit.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/kmacro.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/burmese.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/cham.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/china-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/chinese.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/cyril-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/cyrillic.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/czech.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/english.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/ethio-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/ethiopic.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/european.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/georgian.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/greek.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/hanja-util.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/hebrew.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/ind-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/indian.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/japan-util.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/japanese.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/khmer.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/korea-util.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/korean.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/lao-util.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/lao.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/misc-lang.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/romanian.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/sinhala.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/slovak.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tai-viet.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/thai-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/thai-word.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/thai.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tibet-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tibetan.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tv-util.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/utf-8-lang.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/viet-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/vietnamese.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ledit.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/linum.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/loadhist.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/locate.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/log-edit.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/log-view.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/longlines.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/lpr.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ls-lisp.el.gz
@@ -851,7 +819,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailalias.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailclient.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailheader.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailpost.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/metamail.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mspools.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/reporter.el.gz
@@ -908,7 +875,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/misearch.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse-copy.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse-drag.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse-sel.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mpc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/msb.el.gz
@@ -927,15 +893,16 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/eudcb-ldap.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/eudcb-mab.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/eudcb-ph.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/gnutls.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/goto-addr.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/hmac-def.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/hmac-md5.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/imap-hash.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/imap.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/ldap.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/mairix.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/net-utils.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/netrc.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/network-stream.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/newst-backend.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/newst-plainview.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/newst-reader.el.gz
@@ -951,18 +918,20 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/sasl-digest.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/sasl-ntlm.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/sasl.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/secrets.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/snmp-mode.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/soap-client.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/soap-inspect.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/socks.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/telnet.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tls.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-cache.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-cmds.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-compat.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-fish.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-ftp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-gvfs.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-gw.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-imap.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-sh.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-smb.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-uu.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp.el.gz
@@ -971,6 +940,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/xesam.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/zeroconf.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/newcomment.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/notifications.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/novice.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/nxml-enc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/nxml-glyph.el.gz
@@ -996,39 +966,110 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/rng-xsd.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/xmltok.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/xsd-regexp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/abbrevlist.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/assoc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/awk-mode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/cl-compat.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/complete.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/cust-print.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/erc-hecomplete.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/fast-lock.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/iso-acc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/iso-insert.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/iso-swed.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/lazy-lock.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/ledit.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/levents.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/lmenu.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/lucid.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/mailpost.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/mouse-sel.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/old-emacs-lock.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/old-whitespace.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/options.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pc-mode.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pc-select.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-def.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-gpg.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-parse.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-pgp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-pgp5.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/resume.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/rnews.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/rnewspost.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/sc.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/s-region.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/scribe.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/spell.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/sregex.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/swedish.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/sym-comp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/vc-mcvs.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/x-menu.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-C.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-R.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-asymptote.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-awk.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-calc.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-clojure.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-comint.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-css.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ditaa.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-dot.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-emacs-lisp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-eval.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-exp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-fortran.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-gnuplot.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-haskell.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-io.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-java.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-js.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-keys.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-latex.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ledger.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-lilypond.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-lisp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-lob.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-matlab.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-maxima.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-mscgen.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ocaml.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-octave.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-org.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-perl.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-picolisp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-plantuml.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-python.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ref.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ruby.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sass.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-scala.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-scheme.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-screen.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sh.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-shen.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sql.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sqlite.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-table.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-tangle.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-agenda.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-archive.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-ascii.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-attach.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-bbdb.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-beamer.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-bibtex.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-capture.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-clock.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-colview.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-compat.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-crypt.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-ctags.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-datetree.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-docbook.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-docview.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-element.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-entities.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-eshell.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-exp-blocks.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-exp.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-faces.el.gz
@@ -1043,24 +1084,29 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-indent.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-info.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-inlinetask.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-install.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-irc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-jsinfo.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-latex.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-list.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-lparse.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mac-message.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-macs.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mew.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mhe.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mks.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mobile.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mouse.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-odt.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-pcomplete.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-plot.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-protocol.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-publish.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-remember.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-rmail.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-special-blocks.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-src.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-table.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-taskjuggler.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-timer.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-vm.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-w3m.el.gz
@@ -1076,17 +1122,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcmpl-rpm.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcmpl-unix.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcomplete.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-defs.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-info.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-parse.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-util.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-def.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-gpg.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-parse.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-pgp.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-pgp5.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/5x5.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/animate.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/blackbox.el.gz
@@ -1117,6 +1152,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/zone.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/printing.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/proced.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/profiler.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/ada-mode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/ada-prj.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/ada-stmt.el.gz
@@ -1134,6 +1170,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-defs.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-engine.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-fonts.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-guess.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-langs.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-menus.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-mode.el.gz
@@ -1161,7 +1198,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/f90.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/flymake.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/fortran.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/gdb-ui.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/gdb-mi.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/glasses.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/grep.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/gud.el.gz
@@ -1216,7 +1253,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/rfn-eshadow.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/rot13.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ruler-mode.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/s-region.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/savehist.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/saveplace.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/sb-image.el.gz
@@ -1226,12 +1262,10 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/select.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/server.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ses.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/sha1.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/shadowfile.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/shell.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/simple.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/skeleton.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/smerge-mode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/sort.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/soundex.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/speedbar.el.gz
@@ -1244,18 +1278,38 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/tar-mode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/tempo.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/AT386.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/apollo.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/bobcat.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/common-win.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/cygwin.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/internal.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/iris-ansi.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/linux.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/lk201.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/news.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/ns-win.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/pc-win.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/rxvt.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/screen.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/sun.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/sup-mouse.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/tty-colors.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/tvi970.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt100.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt102.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt125.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt200.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt201.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt220.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt240.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt300.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt320.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt400.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt420.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/w32-win.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/w32console.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/wyse50.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/x-win.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/xterm.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/terminal.el.gz
@@ -1294,7 +1348,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/remember.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/rst.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/sgml-mode.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/spell.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/table.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/tex-mode.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/texinfmt.el.gz
@@ -1323,9 +1376,11 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-cookie.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-dav.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-dired.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-domsuf.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-expand.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-file.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-ftp.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-future.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-gw.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-handlers.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-history.el.gz
@@ -1342,29 +1397,57 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-parse.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-privacy.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-proxy.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-queue.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-util.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-vars.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/userlock.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-annotate.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-arch.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-bzr.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-cvs.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-dav.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-dir.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-dispatcher.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-git.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-hg.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-hooks.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-mtn.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-rcs.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-sccs.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-svn.el.gz
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/add-log.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/compare-w.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/cvs-status.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/diff-mode.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/diff.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-diff.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-help.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-hook.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-init.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-merg.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-mult.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-ptch.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-util.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-vers.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-wind.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/emerge.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/log-edit.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/log-view.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-defs.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-info.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-parse.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-util.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/smerge-mode.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-annotate.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-arch.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-bzr.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-cvs.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-dav.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-dir.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-dispatcher.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-git.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-hg.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-hooks.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-mtn.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-rcs.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-sccs.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-svn.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vcursor.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/version.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/view.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vt-control.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vt100-led.el.gz
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/w32-common-fns.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/w32-fns.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/w32-vars.el.gz
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/wdired.el.gz
--- a/components/emacs/gnu-emacs-no-x11.p5m	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/gnu-emacs-no-x11.p5m	Wed Dec 18 15:13:15 2013 -0700
@@ -25,20 +25,16 @@
 set name=pkg.fmri value=pkg:/editor/gnu-emacs/gnu-emacs-no-x11@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
 set name=pkg.summary value="GNU emacs without X Window System support"
 set name=com.oracle.info.description value="GNU emacs without X Window System support"
+set name=com.oracle.info.tpno value=15684
 set name=info.classification value="org.opensolaris.category.2008:Development/Editors"
+set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
-set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=org.opensolaris.arc-caseid \
     value=PSARC/2008/494
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 
 license emacs.license license="GPLv3"
 
-dir path=usr
-dir path=usr/bin
-dir path=usr/share
-dir path=usr/share/man
-dir path=usr/share/man/man1
 
 file path=usr/bin/emacs-nox
 hardlink path=usr/bin/emacs-nox-$(COMPONENT_VERSION) target=emacs-nox
--- a/components/emacs/gnu-emacs-x11.p5m	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/gnu-emacs-x11.p5m	Wed Dec 18 15:13:15 2013 -0700
@@ -25,6 +25,7 @@
 set name=pkg.fmri value=pkg:/editor/gnu-emacs/gnu-emacs-x11@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
 set name=pkg.summary value="GNU emacs with X11 support (Xaw toolkit)"
 set name=com.oracle.info.description value="GNU emacs with X11 support (Xaw toolkit)"
+set name=com.oracle.info.tpno value=15684
 set name=info.classification value="org.opensolaris.category.2008:Development/Editors"
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
 set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
@@ -34,11 +35,6 @@
 
 license emacs.license license="GPLv3"
 
-dir path=usr
-dir path=usr/bin
-dir path=usr/share
-dir path=usr/share/man
-dir path=usr/share/man/man1
 
 file path=usr/bin/emacs-x
 hardlink path=usr/bin/emacs-x-$(COMPONENT_VERSION) target=emacs-x
--- a/components/emacs/gnu-emacs.p5m	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/gnu-emacs.p5m	Wed Dec 18 15:13:15 2013 -0700
@@ -26,137 +26,26 @@
 set name=pkg.summary value="GNU emacs core"
 set name=pkg.description value="GNU emacs core, runtime support for the emacs binary packages"
 set name=com.oracle.info.description value="GNU emacs core"
+set name=com.oracle.info.tpno value=15684
 set name=info.classification value="org.opensolaris.category.2008:Development/Editors"
+set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
-set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=org.opensolaris.arc-caseid \
     value=PSARC/2008/494
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
 
 license emacs.license license="GPLv3"
 
-dir  path=usr
-dir  path=usr/bin
-dir  path=usr/gnu
-dir  path=usr/gnu/bin
-dir  path=usr/gnu/share
-dir  path=usr/gnu/share/man
-dir  path=usr/gnu/share/man/man1
-dir  path=usr/lib
-dir  path=usr/lib/emacs
-dir  path=usr/lib/emacs/$(COMPONENT_VERSION)
-dir  path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)
-dir  path=usr/share
-dir  path=usr/share/applications
-dir  path=usr/share/emacs
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/charsets
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/e
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/gnus
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/custom
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/ezimage
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/gnus
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/gud
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/128x128
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/128x128/apps
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/16x16
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/16x16/apps
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/24x24
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/24x24/apps
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/32x32
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/32x32/apps
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/48x48
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/48x48/apps
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/scalable
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/scalable/apps
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/scalable/mimetypes
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/low-color
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/mail
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/mpc
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/smilies
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/smilies/grayscale
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/smilies/medium
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/tree-widget
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/tree-widget/default
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/tree-widget/folder
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/nxml
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/schema
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/leim
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/leim/ja-dic
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/calc
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/calendar
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/ede
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/analyze
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/decorate
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/symref
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/srecode
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/international
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mh-e
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url
-dir  path=usr/share/emacs/$(COMPONENT_VERSION)/site-lisp
-dir  path=usr/share/emacs/site-lisp
-dir  path=usr/share/icons
-dir  path=usr/share/icons/hicolor
-dir  path=usr/share/icons/hicolor/128x128
-dir  path=usr/share/icons/hicolor/128x128/apps
-dir  path=usr/share/icons/hicolor/16x16
-dir  path=usr/share/icons/hicolor/16x16/apps
-dir  path=usr/share/icons/hicolor/24x24
-dir  path=usr/share/icons/hicolor/24x24/apps
-dir  path=usr/share/icons/hicolor/32x32
-dir  path=usr/share/icons/hicolor/32x32/apps
-dir  path=usr/share/icons/hicolor/48x48
-dir  path=usr/share/icons/hicolor/48x48/apps
-dir  path=usr/share/icons/hicolor/scalable
-dir  path=usr/share/icons/hicolor/scalable/apps
-dir  path=usr/share/icons/hicolor/scalable/mimetypes
-dir  path=usr/share/info
-dir  path=usr/share/man
-dir  path=usr/share/man/man1
 
 
-file path=usr/bin/b2m
 file path=usr/bin/ebrowse
 file path=usr/bin/emacs
 file path=usr/bin/emacsclient
 file path=usr/bin/grep-changelog
-file path=usr/bin/rcs-checkin
 file path=usr/gnu/bin/ctags
 file path=usr/gnu/bin/etags
 file path=usr/gnu/share/man/man1/ctags.1
 file path=usr/gnu/share/man/man1/etags.1
-file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/digest-doc \
-	mode=0555
-file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/fakemail \
-	mode=0555
 file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/hexl \
 	mode=0555
 file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/movemail \
@@ -165,15 +54,10 @@
 	mode=0555
 file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/rcs2log \
 	mode=0555
-file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/sorted-doc \
-	mode=0555
 file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/update-game-score \
 	mode=0555
-file path=usr/lib/emacs/$(COMPONENT_VERSION)/$(EMACS_ULEVDIR)/vcdiff \
-	mode=0555
 file path=usr/share/applications/emacs.desktop
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/AUTHORS
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/BABYL
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/CENSORSHIP
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/CONTRIBUTE
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/COOKIES
@@ -204,8 +88,11 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/NEWS.20
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/NEWS.21
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/NEWS.22
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/NEWS.23
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/NEXTSTEP
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/NXML-NEWS
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/ORDERS
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/ORG-NEWS
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/PROBLEMS
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/README
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/SERVICE
@@ -355,33 +242,17 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/echo.msg
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/edt-user.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs-buffer.gdb
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs.bash
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs.csh
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs.desktop
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs.icon
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs.py \
-	pkg.tmp.autopyc=false
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs2.py \
-	pkg.tmp.autopyc=false
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/emacs3.py \
-	pkg.tmp.autopyc=false
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/enriched.doc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/forms-d2.dat
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/forms/README
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/forms/forms-d2.dat
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/forms/forms-d2.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/forms/forms-pass.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/future-bug
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/gnus-tut.txt
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/gnus/gnus-setup.ast
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/gnus/news-server.ast
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/README
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/bovine-grammar.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/c.by
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/grammar.wy
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/java-tags.wy
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/js.wy
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/make.by
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/python.wy
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/scheme.by
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/srecode-template.wy
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grammars/wisent-grammar.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/grep.txt
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/README
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/attach.pbm
@@ -392,6 +263,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/bookmark_add.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/cancel.pbm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/cancel.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/checked.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/close.pbm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/close.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/connect.xpm
@@ -559,6 +431,50 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/home.pbm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/home.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/README
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/closed.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/closed.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/empty.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/empty.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/end-connector.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/end-connector.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/extender-connector.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/extender-connector.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/leaf.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/leaf.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/locked-encrypted.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/locked-encrypted.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/mid-connector.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/mid-connector.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/opened.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/opened.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/skip-descender.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/skip-descender.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/through-descender.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/through-descender.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/unlocked-encrypted.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/dark-bg/unlocked-encrypted.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/closed.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/closed.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/empty.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/empty.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/end-connector.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/end-connector.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/extender-connector.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/extender-connector.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/leaf.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/leaf.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/locked-encrypted.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/locked-encrypted.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/mid-connector.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/mid-connector.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/opened.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/opened.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/skip-descender.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/skip-descender.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/through-descender.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/through-descender.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.png
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/allout-widgets/light-bg/unlocked-encrypted.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/128x128/apps/emacs.png
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/16x16/apps/emacs.png
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/icons/hicolor/16x16/apps/emacs22.png
@@ -649,6 +565,17 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/mpc/stop.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/new.pbm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/new.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/README
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/browse-url.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/get-all.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/mark-immortal.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/mark-read.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/narrow.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/next-feed.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/next-item.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/prev-feed.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/prev-item.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/newsticker/update.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/next-node.pbm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/next-node.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/next-page.pbm
@@ -774,6 +701,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/tree-widget/folder/no-handle.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/tree-widget/folder/open.png
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/tree-widget/folder/open.xpm
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/unchecked.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/undo.pbm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/undo.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/up-arrow.pbm
@@ -783,7 +711,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/zoom-in.xpm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/zoom-out.pbm
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/images/zoom-out.xpm
-file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/ms-kermit
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/nxml/00000-0007F.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/nxml/00080-000FF.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/nxml/00100-0017F.el
@@ -886,8 +813,12 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/nxml/README
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/nxml/test-invalid.xml
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/nxml/test-valid.xml
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/org/OrgOdtContentTemplate.xml
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/org/OrgOdtStyles.xml
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/org/README
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/ps-prin0.ps
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/ps-prin1.ps
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/publicsuffix.txt
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/Makefile
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/README
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/calccard.pdf
@@ -901,6 +832,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/de-refcard.tex
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/dired-ref.pdf
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/dired-ref.tex
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/emacsver.tex
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/fr-dired-ref.pdf
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/fr-dired-ref.tex
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/refcards/fr-refcard.pdf
@@ -980,6 +912,35 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/ses-example.ses
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/sex.6
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/spook.lines
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/c.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/cpp.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/default.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/doc-cpp.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/doc-default.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/doc-java.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/ede-autoconf.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/ede-make.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/el.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/getset-cpp.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/java.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/make.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/template.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/test.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/texi.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/srecode/wisent.srt
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/adwaita-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/deeper-blue-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/dichromacy-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/light-blue-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/manoj-dark-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/misterioso-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/tango-dark-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/tango-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/tsdh-dark-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/tsdh-light-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/wheatgrass-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/whiteboard-theme.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/themes/wombat-theme.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.bg
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.cn
@@ -988,6 +949,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.eo
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.es
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.fr
+file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.he
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.it
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.ja
 file path=usr/share/emacs/$(COMPONENT_VERSION)/etc/tutorials/TUTORIAL.ko
@@ -1036,6 +998,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/hanja3.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/hebrew.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/indian.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/ipa-praat.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/ipa.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/japanese.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/lao.elc
@@ -1044,6 +1007,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/latin-post.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/latin-pre.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/lrt.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/persian.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/py-punct.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/pypunct-b5.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/quick-b5.elc
@@ -1060,13 +1024,13 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/uni-input.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/viqr.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/vntelex.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/vnvni.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/leim/quail/welsh.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/COPYING
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/README
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/abbrev.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/abbrevlist.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/add-log.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/align.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/allout-widgets.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/allout.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ansi-color.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/apropos.elc
@@ -1218,6 +1182,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/debug.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/el.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/gcc.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/grammar.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/make-by.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/make.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/bovine/scm-by.elc
@@ -1279,6 +1244,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/comp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/grammar.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/java-tags.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/javascript.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/semantic/wisent/javat-wy.elc
@@ -1314,9 +1280,8 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cedet/srecode/texi.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/chistory.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cmuscheme.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/color.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/comint.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/compare-w.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/complete.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/completion.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/composite.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cus-dep.elc
@@ -1326,15 +1291,12 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cus-start.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cus-theme.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/custom.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/cvs-status.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dabbrev.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/delim-col.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/delsel.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/descr-text.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/desktop.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dframe.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/diff-mode.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/diff.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dired-aux.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dired-x.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dired.elc
@@ -1346,25 +1308,14 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dos-vars.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dos-w32.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/double.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/dynamic-setting.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ebuff-menu.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/echistory.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-diff.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-help.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-hook.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-init.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-merg.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-mult.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-ptch.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-util.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-vers.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff-wind.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ediff.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/edmacro.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ehelp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/electric.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/elide-head.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/advice.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/assoc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/authors.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/autoload.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/avl-tree.elc
@@ -1374,19 +1325,19 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/byte-opt.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/byte-run.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/bytecomp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cconv.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/chart.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/check-declare.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/checkdoc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-extra.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-indent.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-lib.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-loaddefs.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-macs.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-seq.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl-specs.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cl.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/copyright.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/crm.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/cust-print.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/debug.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/derived.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/disass.elc
@@ -1394,7 +1345,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/easymenu.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/edebug.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-base.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-comp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-custom.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-datadebug.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eieio-opt.elc
@@ -1403,18 +1353,24 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/eldoc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/elint.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/elp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/ert-x.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/ert.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/ewoc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/find-func.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/find-gc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/float-sup.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/generic.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/gulp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/gv.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/helper.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/lisp-mnt.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/lisp-mode.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/lisp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/macroexp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/map-ynp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/package-x.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/package.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/pcase.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/pp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/re-builder.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/regexp-opt.elc
@@ -1423,8 +1379,8 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/rx.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/shadow.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/smie.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/sregex.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/syntax.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/tabulated-list.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/tcover-ses.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/tcover-unsafep.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/testcover.elc
@@ -1434,7 +1390,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/unsafep.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lisp/warnings.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emacs-lock.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emerge.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/crisp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/cua-base.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/cua-gmrk.elc
@@ -1445,8 +1400,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/edt-vt100.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/edt.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/keypad.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/pc-mode.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/pc-select.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/tpu-edt.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/tpu-extras.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/emulation/tpu-mapper.elc
@@ -1475,10 +1428,10 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-capab.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-compat.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-dcc.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-desktop-notifications.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-ezbounce.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-fill.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-goodies.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-hecomplete.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-ibuffer.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-identd.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/erc/erc-imenu.elc
@@ -1529,7 +1482,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-module.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-opt.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-proc.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-test.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/esh-var.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/eshell/eshell.elc
@@ -1554,27 +1506,23 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/follow.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/font-core.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/font-lock.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/font-setting.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/format-spec.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/format.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/forms-d2.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/forms-pass.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/forms.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/frame.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/fringe.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/generic-x.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/.dir-locals.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/auth-source.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/canlock.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/compface.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/deuglify.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/earcon.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/ecomplete.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/flow-fill.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gmm-utils.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-agent.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-art.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-async.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-audio.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-bcklg.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-bookmark.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-cache.elc
@@ -1589,16 +1537,17 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-eform.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-ems.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-fun.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-gravatar.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-group.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-html.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-int.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-kill.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-logic.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-mh.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-ml.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-mlspl.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-move.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-msg.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-nocem.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-notifications.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-picon.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-range.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-registry.elc
@@ -1606,11 +1555,11 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-score.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-setup.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-sieve.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-soup.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-spec.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-srvr.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-start.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-sum.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-sync.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-topic.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-undo.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-util.elc
@@ -1618,6 +1567,8 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-vm.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus-win.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gnus.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gravatar.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/gssapi.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/html2text.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/ietf-drums.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/legacy-gnus-agent.elc
@@ -1627,6 +1578,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mailcap.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/message.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/messcompat.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-archive.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-bodies.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-decode.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mm-encode.elc
@@ -1643,7 +1595,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/mml2015.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnagent.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnbabyl.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndb.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndiary.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndir.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nndoc.elc
@@ -1654,8 +1605,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnheader.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnimap.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnir.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnkiboze.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnlistserv.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnmail.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnmaildir.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnmairix.elc
@@ -1664,24 +1613,25 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnml.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnnil.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnoo.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnregistry.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnrss.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnslashdot.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnsoup.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnspool.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nntp.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnultimate.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnvirtual.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnwarchive.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnweb.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/nnwfm.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/plstore.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/pop3.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/qp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/registry.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc1843.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2045.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2047.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2104.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rfc2231.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/rtree.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/score-mode.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/shr-color.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/shr.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/sieve-manage.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/sieve-mode.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/sieve.elc
@@ -1693,7 +1643,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/spam.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/starttls.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/utf7.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/webmail.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gnus/yenc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/gs.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/help-at-pt.elc
@@ -1777,53 +1726,50 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/json.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/kermit.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/kmacro.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/burmese.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/cham.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/burmese.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/cham.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/china-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/chinese.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/cyril-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/cyrillic.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/czech.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/english.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/czech.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/english.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/ethio-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/ethiopic.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/european.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/georgian.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/greek.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/georgian.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/greek.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/hanja-util.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/hebrew.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/hebrew.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/ind-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/indian.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/japan-util.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/japanese.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/khmer.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/japanese.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/khmer.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/korea-util.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/korean.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/korean.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/lao-util.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/lao.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/misc-lang.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/romanian.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/sinhala.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/slovak.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tai-viet.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/lao.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/misc-lang.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/romanian.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/sinhala.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/slovak.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tai-viet.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/thai-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/thai-word.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/thai.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/thai.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tibet-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tibetan.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/tv-util.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/utf-8-lang.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/utf-8-lang.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/viet-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/language/vietnamese.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ldefs-boot.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ledit.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/linum.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/loaddefs.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/loadhist.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/loadup.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/locate.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/log-edit.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/log-view.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/longlines.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/lpr.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ls-lisp.elc
@@ -1841,7 +1787,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailalias.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailclient.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailheader.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mailpost.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/metamail.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/mspools.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mail/reporter.elc
@@ -1902,7 +1847,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/misearch.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse-copy.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse-drag.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse-sel.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mouse.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/mpc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/msb.elc
@@ -1921,15 +1865,16 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/eudcb-ldap.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/eudcb-mab.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/eudcb-ph.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/gnutls.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/goto-addr.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/hmac-def.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/hmac-md5.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/imap-hash.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/imap.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/ldap.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/mairix.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/net-utils.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/netrc.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/network-stream.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/newst-backend.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/newst-plainview.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/newst-reader.elc
@@ -1945,18 +1890,21 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/sasl-digest.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/sasl-ntlm.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/sasl.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/secrets.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/snmp-mode.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/soap-client.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/soap-inspect.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/socks.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/telnet.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tls.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-cache.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-cmds.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-compat.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-fish.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-ftp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-gvfs.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-gw.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-imap.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-loaddefs.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-sh.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-smb.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp-uu.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/tramp.elc
@@ -1965,8 +1913,8 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/xesam.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/net/zeroconf.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/newcomment.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/notifications.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/novice.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/TODO
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/nxml-enc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/nxml-glyph.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/nxml-maint.elc
@@ -1991,40 +1939,113 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/rng-xsd.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/xmltok.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/nxml/xsd-regexp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/abbrevlist.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/assoc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/awk-mode.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/bruce.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/cl-compat.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/complete.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/cust-print.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/erc-hecomplete.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/fast-lock.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/iso-acc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/iso-insert.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/iso-swed.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/keyswap.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/lazy-lock.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/ledit.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/levents.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/lmenu.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/lucid.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/mailpost.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/mouse-sel.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/old-emacs-lock.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/old-whitespace.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/options.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/patcomp.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pc-mode.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pc-select.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-def.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-gpg.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-parse.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-pgp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg-pgp5.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/pgg.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/resume.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/rnews.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/rnewspost.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/sc.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/s-region.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/scribe.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/spell.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/sregex.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/swedish.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/sym-comp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/vc-mcvs.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/obsolete/x-menu.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-C.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-R.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-asymptote.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-awk.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-calc.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-clojure.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-comint.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-css.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ditaa.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-dot.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-emacs-lisp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-eval.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-exp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-fortran.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-gnuplot.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-haskell.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-io.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-java.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-js.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-keys.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-latex.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ledger.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-lilypond.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-lisp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-lob.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-matlab.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-maxima.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-mscgen.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ocaml.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-octave.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-org.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-perl.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-picolisp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-plantuml.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-python.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ref.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-ruby.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sass.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-scala.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-scheme.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-screen.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sh.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-shen.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sql.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-sqlite.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-table.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob-tangle.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/ob.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-agenda.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-archive.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-ascii.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-attach.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-bbdb.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-beamer.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-bibtex.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-capture.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-clock.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-colview.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-compat.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-crypt.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-ctags.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-datetree.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-docbook.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-docview.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-element.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-entities.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-eshell.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-exp-blocks.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-exp.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-faces.elc
@@ -2039,25 +2060,33 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-indent.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-info.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-inlinetask.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-install.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-install.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-irc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-jsinfo.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-latex.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-list.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-loaddefs.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-lparse.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mac-message.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-macs.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mew.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mhe.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mks.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mobile.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-mouse.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-odt.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-pcomplete.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-plot.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-protocol.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-publish.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-remember.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-rmail.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-special-blocks.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-src.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-table.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-taskjuggler.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-timer.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-version.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-vm.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-w3m.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/org/org-wl.elc
@@ -2066,29 +2095,15 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/outline.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/paren.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/password-cache.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/patcomp.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/paths.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcmpl-cvs.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcmpl-gnu.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcmpl-linux.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcmpl-rpm.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcmpl-unix.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcomplete.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-defs.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-info.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-parse.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs-util.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pcvs.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-def.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-gpg.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-parse.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-pgp.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg-pgp5.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/pgg.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/5x5.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/animate.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/blackbox.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/bruce.el
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/bubbles.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/cookie1.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/decipher.elc
@@ -2116,6 +2131,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/play/zone.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/printing.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/proced.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/profiler.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/ada-mode.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/ada-prj.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/ada-stmt.elc
@@ -2133,6 +2149,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-defs.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-engine.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-fonts.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-guess.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-langs.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-menus.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/cc-mode.elc
@@ -2160,7 +2177,7 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/f90.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/flymake.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/fortran.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/gdb-ui.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/gdb-mi.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/glasses.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/grep.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/progmodes/gud.elc
@@ -2215,7 +2232,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/rfn-eshadow.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/rot13.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ruler-mode.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/s-region.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/savehist.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/saveplace.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/sb-image.elc
@@ -2225,12 +2241,10 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/select.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/server.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/ses.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/sha1.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/shadowfile.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/shell.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/simple.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/skeleton.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/smerge-mode.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/sort.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/soundex.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/speedbar.elc
@@ -2244,38 +2258,39 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/tar-mode.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/tempo.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/AT386.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/AT386.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/README
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/apollo.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/bobcat.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/apollo.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/bobcat.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/common-win.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/cygwin.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/cygwin.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/internal.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/iris-ansi.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/linux.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/lk201.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/news.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/iris-ansi.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/linux.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/lk201.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/news.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/ns-win.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/pc-win.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/rxvt.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/screen.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/sun.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/sup-mouse.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/tty-colors.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/tvi970.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt100.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt102.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt125.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt200.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt201.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt220.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt240.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt300.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt320.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt400.el
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt420.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt102.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt125.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt200.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt201.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt220.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt240.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt300.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt320.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt400.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/vt420.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/w32-win.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/w32console.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/wyse50.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/wyse50.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/x-win.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/term/xterm.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/terminal.elc
@@ -2314,7 +2329,6 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/remember.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/rst.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/sgml-mode.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/spell.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/table.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/tex-mode.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/textmodes/texinfmt.elc
@@ -2343,9 +2357,11 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-cookie.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-dav.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-dired.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-domsuf.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-expand.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-file.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-ftp.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-future.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-gw.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-handlers.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-history.elc
@@ -2362,30 +2378,57 @@
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-parse.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-privacy.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-proxy.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-queue.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-util.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url-vars.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/url/url.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/userlock.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-annotate.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-arch.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-bzr.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-cvs.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-dav.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-dir.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-dispatcher.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-git.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-hg.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-hooks.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-mtn.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-rcs.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-sccs.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc-svn.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/add-log.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/compare-w.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/cvs-status.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/diff-mode.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/diff.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-diff.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-help.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-hook.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-init.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-merg.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-mult.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-ptch.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-util.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-vers.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff-wind.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/ediff.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/emerge.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/log-edit.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/log-view.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-defs.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-info.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-parse.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs-util.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/pcvs.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/smerge-mode.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-annotate.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-arch.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-bzr.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-cvs.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-dav.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-dir.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-dispatcher.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-git.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-hg.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-hooks.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-mtn.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-rcs.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-sccs.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc-svn.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vc/vc.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vcursor.elc
-file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/version.el
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/version.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/view.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vt-control.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/vt100-led.elc
+file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/w32-common-fns.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/w32-fns.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/w32-vars.elc
 file path=usr/share/emacs/$(COMPONENT_VERSION)/lisp/wdired.elc
@@ -2404,113 +2447,72 @@
 file path=usr/share/emacs/site-lisp/subdirs.el
 file path=usr/share/icons/hicolor/128x128/apps/emacs.png
 file path=usr/share/icons/hicolor/16x16/apps/emacs.png
-file path=usr/share/icons/hicolor/16x16/apps/emacs22.png
 file path=usr/share/icons/hicolor/24x24/apps/emacs.png
-file path=usr/share/icons/hicolor/24x24/apps/emacs22.png
 file path=usr/share/icons/hicolor/32x32/apps/emacs.png
-file path=usr/share/icons/hicolor/32x32/apps/emacs22.png
 file path=usr/share/icons/hicolor/48x48/apps/emacs.png
-file path=usr/share/icons/hicolor/48x48/apps/emacs22.png
 file path=usr/share/icons/hicolor/scalable/apps/emacs.svg
 file path=usr/share/icons/hicolor/scalable/mimetypes/emacs-document.svg
-file path=usr/share/info/ada-mode
-file path=usr/share/info/auth
-file path=usr/share/info/autotype
-file path=usr/share/info/calc
-file path=usr/share/info/calc-1
-file path=usr/share/info/calc-2
-file path=usr/share/info/calc-3
-file path=usr/share/info/calc-4
-file path=usr/share/info/calc-5
-file path=usr/share/info/calc-6
-file path=usr/share/info/ccmode
-file path=usr/share/info/ccmode-1
-file path=usr/share/info/ccmode-2
-file path=usr/share/info/cl
-file path=usr/share/info/dbus
-file path=usr/share/info/dired-x
-file path=usr/share/info/ebrowse
-file path=usr/share/info/ede
-file path=usr/share/info/ediff
-file path=usr/share/info/edt
-file path=usr/share/info/efaq
-file path=usr/share/info/eieio
-file path=usr/share/info/eintr
-file path=usr/share/info/eintr-1
-file path=usr/share/info/eintr-2
-file path=usr/share/info/eintr-3
-file path=usr/share/info/elisp
-file path=usr/share/info/elisp-1
-file path=usr/share/info/elisp-10
-file path=usr/share/info/elisp-11
-file path=usr/share/info/elisp-2
-file path=usr/share/info/elisp-3
-file path=usr/share/info/elisp-4
-file path=usr/share/info/elisp-5
-file path=usr/share/info/elisp-6
-file path=usr/share/info/elisp-7
-file path=usr/share/info/elisp-8
-file path=usr/share/info/elisp-9
-file path=usr/share/info/emacs
-file path=usr/share/info/emacs-1
-file path=usr/share/info/emacs-2
-file path=usr/share/info/emacs-3
-file path=usr/share/info/emacs-4
-file path=usr/share/info/emacs-5
-file path=usr/share/info/emacs-6
-file path=usr/share/info/emacs-7
-file path=usr/share/info/emacs-8
-file path=usr/share/info/emacs-mime
-file path=usr/share/info/epa
-file path=usr/share/info/erc
-file path=usr/share/info/eshell
-file path=usr/share/info/eudc
-file path=usr/share/info/flymake
-file path=usr/share/info/forms
-file path=usr/share/info/gnus
-file path=usr/share/info/gnus-1
-file path=usr/share/info/gnus-2
-file path=usr/share/info/gnus-3
-file path=usr/share/info/gnus-4
-file path=usr/share/info/gnus-5
-file path=usr/share/info/idlwave
-file path=usr/share/info/info
-file path=usr/share/info/mairix-el
-file path=usr/share/info/message
-file path=usr/share/info/mh-e
-file path=usr/share/info/mh-e-1
-file path=usr/share/info/mh-e-2
-file path=usr/share/info/newsticker
-file path=usr/share/info/nxml-mode
-file path=usr/share/info/org
-file path=usr/share/info/org-1
-file path=usr/share/info/org-2
-file path=usr/share/info/org-3
-file path=usr/share/info/pcl-cvs
-file path=usr/share/info/pgg
-file path=usr/share/info/rcirc
-file path=usr/share/info/reftex
-file path=usr/share/info/remember
-file path=usr/share/info/sasl
-file path=usr/share/info/sc
-file path=usr/share/info/semantic
-file path=usr/share/info/ses
-file path=usr/share/info/sieve
-file path=usr/share/info/smtpmail
-file path=usr/share/info/speedbar
-file path=usr/share/info/tramp
-file path=usr/share/info/url
-file path=usr/share/info/vip
-file path=usr/share/info/viper
-file path=usr/share/info/widget
-file path=usr/share/info/woman
-file path=usr/share/man/man1/b2m.1
+file path=usr/share/info/ada-mode.info
+file path=usr/share/info/auth.info
+file path=usr/share/info/autotype.info
+file path=usr/share/info/bovine.info
+file path=usr/share/info/calc.info
+file path=usr/share/info/ccmode.info
+file path=usr/share/info/cl.info
+file path=usr/share/info/dbus.info
+file path=usr/share/info/dired-x.info
+file path=usr/share/info/ebrowse.info
+file path=usr/share/info/ede.info
+file path=usr/share/info/ediff.info
+file path=usr/share/info/edt.info
+file path=usr/share/info/efaq.info
+file path=usr/share/info/eieio.info
+file path=usr/share/info/eintr.info
+file path=usr/share/info/elisp.info
+file path=usr/share/info/emacs-gnutls.info
+file path=usr/share/info/emacs-mime.info
+file path=usr/share/info/emacs.info
+file path=usr/share/info/epa.info
+file path=usr/share/info/erc.info
+file path=usr/share/info/ert.info
+file path=usr/share/info/eshell.info
+file path=usr/share/info/eudc.info
+file path=usr/share/info/flymake.info
+file path=usr/share/info/forms.info
+file path=usr/share/info/gnus.info
+file path=usr/share/info/htmlfontify.info
+file path=usr/share/info/idlwave.info
+file path=usr/share/info/mairix-el.info
+file path=usr/share/info/message.info
+file path=usr/share/info/mh-e.info
+file path=usr/share/info/newsticker.info
+file path=usr/share/info/nxml-mode.info
+file path=usr/share/info/org.info
+file path=usr/share/info/pcl-cvs.info
+file path=usr/share/info/pgg.info
+file path=usr/share/info/rcirc.info
+file path=usr/share/info/reftex.info
+file path=usr/share/info/remember.info
+file path=usr/share/info/sasl.info
+file path=usr/share/info/sc.info
+file path=usr/share/info/semantic.info
+file path=usr/share/info/ses.info
+file path=usr/share/info/sieve.info
+file path=usr/share/info/smtpmail.info
+file path=usr/share/info/speedbar.info
+file path=usr/share/info/srecode.info
+file path=usr/share/info/tramp.info
+file path=usr/share/info/url.info
+file path=usr/share/info/vip.info
+file path=usr/share/info/viper.info
+file path=usr/share/info/widget.info
+file path=usr/share/info/wisent.info
+file path=usr/share/info/woman.info
 file path=usr/share/man/man1/ebrowse.1
 file path=usr/share/man/man1/emacs.1 \
 	mangler.man.stability=committed
 file path=usr/share/man/man1/emacsclient.1
 file path=usr/share/man/man1/grep-changelog.1
-file path=usr/share/man/man1/rcs-checkin.1
 
 # This package provides everything needed to run emacs except for the
 # actual emacs binary. Although the /usr/bin/emacs shell script is prepared
--- a/components/emacs/patches/dldump.patch	Wed Dec 18 10:04:53 2013 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-*** emacs-23.4.orig/src/s/sol2-6.h	Mon Oct 17 19:20:46 2011
---- emacs-23.4/src/s/sol2-6.h	Tue Feb  7 12:38:02 2012
-***************
-*** 2,11 ****
-  
-  #include "sol2-5.h"
-  
-! #if 0 /* dldump does not handle all the extensions used by GNU ld.  */
-  #undef UNEXEC
-  #define UNEXEC unexsol.o
-- #endif
-  
-  /* arch-tag: 71ea3857-89dc-4395-9623-77964e6ed3ca
-     (do not change this comment) */
---- 2,18 ----
-  
-  #include "sol2-5.h"
-  
-! /*
-!  * Use the Solaris dldump() function to dump emacs, instead of
-!  * the generic unexelf code.
-!  *
-!  * If you encounter a problem using dldump(), please consider sending
-!  * a message to the OpenSolaris tools-linking mailing list:
-!  *      http://mail.opensolaris.org/mailman/listinfo/tools-linking
-!  */
-! 
-  #undef UNEXEC
-  #define UNEXEC unexsol.o
-  
-  /* arch-tag: 71ea3857-89dc-4395-9623-77964e6ed3ca
-     (do not change this comment) */
--- a/components/emacs/patches/eval_file_local_var.patch	Wed Dec 18 10:04:53 2013 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-*** emacs-23.4.orig/lisp/files.el	Wed Jan 11 05:35:01 2012
---- emacs-23.4/lisp/files.el	Fri Feb  1 13:21:50 2013
-***************
-*** 2986,2996 ****
-  	      ;; Obey `enable-local-eval'.
-  	      ((eq var 'eval)
-  	       (when enable-local-eval
-! 		 (push elt all-vars)
-! 		 (or (eq enable-local-eval t)
-! 		     (hack-one-local-variable-eval-safep (eval (quote val)))
-! 		     (safe-local-variable-p var val)
-! 		     (push elt unsafe-vars))))
-  	      ;; Ignore duplicates (except `mode') in the present list.
-  	      ((and (assq var all-vars) (not (eq var 'mode))) nil)
-  	      ;; Accept known-safe variables.
---- 2986,3001 ----
-  	      ;; Obey `enable-local-eval'.
-  	      ((eq var 'eval)
-  	       (when enable-local-eval
-! 		 (let ((safe (or (hack-one-local-variable-eval-safep
-! 				  (eval (quote val)))
-! 				 ;; In case previously marked safe (bug#5636).
-! 				 (safe-local-variable-p var val))))
-! 		   ;; If not safe and e-l-v = :safe, ignore totally.
-! 		   (when (or safe (not (eq enable-local-variables :safe)))
-! 		     (push elt all-vars)
-! 		     (or (eq enable-local-eval t)
-! 			 safe
-! 			 (push elt unsafe-vars))))))
-  	      ;; Ignore duplicates (except `mode') in the present list.
-  	      ((and (assq var all-vars) (not (eq var 'mode))) nil)
-  	      ;; Accept known-safe variables.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/emacs/patches/face_for_font.patch	Wed Dec 18 15:13:15 2013 -0700
@@ -0,0 +1,21 @@
+# Elide call to face_for_font() when window system support is not included.
+# See components/emacs/README.
+#
+--- emacs-24.3.orig/src/xdisp.c	2013-02-24 12:21:16.000000000 -0700
++++ emacs-24.3/src/xdisp.c	2013-09-24 10:45:08.854361844 -0600
+@@ -6870,6 +6870,7 @@
+ 	}
+     }
+ 
++#ifdef HAVE_WINDOW_SYSTEM
+   /* Adjust face id for a multibyte character.  There are no multibyte
+      character in unibyte text.  */
+   if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION)
+@@ -6910,6 +6911,7 @@
+ 	  it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string);
+ 	}
+     }
++#endif
+ 
+  done:
+   /* Is this character the last one of a run of characters with
--- a/components/emacs/patches/find.patch	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/patches/find.patch	Wed Dec 18 15:13:15 2013 -0700
@@ -1,20 +1,14 @@
-*** emacs-23.4.orig/lisp/progmodes/grep.el	Wed Jan 11 05:35:01 2012
---- emacs-23.4/lisp/progmodes/grep.el	Fri Feb  1 11:01:11 2013
-***************
-*** 421,427 ****
-  This variable's value takes effect when `grep-compute-defaults' is called.")
-  
-  ;;;###autoload
-! (defvar find-program (purecopy "find")
-    "The default find program for `grep-find-command'.
-  This variable's value takes effect when `grep-compute-defaults' is called.")
-  
---- 421,428 ----
-  This variable's value takes effect when `grep-compute-defaults' is called.")
-  
-  ;;;###autoload
-! ;;Change from find to GNU find for Solaris, as emacs uses GNU-specific options
-! (defvar find-program (purecopy "/usr/gnu/bin/find")
-    "The default find program for `grep-find-command'.
-  This variable's value takes effect when `grep-compute-defaults' is called.")
-  
+# Ensure that emacs uses GNU find. See components/emacs/README.
+#
+--- emacs-24.3.orig/lisp/progmodes/grep.el	2013-01-01 13:37:17.000000000 -0700
++++ emacs-24.3/lisp/progmodes/grep.el	2013-09-23 14:41:27.331614612 -0600
+@@ -419,7 +419,8 @@
+ This variable's value takes effect when `grep-compute-defaults' is called.")
+ 
+ ;;;###autoload
+-(defvar find-program (purecopy "find")
++;;Change from find to GNU find for Solaris, as emacs uses GNU-specific options
++(defvar find-program (purecopy "/usr/gnu/bin/find")
+   "The default find program for `grep-find-command'.
+ This variable's value takes effect when `grep-compute-defaults' is called.")
+ 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/emacs/patches/gtkutil.patch	Wed Dec 18 15:13:15 2013 -0700
@@ -0,0 +1,39 @@
+# Prevent incorrect Gtk warning at startup when a specific geometry is
+# explicitly specified. See components/emacs/README.
+#
+--- emacs-24.3.orig/src/gtkutil.c	2013-01-12 12:29:19.000000000 -0700
++++ emacs-24.3/src/gtkutil.c	2013-09-23 11:36:07.414160374 -0600
+@@ -813,6 +813,14 @@
+     General functions for creating widgets, resizing, events, e.t.c.
+  ***********************************************************************/
+ 
++static void
++my_log_handler (const gchar *log_domain, GLogLevelFlags log_level,
++                const gchar *msg, gpointer user_data)
++{
++  if (!strstr (msg, "visible children"))
++    fprintf (stderr, "XX %s-WARNING **: %s\n", log_domain, msg);
++}
++
+ /* Make a geometry string and pass that to GTK.  It seems this is the
+    only way to get geometry position right if the user explicitly
+    asked for a position when starting Emacs.
+@@ -828,6 +836,7 @@
+       int top = f->top_pos;
+       int yneg = f->size_hint_flags & YNegative;
+       char geom_str[sizeof "=x--" + 4 * INT_STRLEN_BOUND (int)];
++      guint id;
+ 
+       if (xneg)
+         left = -left;
+@@ -840,6 +849,10 @@
+                (xneg ? '-' : '+'), left,
+                (yneg ? '-' : '+'), top);
+ 
++      /* Silence warning about visible children.  */
++      id = g_log_set_handler ("Gtk", G_LOG_LEVEL_WARNING | G_LOG_FLAG_FATAL
++                              | G_LOG_FLAG_RECURSION, my_log_handler, NULL);
++
+       if (!gtk_window_parse_geometry (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)),
+                                       geom_str))
+         fprintf (stderr, "Failed to parse: '%s'\n", geom_str);
--- a/components/emacs/patches/sysmalloc.patch	Wed Dec 18 10:04:53 2013 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-*** emacs-23.4.orig/src/s/sol2-5.h	Mon Oct 17 19:20:46 2011
---- emacs-23.4/src/s/sol2-5.h	Tue Feb  7 12:38:02 2012
-***************
-*** 17,22 ****
---- 17,23 ----
-  /* This is not always necessary.  Turned off at present for testers to
-     identify any problems with gmalloc more accurately.  */
-  /* #define SYSTEM_MALLOC */
-+ #define SYSTEM_MALLOC
-  
-  /* There have problems reported with mmap at least on Solaris 2.6
-     and 2.7.  For simplicity, let's not use mmap for anything >= 2.5.
--- a/components/emacs/patches/tty_startup_hang.patch	Wed Dec 18 10:04:53 2013 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,45 +0,0 @@
-*** emacs-23.4.orig/src/lisp.h	Wed Jan 11 05:35:01 2012
---- emacs-23.4/src/lisp.h	Fri Feb  1 11:12:55 2013
-***************
-*** 3435,3440 ****
---- 3435,3441 ----
-  #ifdef HAVE_X_WINDOWS
-  /* Defined in xfns.c */
-  extern void syms_of_xfns P_ ((void));
-+ extern int x_in_use;
-  
-  /* Defined in xsmfns.c */
-  extern void syms_of_xsmfns P_ ((void));
-*** emacs-23.4.orig/src/xfns.c	Wed Jan 11 05:35:01 2012
---- emacs-23.4/src/xfns.c	Fri Feb  1 11:13:27 2013
-***************
-*** 183,189 ****
-  
-  /* Nonzero if using X.  */
-  
-! static int x_in_use;
-  
-  /* Non nil if no window manager is in use.  */
-  
---- 183,189 ----
-  
-  /* Nonzero if using X.  */
-  
-! int x_in_use;
-  
-  /* Non nil if no window manager is in use.  */
-  
-*** emacs-23.4.orig/src/xgselect.c	Wed Jan 11 05:35:01 2012
---- emacs-23.4/src/xgselect.c	Fri Feb  1 11:13:54 2013
-***************
-*** 44,49 ****
---- 44,52 ----
-    int n_gfds = 0, our_tmo = 0, retval = 0, our_fds = 0;
-    int prio, i, nfds, tmo_in_millisec;
-  
-+   if (!x_in_use)
-+     return select (max_fds, rfds, wfds, efds, timeout);
-+ 
-    if (rfds) memcpy (&all_rfds, rfds, sizeof (all_rfds));
-    else FD_ZERO (&all_rfds);
-    if (wfds) memcpy (&all_wfds, wfds, sizeof (all_rfds));
--- a/components/emacs/patches/xft.patch	Wed Dec 18 10:04:53 2013 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-*** emacs-23.4.orig/configure	Thu Jan 19 08:01:37 2012
---- emacs-23.4/configure	Tue Feb  7 12:38:02 2012
-***************
-*** 9283,9288 ****
---- 9283,9289 ----
-              { $as_echo "$as_me:${as_lineno-$LINENO}: checking XFT_LIBS" >&5
-  $as_echo_n "checking XFT_LIBS... " >&6; }
-              XFT_LIBS=`$PKG_CONFIG --libs "xft >= 0.13.0"|sed -e 's,///*,/,g'`
-+             XFT_LIBS='-lXft -lXrender -lfontconfig -lfreetype -lX11  '
-              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XFT_LIBS" >&5
-  $as_echo "$XFT_LIBS" >&6; }
-          else
--- a/components/emacs/resolve.deps	Wed Dec 18 10:04:53 2013 -0800
+++ b/components/emacs/resolve.deps	Wed Dec 18 15:13:15 2013 -0700
@@ -1,13 +1,16 @@
 editor/gnu-emacs
 file/gnu-findutils
 gnome/config/gconf
+image/imagemagick
 image/library/libjpeg
 image/library/libpng
 image/library/librsvg
 image/library/libtiff
-library/desktop/gdk-pixbuf
 library/desktop/gtk2
 library/glib2
+library/gnutls
+library/libxml2
+library/ncurses
 runtime/perl-512
 shell/ksh93
 system/library