Skip to content

Commit

Permalink
Change the version to 1.0.1 and fix documents.
Browse files Browse the repository at this point in the history
  • Loading branch information
kubo committed Nov 30, 2013
1 parent 30cb41b commit 685f69e
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ snzip_SOURCES = snzip.c snzip.h snzip-format.c framing-format.c framing2-format.
PROGS = snzip
bin_PROGRAMS = $(PROGS)

EXTRA_DIST = autogen.sh
dist_doc_DATA = ChangeLog COPYING INSTALL NEWS README
EXTRA_DIST = autogen.sh spec/snzip.spec
dist_doc_DATA = AUTHORS ChangeLog COPYING INSTALL NEWS README.md

dist-hook:
git log > $(distdir)/ChangeLog
9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
snzip 1.0.1 - 2013-11-30

* Add a rpm spec file.
(Contributed by Xianglei.)

snzip 1.0.0 - 2013-11-23

* The default format is changed to framing format.
* Change stdout behaviour like bzip2 or gzip.
(Contribuetd by FUKUDA Masahiro.)

snzip 0.9.0 - 2012-08-05

snzip 0.0.2 - 2011-10-09
Expand Down
27 changes: 20 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,33 +20,46 @@ format as the default format as before.
Installation
------------

Download snzip-1.0.0.tar.gz from http://www.jiubao.org/snzip/,
### Install a tar-ball

Download snzip-1.0.1.tar.gz from http://www.jiubao.org/snzip/,
uncompress and untar it, and run configure.

tar xvfz snzip-1.0.0.tar.gz
cd snzip-1.0.0
tar xvfz snzip-1.0.1.tar.gz
cd snzip-1.0.1
./configure

If you didn't install snappy under /usr or /usr/local, you need to specify
the location by '--with-snappy' as follows.

# install snappy
tar xvfz snappy-1.1.0.tar.gz
cd snappy-1.1.0
tar xvfz snappy-1.1.1.tar.gz
cd snappy-1.1.1
./configure --prefix=/usr/local/snappy
make
make install
cd ..

# install snzip
tar xvfz snzip-1.0.0.tar.gz
cd snzip-1.0.0
tar xvfz snzip-1.0.1.tar.gz
cd snzip-1.0.1
./configure --with-snappy=/usr/local/snappy

You can use --with-default-format to change the default compression format.

./configure --with-default-format=snzip

### Install a rpm package

We don't provide rpm packages. You need to download snzip-1.0.1.tar.gz
from http://www.jiubao.org/snzip/, create a rpm package as follows and
install it.

# The rpm package will be created under $HOME/rpmbuild/RPMS.
rpmbuild -tb snzip-1.0.1.tar.gz

### Install latest source

To use source code in the github repository.

git clone git://github.com/kubo/snzip.git
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The autoconf version must be at least 2.64 to correctly detect
# endianess of Mac OS X universal binary.
AC_PREREQ(2.64)
AC_INIT([snzip], [1.0.0])
AC_INIT([snzip], [1.0.1])

AM_INIT_AUTOMAKE

Expand Down

0 comments on commit 685f69e

Please sign in to comment.