public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/desktop+/, app-emacs/desktop+/files/
@ 2019-10-17 13:19 Ulrich Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Müller @ 2019-10-17 13:19 UTC (permalink / raw
  To: gentoo-commits

commit:     af8eefcbdfae2802779052b89bb2e02ee0776008
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 17 12:50:23 2019 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Thu Oct 17 13:19:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af8eefcb

app-emacs/desktop+: Inline autoloads.

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 .../{desktop+-0.2.ebuild => desktop+-0.2-r1.ebuild}      | 16 ++++++----------
 app-emacs/desktop+/files/50desktop+-gentoo.el            |  9 ++++++++-
 2 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/app-emacs/desktop+/desktop+-0.2.ebuild b/app-emacs/desktop+/desktop+-0.2-r1.ebuild
similarity index 68%
rename from app-emacs/desktop+/desktop+-0.2.ebuild
rename to app-emacs/desktop+/desktop+-0.2-r1.ebuild
index adf858b1a86..b4016a3364f 100644
--- a/app-emacs/desktop+/desktop+-0.2.ebuild
+++ b/app-emacs/desktop+/desktop+-0.2-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit elisp
 
@@ -11,17 +11,13 @@ SRC_URI="https://github.com/ffevotte/desktop-plus/archive/v${PV}.tar.gz -> ${P}.
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 RESTRICT="test"
 
-RDEPEND="app-emacs/dash app-emacs/f"
-DEPEND="${RDEPEND}"
+RDEPEND="app-emacs/dash
+	app-emacs/f"
+BDEPEND="${RDEPEND}"
 
 S="${WORKDIR}/desktop-plus-${PV}"
 SITEFILE="50${PN}-gentoo.el"
 DOCS="README.md"
-
-src_compile() {
-	elisp-compile *.el
-	elisp-make-autoload-file
-}

diff --git a/app-emacs/desktop+/files/50desktop+-gentoo.el b/app-emacs/desktop+/files/50desktop+-gentoo.el
index ca3b3828a3e..6ccccf547c0 100644
--- a/app-emacs/desktop+/files/50desktop+-gentoo.el
+++ b/app-emacs/desktop+/files/50desktop+-gentoo.el
@@ -1,2 +1,9 @@
 (add-to-list 'load-path "@SITELISP@")
-(load "desktop+-autoloads" nil t)
+(autoload 'desktop+-create "desktop+"
+  "Create a new session, identified by a name." t)
+(autoload 'desktop+-load "desktop+"
+  "Load a session previously created using `desktop+-create'." t)
+(autoload 'desktop+-create-auto "desktop+"
+  "Create a new session, identified by the current working directory." t)
+(autoload 'desktop+-load-auto "desktop+"
+  "Load a session previously created using `desktop+-create-auto'. t)


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-emacs/desktop+/, app-emacs/desktop+/files/
@ 2019-10-18 20:21 Ulrich Müller
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Müller @ 2019-10-18 20:21 UTC (permalink / raw
  To: gentoo-commits

commit:     3428ee0a9bd7e21147de08992e5d3c47789c4e8c
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 18 20:18:19 2019 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Oct 18 20:21:14 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3428ee0a

app-emacs/desktop+: Fix typo in site-init file.

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-emacs/desktop+/{desktop+-0.2-r1.ebuild => desktop+-0.2-r2.ebuild} | 0
 app-emacs/desktop+/files/50desktop+-gentoo.el                         | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/desktop+/desktop+-0.2-r1.ebuild b/app-emacs/desktop+/desktop+-0.2-r2.ebuild
similarity index 100%
rename from app-emacs/desktop+/desktop+-0.2-r1.ebuild
rename to app-emacs/desktop+/desktop+-0.2-r2.ebuild

diff --git a/app-emacs/desktop+/files/50desktop+-gentoo.el b/app-emacs/desktop+/files/50desktop+-gentoo.el
index 6ccccf547c0..49a731f077e 100644
--- a/app-emacs/desktop+/files/50desktop+-gentoo.el
+++ b/app-emacs/desktop+/files/50desktop+-gentoo.el
@@ -6,4 +6,4 @@
 (autoload 'desktop+-create-auto "desktop+"
   "Create a new session, identified by the current working directory." t)
 (autoload 'desktop+-load-auto "desktop+"
-  "Load a session previously created using `desktop+-create-auto'. t)
+  "Load a session previously created using `desktop+-create-auto'." t)


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-10-18 20:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-17 13:19 [gentoo-commits] repo/gentoo:master commit in: app-emacs/desktop+/, app-emacs/desktop+/files/ Ulrich Müller
  -- strict thread matches above, loose matches on Subject: below --
2019-10-18 20:21 Ulrich Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox