distro-build: split server and client parts
original commit: a98582b82337db02cd47b5d1a932285a80146c07
11
pkgs/distro-build-pkgs/distro-build-client/info.rkt
Normal file
|
@ -0,0 +1,11 @@
|
|||
#lang info
|
||||
|
||||
(define collection "distro-build")
|
||||
|
||||
(define deps '("base"
|
||||
"ds-store-lib"))
|
||||
(define build-deps '("at-exp-lib"))
|
||||
|
||||
(define pkg-desc "client-side part of \"distro-build\"")
|
||||
|
||||
(define pkg-authors '(mflatt))
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 201 KiB After Width: | Height: | Size: 201 KiB |
11
pkgs/distro-build-pkgs/distro-build-lib/LICENSE.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
distro-build
|
||||
Copyright (c) 2010-2014 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 http://www.gnu.org/copyleft/lesser.html
|
||||
for more information.
|
12
pkgs/distro-build-pkgs/distro-build-lib/info.rkt
Normal file
|
@ -0,0 +1,12 @@
|
|||
#lang info
|
||||
|
||||
(define collection 'multi)
|
||||
|
||||
(define deps '("distro-build-client"
|
||||
"distro-build-server"))
|
||||
(define implies '("distro-build-client"
|
||||
"distro-build-server"))
|
||||
|
||||
(define pkg-desc "implementation (no documentation) part of \"distro-build\"")
|
||||
|
||||
(define pkg-authors '(mflatt))
|
11
pkgs/distro-build-pkgs/distro-build-server/LICENSE.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
distro-build
|
||||
Copyright (c) 2010-2014 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 http://www.gnu.org/copyleft/lesser.html
|
||||
for more information.
|
|
@ -3,7 +3,7 @@
|
|||
racket/file
|
||||
net/url
|
||||
"download-page.rkt"
|
||||
(only-in "config.rkt" extract-options))
|
||||
(only-in distro-build/config extract-options))
|
||||
|
||||
(module test racket/base)
|
||||
|
|
@ -6,14 +6,14 @@
|
|||
racket/file
|
||||
racket/string
|
||||
racket/path
|
||||
(only-in "config.rkt"
|
||||
(only-in distro-build/config
|
||||
current-mode
|
||||
site-config?
|
||||
site-config-tag site-config-options site-config-content
|
||||
current-stamp)
|
||||
"url-options.rkt"
|
||||
"display-time.rkt"
|
||||
"readme.rkt"
|
||||
distro-build/url-options
|
||||
distro-build/display-time
|
||||
distro-build/readme
|
||||
"email.rkt")
|
||||
|
||||
;; See "config.rkt" for an overview.
|
|
@ -3,11 +3,12 @@
|
|||
(define collection "distro-build")
|
||||
|
||||
(define deps '("base"
|
||||
"distro-build-client"
|
||||
"web-server-lib"
|
||||
"ds-store-lib"
|
||||
"net-lib"))
|
||||
(define build-deps '("at-exp-lib"))
|
||||
|
||||
(define pkg-desc "Tools for constructing a distribution of Racket")
|
||||
(define pkg-desc "server-side part of \"distro-build\"")
|
||||
|
||||
(define pkg-authors '(mflatt))
|
|
@ -3,7 +3,7 @@
|
|||
racket/file
|
||||
net/url
|
||||
"download-page.rkt"
|
||||
(only-in "config.rkt" extract-options))
|
||||
(only-in distro-build/config extract-options))
|
||||
|
||||
(module test racket/base)
|
||||
|
|
@ -12,8 +12,8 @@
|
|||
racket/tcp
|
||||
racket/port
|
||||
racket/system
|
||||
(only-in "config.rkt" extract-options)
|
||||
"readme.rkt")
|
||||
(only-in distro-build/config extract-options)
|
||||
distro-build/readme)
|
||||
|
||||
(module test racket/base)
|
||||
|
11
pkgs/distro-build-pkgs/distro-build/LICENSE.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
distro-build
|
||||
Copyright (c) 2010-2014 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 http://www.gnu.org/copyleft/lesser.html
|
||||
for more information.
|
10
pkgs/distro-build-pkgs/distro-build/info.rkt
Normal file
|
@ -0,0 +1,10 @@
|
|||
#lang info
|
||||
|
||||
(define collection 'multi)
|
||||
|
||||
(define deps '("distro-build-lib"))
|
||||
(define implies '("distro-build-lib"))
|
||||
|
||||
(define pkg-desc "Tools for constructing a distribution of Racket")
|
||||
|
||||
(define pkg-authors '(mflatt))
|