debian/0000755000000000000000000000000012260051171007161 5ustar debian/compat0000644000000000000000000000000212260051032010353 0ustar 6 debian/watch0000644000000000000000000000020512260051032010203 0ustar # format version number, currently 3; this line is compulsory! version=3 http://orgmode.org/ \ org-(\d.+)\.tar\.gz debian uupdate debian/emacsen-remove0000644000000000000000000000051612260051032012010 0ustar #!/bin/sh -e # /usr/lib/emacsen-common/packages/remove/org-mode FLAVOR=$1 PACKAGE=org-mode case ${FLAVOR} in emacs) exit 0 ;; # generic emacs package emacs21) exit 0 ;; # not supported anymore as of 6.26a-3 esac echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR} rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE} debian/control0000644000000000000000000000261512260051157010574 0ustar Source: org-mode Section: misc Priority: optional Maintainer: Sebastien Delafond Build-Depends: debhelper (>= 6) Build-Depends-Indep: emacs | emacs24 | emacs23 | emacs-snapshot Standards-Version: 3.9.4 Homepage: http://orgmode.org Package: org-mode Architecture: all Depends: ${misc:Depends}, emacs24 | emacs23 | emacs-snapshot Conflicts: emacsen-common (<< 2.0.0) Recommends: texlive-generic-recommended, texlive-latex-recommended Suggests: easypg, ditaa Description: keep notes, maintain ToDo lists, and do project planning in emacs Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing project planning with a fast and effective plain-text system. . Org-mode develops organizational tasks around NOTES files that contain information about projects as plain text. Org-mode is implemented on top of outline-mode, which makes it possible to keep the content of large files well structured. Visibility cycling and structure editing help to work with the tree. Tables are easily created with a built-in table editor. Org-mode supports ToDo items, deadlines, time stamps, and scheduling. It dynamically compiles entries into an agenda. Plain text URL-like links connect to websites, emails, Usenet messages, BBDB entries, and any files related to the projects. For printing and sharing of notes, an Org-mode file can be exported as a structured ASCII file, HTML, and LaTeX. debian/emacsen-install0000644000000000000000000000302312260051032012155 0ustar #! /bin/sh -e # /usr/lib/emacsen-common/packages/install/org-mode # Written by Jim Van Zandt , borrowing heavily # from the install scripts for gettext by Santiago Vila # and octave by Dirk Eddelbuettel . FLAVOR=$1 PACKAGE=org-mode STAMPFILE=org-wl.elc LOG=$(tempfile -pelc_ -s.log -m644) case ${FLAVOR} in emacs) exit 0 ;; # generic emacs package emacs21) exit 0 ;; # not supported anymore as of 6.26a-3 emacs22) exit 0 ;; # not supported anymore as of 8.x xemacs*) exit 0 ;; # not supported anymore as of 7.x esac echo "install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR}, logged in ${LOG}" FLAVORTEST=$(echo $FLAVOR | cut -c-6) SITEFLAG="--no-site-file" FILES="/usr/share/emacs/site-lisp/${PACKAGE}/*.el" DATAFILES="/usr/share/emacs/site-lisp/${PACKAGE}/etc/styles/*.xml" DATADIR="/usr/share/${FLAVOR}/site-lisp/${PACKAGE}/etc/styles" mkdir -p ${DATADIR} cd ${DATADIR} for i in ${DATAFILES}; do ln -fs $i done ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} install -m 755 -d ${ELCDIR} cd ${ELCDIR} for i in ${FILES}; do ln -fs $i done if [ -n "$EXCLUDE_FILES" ] ; then rm -f ${ELCDIR}/${EXCLUDE_FILES} fi FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile" cat << EOF > path.el (setq load-path (cons "." load-path)) (setq byte-compile-warnings nil) EOF echo ${FLAVOR} ${FLAGS} *.el > ${LOG} ${FLAVOR} ${FLAGS} *.el >> ${LOG} 2>& 1 egrep -s -e "While compiling|\*\*" ${LOG} || /bin/true echo install/${PACKAGE}: Deleting ${LOG} rm -f path.el* exit 0 debian/rules0000755000000000000000000000271012260051032010235 0ustar #! /usr/bin/make -f DOC_TMP_FILES := doc/org.aux doc/org.cp doc/org.cps doc/org.fn \ doc/org.fns doc/org.ky doc/org.kys \ doc/org.log doc/org.pg doc/org.toc doc/org.tp \ DOC_FILES := doc/*pdf clean: dh_testdir dh_testroot dh_clean rm -f $(DOC_FILES) $(DOC_TMP_FILES) build build-indep build-arch: install: build dh_testdir dh_testroot dh_clean -k dh_installdirs cp lisp/* $(CURDIR)/debian/org-mode/usr/share/emacs/site-lisp/org-mode cp -r etc $(CURDIR)/debian/org-mode/usr/share/emacs/site-lisp/org-mode # cp xemacs/*.el $(CURDIR)/debian/org-mode/usr/share/xemacs/site-lisp/org-mode cp -r contrib $(CURDIR)/debian/org-mode/usr/share/org-mode/ # make doc rm -f $(DOC_TMP_FILES) find $(CURDIR)/debian/org-mode/usr/share/org-mode/ -type f -exec chmod 644 "{}" \; find $(CURDIR)/debian/org-mode/usr/share/emacs/site-lisp/org-mode -type f -exec chmod 644 "{}" \; find $(CURDIR)/debian/org-mode/usr/share/org-mode/ -name .DS_Store -exec rm -f "{}" \; find $(CURDIR)/debian/org-mode/usr/share/org-mode/ -name .gitignore -exec rm -f "{}" \; binary-indep: install dh_testdir dh_testroot dh_installchangelogs dh_installdocs rm -f $(CURDIR)/debian/org-mode/usr/share/doc/org-mode/*texi* dh_installemacsen -v dh_fixperms # dh_installinfo doc/org dh_compress dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary-arch: build-arch binary: binary-indep binary-arch .PHONY: build clean build-indep build-arch binary binary-indep binary-arch debian/dirs0000644000000000000000000000004312260051032010036 0ustar usr/share/emacs/site-lisp/org-mode debian/emacsen-startup0000644000000000000000000000215412260051032012215 0ustar ;; -*-emacs-lisp-*- ;; ;; Emacs startup file, e.g. /etc/emacs/site-start.d/50org-mode.el ;; for the Debian org-mode package ;; ;; Originally contributed by Nils Naumann ;; Modified by Dirk Eddelbuettel ;; Adapted for dh-make by Jim Van Zandt ;; The org-mode package follows the Debian/GNU Linux 'emacsen' policy and ;; byte-compiles its elisp files for each 'emacs flavor' (emacs19, ;; xemacs19, emacs20, xemacs20...). The compiled code is then ;; installed in a subdirectory of the respective site-lisp directory. ;; We have to add this to the load-path: (let ((package-dir (concat "/usr/share/" (symbol-name debian-emacs-flavor) "/site-lisp/org-mode"))) ;; If package-dir does not exist, the org-mode package must have ;; removed but not purged, and we should skip the setup. (when (file-directory-p package-dir) (debian-pkg-add-load-path-item package-dir) (require 'org-install) (add-to-list 'auto-mode-alist '("\\.org\\(-mode\\)?\\'" . org-mode)) (setq org-ditaa-jar-path "/usr/bin/ditaa"))) debian/changelog0000644000000000000000000003306112260051066011041 0ustar org-mode (8.2.4-1) unstable; urgency=low * New upstream release (Closes: #729725) * Conflict with older emacsen-common (Comment: #732699) * Tweak auto-mode-alist regex (Closes: #719038) -- Sebastien Delafond Sun, 29 Dec 2013 17:44:50 +0100 org-mode (8.2.1-2) unstable; urgency=low * Hrm, really recommend texlive-generic-recommended and texlive-latex-recommended (Closes: #725126) -- Sebastien Delafond Mon, 09 Dec 2013 11:46:24 +0100 org-mode (8.2.1-1) unstable; urgency=low * New upstream release * Do not support emacs22 anymore (Closes: #719037) * Recommend texlive-generic-recommended and texlive-latex-recommended (Closes: #725126) -- Sebastien Delafond Sun, 27 Oct 2013 17:14:14 +0100 org-mode (8.0.7-2) unstable; urgency=low * Do not Recommend remember-el anymore, as it's obsolete with Org 8.x (Closes: #721787). -- Sebastien Delafond Tue, 10 Sep 2013 22:34:03 +0200 org-mode (8.0.7-1) unstable; urgency=low * New upstream release -- Sebastien Delafond Sun, 11 Aug 2013 16:27:56 +0200 org-mode (8.0.6-3) unstable; urgency=low * Remove copyright notice for the Org documentation, since it now lives in its own org-mode-doc package in non-free -- Sebastien Delafond Tue, 16 Jul 2013 10:55:16 +0200 org-mode (8.0.6-2) unstable; urgency=low * Add emacs-snapshot as an acceptable dependency, not just a build dependency (Closes: #712187) -- Sebastien Delafond Tue, 16 Jul 2013 08:56:59 +0200 org-mode (8.0.6-1) unstable; urgency=low * New upstream release * Remove non-free documentation (Closes: #709494), and mention that in NEWS.Debian * Add emacs-snapshot as an acceptable version of emacs (Closes: #712187) * Bumped up Standards-Version -- Sebastien Delafond Mon, 15 Jul 2013 13:51:17 +0200 org-mode (7.9.2-1) unstable; urgency=low * New upstream release -- Sebastien Delafond Tue, 30 Oct 2012 08:45:52 +0100 org-mode (7.9.1-3) unstable; urgency=low * Fix FTBFS since org-mode now requires emacs to be built (Closes: #691768) -- Sebastien Delafond Mon, 29 Oct 2012 16:19:40 +0100 org-mode (7.9.1-2) unstable; urgency=low * Also generate the PDF reference card (Closes: #690030) -- Sebastien Delafond Tue, 09 Oct 2012 10:55:13 +0200 org-mode (7.9.1-1) unstable; urgency=low * New upstream release (Closes: #685154, #668496, #688673) * Updated watch file again -- Sebastien Delafond Thu, 13 Sep 2012 14:53:00 +0200 org-mode (7.8.11-2) unstable; urgency=low * Fix dependencies to include current versions of emacs in unstable (Closes: #682713) * Proper watch file -- Sebastien Delafond Mon, 13 Aug 2012 12:32:11 +0200 org-mode (7.8.11-1) unstable; urgency=low * New upstream release * Simpler debian/watch file -- Sebastien Delafond Wed, 20 Jun 2012 11:36:07 +0200 org-mode (7.8.09-1) unstable; urgency=low * New upstream release (Closes: #670270) * Updated debian/watch file -- Sebastien Delafond Wed, 25 Apr 2012 15:20:15 +0200 org-mode (7.8.06-2) unstable; urgency=low * Really fix the style files (Closes: #655652) -- Sebastien Delafond Mon, 26 Mar 2012 10:56:00 +0200 org-mode (7.8.06-1) unstable; urgency=low * New upstream release (Closes: #655652) * Bumped up Standards-Version. -- Sebastien Delafond Sun, 25 Mar 2012 17:10:16 +0200 org-mode (7.7-3) unstable; urgency=low * More conventional debian/rules, not requiring root; thanks Colin Watson for the patch (Closes: #648425) -- Sebastien Delafond Fri, 11 Nov 2011 15:09:35 +0100 org-mode (7.7-2) unstable; urgency=low * Fix FTBFS (Closes: #643235) -- Sebastien Delafond Tue, 27 Sep 2011 11:27:02 +0200 org-mode (7.7-1) unstable; urgency=low * New upstream release -- Sebastien Delafond Sat, 10 Sep 2011 15:30:43 +0200 org-mode (7.6-1) unstable; urgency=low * New upstream release (Closes: #632158). -- Sebastien Delafond Thu, 07 Jul 2011 15:45:26 +0200 org-mode (7.5-2) unstable; urgency=low * Also install .el files (Closes: #623376). -- Sebastien Delafond Mon, 09 May 2011 12:18:52 +0200 org-mode (7.5-1) unstable; urgency=low * New upstream release (Closes: #623208). -- Sebastien Delafond Mon, 18 Apr 2011 14:52:41 +0200 org-mode (7.4-1) unstable; urgency=low * New upstream release * Handle ditaa more nicely (Closes: #607258). -- Sebastien Delafond Wed, 22 Dec 2010 14:13:18 +0100 org-mode (7.3-3) unstable; urgency=low * Explicitly exclude xemacs from byte-compilation (Closes: #602803). -- Sebastien Delafond Fri, 12 Nov 2010 11:35:10 +0100 org-mode (7.3-2) unstable; urgency=low * Do not support xemacs21 anymore; the upstream changelog clearly mentions that "XEmacs support requires the XEmacs development version", which is not packaged for Debian (Closes: #602803). -- Sebastien Delafond Wed, 10 Nov 2010 16:23:30 +0100 org-mode (7.3-1) unstable; urgency=low * New upstream release (Closes: #602196). -- Sebastien Delafond Sun, 07 Nov 2010 18:17:47 +0100 org-mode (7.01h-1) unstable; urgency=low * New upstream release. * Bumped up Standards-Version. -- Sebastien Delafond Tue, 07 Sep 2010 14:46:10 +0200 org-mode (7.01g-1) unstable; urgency=low * New upstream release (Closes: #589853). * Bumped up Standards-Version. -- Sebastien Delafond Thu, 22 Jul 2010 14:14:51 +0200 org-mode (6.36c-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Wed, 19 May 2010 13:31:31 +0200 org-mode (6.35i-1) unstable; urgency=low * New upstream release. * Do not include org-freemind for xemacs (Closes: #577496). -- Sebastien Delafond Tue, 13 Apr 2010 15:09:27 +0200 org-mode (6.35h-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Mon, 12 Apr 2010 10:33:56 +0200 org-mode (6.35g-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Sat, 10 Apr 2010 12:15:35 +0200 org-mode (6.35f-1) unstable; urgency=low * New upstream release. * Removed incorrect Vcs-* info. -- Sebastien Delafond Thu, 08 Apr 2010 12:48:18 +0200 org-mode (6.34c-4) unstable; urgency=low * Proper unescaping in links (Closes: #572404.) -- Sebastien Delafond Fri, 05 Mar 2010 10:45:05 +0100 org-mode (6.34c-3) unstable; urgency=low * Swith to 3.0(quilt) source format. -- Sebastien Delafond Tue, 02 Mar 2010 08:29:45 +0100 org-mode (6.34c-2) unstable; urgency=low * Add easypg as a Suggest, to enable org-crypt functionalities. * Bumped up Standards-Version. -- Sebastien Delafond Tue, 16 Feb 2010 16:25:35 +0100 org-mode (6.34c-1) unstable; urgency=low * New upstream release -- Sebastien Delafond Fri, 29 Jan 2010 15:48:44 +0100 org-mode (6.33f-2) unstable; urgency=low * New upstream release. * Remove ditaa.jar from both the source and binary packages, as its source code is not available (Closes: #565250). Seems 528117 crept back somehow. -- Sebastien Delafond Fri, 29 Jan 2010 15:41:21 +0100 org-mode (6.32b-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Thu, 29 Oct 2009 10:22:45 +0100 org-mode (6.31a-3) unstable; urgency=low * Add ORed dependency on emacs-snapshot (Closes: #551729). * Removed explicit version-depend on dpkg. -- Sebastien Delafond Thu, 22 Oct 2009 21:15:59 +0200 org-mode (6.31a-2) unstable; urgency=low * New Vcs-Git and Homepage fields in debian/control. * Lintian cleanups. -- Sebastien Delafond Mon, 19 Oct 2009 16:13:16 +0200 org-mode (6.31a-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Thu, 08 Oct 2009 14:45:55 +0200 org-mode (6.31-1) unstable; urgency=low * New upstream release -- Sebastien Delafond Wed, 30 Sep 2009 21:05:03 +0200 org-mode (6.30e-1) unstable; urgency=low * New upstream release -- Sebastien Delafond Mon, 28 Sep 2009 16:57:29 +0200 org-mode (6.29c+1-3) unstable; urgency=low * Doh: emacs 23, not emacs-23 (Closes: #541651). -- Sebastien Delafond Sun, 16 Aug 2009 17:34:50 +0200 org-mode (6.29c+1-2) unstable; urgency=low * OR'ed depend on emacs23 as well (Closes: #541651). -- Sebastien Delafond Sat, 15 Aug 2009 11:44:49 +0200 org-mode (6.29c+1-1) unstable; urgency=low * Clarify licensing of org-mode's documentation in debian/copyright, and correct packaging bug in 6.27a-1 and 6.29c-1 where the wrong, GFDL-only version of the manual was accidentally included (Closes: #540736). -- Sebastien Delafond Mon, 10 Aug 2009 12:38:39 +0200 org-mode (6.29c-1) unstable; urgency=low * New upstream release * Bumped up standards revision. -- Sebastien Delafond Mon, 10 Aug 2009 09:02:41 +0200 org-mode (6.27a-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Tue, 16 Jun 2009 12:47:51 +0200 org-mode (6.26d-1) unstable; urgency=low * New upstream release. * Remove ditaa.jar from both the source and binary packages, as its source code is not available (Closes: #528117). -- Sebastien Delafond Mon, 11 May 2009 02:16:35 -0700 org-mode (6.26a-4) unstable; urgency=low * xemacs21 is fine, as it has url.el. -- Sebastien Delafond Tue, 21 Apr 2009 05:35:05 -0700 org-mode (6.26a-3) unstable; urgency=low * Do not support emacs21 and xemacs21 anymore; upstream author mentioned he will "not willingly break Emacs 21 support, but no longer will make any effort to adapt code for it" (Closes: #524951). -- Sebastien Delafond Tue, 21 Apr 2009 05:25:46 -0700 org-mode (6.26a-2) unstable; urgency=low * Fix void symbol in startup file; thanks Antonio P. P. Almeida for the patch (Closes: #524941). -- Sebastien Delafond Tue, 21 Apr 2009 02:10:47 -0700 org-mode (6.26a-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Mon, 20 Apr 2009 00:08:53 -0700 org-mode (6.25e-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Thu, 09 Apr 2009 11:23:38 -0700 org-mode (6.24b-1) unstable; urgency=low * New upstream release (Closes: #519559). * Update watch file so it doesn't match the snapshot release. * Remove .DS_Store accidentally included in upstream tarball. -- Sebastien Delafond Fri, 13 Mar 2009 06:53:16 -0700 org-mode (6.21b-1) unstable; urgency=low * New upstream release -- Sebastien Delafond Mon, 02 Feb 2009 14:10:42 -0800 org-mode (6.19b-1) unstable; urgency=low * New upstream release. * Do not byte-compile *.el file more than once, and log said compilation to a temp file (inspired from emacs-goodies-el's install script). -- Sebastien Delafond Mon, 26 Jan 2009 08:41:17 -0800 org-mode (6.17c-1) unstable; urgency=low * New upstream release. * Updated debian/watch to account for index.html renaming to index.html. -- Sebastien Delafond Sun, 18 Jan 2009 19:01:30 -0800 org-mode (6.16c-1) unstable; urgency=low * New upstream release * Ship up-to-date version of the manual (Closes: #508758). -- Sebastien Delafond Sun, 28 Dec 2008 06:24:35 -0800 org-mode (6.14-1) unstable; urgency=low * New upstream release. -- Sebastien Delafond Sun, 14 Dec 2008 13:15:23 -0800 org-mode (6.12b-1) unstable; urgency=low * New upstream version (Closes: #506368). -- Sebastien Delafond Thu, 20 Nov 2008 15:17:51 -0800 org-mode (6.10-1) unstable; urgency=low * New upstream version. * Updated debian/watch so it doesn't break uscan from latest devscripts (Closes: #503235). -- Sebastien Delafond Fri, 24 Oct 2008 12:12:44 -0700 org-mode (6.09a-1) unstable; urgency=low * New upstream version. * Alternate dependency on emacs-snapshot (Closes: #502137). -- Sebastien Delafond Tue, 14 Oct 2008 09:51:48 -0700 org-mode (6.06b-1) unstable; urgency=low * New upstream version (Closes: #490096). * Added debian/watch file. * Better autoload mechanism through "(require 'org-install)". -- Sebastien Delafond Fri, 15 Aug 2008 11:44:09 -0700 org-mode (6.05-2) unstable; urgency=low * List all copyright holders for the contributions in a separate stanza in debian/copyright. -- Sebastien Delafond Tue, 17 Jun 2008 12:36:30 -0700 org-mode (6.05-1) unstable; urgency=low * Package the dual-licensed (GPL+GFDL) version of the manual (many thanks to Carsten Dominik for providing this). -- Sebastien Delafond Tue, 17 Jun 2008 08:55:36 -0700 org-mode (6.02b-2) unstable; urgency=low * Explicitely mention that org's documentation is licensed under the GFDL with no Invariant Sections. -- Sebastien Delafond Fri, 23 May 2008 08:05:26 -0700 org-mode (6.02b-1) unstable; urgency=low * Initial Release (Closes: #477504, #445329). -- Sebastien Delafond Mon, 12 May 2008 17:02:07 -0700 debian/patches/0000755000000000000000000000000012260051032010604 5ustar debian/patches/series0000644000000000000000000000007612260051032012024 0ustar 10-shebang.patch #20-links-unescaping.patch 30-local-mk.patch debian/patches/20-links-unescaping.patch0000644000000000000000000000166212260051032015323 0ustar Description: Proper unescaping in links Author: Carsten Dominik Origin: upstream Bug-Debian: http://bugs.debian.org/572404 Index: org-mode-6.34c/lisp/org.el =================================================================== --- org-mode-6.34c.orig/lisp/org.el 2010-01-18 00:10:45.000000000 +0100 +++ org-mode-6.34c/lisp/org.el 2010-03-05 11:27:52.000000000 +0100 @@ -7914,12 +7914,14 @@ (url-unhex-string text) (setq table (or table org-link-escape-chars)) (when text - (let ((re (mapconcat (lambda (x) (regexp-quote (cdr x))) + (let ((case-fold-search t) + (re (mapconcat (lambda (x) (regexp-quote (downcase (cdr x)))) table "\\|"))) (while (string-match re text) (setq text (replace-match - (char-to-string (car (rassoc (match-string 0 text) table))) + (char-to-string (car (rassoc (upcase (match-string 0 text)) + table))) t t text))) text)))) debian/patches/30-local-mk.patch0000644000000000000000000000031212260051032013540 0ustar Description: Generate all the doc. including the refcard Forwarded: not-needed Author: Sebastien Delafond --- /dev/null +++ b/local.mk @@ -0,0 +1 @@ +ORG_MAKE_DOC = info html pdf card debian/patches/10-shebang.patch0000644000000000000000000000044012260051032013450 0ustar Description: Make lintian happy Forwarded: not-needed Author: Sebastien Delafond --- a/contrib/scripts/dir2org.zsh +++ b/contrib/scripts/dir2org.zsh @@ -1,5 +1,3 @@ -#!/usr/bin/env zsh - # desc: # # Output an org compatible structure representing the filesystem from debian/README.Debian0000644000000000000000000000042312260051032011215 0ustar To enable contributed extensions to org-mode, simply add "/usr/share/org-mode/lisp" to your load-path, for instance in your .emacs with: (setq load-path (cons "/usr/share/org-mode/lisp" load-path)) -- Sebastien Delafond , Thu, 1 Oct 2009 11:11:26 +0200 debian/NEWS.debian0000644000000000000000000000047412260051032011102 0ustar org-mode (8.0.6-1) unstable; urgency=low To fix Debian bug #709494, and keep org-mode in the main section, the documentation has been removed from this package and moved to org-mode-doc, to be found soon in the non-free section. -- Sebastien Delafond Mon, 15 Jul 2013 13:51:17 +0200 debian/source/0000755000000000000000000000000012260051032010455 5ustar debian/source/format0000644000000000000000000000001412260051032011663 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000446712260051032011123 0ustar This package was debianized by Sebastien Delafond on Mon, 12 May 2008 16:57:37 -0700 It was downloaded from http://orgmode.org Upstream author: Carsten Dominik Copyright: org-mode: ========= org-mode is Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This package 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; version 2 dated June, 1991. This package 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. contributions: ============== org-annotate.el is Copyright (C) 2008 Philip Jackson lisp/org-elisp-symbol.el, lisp/org-toc.el, lisp/org2rem.el and lisp/org-registry.el are Copyright 2007 Bastien Guerry lisp/org-mairix.el is Copyright (C) 2007 Georg C. F. Greve lisp/org-screen.el is Copyright (c) 2008 Andrew Hyatt packages/org-export-freemind-0.1.0/org-export-freemind.el is Copyright (C) 2007 Marco Vezzoli scripts/org2hpda is Copyright (C) 2007 Christian Egli All the contributions are licensed under the GPL: This package 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; version 2 dated June, 1991. This package 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 package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On Debian systems, the complete text of version 3 of the GNU General Public License can be found in ‘/usr/share/common-licenses/GPL-3’.