summaryrefslogtreecommitdiff
path: root/app-emacs/org-modern
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-10 09:20:14 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-10 09:20:14 +0000
commitc15acf374d4b25ba5afcb52435da6090f2d98a20 (patch)
treef3be21d2a949edee4af8b18e1d9ae7501ae5f186 /app-emacs/org-modern
parentcaf79cb4f7c4d5f7cce488d8f50dfb98ddbd09ab (diff)
gentoo auto-resync : 10:12:2022 - 09:20:14
Diffstat (limited to 'app-emacs/org-modern')
-rw-r--r--app-emacs/org-modern/Manifest4
-rw-r--r--app-emacs/org-modern/files/50org-modern-gentoo.el7
-rw-r--r--app-emacs/org-modern/metadata.xml20
-rw-r--r--app-emacs/org-modern/org-modern-0.6.ebuild18
4 files changed, 49 insertions, 0 deletions
diff --git a/app-emacs/org-modern/Manifest b/app-emacs/org-modern/Manifest
new file mode 100644
index 000000000000..930e3d7645be
--- /dev/null
+++ b/app-emacs/org-modern/Manifest
@@ -0,0 +1,4 @@
+AUX 50org-modern-gentoo.el 268 BLAKE2B 1c60242a6d203e31583ee774e87f200637b1ca71540b65cae68ea0f9255f5eaa4655345bbf21a3e992a087c7dc5abff49a039dc6d36cec59d1a7d8d973da518c SHA512 0b0fac73188c85d3447e34730fab7431eeeeba56f623e38858aae7a73aeae3160b1c272ee9565899375319194b7817578351ad578bc9123b903c8f169ebcec9b
+DIST org-modern-0.6.tar.gz 23023 BLAKE2B caddb13de8bb5de6d042535ea092d4f681e444cc99095baa2394545d7e78c55860b8aa0581e49c1f95321e4bf42cfa3e898e57f85db0726361173aded80ff162 SHA512 46fd0b37b199916383ec831cb98bcf0c0ab8f3cd2cbb2f93884cbf1919c774d666fc1e83213a51849fa5ddfa5b15917c6f4541af94768cee8bfc787dd30bf5fc
+EBUILD org-modern-0.6.ebuild 424 BLAKE2B 62c9e784e15e65b65b300aae0ba719b167e1b59579df30eca6fc4c0b9eaefc4b4ed339806240e459c308c1ffb5da8bc9439374e1426b3042c5407d417cad8cbc SHA512 3c7909b75cc544928f1ac019d88362bf00c154c410bbdab887f57aebc5780c3ade8cd2dfe545a2852ca4a614801efca62cdf06650bbba458928188abc515b400
+MISC metadata.xml 803 BLAKE2B 76b689a9bee8d6d86128fb80844c575294e9e91812161e735c47eb4fc7c9192539f2109ebbcbdc143abee07426faf6b7cf0bc86c48d411738a8329b14c7b56a1 SHA512 cc417a871bdf3534187e566c197007c848f0974b2b4b58eff473087ef09702a929a9df5f4f1df019a4ca632884e7657db055d0ab58ed2ec328506ff0a4a7fcb6
diff --git a/app-emacs/org-modern/files/50org-modern-gentoo.el b/app-emacs/org-modern/files/50org-modern-gentoo.el
new file mode 100644
index 000000000000..a10b355780f8
--- /dev/null
+++ b/app-emacs/org-modern/files/50org-modern-gentoo.el
@@ -0,0 +1,7 @@
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'global-org-modern-mode "org-modern"
+ "Global org-modern-mode." t)
+(autoload 'org-modern-agenda "org-modern"
+ "Finalize Org agenda highlighting." t)
+(autoload 'org-modern-mode "org-modern"
+ "Modern looks for Org." t)
diff --git a/app-emacs/org-modern/metadata.xml b/app-emacs/org-modern/metadata.xml
new file mode 100644
index 000000000000..68e44f1c601a
--- /dev/null
+++ b/app-emacs/org-modern/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+ <maintainer type="project">
+ <email>gnu-emacs@gentoo.org</email>
+ <name>Gentoo GNU Emacs project</name>
+ </maintainer>
+ <longdescription>
+ This package implements a “modern” style for your Org buffers using font
+ locking and text properties. The package styles headlines, keywords, tables
+ and source blocks. The styling is configurable, you can enable, disable or
+ modify the style of each syntax element individually via the org-modern
+ customization group.
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/minad/org-modern/issues/</bugs-to>
+ <remote-id type="github">minad/org-modern</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/app-emacs/org-modern/org-modern-0.6.ebuild b/app-emacs/org-modern/org-modern-0.6.ebuild
new file mode 100644
index 000000000000..0b55aefd8d63
--- /dev/null
+++ b/app-emacs/org-modern/org-modern-0.6.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp
+
+DESCRIPTION="Modern style for your GNU Emacs Org buffers"
+HOMEPAGE="https://github.com/minad/org-modern/"
+SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz
+ -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DOCS=( README.org example.org )
+SITEFILE="50${PN}-gentoo.el"