gnunet-svn
[Top][All Lists]
Advanced

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

[taler-taler-util] branch master updated: Do not distinguish 'make insta


From: gnunet
Subject: [taler-taler-util] branch master updated: Do not distinguish 'make install' and 'make update'
Date: Tue, 03 Nov 2020 11:59:25 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository taler-util.

The following commit(s) were added to refs/heads/master by this push:
     new 47b25c0  Do not distinguish 'make install' and 'make update'
47b25c0 is described below

commit 47b25c05bfbf33351382ff7f007bd90f036f6320
Author: Florian Dold <florian@dold.me>
AuthorDate: Tue Nov 3 11:57:58 2020 +0100

    Do not distinguish 'make install' and 'make update'
    
    The old "make install" doesn't really make sense, as it would always install
    from PyPI.
---
 Makefile | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile
index 158a272..7d30289 100644
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,6 @@ all: dist
        $(echo) "This is a python project, no compilation at this step 
required."
        $(echo) "Run make install to install global."
        $(echo) "Run make install-user to install for the current user."
-       $(echo) ""
-       $(echo) "If you want to update your installation, use make update."
 
 # you need SOURCE_DATE_EPOCH at least at the 1980s when
 # your default SOURCE_DATE_EPOCH in env is 1.
@@ -19,7 +17,8 @@ gana:
        cd gana/gnu-taler-error-codes/; make; cp taler_error_codes.py 
../../taler/util/; cd ../..
 
 install: all gana
-       (cd dist; $(env) SOURCE_DATE_EPOCH=315532800 $(python) -m pip install 
taler-util)
+       (cd dist; $(env) SOURCE_DATE_EPOCH=315532800 $(python) -m pip install 
--upgrade --no-index --find-links=. taler-util)
+
 
 uninstall:
        (cd dist; $(env) SOURCE_DATE_EPOCH=315532800 $(python) -m pip uninstall 
taler-util)
@@ -30,9 +29,6 @@ install-user:
 uninstall-user:
        (cd dist; $(env) SOURCE_DATE_EPOCH=315532800 $(python) -m pip uninstall 
taler-util)
 
-update:
-       (cd dist; $(env) SOURCE_DATE_EPOCH=315532800 $(python) -m pip install 
--upgrade --no-index --find-links=. taler-util)
-
 pypi: dist
        $(env) SOURCE_DATE_EPOCH=315532800 $(python) -m twine upload dist/*
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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