Skip to content

Commit

Permalink
For 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoriyuki committed May 10, 2014
1 parent b3134d5 commit bb74353
Show file tree
Hide file tree
Showing 11 changed files with 1,733 additions and 520 deletions.
9 changes: 6 additions & 3 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
(* OASIS_START *)
(* DO NOT EDIT (digest: 5b1e74ee331affc29b3bb4b9cc1ba443) *)
Authors of ucorelib
Yoriyuki Yamagata
(* DO NOT EDIT (digest: 2fb77beab3e3dbf44c3e98551a106a94) *)

Authors of ucorelib:

* Yoriyuki Yamagata

(* OASIS_STOP *)
8 changes: 5 additions & 3 deletions INSTALL.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
(* OASIS_START *)
(* DO NOT EDIT (digest: 5ab0562daedc5ecac055660efd427885) *)
(* DO NOT EDIT (digest: d956617c289288b15fb2cc1647b91cf4) *)

This is the INSTALL file for the ucorelib distribution.

This package uses OASIS to generate its build system. See section OASIS for
full information.
full information.

Dependencies
============

In order to compile this package, you will need:

* ocaml
* findlib
* batteries (>= 2.1) for library ucorelib
Expand All @@ -25,7 +27,7 @@ Installing
Uninstalling
============

1. Go to the root of the package
1. Go to the root of the package
2. Run 'ocaml setup.ml -uninstall'

OASIS
Expand Down
11 changes: 7 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# OASIS_START
# DO NOT EDIT (digest: bc1e05bfc8b39b664f29dae8dbd3ebbb)
# DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954)

SETUP = ocaml setup.ml

Expand All @@ -12,7 +12,7 @@ doc: setup.data build
test: setup.data build
$(SETUP) -test $(TESTFLAGS)

all:
all:
$(SETUP) -all $(ALLFLAGS)

install: setup.data
Expand All @@ -24,15 +24,18 @@ uninstall: setup.data
reinstall: setup.data
$(SETUP) -reinstall $(REINSTALLFLAGS)

clean:
clean:
$(SETUP) -clean $(CLEANFLAGS)

distclean:
distclean:
$(SETUP) -distclean $(DISTCLEANFLAGS)

setup.data:
$(SETUP) -configure $(CONFIGUREFLAGS)

configure:
$(SETUP) -configure $(CONFIGUREFLAGS)

.PHONY: build doc test all install uninstall reinstall clean distclean configure

# OASIS_STOP
14 changes: 10 additions & 4 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
(* OASIS_START *)
(* DO NOT EDIT (digest: d2d6c6ee7a29897d1ffb899906c3f679) *)
This is the README file for the ucorelib distribution.
(* DO NOT EDIT (digest: 716a86fe475b94fbdff82d1e19870697) *)

A light weight Unicode library for OCaml
ucorelib - A light weight Unicode library for OCaml
===================================================

See the files INSTALL.txt for building and installation instructions.
See the file [INSTALL.txt](INSTALL.txt) for building and installation
instructions.

Copyright and license
---------------------

ucorelib is distributed under the terms of the GNU Lesser General Public
License version 3.0 with OCaml linking exception.

(* OASIS_STOP *)
2 changes: 1 addition & 1 deletion _oasis
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
OASISFormat: 0.3
Name: ucorelib
Version: 0.0.1
Version: 0.1.0
Synopsis: A light weight Unicode library for OCaml
Authors: Yoriyuki Yamagata
License: LGPL-3.0 with OCaml linking exception
Expand Down
14 changes: 7 additions & 7 deletions _tags
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# OASIS_START
# DO NOT EDIT (digest: d494b9845ed839fef1b7c3a7f0a7a07b)
# Ignore VCS directories, you can use the same kind of rule outside
# OASIS_START/STOP if you want to exclude directories that contains
# DO NOT EDIT (digest: 3dc61bc51cc88c87279ef1317a6fcc4c)
# Ignore VCS directories, you can use the same kind of rule outside
# OASIS_START/STOP if you want to exclude directories that contains
# useless stuff for the build process
<**/.svn>: -traverse
<**/.svn>: not_hygienic
Expand All @@ -17,10 +17,10 @@
"src/ucorelib.cmxs": use_ucorelib
<src/*.ml{,i}>: pkg_batteries
# Executable test
"test/test.byte": use_ucorelib
"test/test.byte": pkg_oUnit
"test/test.byte": pkg_batteries
<test/*.ml{,i}>: use_ucorelib
<test/*.ml{,i}>: pkg_oUnit
"test/test.byte": pkg_oUnit
"test/test.byte": use_ucorelib
<test/*.ml{,i}>: pkg_batteries
<test/*.ml{,i}>: pkg_oUnit
<test/*.ml{,i}>: use_ucorelib
# OASIS_STOP
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/sh

# OASIS_START
# DO NOT EDIT (digest: 425187ed8bfdbdd207fd76392dd243a7)
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499)
set -e

FST=true
for i in "$@"; do
for i in "$@"; do
if $FST; then
set --
FST=false
Expand Down
Loading

0 comments on commit bb74353

Please sign in to comment.