debian/0000755000000000000000000000000011775142031007167 5ustar debian/docs0000644000000000000000000000000611766431246010047 0ustar doc/* debian/rules0000755000000000000000000000221011766431246010253 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 PKG_NAME := evernote-mode PKG_DESTDIR := $(CURDIR)/debian/$(PKG_NAME) PKG_DOCDIR := $(PKG_DESTDIR)/usr/share/doc/$(PKG_NAME) libdir=$(shell ruby -rrbconfig -e 'puts Config::CONFIG["vendordir"]') %: dh $@ override_dh_auto_install: dh_auto_install (cd $(CURDIR)/ruby \ && ruby setup.rb config \ --installdirs=std \ --librubyver=$(libdir) \ --bindir="/usr/lib/evernote-mode" \ --shebang=never ) (cd $(CURDIR)/ruby \ && ruby setup.rb install \ --prefix=$(PKG_DESTDIR) ) rm -f $(PKG_DESTDIR)/usr/lib/ruby/vendor_ruby/LICENSE.txt override_dh_auto_clean: (cd $(CURDIR)/ruby && ruby setup.rb clean) dh_auto_clean override_dh_installdocs: (cd $(PKG_DESTDIR) && \ rdoc1.9.1 -a --fmt=darkfish -o $(PKG_DOCDIR)/rdoc usr/lib/ruby/vendor_ruby/ ) rm -f $(PKG_DESTDIR)/usr/share/doc/$(PKG_NAME)/rdoc/js/*.js for f in darkfish jquery quicksearch thickbox-compressed ; do \ (cd $(PKG_DESTDIR)/usr/share/doc/$(PKG_NAME)/rdoc/js && \ ln -s ../../../../../lib/ruby/1.9.1/rdoc/generator/template/darkfish/js/$$f.js . ) ;\ done dh_installdocs debian/install0000644000000000000000000000007211766431246010570 0ustar evernote-mode.el usr/share/emacs/site-lisp/evernote-mode/ debian/emacsen-install0000644000000000000000000000164411766431246012207 0ustar #! /bin/sh -e # /usr/lib/emacsen-common/packages/install/evernote-mode FLAVOR=$1 PACKAGE=evernote-mode # don't support older FSF emacs, XEmacs. case $FLAVOR in emacs|emacs22|emacs21|emacs20|emacs19|mule2|*xemacs*) exit 0 ;; esac echo "install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR}" SITEFLAG="--no-site-file" FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile" ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} install -m 755 -d ${ELCDIR} cd ${ELDIR} FILES=`echo *.el` for f in ${FILES} ; do [ -L ${ELCDIR}/$f ] && rm -f ${ELCDIR}/$f ; cp $f ${ELCDIR} done cd ${ELCDIR} cat << EOF > path.el (setq load-path (cons "." load-path) byte-compile-warnings nil) EOF ${FLAVOR} ${FLAGS} ${FILES} rm -f *.el path.el ELCFILES=`echo *.elc` for f in ${ELCFILES} ; do ln -s ../../../emacs/site-lisp/${PACKAGE}/`basename $f .elc`.el . done exit 0 debian/emacsen-startup0000644000000000000000000000070311766431246012236 0ustar ;; -*-emacs-lisp-*- ;; ;; Emacs startup file for Debian for the Debian evernote-mode package (let ((package-dir (concat "/usr/share/" (symbol-name flavor) "/site-lisp/evernote-mode"))) (when (file-directory-p package-dir) (if (fboundp 'debian-pkg-add-load-path-item) (debian-pkg-add-load-path-item package-dir) (setq load-path (cons package-dir load-path)) ) ) ) debian/changelog0000644000000000000000000000176611775023730011057 0ustar evernote-mode (0.41-3) unstable; urgency=low * Update/refresh patches: use gbp-pq * Bump standard version: 3.9.3 * Fix SSL Connection, Validation Error (Closes: #671688) - Force SSLv3 for newer OpenSSL Library - Avoid broken validation from Thrift library. - Thanks to Petr Novodvorskiy, Evgeny Kurbatov -- Youhei SASAKI Wed, 04 Jul 2012 12:19:43 +0100 evernote-mode (0.41-2) unstable; urgency=low * Fix some lintian warnings -- Youhei SASAKI Thu, 19 Jan 2012 04:30:40 +0900 evernote-mode (0.41-1) unstable; urgency=low * New upstream release: 0.41 * Bump standard version: 3.9.2 * Change install libdir for RubyInWheezy transition * Change copyright format: Dep5 * Add Vcs-Git field -- Youhei SASAKI Sat, 23 Jul 2011 01:28:39 +0900 evernote-mode (0.10-1) unstable; urgency=low * Initial release (Closes: #603668) -- Youhei SASAKI Tue, 16 Nov 2010 14:45:38 +0900 debian/source/0000755000000000000000000000000011766431246010500 5ustar debian/source/format0000644000000000000000000000001411766431246011706 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211766431246010376 0ustar 7 debian/control0000644000000000000000000000215611775023761010606 0ustar Source: evernote-mode Section: lisp Priority: optional Maintainer: Youhei SASAKI Build-Depends: debhelper (>= 7.0.50~), ruby1.9.1 Standards-Version: 3.9.3 DM-Upload-Allowed: yes Homepage: http://code.google.com/p/emacs-evernote-mode/ Vcs-Git: git://git.debian.org/git/users/uwabami-guest/evernote-mode.git Vcs-Browser: http://git.debian.org/?p=users/uwabami-guest/evernote-mode.git;a=summary Package: evernote-mode Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, emacs23 | emacs, ruby | ruby-interpreter Suggests: w3m-el | w3m-el-snapshot Description: Emacs major mode for editing Evernote directly Emacs evernote mode offers functions to refer and edit Evernote notes directly from Emacs. Features: - Open note - Read an existing note to an Emacs buffer. - Tag search is also available - Save note - Update the modified note in an Emacs buffer. - Create note - Create a new note from the current buffer or from scratch. - Edit tags - Change tags attached to the note - Rename note - Delete note - Search notes - by using a query or a saved search debian/copyright0000644000000000000000000000477711766431246011152 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: evernote-mode Source: http://code.google.com/p/emacs-evernote-mode/ Files: evernote-mode.el ruby/lib/thrift.rb ruby/lib/thrift/*.rb ruby/bin/enclient.rb Copyright: 2010-2011 Yusuke Kawakami License: Apache-2.0 Files: ruby/lib/Evernote/EDAM/*.rb Copyright: 2007-2009 Evernote Corporation License: BSD-2-Clause Files: debian/* Copyright: 2010-2011 Youhei SASAKI License: BSD-2-Clause License: Apache-2.0 Evernote-mode.el, Thrift library(ruby/lib/thrift{.rb,/*.rb}, and evernote client(ruby/bin/enclient.rb) are distributed under the Apache License Version 2.0: . Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache version 2.0 license can be found in "/usr/share/common-licenses/Apache-2.0". License: BSD-2-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. debian/patches/0000755000000000000000000000000011775021627010625 5ustar debian/patches/0001-Import-Upstream-Git-HEAD.patch0000644000000000000000000010302311775021627016513 0ustar From: awasira Date: Thu, 7 Jul 2011 13:40:16 +0000 Subject: Import Upstream Git HEAD --- doc/readme_en.html | 13 ++++-- doc/readme_en.org | 9 ++-- doc/readme_en.txt | 11 +++-- doc/readme_ja.html | 124 +++++++++++++++++++++++++++----------------------- doc/readme_ja.org | 9 ++-- doc/readme_ja.txt | 57 +++++++++++++++-------- evernote-mode.el | 52 +++++++++++++++------ ruby/bin/enclient.rb | 4 +- 8 files changed, 175 insertions(+), 104 deletions(-) diff --git a/doc/readme_en.html b/doc/readme_en.html index 68d105a..64127c4 100644 --- a/doc/readme_en.html +++ b/doc/readme_en.html @@ -7,7 +7,7 @@ lang="en" xml:lang="en"> Emacs evernote mode - + @@ -843,18 +843,21 @@ In the case of Mac OS X

The pre-installed ruby on Mac OS X does not contain GDBM bindings. -Re-install ruby and GDBM by MacPorts or Homebrew. +Re-install GDBM and ruby by MacPorts or Homebrew. +If you have installed ruby before GDBM, delete ruby once.

MacPorts:

-$ sudo ports install ruby gdbm
+$ sudo port uninstall ruby
+$ sudo port install gdbm ruby
 

Homebrew:

-$ sudo brew install ruby gdbm
+$ sudo brew uninstall ruby
+$ sudo brew install gdbm ruby
 

@@ -908,7 +911,7 @@ e.g.

Author: Yusuke Kawakami <Yusuke Kawakami>

-

Date: 2011-06-24 06:49:56 JST

+

Date: 2011-07-07 22:18:05 JST

HTML generated by org-mode 6.33x in emacs 23

diff --git a/doc/readme_en.org b/doc/readme_en.org index d525875..7563077 100644 --- a/doc/readme_en.org +++ b/doc/readme_en.org @@ -429,16 +429,19 @@ Retrieve gdbm.dll from [[http://jarp.does.notwork.org/win32/][Porting Libraries - In the case of Mac OS X The pre-installed ruby on Mac OS X does not contain GDBM bindings. -Re-install ruby and GDBM by [[http://www.macports.org/][MacPorts]] or [[http://mxcl.github.com/homebrew/][Homebrew]]. +Re-install GDBM and ruby by [[http://www.macports.org/][MacPorts]] or [[http://mxcl.github.com/homebrew/][Homebrew]]. +If you have installed ruby before GDBM, delete ruby once. MacPorts: @
-$ sudo ports install ruby gdbm
+$ sudo port uninstall ruby
+$ sudo port install gdbm ruby
 @
Homebrew: @
-$ sudo brew install ruby gdbm
+$ sudo brew uninstall ruby
+$ sudo brew install gdbm ruby
 @
Also, [[No%20such%20file%20or%20directory][specify evernote-ruby-command]]. diff --git a/doc/readme_en.txt b/doc/readme_en.txt index 98286c2..7867122 100644 --- a/doc/readme_en.txt +++ b/doc/readme_en.txt @@ -2,7 +2,7 @@ =================== Author: Yusuke Kawakami -Date: 2011-06-24 06:49:58 JST +Date: 2011-07-07 22:18:07 JST Table of Contents @@ -470,16 +470,19 @@ Retrieve gdbm.dll from [Porting Libraries to Win32], then copy it to the folder - In the case of Mac OS X The pre-installed ruby on Mac OS X does not contain GDBM bindings. -Re-install ruby and GDBM by [MacPorts] or [Homebrew]. +Re-install GDBM and ruby by [MacPorts] or [Homebrew]. +If you have installed ruby before GDBM, delete ruby once. MacPorts: -$ sudo ports install ruby gdbm +$ sudo port uninstall ruby +$ sudo port install gdbm ruby Homebrew: -$ sudo brew install ruby gdbm +$ sudo brew uninstall ruby +$ sudo brew install gdbm ruby Also, [specify evernote-ruby-command]. diff --git a/doc/readme_ja.html b/doc/readme_ja.html index 8833dc6..0a49bed 100644 --- a/doc/readme_ja.html +++ b/doc/readme_ja.html @@ -1,3 +1,4 @@ + Emacs evernote mode - + + +