emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/gnorb afd587b 003/449: Basic project structure.


From: Stefan Monnier
Subject: [elpa] externals/gnorb afd587b 003/449: Basic project structure.
Date: Fri, 27 Nov 2020 23:14:56 -0500 (EST)

branch: externals/gnorb
commit afd587b836fe925e0f5309f7fabb1a714dc56bc6
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Eric Abrahamsen <eric@ericabrahamsen.net>

    Basic project structure.
---
 lisp/gnorb-bbdb.el | 31 +++++++++++++++++++++++++++++++
 lisp/gnorb-gnus.el | 31 +++++++++++++++++++++++++++++++
 lisp/gnorb-org.el  | 32 ++++++++++++++++++++++++++++++++
 lisp/gnorb.el      | 36 ++++++++++++++++++++++++++++++++++++
 4 files changed, 130 insertions(+)

diff --git a/lisp/gnorb-bbdb.el b/lisp/gnorb-bbdb.el
new file mode 100644
index 0000000..5bb16f5
--- /dev/null
+++ b/lisp/gnorb-bbdb.el
@@ -0,0 +1,31 @@
+;;; gnorb-bbdb.el --- The BBDB-centric functions of gnorb
+
+;; Copyright (C) 2014  Eric Abrahamsen
+
+;; Author: Eric Abrahamsen <eric@ericabrahamsen.net>
+;; Keywords: 
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; 
+
+;;; Code:
+
+(require 'bbdb)
+
+
+(provide 'gnorb-bbdb)
+;;; gnorb-bbdb.el ends here
diff --git a/lisp/gnorb-gnus.el b/lisp/gnorb-gnus.el
new file mode 100644
index 0000000..25771e5
--- /dev/null
+++ b/lisp/gnorb-gnus.el
@@ -0,0 +1,31 @@
+;;; gnorb-gnus.el --- The gnus-centric fuctions of gnorb
+
+;; Copyright (C) 2014  Eric Abrahamsen
+
+;; Author: Eric Abrahamsen <eric@ericabrahamsen.net>
+;; Keywords: 
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; 
+
+;;; Code:
+
+(require 'gnus)
+
+
+(provide 'gnorb-gnus)
+;;; gnorb-gnus.el ends here
diff --git a/lisp/gnorb-org.el b/lisp/gnorb-org.el
new file mode 100644
index 0000000..8f586af
--- /dev/null
+++ b/lisp/gnorb-org.el
@@ -0,0 +1,32 @@
+;;; gnorb-org.el --- The Org-centric functions of gnorb
+
+;; Copyright (C) 2014  Eric Abrahamsen
+
+;; Author: Eric Abrahamsen  <eric@ericabrahamsen.net>
+;; Keywords: 
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; 
+
+;;; Code:
+
+(require 'org)
+
+
+
+(provide 'gnorb-org)
+;;; gnorb-org.el ends here
diff --git a/lisp/gnorb.el b/lisp/gnorb.el
new file mode 100644
index 0000000..c8160ff
--- /dev/null
+++ b/lisp/gnorb.el
@@ -0,0 +1,36 @@
+;;; gnorb.el --- Glue code between Gnus, Org, and BBDB
+
+;; Copyright (C) 2014  Eric Abrahamsen
+
+;; Author: Eric Abrahamsen <eric@ericabrahamsen.net>
+;; Keywords: 
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Load this file to load everything.
+
+;;; Code:
+
+(require 'gnus)
+(require 'org)
+(require 'bbdb)
+(require 'gnorb-gnus)
+(require 'gnorb-org)
+(require 'gnorb-bbdb)
+
+
+(provide 'gnorb)
+;;; gnorb.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]