mirror of
https://github.com/roswell/roswell.git
synced 2026-09-09 23:06:15 -04:00
snmsts-> roswell
This commit is contained in:
parent
b506fb5b26
commit
3cd94ccc59
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
Instruction for the system-wide installation follows:
|
||||
|
||||
$ git clone -b release https://github.com/snmsts/roswell.git
|
||||
$ git clone -b release https://github.com/roswell/roswell.git
|
||||
$ cd roswell
|
||||
$ sh bootstrap
|
||||
$ ./configure
|
||||
|
|
@ -19,16 +19,16 @@ Instruction for the system-wide installation follows:
|
|||
|
||||
This is useful when using roswell as a backend of CI services (e.g. travis): When you specify a directory accessible without root permission, then you can switch to the new [container-based infrastructure](http://docs.travis-ci.com/user/workers/container-based-infrastructure/) for faster startup (of the tests).
|
||||
|
||||
This option can be used to write an installation script for CI services, but [we already provide such a script for Travis, CircleCI and Coverall](https://github.com/snmsts/roswell/wiki/4.-Roswell-as-a-Testing-Environment-(Travis-CI-and-Coverall)))) using this feature.
|
||||
This option can be used to write an installation script for CI services, but [we already provide such a script for Travis, CircleCI and Coverall](https://github.com/roswell/roswell/wiki/4.-Roswell-as-a-Testing-Environment-(Travis-CI-and-Coverall)))) using this feature.
|
||||
|
||||
Example:
|
||||
|
||||
$ git clone -b release https://github.com/snmsts/roswell.git
|
||||
$ git clone -b release https://github.com/roswell/roswell.git
|
||||
$ cd roswell
|
||||
$ sh bootstrap
|
||||
$ ./configure --prefix ~/.local/
|
||||
$ make && make install ### in this case, no sudo is required!
|
||||
$ ~/.local/bin/ros
|
||||
|
||||
For the further information, see https://github.com/snmsts/roswell/wiki
|
||||
For the further information, see https://github.com/roswell/roswell/wiki
|
||||
|
||||
|
|
|
|||
4
debian/control
vendored
4
debian/control
vendored
|
|
@ -4,8 +4,8 @@ Priority: optional
|
|||
Maintainer: Masatoshi SANO <snmsts@gmail.com>
|
||||
Build-Depends: debhelper (>= 9)
|
||||
Standards-Version: 3.9.5
|
||||
Homepage: https://github.com/snmsts/roswell
|
||||
Vcs-Git: https://github.com/snmsts/roswell.git
|
||||
Homepage: https://github.com/roswell/roswell
|
||||
Vcs-Git: https://github.com/roswell/roswell.git
|
||||
|
||||
Package: roswell
|
||||
Architecture: any
|
||||
|
|
|
|||
2
debian/copyright
vendored
2
debian/copyright
vendored
|
|
@ -1,6 +1,6 @@
|
|||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: roswell
|
||||
Source: https://github.com/snmsts/roswell
|
||||
Source: https://github.com/roswell/roswell
|
||||
|
||||
Files: *
|
||||
Copyright: 2014-2015 SANO Masatoshi
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ ROSWELL_HOME
|
|||
|
||||
# Bugs
|
||||
|
||||
Check out issues list (https://github.com/snmsts/roswell/issues)
|
||||
Check out issues list (https://github.com/roswell/roswell/issues)
|
||||
|
||||
# SEE ALSO
|
||||
_sbcl_(1) _ros-dump_(1) _ros-init_(1) _ros-install_(1) _ros-list_(1) _ros-setup_(1)
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ exec ros -Q -L sbcl-bin -- $0 "$@"
|
|||
body)))))
|
||||
|
||||
(defun main (&rest argv)
|
||||
(let* ((url (get-newest-url "snmsts/roswell" :master (equal (first argv) "master")))
|
||||
(let* ((url (get-newest-url "roswell/roswell" :master (equal (first argv) "master")))
|
||||
(sha256 (sha256-from-url url))
|
||||
(version (if (first argv) "version \"9.9.9.9\"" "")))
|
||||
(format t "url:~A~%sha256:~A~%" url sha256)
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
class Roswell < Formula
|
||||
homepage "https://github.com/snmsts/roswell/"
|
||||
homepage "https://github.com/roswell/roswell/"
|
||||
url "<% @var url %>"
|
||||
sha256 "<% @var sha256 %>"
|
||||
<% @var version %>
|
||||
head "https://github.com/snmsts/roswell.git"
|
||||
head "https://github.com/roswell/roswell.git"
|
||||
|
||||
depends_on "autoconf" => :build
|
||||
depends_on "automake" => :build
|
||||
|
|
|
|||
Loading…
Reference in a new issue