1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
Usepackage Environment Manager
Copyright (C) 1995-2015 Jonathan Hogg <me@jonathanhogg.com>
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
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Changes between usepackage version 1.11 and 1.13
* Just updating the email addresses and copyrights on everything for the
20TH ANNIVERSARY!!!
Changes between usepackage version 1.11 and 1.12
* More code updating, this time to fix an inclusion bug related to very
old-school usage of flex.
Changes between usepackage version 1.10 and 1.11
* The code was updated a fair bit to match more modern autoconf/automake
and C99 standards (it's really starting to show its age).
Changes between usepackage version 1.8 and 1.10
* Now supports shell-independent aliases using 'alias foo = bar' syntax.
* Now supports adding path segments at the end using the new "=+"
syntax (courtesy of Chandler Wilkerson).
* Skipping 1.9 version number as I never did a real release of it and
I added the alias stuff afterwards anyway.
Changes between usepackage version 1.7 and 1.8
* Now supports basic checking for existence of directories before adding
them to a path (or setting a variable) using the new "?=" and "?+="
operators.
* The order that variables are sourced into the environment has been
changed to better support using other variables as parts of updates
to the environment (e.g., "FOO=/opt/foo, PATH+=$FOO/bin;").
Changes between usepackage version 1.6.3 and 1.7
* Now supports arbitrary inclusions into the shell evaluation text,
allowing commands to be executed, and shell aliases and functions
to be defined.
* Match patterns (other than the initial package name) are now optional,
such that a missing pattern defaults to a "*" wildcard.
* An additional optional pattern has been added to match the user's
shell. This is determined from $SHELL or the shell defined in the
password database for the running user.
Changes between usepackage version 1.6.2 and 1.6.3
* Fixed ~ expansion to use $HOME if available.
Changes between usepackage version 1.6.1 and 1.6.2
* Split manual page into two (for frontend and backend).
* Cosmetic changes.
Changes between usepackage version 1.6 and 1.6.1
* Now uses autoconf/automake for the build system.
* Small changes to the output messages.
* Fixed up the contact information.
* A bit more portable hopefully.
Initial public release 1.6
* Usepackage has been in use for some time, and had even been available
for download, but no attempt was made previously to publicise it. This
release represents the first posted to freshmeat.net.
|