From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Martin Newsgroups: gmane.emacs.help Subject: Mark package as installed when use git Date: Mon, 12 Jun 2017 15:11:28 +0200 Message-ID: <877f0hs64f.fsf@kaffanke.at> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1497273128 26855 195.159.176.226 (12 Jun 2017 13:12:08 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 12 Jun 2017 13:12:08 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jun 12 15:12:00 2017 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dKP8S-0006Xs-Ec for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Jun 2017 15:12:00 +0200 Original-Received: from localhost ([::1]:38004 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dKP8X-00070j-JU for geh-help-gnu-emacs@m.gmane.org; Mon, 12 Jun 2017 09:12:05 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58396) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dKP83-0006zd-OV for help-gnu-emacs@gnu.org; Mon, 12 Jun 2017 09:11:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dKP80-000477-Kf for help-gnu-emacs@gnu.org; Mon, 12 Jun 2017 09:11:35 -0400 Original-Received: from box.primewood.at ([138.68.68.139]:52740) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dKP80-00046X-D4 for help-gnu-emacs@gnu.org; Mon, 12 Jun 2017 09:11:32 -0400 Original-Received: from authenticated-user (box.primewood.at [138.68.68.139]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by box.primewood.at (Postfix) with ESMTPSA id 5BAD540153 for ; Mon, 12 Jun 2017 15:11:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=kaffanke.at; s=mail; t=1497273090; bh=Txk1+ylxHTfh0gLV5iRe10l0qTkXz2cE3flP4G3gZgk=; h=From:To:Subject:Date:From; b=FtAtF8a5uaB1fLKJ/7jbPTBFW+lU/Bg78snonpHVX03qTZMffFq0TfcjdGbr1FoIb WGvGSHzhkaO96n2yDorHLS+yFGWu/icUDXyuMeEy04mz+wqV8IAleTX0TpmxSWiuiQ ewuJkrqKorrtGvblABCG3n0wKNpzREwP4q5qmtAEKD7u7Qh9ZUeLM3RHchC/NQ/Dqt 0k0LwqV85DWhwfgbgA6eWUpsO0roYiijG7rixeIUReKWMPS0Pl298U44OBDXik7eU+ ugII8p4kP/v6TOtF/7xTSHUBo76lfWfkqf/UEDf5ARPGKB32/S5eYJMa6KOQNo2VHK ipisyIXHnfMGw== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 138.68.68.139 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:113428 Archived-At: Hi there, I use org-mode from github with in my init.el: (add-to-list 'load-path (concat my-user-emacs-directory "contrib/org-mode/lisp")) (add-to-list 'load-path (concat my-user-emacs-directory "contrib/org-mode/contrib/lisp")) (require 'org) And later I like to use pandoc for export: (use-package orgbox :ensure t) So now this use-package will install org also from melpa. Is there a way to avoid that? So like tell package.el that org is allready installed, don't check that dependency? Thanks, Martin -- Thanks for your help!