- updated for 1.1.2
This commit is contained in:
parent
5a2a547ede
commit
956c5219fe
25
NEWS
25
NEWS
|
@ -1,5 +1,21 @@
|
|||
Changes in version 1.1 (released 2004-05-22)
|
||||
--------------------------------------------
|
||||
Recent changes to install-lib -*- outline -*-
|
||||
|
||||
* Changes in version 1.1.2 (released 2004-07-08)
|
||||
|
||||
By default, skip installation of all packages which are already
|
||||
installed (and report these packages in the final message). The
|
||||
"--force" option must be used to force their re-installation.
|
||||
|
||||
|
||||
* Changes in version 1.1.1 (released 2004-06-13)
|
||||
|
||||
Changed the way "--destdir" is interpreted: now, it is a prefix for
|
||||
the installation prefix, whereas before it was the root of the
|
||||
installation prefix. In some cases, this implies a slightly different
|
||||
behaviour, which corresponds more to the de facto standard.
|
||||
|
||||
|
||||
* Changes in version 1.1 (released 2004-05-22)
|
||||
|
||||
The installation library itself is now installed as a scsh package
|
||||
called "install-lib". The "scsh-install-pkg" script is just a wrapper
|
||||
|
@ -15,3 +31,8 @@ wrapper script itself is put in the directory specified by the
|
|||
To comply with the packaging policy, some files were also renamed.
|
||||
Most importantly, the name of the documentation changed from
|
||||
"proposal.pdf" to "install-lib.pdf".
|
||||
|
||||
|
||||
* Version 1.0 (released 2004-04-01)
|
||||
|
||||
First public release.
|
||||
|
|
|
@ -10,7 +10,7 @@ exec scsh -le ~a/load.scm -o install-lib -e install-main -s "$0" "$@"
|
|||
END
|
||||
)
|
||||
|
||||
(define-package "install-lib" (1 1 1)
|
||||
(define-package "install-lib" (1 1 2)
|
||||
((options (bindir "Destination directory for executables" "<dir>" #t #f
|
||||
,(bin-dir) ,identity ,identity)))
|
||||
|
||||
|
|
|
@ -23,4 +23,4 @@
|
|||
;; requested "major" number matches the one of the library, and the
|
||||
;; requested "minor" is smaller or equal to the one of the library.
|
||||
|
||||
(define install-lib-version '(1 1 1))
|
||||
(define install-lib-version '(1 1 2))
|
||||
|
|
Loading…
Reference in New Issue