diff options
author | dougb <dougb@FreeBSD.org> | 2011-09-12 14:19:07 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2011-09-12 14:19:07 +0800 |
commit | 71259ea2c0bb0317f629aba6f1d0b445791f6982 (patch) | |
tree | 6e2b0c2e881100708d953e9986cb90323f9a3db0 /ports-mgmt | |
parent | 69d1be437250d97f90c1408995862dd2f587e467 (diff) | |
download | freebsd-ports-graphics-71259ea2c0bb0317f629aba6f1d0b445791f6982.tar.gz freebsd-ports-graphics-71259ea2c0bb0317f629aba6f1d0b445791f6982.tar.zst freebsd-ports-graphics-71259ea2c0bb0317f629aba6f1d0b445791f6982.zip |
New Features
============
1. Add the ability to retry package creation. This is mostly useful for
PM_SU_CMD after a build that took so long that your sudo ticket has
expired.
2. Add support for multiple -r options on the same command line. [1]
Various Internal Cleanups and Improvements
==========================================
1. s/printf/echo -e/ for consistency, and use it to full advantage
2. In the code that derives the proper value of PACKAGESITE remove 6.x
and add 9.x. Also add a 10-current entry.
3. Add a more-or-less painless test to deal with the issue of the current
working directory no longer existing. This problem usually manifests as
a "The value of DISTDIR cannot be empty" error because 'make -f' does
not handle this condition gracefully.
4. In find_and_delete_distfiles() (run after a successful install) change
the default pattern to be foo-[0-9]* instead of foo* [2]
When the new pattern doesn't match any existing distfiles, fall back to
the old one.
5. Also in find_and_delete_distfiles(), cache matches to $DI_FILES so that
we don't have to re-test that same file again.
6. Change the method used to print the prompt in get_answer_g() to echo -e
so that I can be more flexible in formatting prompt messages.
7. For --clean-packages if a package is up to date but not installed
it should still be deleted if -y is in use.
8. Avoid duplicate word in a composite sentence [3]
9. If a user has non-standard FETCH_ARGS it could circumvent the intent
of --always-fetch, so forcibly unlink the file before proceeding to
the fetch routine.
Sponsored by: Henk van Oers [1]
Suggested by: Lapo Luchini <lapo@lapo.it> [2]
Submitted by: Dan Allen <danallen46@airwired.net> [3]
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portmaster/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/portmaster/distinfo | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ports-mgmt/portmaster/Makefile b/ports-mgmt/portmaster/Makefile index e10cbde7c9e..2511670031d 100644 --- a/ports-mgmt/portmaster/Makefile +++ b/ports-mgmt/portmaster/Makefile @@ -8,7 +8,7 @@ # PORTNAME= portmaster -PORTVERSION= 3.9.1 +PORTVERSION= 3.10 CATEGORIES= ports-mgmt MASTER_SITES= http://dougbarton.us/Downloads/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc diff --git a/ports-mgmt/portmaster/distinfo b/ports-mgmt/portmaster/distinfo index 59dd2d3947f..86714b78e8e 100644 --- a/ports-mgmt/portmaster/distinfo +++ b/ports-mgmt/portmaster/distinfo @@ -1,4 +1,4 @@ -SHA256 (portmaster-3.9.1.tar.gz) = 102cf89e886ef5a6847156e9209974c0ac2597bdfbf5060bcf9e3ebbbefdde7c -SIZE (portmaster-3.9.1.tar.gz) = 40565 -SHA256 (portmaster-3.9.1.tar.gz.asc) = 2c4319e2ebdc097c4e934fc4a0a773297e5e53759d7c18dec6a73a33dacb5b64 -SIZE (portmaster-3.9.1.tar.gz.asc) = 488 +SHA256 (portmaster-3.10.tar.gz) = 5500527cd61e87f7c9f4c76e4ca13ec58a922523e1d076d105e77d2e0da53543 +SIZE (portmaster-3.10.tar.gz) = 40565 +SHA256 (portmaster-3.10.tar.gz.asc) = a33678955fa8d2b83f7f30627c06fb8f7b42a15cb6f33d00c71e0e8f1227b3dc +SIZE (portmaster-3.10.tar.gz.asc) = 488 |