From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CE172138247 for ; Fri, 15 Nov 2013 13:31:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1171E09FD; Fri, 15 Nov 2013 13:31:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 613BDE09FD for ; Fri, 15 Nov 2013 13:31:27 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6369933F167 for ; Fri, 15 Nov 2013 13:31:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 046CAE530A for ; Fri, 15 Nov 2013 13:31:24 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1384521756.9e523fc722ab4b634ba82e315cac197c4688cfba.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog Makefile site-gentoo.el X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 9e523fc722ab4b634ba82e315cac197c4688cfba X-VCS-Branch: emacs-common-gentoo Date: Fri, 15 Nov 2013 13:31:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 17c0f938-b201-461b-a805-b782502dad3a X-Archives-Hash: ceb33c8ce8347cc6c4b5a16e8b37db39 commit: 9e523fc722ab4b634ba82e315cac197c4688cfba Author: Ulrich Müller gentoo org> AuthorDate: Fri Nov 15 13:22:36 2013 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Nov 15 13:22:36 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=9e523fc7 Add site-gentoo.el file. * site-gentoo.el: New file. Gentoo site startup, initially empty. * Makefile (DISTFILES): Update. --- ChangeLog | 7 ++++++- Makefile | 4 ++-- site-gentoo.el | 17 +++++++++++++++++ 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 130b255..d19292c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-11-15 Ulrich Müller + + * site-gentoo.el: New file. Gentoo site startup, initially empty. + * Makefile (DISTFILES): Update. + 2011-12-06 Ulrich Müller * Version 1.3 released. @@ -132,5 +137,5 @@ * emacs.desktop, emacs.png: New files. -Copyright 2007-2011 Gentoo Foundation +Copyright 2007-2013 Gentoo Foundation Distributed under the terms of the GNU General Public License v2 or later diff --git a/Makefile b/Makefile index 7bcc079..99e9ba5 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright 2007-2011 Gentoo Foundation +# Copyright 2007-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 or later PN = emacs-common-gentoo @@ -11,7 +11,7 @@ ICONFILES = gnome-emacs.png sink.png \ emacs22_16.png emacs22_24.png emacs22_32.png emacs22_48.png \ emacs_16.png emacs_24.png emacs_32.png emacs_48.png emacs_128.png \ emacs.svg -DISTFILES = site-start.el subdirs.el $(DESKTOPFILES) \ +DISTFILES = site-start.el site-gentoo.el subdirs.el $(DESKTOPFILES) \ $(addprefix icons/,COPYRIGHT.icons $(ICONFILES)) diff --git a/site-gentoo.el b/site-gentoo.el new file mode 100644 index 0000000..9a40311 --- /dev/null +++ b/site-gentoo.el @@ -0,0 +1,17 @@ +;;; site-gentoo.el --- site initialisation for Gentoo-installed packages + +;;; Commentary: +;; Automatically generated by elisp-common.eclass +;; DO NOT EDIT THIS FILE + +;;; Code: + + +(provide 'site-gentoo) + +;; Local Variables: +;; no-byte-compile: t +;; buffer-read-only: t +;; End: + +;;; site-gentoo.el ends here