diff --git a/pkgs/db-pkgs/db-doc/LICENSE.txt b/pkgs/db-pkgs/db-doc/LICENSE.txt deleted file mode 100644 index c091c4490d..0000000000 --- a/pkgs/db-pkgs/db-doc/LICENSE.txt +++ /dev/null @@ -1,10 +0,0 @@ -db-doc -Copyright (c) 2010-2013 PLT Design Inc. - -This package is distributed under the GNU Lesser General Public -License (LGPL). This means that you can link Racket into proprietary -applications, provided you follow the rules stated in the LGPL. You -can also modify this package; if you distribute a modified version, -you must distribute it under the terms of the LGPL, which in -particular means that you must release the source code for the -modified software. See COPYING_LESSER.txt for more information. diff --git a/pkgs/gui-pkgs/gui/LICENSE.txt b/pkgs/gui-pkgs/gui/LICENSE.txt deleted file mode 100644 index d2aac7f85e..0000000000 --- a/pkgs/gui-pkgs/gui/LICENSE.txt +++ /dev/null @@ -1,10 +0,0 @@ -gui -Copyright (c) 2010-2013 PLT Design Inc. - -This package is distributed under the GNU Lesser General Public -License (LGPL). This means that you can link Racket into proprietary -applications, provided you follow the rules stated in the LGPL. You -can also modify this package; if you distribute a modified version, -you must distribute it under the terms of the LGPL, which in -particular means that you must release the source code for the -modified software. See COPYING_LESSER.txt for more information. diff --git a/pkgs/net-pkgs/net-test/tests/net/encoders.rkt b/pkgs/net-pkgs/net-test/tests/net/encoders.rkt index 5ae42f7a8c..2c6dba5df0 100644 --- a/pkgs/net-pkgs/net-test/tests/net/encoders.rkt +++ b/pkgs/net-pkgs/net-test/tests/net/encoders.rkt @@ -2,7 +2,7 @@ (require net/base64 net/qp tests/eli-tester) (define tricky-strings - (let ([dir (collection-path "tests" "racket")]) + (let ([net.rktl (collection-file-path "net.rktl" "tests" "racket")]) (list (make-bytes 200 32) (make-bytes 200 9) (make-bytes 200 (char->integer #\x)) @@ -12,12 +12,12 @@ (make-bytes 204 (char->integer #\x)) (list->bytes (for/list ([i (in-range 256)]) i)) ;; Something that doesn't end with a LF: - (bytes-append (with-input-from-file (build-path dir "net.rktl") + (bytes-append (with-input-from-file net.rktl (lambda () (read-bytes 500))) #"xxx") ;; CRLF: (regexp-replace #rx#"\r?\n" - (with-input-from-file (build-path dir "net.rktl") + (with-input-from-file net.rktl (lambda () (read-bytes 500))) #"\r\n"))))