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

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

[elpa] externals/pq ab9de6e045 1/2: pq.el: improvements for packaging


From: ELPA Syncer
Subject: [elpa] externals/pq ab9de6e045 1/2: pq.el: improvements for packaging
Date: Fri, 25 Feb 2022 05:57:46 -0500 (EST)

branch: externals/pq
commit ab9de6e045285df297ef35f6334304595ac35699
Author: Tom Gillespie <tgbugs@gmail.com>
Commit: Tom Gillespie <tgbugs@gmail.com>

    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

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