app-emacs/s: new package.
authorVictor Gaydov <victor@enise.org>
Tue, 9 Aug 2016 16:12:22 +0000 (19:12 +0300)
committerPatrice Clement <monsieurp@gentoo.org>
Fri, 9 Sep 2016 13:34:39 +0000 (15:34 +0200)
s.el, the long lost Emacs string manipulation library.
Dependency of app-emacs/f-el.

Gentoo-Bug: https://bugs.gentoo.org/590890
Closes: https://github.com/gentoo/gentoo/pull/2050

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
app-emacs/s/Manifest [new file with mode: 0644]
app-emacs/s/files/50s-gentoo.el [new file with mode: 0644]
app-emacs/s/metadata.xml [new file with mode: 0644]
app-emacs/s/s-1.11.0.ebuild [new file with mode: 0644]

diff --git a/app-emacs/s/Manifest b/app-emacs/s/Manifest
new file mode 100644 (file)
index 0000000..b12c2aa
--- /dev/null
@@ -0,0 +1 @@
+DIST s-1.11.0.tar.gz 46771 SHA256 826d186458f7568f1304bca0c094034a9e7370bd2858dcf806dd513abe2d384f SHA512 364fa7ea875e9be6db464a826c1259889b67d87817b41cff40ab7da80e0bfc3e27dcadadfd005a64a895ee92644c2dea82789bdf1b1fe538501c40f748455608 WHIRLPOOL cccae8d9539dbc91da97e68dd88e13b08bd2ba1a414b62bb431c43dc1f4c8b1e4a8d37996a861d7817763bc08c4fee53dd9a4f8134ba0719f33b6e6f6a4b7496
diff --git a/app-emacs/s/files/50s-gentoo.el b/app-emacs/s/files/50s-gentoo.el
new file mode 100644 (file)
index 0000000..431f7e9
--- /dev/null
@@ -0,0 +1 @@
+(add-to-list 'load-path "@SITELISP@")
diff --git a/app-emacs/s/metadata.xml b/app-emacs/s/metadata.xml
new file mode 100644 (file)
index 0000000..57bb313
--- /dev/null
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>victor@enise.org</email>
+    <name>Victor Gaydov</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>gnu-emacs@gentoo.org</email>
+    <name>Gentoo GNU Emacs project</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
+</pkgmetadata>
diff --git a/app-emacs/s/s-1.11.0.ebuild b/app-emacs/s/s-1.11.0.ebuild
new file mode 100644 (file)
index 0000000..680b339
--- /dev/null
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit elisp
+
+DESCRIPTION="The long lost Emacs string manipulation library"
+HOMEPAGE="https://github.com/magnars/s.el"
+SRC_URI="https://github.com/magnars/s.el/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/s.el-${PV}"
+SITEFILE="50${PN}-gentoo.el"
+DOCS="README.md"