Skip to content

Commit

Permalink
move everything to the standard racket package architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
euhmeuh committed Apr 11, 2018
1 parent fc88c64 commit 158e2d3
Show file tree
Hide file tree
Showing 19 changed files with 87 additions and 0 deletions.
15 changes: 15 additions & 0 deletions web-galaxy-doc/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
web-galaxy-doc
Copyright (c) 2018 Jérôme Martin

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
15 changes: 15 additions & 0 deletions web-galaxy-lib/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
web-galaxy-lib
Copyright (c) 2018 Jérôme Martin

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
8 changes: 8 additions & 0 deletions web-galaxy-lib/info.rkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#lang info

(define collection 'multi)
(define deps '("base" "web-server-lib"))
(define build-deps '("rackunit-lib"))
(define pkg-desc "implementation (no documentation) part of \"web-galaxy\"")
(define pkg-authors '(euhmeuh))
(define version "0.1.0")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions web-galaxy-test/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
web-galaxy-test
Copyright (c) 2018 Jérôme Martin

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
10 changes: 10 additions & 0 deletions web-galaxy-test/info.rkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#lang info

(define collection 'multi)
(define deps '())
(define build-deps '("base"
"rackunit-lib"
"web-galaxy-lib"))
(define update-implies '("web-galaxy-lib"))
(define pkg-desc "tests for \"web-galaxy\"")
(define pkg-authors '(euhmeuh))
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions web-galaxy/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
web-galaxy
Copyright (c) 2018 Jérôme Martin

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
9 changes: 9 additions & 0 deletions web-galaxy/info.rkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#lang info

(define collection 'multi)
(define deps '("web-galaxy-lib"
"web-galaxy-doc"))
(define implies '("web-galaxy-lib"
"web-galaxy-doc"))
(define pkg-desc "A minimalist web framework for the Racket web-server")
(define pkg-authors '(euhmeuh))

0 comments on commit 158e2d3

Please sign in to comment.