* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2015-02-23 20:44 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2015-02-23 20:44 UTC (permalink / raw
To: gentoo-commits
commit: df55a4b356548adfb21844dc8e769f6e9ed218f8
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 23 20:37:33 2015 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 20:37:33 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=df55a4b3
Add ChangeLog entry for previous commit.
---
ChangeLog | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 7d36926..13b6c65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-08-28 Ulrich Müller <ulm@gentoo.org>
+
+ * site-start.el: Fix typo in comment.
+
2013-11-16 Ulrich Müller <ulm@gentoo.org>
* Version 1.4 released.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2021-02-25 17:39 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2021-02-25 17:39 UTC (permalink / raw
To: gentoo-commits
commit: 778477df4be714c3dc02e04cb7e116b15167e83e
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 25 17:33:31 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Feb 25 17:33:31 2021 +0000
URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=778477df
Add subdirectories of the modules directory to load-path
* subdirs.el.in: Renamed from subdirs.el. Check for subdirectories
of the modules directory too.
* Makefile (DISTFILES): Update.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
ChangeLog | 6 ++++++
Makefile | 4 ++--
subdirs.el | 3 ---
subdirs.el.in | 8 ++++++++
4 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d0cbd4a..55f4563 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2021-02-25 Ulrich Müller <ulm@gentoo.org>
+
+ * subdirs.el.in: Renamed from subdirs.el. Check for subdirectories
+ of the modules directory too.
+ * Makefile (DISTFILES): Update.
+
2017-02-04 Ulrich Müller <ulm@gentoo.org>
* Version 1.6 released.
diff --git a/Makefile b/Makefile
index 6fb696a..7c5bc2e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2017 Gentoo Authors
+# Copyright 2007-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 or later
PN = emacs-common-gentoo
@@ -13,7 +13,7 @@ ICONFILES = sink.png \
emacs23_128.png emacs23.svg \
emacs25_16.png emacs25_24.png emacs25_32.png emacs25_48.png \
emacs25_128.png emacs25.svg
-DISTFILES = site-start.el site-gentoo.el subdirs.el $(DESKTOPFILES) \
+DISTFILES = site-start.el site-gentoo.el subdirs.el.in $(DESKTOPFILES) \
$(addprefix icons/,COPYRIGHT.icons $(ICONFILES))
diff --git a/subdirs.el b/subdirs.el
deleted file mode 100644
index ee1c123..0000000
--- a/subdirs.el
+++ /dev/null
@@ -1,3 +0,0 @@
-;; -*- no-byte-compile: t -*-
-(if (fboundp 'normal-top-level-add-subdirs-to-load-path)
- (normal-top-level-add-subdirs-to-load-path))
diff --git a/subdirs.el.in b/subdirs.el.in
new file mode 100644
index 0000000..3432bf0
--- /dev/null
+++ b/subdirs.el.in
@@ -0,0 +1,8 @@
+;; -*- no-byte-compile: t -*-
+(when (fboundp 'normal-top-level-add-subdirs-to-load-path)
+ (normal-top-level-add-subdirs-to-load-path)
+ ;; We install dynamic modules in a more FHS compliant location,
+ ;; so add its subdirectories to the load-path, too
+ (let ((default-directory "/usr/@libdir@/emacs/modules/"))
+ (if (file-directory-p default-directory)
+ (normal-top-level-add-subdirs-to-load-path))))
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2021-02-25 17:39 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2021-02-25 17:39 UTC (permalink / raw
To: gentoo-commits
commit: 60d3350278aaf3de175941af5e8f9de31675d016
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 25 17:34:04 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Feb 25 17:34:04 2021 +0000
URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=60d33502
Version 1.7 released
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
ChangeLog | 2 ++
1 file changed, 2 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 55f4563..3c21e92 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2021-02-25 Ulrich Müller <ulm@gentoo.org>
+ * Version 1.7 released.
+
* subdirs.el.in: Renamed from subdirs.el. Check for subdirectories
of the modules directory too.
* Makefile (DISTFILES): Update.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2018-12-09 22:36 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2018-12-09 22:36 UTC (permalink / raw
To: gentoo-commits
commit: 5b34a0fe1f91d54e83d4ae8df989892c02a7a038
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 9 22:32:33 2018 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 9 22:32:33 2018 +0000
URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=5b34a0fe
Use simplified copyright notice for GLEP 76 compliance.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index f81b7a9..6fb696a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2017 Ulrich Müller
+# Copyright 2007-2017 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 or later
PN = emacs-common-gentoo
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2018-09-16 14:49 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2018-09-16 14:49 UTC (permalink / raw
To: gentoo-commits
commit: d7378824e5a1f40e6e806e8cb093e9dcbb55e302
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 16 14:41:09 2018 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Sep 16 14:41:09 2018 +0000
URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=d7378824
Update copyright notices to follow the new policy.
ChangeLog | 1 -
Makefile | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f231ed7..d0cbd4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -170,5 +170,4 @@
* emacs.desktop, emacs.png: New files.
-Copyright 2007-2017 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2 or later
diff --git a/Makefile b/Makefile
index 5154dae..f81b7a9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2017 Gentoo Foundation
+# Copyright 2007-2017 Ulrich Müller
# Distributed under the terms of the GNU General Public License v2 or later
PN = emacs-common-gentoo
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2017-02-04 14:35 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2017-02-04 14:35 UTC (permalink / raw
To: gentoo-commits
commit: ffba3869c96d4be653d3b07115f472e5fea507a7
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 14:11:08 2017 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 14:11:08 2017 +0000
URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=ffba3869
Version 1.6 released.
ChangeLog | 2 ++
1 file changed, 2 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index b26b35e..f231ed7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2017-02-04 Ulrich Müller <ulm@gentoo.org>
+ * Version 1.6 released.
+
* icons/emacs25_*.png, icons/emacs25.svg: New files, from Emacs 25.1.
* icons/COPYRIGHT.icons: Update.
* Makefile (ICONFILES): Update.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2017-02-04 14:35 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2017-02-04 14:35 UTC (permalink / raw
To: gentoo-commits
commit: 3f78bf7eb834b720c8adf9fd64006613483150b9
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 4 13:22:30 2017 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Feb 4 13:22:30 2017 +0000
URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=3f78bf7e
Update copyright years.
ChangeLog | 2 +-
Makefile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 90b04a2..a9bce40 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -157,5 +157,5 @@
* emacs.desktop, emacs.png: New files.
-Copyright 2007-2015 Gentoo Foundation
+Copyright 2007-2017 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2 or later
diff --git a/Makefile b/Makefile
index af7d023..60c3509 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2015 Gentoo Foundation
+# Copyright 2007-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 or later
PN = emacs-common-gentoo
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2015-02-23 20:44 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2015-02-23 20:44 UTC (permalink / raw
To: gentoo-commits
commit: b179466f7f6adce118c06fe2eb966bb563f871f6
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 23 20:38:08 2015 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 20:38:08 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=b179466f
Update copyright years.
---
ChangeLog | 2 +-
Makefile | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 13b6c65..5e1fd63 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -153,5 +153,5 @@
* emacs.desktop, emacs.png: New files.
-Copyright 2007-2013 Gentoo Foundation
+Copyright 2007-2015 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2 or later
diff --git a/Makefile b/Makefile
index ddffad5..af7d023 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2013 Gentoo Foundation
+# Copyright 2007-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 or later
PN = emacs-common-gentoo
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2015-02-23 20:44 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2015-02-23 20:44 UTC (permalink / raw
To: gentoo-commits
commit: 7c27b314f9c8e5d734b3d36206dfbd666d8a1173
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 23 20:39:15 2015 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 20:39:15 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=7c27b314
Version 1.5 released.
---
ChangeLog | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 5e1fd63..90b04a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-02-23 Ulrich Müller <ulm@gentoo.org>
+
+ * Version 1.5 released.
+
2014-08-28 Ulrich Müller <ulm@gentoo.org>
* site-start.el: Fix typo in comment.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2014-08-28 12:14 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2014-08-28 12:14 UTC (permalink / raw
To: gentoo-commits
commit: de233f30d64cbf60e02944fbc8651f3794c72538
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 28 12:14:15 2014 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Aug 28 12:14:15 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=de233f30
Fix typo in comment.
---
site-start.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/site-start.el b/site-start.el
index d4b51c4..0ec3785 100644
--- a/site-start.el
+++ b/site-start.el
@@ -2,8 +2,8 @@
;;; Commentary:
;; This is the site startup file for GNU Emacs. It is loaded before
-;; the user's init file. You may modify this file or replace or it
-;; by your own site initialisation.
+;; the user's init file. You may modify this file or replace it by
+;; your own site initialisation.
;;; Code:
;; Load site initialisation for Gentoo installed packages.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2013-11-16 12:50 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2013-11-16 12:50 UTC (permalink / raw
To: gentoo-commits
commit: ae006d1e2d6280bc05aac23c17439fd9e97eed46
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 16 12:26:50 2013 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 16 12:26:50 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=ae006d1e
Version 1.4 released.
---
ChangeLog | 2 ++
1 file changed, 2 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index 742c625..7d36926 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2013-11-16 Ulrich Müller <ulm@gentoo.org>
+ * Version 1.4 released.
+
* Makefile (dist): Use xz for compression.
(clean): Remove *.xz.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2013-11-16 12:50 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2013-11-16 12:50 UTC (permalink / raw
To: gentoo-commits
commit: c6b8a9630301ba27eed8002a4950f0af05e6e084
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 16 12:23:45 2013 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 16 12:23:45 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=c6b8a963
Use xz for compression.
* Makefile (dist): Use xz for compression.
(clean): Remove *.xz.
---
ChangeLog | 5 +++++
Makefile | 6 +++---
2 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 69c720d..742c625 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-11-16 Ulrich Müller <ulm@gentoo.org>
+
+ * Makefile (dist): Use xz for compression.
+ (clean): Remove *.xz.
+
2013-11-15 Ulrich Müller <ulm@gentoo.org>
* icons/gnome-emacs.png: File removed. The ebuild does not install
diff --git a/Makefile b/Makefile
index 5cb2e9b..ddffad5 100644
--- a/Makefile
+++ b/Makefile
@@ -20,11 +20,11 @@ DISTFILES = site-start.el site-gentoo.el subdirs.el $(DESKTOPFILES) \
all:
dist: $(DISTFILES)
- tar -czf $(P).tar.gz --transform='s%^%$(P)/%' $^
- tar -tzvf $(P).tar.gz
+ tar -cJf $(P).tar.xz --transform='s%^%$(P)/%' $^
+ tar -tJvf $(P).tar.xz
$(DESKTOPFILES):
desktop-file-validate $@
clean:
- -rm -f *~ *.tmp *.gz *.bz2
+ -rm -f *~ *.tmp *.xz
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2013-11-15 13:31 Ulrich Müller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Müller @ 2013-11-15 13:31 UTC (permalink / raw
To: gentoo-commits
commit: 9e523fc722ab4b634ba82e315cac197c4688cfba
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 15 13:22:36 2013 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> 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 <ulm@gentoo.org>
+
+ * site-gentoo.el: New file. Gentoo site startup, initially empty.
+ * Makefile (DISTFILES): Update.
+
2011-12-06 Ulrich Müller <ulm@gentoo.org>
* 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:
+
+\f
+(provide 'site-gentoo)
+
+;; Local Variables:
+;; no-byte-compile: t
+;; buffer-read-only: t
+;; End:
+
+;;; site-gentoo.el ends here
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 18:47 Ulrich Mueller
0 siblings, 0 replies; 34+ messages in thread
From: Ulrich Mueller @ 2012-05-06 18:47 UTC (permalink / raw
To: gentoo-commits
commit: b67c512b3dc2e2c41db93963f4144acc4b7c3c90
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 18:22:27 2012 +0000
Commit: Ulrich Mueller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun May 6 18:22:27 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=b67c512b
Drop subversion keywords.
---
ChangeLog | 1 -
Makefile | 1 -
2 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 2758d9d..130b255 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -134,4 +134,3 @@
Copyright 2007-2011 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2 or later
-$Id$
diff --git a/Makefile b/Makefile
index 3a076d0..7bcc079 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,5 @@
# Copyright 2007-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 or later
-# $Id$
PN = emacs-common-gentoo
PV = $(shell sed '/^[ \t]*\* [Vv]ersion/!d;s/[^0-9.]*\([^ \t]*\).*/\1/;q' \
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 commit in: /
@ 2012-05-06 16:07 Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
0 siblings, 1 reply; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 66e062133b9a6f0f8d71062eb699b7d6af0b40e8
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 12 10:57:14 2008 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Sep 12 10:57:14 2008 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=66e06213
Recompress all icon files with optipng.
svn path=/emacs-desktop/; revision=1109
---
emacs.png | Bin 4589 -> 4443 bytes
emacs_16.png | Bin 632 -> 614 bytes
emacs_24.png | Bin 820 -> 802 bytes
emacs_32.png | Bin 2235 -> 2217 bytes
emacs_48.png | Bin 3100 -> 3082 bytes
5 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/emacs.png b/emacs.png
index 78f866e..4eaca87 100644
Binary files a/emacs.png and b/emacs.png differ
diff --git a/emacs_16.png b/emacs_16.png
index 77c1a66..ddc9c1e 100644
Binary files a/emacs_16.png and b/emacs_16.png differ
diff --git a/emacs_24.png b/emacs_24.png
index fe12a33..091c54d 100644
Binary files a/emacs_24.png and b/emacs_24.png differ
diff --git a/emacs_32.png b/emacs_32.png
index 4eb3c9d..b102bc2 100644
Binary files a/emacs_32.png and b/emacs_32.png differ
diff --git a/emacs_48.png b/emacs_48.png
index 6e8acbe..2684af8 100644
Binary files a/emacs_48.png and b/emacs_48.png differ
^ permalink raw reply [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 " Sebastian Pipping
@ 2012-05-06 16:06 ` Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 66e062133b9a6f0f8d71062eb699b7d6af0b40e8
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 12 10:57:14 2008 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Sep 12 10:57:14 2008 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=66e06213
Recompress all icon files with optipng.
svn path=/emacs-desktop/; revision=1109
---
emacs.png | Bin 4589 -> 4443 bytes
emacs_16.png | Bin 632 -> 614 bytes
emacs_24.png | Bin 820 -> 802 bytes
emacs_32.png | Bin 2235 -> 2217 bytes
emacs_48.png | Bin 3100 -> 3082 bytes
5 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/emacs.png b/emacs.png
index 78f866e..4eaca87 100644
Binary files a/emacs.png and b/emacs.png differ
diff --git a/emacs_16.png b/emacs_16.png
index 77c1a66..ddc9c1e 100644
Binary files a/emacs_16.png and b/emacs_16.png differ
diff --git a/emacs_24.png b/emacs_24.png
index fe12a33..091c54d 100644
Binary files a/emacs_24.png and b/emacs_24.png differ
diff --git a/emacs_32.png b/emacs_32.png
index 4eb3c9d..b102bc2 100644
Binary files a/emacs_32.png and b/emacs_32.png differ
diff --git a/emacs_48.png b/emacs_48.png
index 6e8acbe..2684af8 100644
Binary files a/emacs_48.png and b/emacs_48.png differ
^ permalink raw reply [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 commit in: /
@ 2012-05-06 16:07 Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
0 siblings, 1 reply; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 9d2f78e1a08b8b1dbdb8bc81acf2b1036de1b8de
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 28 11:16:02 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Dec 28 11:16:02 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=9d2f78e1
Canonical ordering for desktop entry keys. Version key added.
Release version 0.3.
svn path=/emacs-extra/emacs-desktop/; revision=892
---
ChangeLog | 11 +++++++++++
Makefile | 8 ++++++--
emacs.desktop | 7 ++++---
emacsclient.desktop | 5 +++--
4 files changed, 24 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f5020d0..e4b1451 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2007-12-28 Ulrich Mueller <ulm@gentoo.org>
+
+ * version 0.3
+
+ * Makefile (DESKTOPFILES): Validate with desktop-file-validate.
+
+ * emacsclient.desktop: Ditto.
+
+ * emacs.desktop: Canonical ordering for desktop entry keys.
+ (Version): Key added.
+
2007-12-10 Christian Faulhammer <opfer@gentoo.org>
* emacsclient.desktop (Comment): Correct typo in Spanish
diff --git a/Makefile b/Makefile
index b6e71e1..4eca6f4 100644
--- a/Makefile
+++ b/Makefile
@@ -4,12 +4,13 @@ PV = $(shell sed '/^[ \t]*\* [Vv]ersion/!d;s/[^0-9.]*\([0-9.]*\).*/\1/;q' \
ChangeLog)
P = $(PN)-$(PV)
-DISTFILES = emacs.desktop emacsclient.desktop \
+DESKTOPFILES = emacs.desktop emacsclient.desktop
+DISTFILES = $(DESKTOPFILES) \
README.icons emacs.png \
emacs_16.png emacs_24.png emacs_32.png emacs_48.png gnured_48.png
-.PHONY: all dist clean
+.PHONY: all dist clean $(DESKTOPFILES)
all:
@@ -17,5 +18,8 @@ dist: $(DISTFILES)
tar -czf $(P).tar.gz --transform='s%^%$(P)/%' $^
tar -tzvf $(P).tar.gz
+$(DESKTOPFILES):
+ desktop-file-validate $@
+
clean:
-rm -f *~ *.tmp *.gz *.bz2
diff --git a/emacs.desktop b/emacs.desktop
index 4192803..2e7318f 100644
--- a/emacs.desktop
+++ b/emacs.desktop
@@ -1,7 +1,9 @@
[Desktop Entry]
+Type=Application
+Version=1.0
Name=GNU Emacs
GenericName=Emacs
-Comment=Emacs is the extensible, customizable, self-documenting real-time display editor.
+Comment=Emacs is the extensible, customizable, self-documenting real-time display editor
Comment[de]=Emacs ist der erweiterbare, anpassbare, selbst-dokumentierende Echtzeit-Editor
Comment[es]=Emacs es un editor ampliable, adaptable, mismo documentado, de tiempo real
Comment[fr]=Emacs est l'éditeur plein écran avancé, auto-documenté, personnalisable et extensible
@@ -9,6 +11,5 @@ Icon=emacs
TryExec=/usr/bin/emacs
Exec=/usr/bin/emacs %F
Terminal=false
-Type=Application
-Categories=Development;TextEditor;
MimeType=text/css;text/english;text/html;text/plain;text/x-c;text/x-chdr;text/x-csrc;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-java;text/x-makefile;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;
+Categories=Development;TextEditor;
diff --git a/emacsclient.desktop b/emacsclient.desktop
index 4a43404..cc03ba0 100644
--- a/emacsclient.desktop
+++ b/emacsclient.desktop
@@ -1,13 +1,14 @@
[Desktop Entry]
+Type=Application
+Version=1.0
Name=Emacsclient
+NoDisplay=true
Comment=Tell a running Emacs to visit a file
Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen
Comment[es]=Abrir un archivo en un Emacs corriente
Comment[fr]=Ouvre un fichier dans une instance d'Emacs qui est déjà lancée
Icon=emacs
-NoDisplay=true
TryExec=/usr/bin/emacsclient
Exec=/usr/bin/emacsclient %F
Terminal=false
-Type=Application
MimeType=text/css;text/english;text/html;text/plain;text/x-c;text/x-chdr;text/x-csrc;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-java;text/x-makefile;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 " Sebastian Pipping
@ 2012-05-06 16:06 ` Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 9d2f78e1a08b8b1dbdb8bc81acf2b1036de1b8de
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 28 11:16:02 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Dec 28 11:16:02 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=9d2f78e1
Canonical ordering for desktop entry keys. Version key added.
Release version 0.3.
svn path=/emacs-extra/emacs-desktop/; revision=892
---
ChangeLog | 11 +++++++++++
Makefile | 8 ++++++--
emacs.desktop | 7 ++++---
emacsclient.desktop | 5 +++--
4 files changed, 24 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f5020d0..e4b1451 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2007-12-28 Ulrich Mueller <ulm@gentoo.org>
+
+ * version 0.3
+
+ * Makefile (DESKTOPFILES): Validate with desktop-file-validate.
+
+ * emacsclient.desktop: Ditto.
+
+ * emacs.desktop: Canonical ordering for desktop entry keys.
+ (Version): Key added.
+
2007-12-10 Christian Faulhammer <opfer@gentoo.org>
* emacsclient.desktop (Comment): Correct typo in Spanish
diff --git a/Makefile b/Makefile
index b6e71e1..4eca6f4 100644
--- a/Makefile
+++ b/Makefile
@@ -4,12 +4,13 @@ PV = $(shell sed '/^[ \t]*\* [Vv]ersion/!d;s/[^0-9.]*\([0-9.]*\).*/\1/;q' \
ChangeLog)
P = $(PN)-$(PV)
-DISTFILES = emacs.desktop emacsclient.desktop \
+DESKTOPFILES = emacs.desktop emacsclient.desktop
+DISTFILES = $(DESKTOPFILES) \
README.icons emacs.png \
emacs_16.png emacs_24.png emacs_32.png emacs_48.png gnured_48.png
-.PHONY: all dist clean
+.PHONY: all dist clean $(DESKTOPFILES)
all:
@@ -17,5 +18,8 @@ dist: $(DISTFILES)
tar -czf $(P).tar.gz --transform='s%^%$(P)/%' $^
tar -tzvf $(P).tar.gz
+$(DESKTOPFILES):
+ desktop-file-validate $@
+
clean:
-rm -f *~ *.tmp *.gz *.bz2
diff --git a/emacs.desktop b/emacs.desktop
index 4192803..2e7318f 100644
--- a/emacs.desktop
+++ b/emacs.desktop
@@ -1,7 +1,9 @@
[Desktop Entry]
+Type=Application
+Version=1.0
Name=GNU Emacs
GenericName=Emacs
-Comment=Emacs is the extensible, customizable, self-documenting real-time display editor.
+Comment=Emacs is the extensible, customizable, self-documenting real-time display editor
Comment[de]=Emacs ist der erweiterbare, anpassbare, selbst-dokumentierende Echtzeit-Editor
Comment[es]=Emacs es un editor ampliable, adaptable, mismo documentado, de tiempo real
Comment[fr]=Emacs est l'éditeur plein écran avancé, auto-documenté, personnalisable et extensible
@@ -9,6 +11,5 @@ Icon=emacs
TryExec=/usr/bin/emacs
Exec=/usr/bin/emacs %F
Terminal=false
-Type=Application
-Categories=Development;TextEditor;
MimeType=text/css;text/english;text/html;text/plain;text/x-c;text/x-chdr;text/x-csrc;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-java;text/x-makefile;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;
+Categories=Development;TextEditor;
diff --git a/emacsclient.desktop b/emacsclient.desktop
index 4a43404..cc03ba0 100644
--- a/emacsclient.desktop
+++ b/emacsclient.desktop
@@ -1,13 +1,14 @@
[Desktop Entry]
+Type=Application
+Version=1.0
Name=Emacsclient
+NoDisplay=true
Comment=Tell a running Emacs to visit a file
Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen
Comment[es]=Abrir un archivo en un Emacs corriente
Comment[fr]=Ouvre un fichier dans une instance d'Emacs qui est déjà lancée
Icon=emacs
-NoDisplay=true
TryExec=/usr/bin/emacsclient
Exec=/usr/bin/emacsclient %F
Terminal=false
-Type=Application
MimeType=text/css;text/english;text/html;text/plain;text/x-c;text/x-chdr;text/x-csrc;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-java;text/x-makefile;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 commit in: /
@ 2012-05-06 16:07 Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
0 siblings, 1 reply; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 577fe8c5dfe8059cb70eeebd9aac598298970109
Author: Christian Faulhammer <opfer <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 10 17:05:25 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon Dec 10 17:05:25 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=577fe8c5
(Comment): Correct typo in Spanish translation, pointed out by ulm
svn path=/emacs-extra/emacs-desktop/; revision=841
---
ChangeLog | 5 +++++
emacsclient.desktop | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index ceed51b..a51db59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-10 Christian Faulhammer <opfer@gentoo.org>
+
+ * emacsclient.desktop (Comment): Correct typo in Spanish
+ translation, pointed out by ulm
+
2007-12-07 Ulrich Mueller <ulm@gentoo.org>
* emacsclient.desktop: Remove -a option from Exec since it does
diff --git a/emacsclient.desktop b/emacsclient.desktop
index ebfa37c..a9fefbb 100644
--- a/emacsclient.desktop
+++ b/emacsclient.desktop
@@ -2,7 +2,7 @@
Name=Emacsclient
Comment=Tell a running Emacs to visit a file
Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen
-Comment[es]=Abrir un archivo en en Emacs corriente
+Comment[es]=Abrir un archivo en un Emacs corriente
Comment[fr]=Ouvre un fichier dans une instance d'Emacs qui est déjà lancée
Icon=emacs
NoDisplay=true
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 " Sebastian Pipping
@ 2012-05-06 16:06 ` Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 577fe8c5dfe8059cb70eeebd9aac598298970109
Author: Christian Faulhammer <opfer <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 10 17:05:25 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Mon Dec 10 17:05:25 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=577fe8c5
(Comment): Correct typo in Spanish translation, pointed out by ulm
svn path=/emacs-extra/emacs-desktop/; revision=841
---
ChangeLog | 5 +++++
emacsclient.desktop | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index ceed51b..a51db59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-10 Christian Faulhammer <opfer@gentoo.org>
+
+ * emacsclient.desktop (Comment): Correct typo in Spanish
+ translation, pointed out by ulm
+
2007-12-07 Ulrich Mueller <ulm@gentoo.org>
* emacsclient.desktop: Remove -a option from Exec since it does
diff --git a/emacsclient.desktop b/emacsclient.desktop
index ebfa37c..a9fefbb 100644
--- a/emacsclient.desktop
+++ b/emacsclient.desktop
@@ -2,7 +2,7 @@
Name=Emacsclient
Comment=Tell a running Emacs to visit a file
Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen
-Comment[es]=Abrir un archivo en en Emacs corriente
+Comment[es]=Abrir un archivo en un Emacs corriente
Comment[fr]=Ouvre un fichier dans une instance d'Emacs qui est déjà lancée
Icon=emacs
NoDisplay=true
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 commit in: /
@ 2012-05-06 16:07 Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
0 siblings, 1 reply; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 5b8a03fe64c300ea09691f5146276fd1f59024a9
Author: Christian Faulhammer <opfer <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 6 18:42:31 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Thu Dec 6 18:42:31 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=5b8a03fe
raise version number and add an additional empty line
svn path=/emacs-extra/emacs-desktop/; revision=837
---
ChangeLog | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index dee2547..8393173 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2007-12-06 Christian Faulhammer <opfer@gentoo.org>
+ * version 0.3
+
* emacsclient.desktop (Comment): German and Spanish translation
added, others welcome
(Icon): Extension removed
@@ -20,5 +22,5 @@
2007-03-30 Ulrich Mueller <ulm@gentoo.org>
* Split off from eselect-emacs.
- * version 0.1
+ * version 0.1
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1030 commit in: /
@ 2012-05-06 16:07 Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
0 siblings, 1 reply; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 986d5f5629d49334c125bfe540e389c79ced5c93
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 7 14:32:33 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Dec 7 14:32:33 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=986d5f56
Set charset to UTF-8.
svn path=/emacs-extra/emacs-desktop/; revision=840
^ permalink raw reply [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1030 commit in: /
@ 2012-05-06 16:07 Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
0 siblings, 1 reply; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:07 UTC (permalink / raw
To: gentoo-commits
commit: 8bfe909fe12dc443a6a73e18a0d39d63b5e509fa
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 7 14:16:50 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Dec 7 14:16:50 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=8bfe909f
Add French translation.
svn path=/emacs-extra/emacs-desktop/; revision=839
---
ChangeLog | 8 ++++++++
emacs.desktop | 1 +
emacsclient.desktop | 9 +++++----
3 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8393173..ceed51b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-12-07 Ulrich Mueller <ulm@gentoo.org>
+
+ * emacsclient.desktop: Remove -a option from Exec since it does
+ not work properly anyway. Remove trailing full stop from comments.
+ Add French translation.
+
+ * emacs.desktop: Add French translation.
+
2007-12-06 Christian Faulhammer <opfer@gentoo.org>
* version 0.3
diff --git a/emacs.desktop b/emacs.desktop
index 4a0d8e3..bf7fbc3 100644
--- a/emacs.desktop
+++ b/emacs.desktop
@@ -4,6 +4,7 @@ GenericName=Emacs
Comment=Emacs is the extensible, customizable, self-documenting real-time display editor.
Comment[de]=Emacs ist der erweiterbare, anpassbare, selbst-dokumentierende Echtzeit-Editor
Comment[es]=Emacs es un editor ampliable, adaptable, mismo documentado, de tiempo real
+Comment[fr]=Emacs est l'éditeur plein écran avancé, auto-documenté, personnalisable et extensible
Icon=emacs
TryExec=/usr/bin/emacs
Exec=/usr/bin/emacs %F
diff --git a/emacsclient.desktop b/emacsclient.desktop
index 8936ace..ebfa37c 100644
--- a/emacsclient.desktop
+++ b/emacsclient.desktop
@@ -1,12 +1,13 @@
[Desktop Entry]
Name=Emacsclient
-Comment=Tell a running Emacs to visit a file.
-Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen.
-Comment[es]=Abrir un archivo en en Emacs corriente.
+Comment=Tell a running Emacs to visit a file
+Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen
+Comment[es]=Abrir un archivo en en Emacs corriente
+Comment[fr]=Ouvre un fichier dans une instance d'Emacs qui est déjà lancée
Icon=emacs
NoDisplay=true
TryExec=/usr/bin/emacsclient
-Exec=/usr/bin/emacsclient -a /usr/bin/emacs %F
+Exec=/usr/bin/emacsclient %F
Terminal=false
Type=Application
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1030 " Sebastian Pipping
@ 2012-05-06 16:06 ` Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 8bfe909fe12dc443a6a73e18a0d39d63b5e509fa
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 7 14:16:50 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Dec 7 14:16:50 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=8bfe909f
Add French translation.
svn path=/emacs-extra/emacs-desktop/; revision=839
---
ChangeLog | 8 ++++++++
emacs.desktop | 1 +
emacsclient.desktop | 9 +++++----
3 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8393173..ceed51b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-12-07 Ulrich Mueller <ulm@gentoo.org>
+
+ * emacsclient.desktop: Remove -a option from Exec since it does
+ not work properly anyway. Remove trailing full stop from comments.
+ Add French translation.
+
+ * emacs.desktop: Add French translation.
+
2007-12-06 Christian Faulhammer <opfer@gentoo.org>
* version 0.3
diff --git a/emacs.desktop b/emacs.desktop
index 4a0d8e3..bf7fbc3 100644
--- a/emacs.desktop
+++ b/emacs.desktop
@@ -4,6 +4,7 @@ GenericName=Emacs
Comment=Emacs is the extensible, customizable, self-documenting real-time display editor.
Comment[de]=Emacs ist der erweiterbare, anpassbare, selbst-dokumentierende Echtzeit-Editor
Comment[es]=Emacs es un editor ampliable, adaptable, mismo documentado, de tiempo real
+Comment[fr]=Emacs est l'éditeur plein écran avancé, auto-documenté, personnalisable et extensible
Icon=emacs
TryExec=/usr/bin/emacs
Exec=/usr/bin/emacs %F
diff --git a/emacsclient.desktop b/emacsclient.desktop
index 8936ace..ebfa37c 100644
--- a/emacsclient.desktop
+++ b/emacsclient.desktop
@@ -1,12 +1,13 @@
[Desktop Entry]
Name=Emacsclient
-Comment=Tell a running Emacs to visit a file.
-Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen.
-Comment[es]=Abrir un archivo en en Emacs corriente.
+Comment=Tell a running Emacs to visit a file
+Comment[de]=In einer laufenden Emacs-Instanz eine Datei öffnen
+Comment[es]=Abrir un archivo en en Emacs corriente
+Comment[fr]=Ouvre un fichier dans une instance d'Emacs qui est déjà lancée
Icon=emacs
NoDisplay=true
TryExec=/usr/bin/emacsclient
-Exec=/usr/bin/emacsclient -a /usr/bin/emacs %F
+Exec=/usr/bin/emacsclient %F
Terminal=false
Type=Application
MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: d774abb61f4429b81cebe0e85197929e352173bd
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 17 07:07:55 2012 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Mar 17 07:07:55 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=d774abb6
Allow UTF-8 characters in ChangeLog.
svn path=/emacs-common-gentoo/; revision=1726
---
ChangeLog | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d6c9dc9..2758d9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,15 +1,15 @@
-2011-12-06 Ulrich Mueller <ulm@gentoo.org>
+2011-12-06 Ulrich Müller <ulm@gentoo.org>
* Version 1.3 released.
* site-start.el: New file.
* Makefile (DISTFILES): Update.
-2010-11-17 Ulrich Mueller <ulm@gentoo.org>
+2010-11-17 Ulrich Müller <ulm@gentoo.org>
* icons/emacs.svg: Update from Emacs 23.2.
-2009-08-08 Ulrich Mueller <ulm@gentoo.org>
+2009-08-08 Ulrich Müller <ulm@gentoo.org>
* Version 1.2 released.
@@ -19,25 +19,25 @@
* icons/COPYRIGHT.icons: Update.
* Makefile (ICONFILES): Update.
-2009-07-11 Ulrich Mueller <ulm@gentoo.org>
+2009-07-11 Ulrich Müller <ulm@gentoo.org>
* icons/emacs23.svg: Update from Emacs CVS.
-2009-04-22 Ulrich Mueller <ulm@gentoo.org>
+2009-04-22 Ulrich Müller <ulm@gentoo.org>
* Version 1.1 released.
-2009-04-12 Ulrich Mueller <ulm@gentoo.org>
+2009-04-12 Ulrich Müller <ulm@gentoo.org>
* icons/emacs23.svg: New file, SVG icon from Emacs CVS trunk.
* icons/COPYRIGHT.icons: Update.
* Makefile (ICONFILES): Update.
-2009-04-10 Ulrich Mueller <ulm@gentoo.org>
+2009-04-10 Ulrich Müller <ulm@gentoo.org>
* emacs.desktop (StartupWMClass): Key added.
-2009-04-05 Ulrich Mueller <ulm@gentoo.org>
+2009-04-05 Ulrich Müller <ulm@gentoo.org>
* icons/emacs.png, icons/emacs_16.png, icons/emacs_24.png:
* icons/emacs_32.png, icons/emacs_48.png: Moved to subdirectory.
@@ -53,7 +53,7 @@
(ICONFILES): New variable.
(DISTFILES): Update.
-2009-03-07 Ulrich Mueller <ulm@gentoo.org>
+2009-03-07 Ulrich Müller <ulm@gentoo.org>
* Version 1.0 released.
@@ -63,7 +63,7 @@
* subdirs.el: New file.
* Makefile (DISTFILES): Add it.
-2007-12-28 Ulrich Mueller <ulm@gentoo.org>
+2007-12-28 Ulrich Müller <ulm@gentoo.org>
* Version 0.3 released.
@@ -78,7 +78,7 @@
* emacsclient.desktop (Comment): Correct typo in Spanish
translation, pointed out by ulm
-2007-12-07 Ulrich Mueller <ulm@gentoo.org>
+2007-12-07 Ulrich Müller <ulm@gentoo.org>
* emacsclient.desktop: Remove -a option from Exec since it does
not work properly anyway. Remove trailing full stop from comments.
@@ -97,27 +97,27 @@
(Icon): Extension removed
(Categories): Application removed as it is obsolete
-2007-05-24 Ulrich Mueller <ulm@gentoo.org>
+2007-05-24 Ulrich Müller <ulm@gentoo.org>
* Makefile (PV): Extract PV from new ChangeLog format.
-2007-04-15 Ulrich Mueller <ulm@gentoo.org>
+2007-04-15 Ulrich Müller <ulm@gentoo.org>
* Version 0.2 released.
* Makefile: New file.
-2007-03-30 Ulrich Mueller <ulm@gentoo.org>
+2007-03-30 Ulrich Müller <ulm@gentoo.org>
* Version 0.1 released.
-2007-03-23 Ulrich Mueller <ulm@gentoo.org>
+2007-03-23 Ulrich Müller <ulm@gentoo.org>
* emacsclient.desktop: New file.
* emacs.desktop (MimeType, TryExec): Add keys.
-2007-03-21 Ulrich Mueller <ulm@gentoo.org>
+2007-03-21 Ulrich Müller <ulm@gentoo.org>
* emacs_*.png, gnured_48.png: Added two alternative icons (not
used yet): emacs_*.png is from etc/images/icons of the Emacs
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: f7cc11edf63636815ccde0d8717c7ea870d699d8
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 6 04:47:34 2011 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Dec 6 04:47:34 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=f7cc11ed
Add site-start.el file.
svn path=/emacs-common-gentoo/; revision=1665
---
ChangeLog | 7 ++++++-
Makefile | 4 ++--
site-start.el | 12 ++++++++++++
3 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 075efcc..410724a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-12-06 Ulrich Mueller <ulm@gentoo.org>
+
+ * site-start.el: New file.
+ * Makefile (DISTFILES): Update.
+
2010-11-17 Ulrich Mueller <ulm@gentoo.org>
* icons/emacs.svg: Update from Emacs 23.2.
@@ -125,6 +130,6 @@
* emacs.desktop, emacs.png: New files.
-Copyright 2007-2010 Gentoo Foundation
+Copyright 2007-2011 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2 or later
$Id$
diff --git a/Makefile b/Makefile
index 2ece9a1..3a076d0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright 2007-2010 Gentoo Foundation
+# Copyright 2007-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 or later
# $Id$
@@ -12,7 +12,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 = subdirs.el $(DESKTOPFILES) \
+DISTFILES = site-start.el subdirs.el $(DESKTOPFILES) \
$(addprefix icons/,COPYRIGHT.icons $(ICONFILES))
diff --git a/site-start.el b/site-start.el
new file mode 100644
index 0000000..d4b51c4
--- /dev/null
+++ b/site-start.el
@@ -0,0 +1,12 @@
+;;; site-start.el -*- no-byte-compile: t -*-
+
+;;; Commentary:
+;; This is the site startup file for GNU Emacs. It is loaded before
+;; the user's init file. You may modify this file or replace or it
+;; by your own site initialisation.
+
+;;; Code:
+;; Load site initialisation for Gentoo installed packages.
+(require 'site-gentoo)
+
+;;; site-start.el ends here
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: e9324c2f88e3d96b8e04b77720d9d0a197e212c1
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 17 22:07:40 2010 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Wed Nov 17 22:07:40 2010 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=e9324c2f
ChangeLog entry.
svn path=/emacs-common-gentoo/; revision=1591
---
ChangeLog | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index bfcabdb..075efcc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-11-17 Ulrich Mueller <ulm@gentoo.org>
+
+ * icons/emacs.svg: Update from Emacs 23.2.
+
2009-08-08 Ulrich Mueller <ulm@gentoo.org>
* Version 1.2 released.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 014a79cceb7a91c2dee18a57b654d04ec7780584
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 6 04:52:03 2011 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Dec 6 04:52:03 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=014a79cc
Version 1.3 released.
svn path=/emacs-common-gentoo/; revision=1666
---
ChangeLog | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 410724a..d6c9dc9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2011-12-06 Ulrich Mueller <ulm@gentoo.org>
+ * Version 1.3 released.
+
* site-start.el: New file.
* Makefile (DISTFILES): Update.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 77d7d16ed6fc7c9c1ec9c57356bc1caf77782ae4
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 22 21:34:23 2009 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Wed Apr 22 21:34:23 2009 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=77d7d16e
Version 1.1 released.
svn path=/emacs-common-gentoo/; revision=1265
---
ChangeLog | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8e9f0a0..01b2982 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-04-22 Ulrich Mueller <ulm@gentoo.org>
+
+ * Version 1.1 released.
+
2009-04-12 Ulrich Mueller <ulm@gentoo.org>
* icons/emacs23.svg: New file, SVG icon from Emacs CVS trunk.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: cab9ed7f980016509d596a040e9777673f33e876
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 16 10:58:27 2010 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Feb 16 10:58:27 2010 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=cab9ed7f
Add svn keywords.
svn path=/emacs-common-gentoo/; revision=1523
---
ChangeLog | 3 ++-
Makefile | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6bf8838..bfcabdb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -121,5 +121,6 @@
* emacs.desktop, emacs.png: New files.
-Copyright 2007-2009 Gentoo Foundation
+Copyright 2007-2010 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2 or later
+$Id$
diff --git a/Makefile b/Makefile
index 30694b6..2ece9a1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
-# Copyright 2007-2009 Gentoo Foundation
+# Copyright 2007-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2 or later
+# $Id$
PN = emacs-common-gentoo
PV = $(shell sed '/^[ \t]*\* [Vv]ersion/!d;s/[^0-9.]*\([^ \t]*\).*/\1/;q' \
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 7110c52181891623f4a5f0918c5a479a084a90e1
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 02:01:22 2009 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 02:01:22 2009 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=7110c521
Version 1.2 released.
svn path=/emacs-common-gentoo/; revision=1340
---
ChangeLog | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 06d6ca0..6bf8838 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2009-08-08 Ulrich Mueller <ulm@gentoo.org>
+ * Version 1.2 released.
+
* icons/emacs22_*.png, icons/emacs_*.png, icons/gnone-emacs.png:
Renamed from emacs_*.png, emacs23_*.png, and emacs.png,
respectively. New default following release of Emacs 23.
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 2c7087113df66f6d224e97ee5c7eb5ad239191b5
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 7 12:06:04 2009 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Mar 7 12:06:04 2009 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=2c708711
New file subdirs.el.
svn path=/emacs-common-gentoo/; revision=1234
---
ChangeLog | 15 ++++++++++++---
Makefile | 10 ++++------
subdirs.el | 3 +++
3 files changed, 19 insertions(+), 9 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 4415c74..6c06e29 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,13 +1,22 @@
+2009-03-07 Ulrich Mueller <ulm@gentoo.org>
+
+ * version 1.0
+
+ * Makefile (PN): Package renamed from emacs-desktop to
+ emacs-common-gentoo since it is more general now.
+
+ * subdirs.el: New file.
+ * Makefile (DISTFILES): Add it.
+
2007-12-28 Ulrich Mueller <ulm@gentoo.org>
* version 0.3
* Makefile (DESKTOPFILES): Validate with desktop-file-validate.
- * emacsclient.desktop: Ditto.
-
* emacs.desktop: Canonical ordering for desktop entry keys.
(Version): Key added.
+ * emacsclient.desktop: Ditto.
2007-12-10 Christian Faulhammer <opfer@gentoo.org>
@@ -60,5 +69,5 @@
* emacs.desktop (Type): Set Type=Application only
-Copyright 2007-2008 Gentoo Foundation
+Copyright 2007-2009 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2
diff --git a/Makefile b/Makefile
index 47e2819..911e2e8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,13 @@
-# Copyright 2007-2008 Gentoo Foundation
+# Copyright 2007-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-PN = emacs-desktop
-#PV = $(shell sed '/^Version/h;$$!d;g;s/[^0-9.]*\([0-9.]*\).*/\1/' ChangeLog)
-PV = $(shell sed '/^[ \t]*\* [Vv]ersion/!d;s/[^0-9.]*\([0-9.]*\).*/\1/;q' \
+PN = emacs-common-gentoo
+PV = $(shell sed '/^[ \t]*\* [Vv]ersion/!d;s/[^0-9.]*\([^ \t]*\).*/\1/;q' \
ChangeLog)
P = $(PN)-$(PV)
DESKTOPFILES = emacs.desktop emacsclient.desktop
-DISTFILES = $(DESKTOPFILES) \
- README.icons emacs.png \
+DISTFILES = subdirs.el $(DESKTOPFILES) README.icons emacs.png \
emacs_16.png emacs_24.png emacs_32.png emacs_48.png gnured_48.png
diff --git a/subdirs.el b/subdirs.el
new file mode 100644
index 0000000..ee1c123
--- /dev/null
+++ b/subdirs.el
@@ -0,0 +1,3 @@
+;; -*- no-byte-compile: t -*-
+(if (fboundp 'normal-top-level-add-subdirs-to-load-path)
+ (normal-top-level-add-subdirs-to-load-path))
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 7bbb6c6ce02afadf8a5498b0712b0269fbb414e0
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 7 19:55:59 2009 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sat Mar 7 19:55:59 2009 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=7bbb6c6c
Release tags brought in line with other packages. Add some missing entries.
svn path=/emacs-common-gentoo/; revision=1235
---
ChangeLog | 18 +++++++++++++-----
1 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 6c06e29..b76f054 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
2009-03-07 Ulrich Mueller <ulm@gentoo.org>
- * version 1.0
+ * Version 1.0 released.
* Makefile (PN): Package renamed from emacs-desktop to
emacs-common-gentoo since it is more general now.
@@ -10,7 +10,7 @@
2007-12-28 Ulrich Mueller <ulm@gentoo.org>
- * version 0.3
+ * Version 0.3 released.
* Makefile (DESKTOPFILES): Validate with desktop-file-validate.
@@ -48,11 +48,13 @@
2007-04-15 Ulrich Mueller <ulm@gentoo.org>
- * version 0.2
+ * Version 0.2 released.
+
+ * Makefile: New file.
2007-03-30 Ulrich Mueller <ulm@gentoo.org>
- * version 0.1
+ * Version 0.1 released.
2007-03-23 Ulrich Mueller <ulm@gentoo.org>
@@ -63,11 +65,17 @@
2007-03-21 Ulrich Mueller <ulm@gentoo.org>
* emacs_*.png, gnured_48.png: Added two alternative icons (not
- used yet): emacs_48.png is from etc/images/icons of the Emacs
+ used yet): emacs_*.png is from etc/images/icons of the Emacs
sources, gnured_48.png is based on an image taken from
http://www.ee.ryerson.ca/~elf/emacs/logo/ and scaled down.
+ * README.icons: New file, licence info for images.
+
* emacs.desktop (Type): Set Type=Application only
+2007-03-15 Christian Faulhammer <opfer@gentoo.org>
+
+ * emacs.desktop, emacs.png: New files.
+
Copyright 2007-2009 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 547db4d8b3adbb9559b96f69c2a480bf55542305
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 10 11:35:37 2009 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Apr 10 11:35:37 2009 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=547db4d8
Add StartupWMClass key.
svn path=/emacs-common-gentoo/; revision=1243
---
ChangeLog | 4 ++++
emacs.desktop | 1 +
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index fc7aea5..848afb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-04-10 Ulrich Mueller <ulm@gentoo.org>
+
+ * emacs.desktop (StartupWMClass): Key added.
+
2009-04-05 Ulrich Mueller <ulm@gentoo.org>
* icons/emacs.png, icons/emacs_16.png, icons/emacs_24.png:
diff --git a/emacs.desktop b/emacs.desktop
index 2e7318f..56be38c 100644
--- a/emacs.desktop
+++ b/emacs.desktop
@@ -13,3 +13,4 @@ Exec=/usr/bin/emacs %F
Terminal=false
MimeType=text/css;text/english;text/html;text/plain;text/x-c;text/x-chdr;text/x-csrc;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-java;text/x-makefile;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;
Categories=Development;TextEditor;
+StartupWMClass=Emacs
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 0ab5122f32741c3e68d5ee2f359b8d97c4fdfeba
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 23 09:37:52 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Dec 23 09:37:52 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=0ab5122f
Add MIME types for css and html, sort the list.
svn path=/emacs-extra/emacs-desktop/; revision=889
---
emacs.desktop | 2 +-
emacsclient.desktop | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/emacs.desktop b/emacs.desktop
index bf7fbc3..4192803 100644
--- a/emacs.desktop
+++ b/emacs.desktop
@@ -11,4 +11,4 @@ Exec=/usr/bin/emacs %F
Terminal=false
Type=Application
Categories=Development;TextEditor;
-MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
+MimeType=text/css;text/english;text/html;text/plain;text/x-c;text/x-chdr;text/x-csrc;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-java;text/x-makefile;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;
diff --git a/emacsclient.desktop b/emacsclient.desktop
index a9fefbb..4a43404 100644
--- a/emacsclient.desktop
+++ b/emacsclient.desktop
@@ -10,4 +10,4 @@ TryExec=/usr/bin/emacsclient
Exec=/usr/bin/emacsclient %F
Terminal=false
Type=Application
-MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;
+MimeType=text/css;text/english;text/html;text/plain;text/x-c;text/x-chdr;text/x-csrc;text/x-c++;text/x-c++hdr;text/x-c++src;text/x-java;text/x-makefile;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 396b0f31ace5c3ce877e6c449d8e2ba14e46a8d3
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 4 17:43:48 2008 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Fri Apr 4 17:43:48 2008 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=396b0f31
Add copyright notices.
svn path=/emacs-desktop/; revision=1039
---
ChangeLog | 3 +++
Makefile | 3 +++
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index e4b1451..c87e0a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -46,3 +46,6 @@
* Split off from eselect-emacs.
* version 0.1
+
+Copyright 2007-2008 Gentoo Foundation
+Distributed under the terms of the GNU General Public License v2
diff --git a/Makefile b/Makefile
index 4eca6f4..47e2819 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,6 @@
+# Copyright 2007-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
PN = emacs-desktop
#PV = $(shell sed '/^Version/h;$$!d;g;s/[^0-9.]*\([0-9.]*\).*/\1/' ChangeLog)
PV = $(shell sed '/^[ \t]*\* [Vv]ersion/!d;s/[^0-9.]*\([0-9.]*\).*/\1/;q' \
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: 996fefe2898cc60f150eb15b10268f71254203ca
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 12 21:58:41 2008 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Tue Aug 12 21:58:41 2008 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=996fefe2
Move old ChangeLog entries to appropriate file.
svn path=/emacs-desktop/; revision=1087
---
ChangeLog | 17 +++++++++++++++--
1 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index c87e0a7..4415c74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -43,9 +43,22 @@
2007-03-30 Ulrich Mueller <ulm@gentoo.org>
- * Split off from eselect-emacs.
-
* version 0.1
+2007-03-23 Ulrich Mueller <ulm@gentoo.org>
+
+ * emacsclient.desktop: New file.
+
+ * emacs.desktop (MimeType, TryExec): Add keys.
+
+2007-03-21 Ulrich Mueller <ulm@gentoo.org>
+
+ * emacs_*.png, gnured_48.png: Added two alternative icons (not
+ used yet): emacs_48.png is from etc/images/icons of the Emacs
+ sources, gnured_48.png is based on an image taken from
+ http://www.ee.ryerson.ca/~elf/emacs/logo/ and scaled down.
+
+ * emacs.desktop (Type): Set Type=Application only
+
Copyright 2007-2008 Gentoo Foundation
Distributed under the terms of the GNU General Public License v2
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: /
@ 2012-05-06 16:06 Sebastian Pipping
0 siblings, 0 replies; 34+ messages in thread
From: Sebastian Pipping @ 2012-05-06 16:06 UTC (permalink / raw
To: gentoo-commits
commit: f87ac26650d406fe14dfa581bb9fdb115a591ea4
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 23 09:13:14 2007 +0000
Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
CommitDate: Sun Dec 23 09:13:14 2007 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=f87ac266
Remove version tag since 0.3 is not released yet.
svn path=/emacs-extra/emacs-desktop/; revision=888
---
ChangeLog | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a51db59..f5020d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,8 +13,6 @@
2007-12-06 Christian Faulhammer <opfer@gentoo.org>
- * version 0.3
-
* emacsclient.desktop (Comment): German and Spanish translation
added, others welcome
(Icon): Extension removed
^ permalink raw reply related [flat|nested] 34+ messages in thread
end of thread, other threads:[~2021-02-25 17:39 UTC | newest]
Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-23 20:44 [gentoo-commits] proj/emacs-tools:emacs-common-gentoo commit in: / Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2021-02-25 17:39 Ulrich Müller
2021-02-25 17:39 Ulrich Müller
2018-12-09 22:36 Ulrich Müller
2018-09-16 14:49 Ulrich Müller
2017-02-04 14:35 Ulrich Müller
2017-02-04 14:35 Ulrich Müller
2015-02-23 20:44 Ulrich Müller
2015-02-23 20:44 Ulrich Müller
2014-08-28 12:14 Ulrich Müller
2013-11-16 12:50 Ulrich Müller
2013-11-16 12:50 Ulrich Müller
2013-11-15 13:31 Ulrich Müller
2012-05-06 18:47 Ulrich Mueller
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 " Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 " Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 " Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1233 " Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1030 " Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
2012-05-06 16:07 [gentoo-commits] proj/emacs-tools:backups/emacs-common-gentoo@1030 " Sebastian Pipping
2012-05-06 16:06 ` [gentoo-commits] proj/emacs-tools:emacs-common-gentoo " Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
2012-05-06 16:06 Sebastian Pipping
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox