branch: externals/pq
commit ab9de6e045285df297ef35f6334304595ac35699
Author: Tom Gillespie <[email protected]>
Commit: Tom Gillespie <[email protected]>

    pq.el: improvements for packaging
    
    make the repository of record clear
    
    add package requires for emacs 25
    
    wrap require 'pq-core in (if t ...) to keep the compiler happy
    since pq-core is the c module that will be missing at compile
---
 pq.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/pq.el b/pq.el
index 3570882ce7..4af6311e4e 100644
--- a/pq.el
+++ b/pq.el
@@ -3,8 +3,9 @@
 ;; Copyright (C) 2020 by Tom Gillespie
 
 ;; Author: Tom Gillespie
-;; URL: https://github.com/tgbugs/emacs-libpq
+;; URL: https://github.com/anse1/emacs-libpq
 ;; Version: 0.01
+;; Package-Requires: ((emacs "25"))
 
 ;; 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
@@ -25,7 +26,7 @@
 
 ;;; Code:
 
-(require 'pq-core)
+(if t (require 'pq-core))
 
 (provide 'pq)
 

Reply via email to