diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-emacs/bm | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-emacs/bm')
-rw-r--r-- | app-emacs/bm/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/bm/bm-1.32_p20140214.ebuild | 22 | ||||
-rw-r--r-- | app-emacs/bm/files/50bm-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/bm/metadata.xml | 9 |
4 files changed, 36 insertions, 0 deletions
diff --git a/app-emacs/bm/Manifest b/app-emacs/bm/Manifest new file mode 100644 index 000000000000..51a01c2e9f1c --- /dev/null +++ b/app-emacs/bm/Manifest @@ -0,0 +1 @@ +DIST bm-1.32_p20140214.tar.xz 11800 SHA256 abd338d61ae10dff9c0635cac0f5fa3724605ec8bd2715738a7df000e2ed2ab9 SHA512 0a40c5dc3d21c0b8af7e885f7e2f48c92413dff48a6a3a10366f9a63274886cd22a247b61ef25e4ad1f283446b05093658f233c6501c6d0bf5312d9a67b83ff4 WHIRLPOOL 0937952bf331b24aae55fdf476522a7a9f6de84ebc541fde49dbc6e27738d229393dfddc2d822c844adc1f95846476bad81f63edd35f086139f6d9de056d94ac diff --git a/app-emacs/bm/bm-1.32_p20140214.ebuild b/app-emacs/bm/bm-1.32_p20140214.ebuild new file mode 100644 index 000000000000..0255eaa759f3 --- /dev/null +++ b/app-emacs/bm/bm-1.32_p20140214.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit elisp + +DESCRIPTION="Visible bookmarks in buffer" +HOMEPAGE="http://www.nongnu.org/bm/ + http://www.emacswiki.org/emacs/VisibleBookmarks" +# snapshot of https://github.com/joodland/bm.git +SRC_URI="http://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 x86" + +S="${WORKDIR}/${PN}" +ELISP_REMOVE="bm-tests.el" +SITEFILE="50${PN}-gentoo.el" +DOCS="README.md" diff --git a/app-emacs/bm/files/50bm-gentoo.el b/app-emacs/bm/files/50bm-gentoo.el new file mode 100644 index 000000000000..fd404a9efb81 --- /dev/null +++ b/app-emacs/bm/files/50bm-gentoo.el @@ -0,0 +1,4 @@ +(add-to-list 'load-path "@SITELISP@") +(autoload 'bm-toggle "bm" "Toggle bookmark in current buffer." t) +(autoload 'bm-next "bm" "Goto bookmark." t) +(autoload 'bm-previous "bm" "Goto previous bookmark." t) diff --git a/app-emacs/bm/metadata.xml b/app-emacs/bm/metadata.xml new file mode 100644 index 000000000000..0587eac4d913 --- /dev/null +++ b/app-emacs/bm/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>emacs</herd> +<longdescription> + This package provides visible, buffer local, bookmarks and the ability to + jump forward and backward to the next bookmark. +</longdescription> +</pkgmetadata> |