Skip to content

Commit

Permalink
Invenio v1.0.9
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Simko <[email protected]>
  • Loading branch information
tiborsimko committed May 21, 2015
1 parent f1048f3 commit 8c8f52a
Show file tree
Hide file tree
Showing 4 changed files with 682 additions and 601 deletions.
30 changes: 15 additions & 15 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ About
=====

This document specifies how to build, customize, and install Invenio
v1.0.8 for the first time. See RELEASE-NOTES if you are upgrading
v1.0.9 for the first time. See RELEASE-NOTES if you are upgrading
from a previous Invenio release.

Contents
Expand Down Expand Up @@ -216,13 +216,13 @@ Contents
----------------

$ cd $HOME/src/
$ wget http://invenio-software.org/download/invenio-1.0.8.tar.gz
$ wget http://invenio-software.org/download/invenio-1.0.8.tar.gz.md5
$ wget http://invenio-software.org/download/invenio-1.0.8.tar.gz.sig
$ md5sum -c invenio-1.0.8.tar.gz.md5
$ gpg --verify invenio-1.0.8.tar.gz.sig invenio-1.0.8.tar.gz
$ tar xvfz invenio-1.0.8.tar.gz
$ cd invenio-1.0.8
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.md5
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.sig
$ md5sum -c invenio-1.0.9.tar.gz.md5
$ gpg --verify invenio-1.0.9.tar.gz.sig invenio-1.0.9.tar.gz
$ tar xvfz invenio-1.0.9.tar.gz
$ cd invenio-1.0.9
$ ./configure
$ make
$ make install
Expand Down Expand Up @@ -265,19 +265,19 @@ Contents
sources. (The built files will be installed into different
"target" directories later.)

$ wget http://invenio-software.org/download/invenio-1.0.8.tar.gz
$ wget http://invenio-software.org/download/invenio-1.0.8.tar.gz.md5
$ wget http://invenio-software.org/download/invenio-1.0.8.tar.gz.sig
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.md5
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.sig

Fetch Invenio source tarball from the distribution server,
together with MD5 checksum and GnuPG cryptographic signature
files useful for verifying the integrity of the tarball.

$ md5sum -c invenio-1.0.8.tar.gz.md5
$ md5sum -c invenio-1.0.9.tar.gz.md5

Verify MD5 checksum.

$ gpg --verify invenio-1.0.8.tar.gz.sig invenio-1.0.8.tar.gz
$ gpg --verify invenio-1.0.9.tar.gz.sig invenio-1.0.9.tar.gz

Verify GnuPG cryptographic signature. Note that you may
first have to import my public key into your keyring, if you
Expand All @@ -289,11 +289,11 @@ Contents
warning that may follow after the signature has been
successfully verified.

$ tar xvfz invenio-1.0.8.tar.gz
$ tar xvfz invenio-1.0.9.tar.gz

Untar the distribution tarball.

$ cd invenio-1.0.8
$ cd invenio-1.0.9

Go to the source directory.

Expand Down
3 changes: 3 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -548,4 +548,7 @@ update-v1.0.6-tables: # from v1.0.6 to v1.0.7
update-v1.0.7-tables: # from v1.0.7 to v1.0.8
@echo "Nothing to do; table structure did not change between v1.0.7 and v1.0.8."

update-v1.0.8-tables: # from v1.0.8 to v1.0.9
@echo "Nothing to do; table structure did not change between v1.0.8 and v1.0.9."

CLEANFILES = *~ *.pyc *.tmp
Loading

1 comment on commit 8c8f52a

@invenio-developers
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1: M110 missing component name

Please sign in to comment.