Skip to content

Commit bd1af89

Browse files
committed
Invenio v1.0.10
Signed-off-by: Tibor Simko <tibor.simko@cern.ch>
1 parent b57e714 commit bd1af89

File tree

4 files changed

+115
-49
lines changed

4 files changed

+115
-49
lines changed

INSTALL

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ About
55
=====
66

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

1111
Contents
@@ -238,13 +238,13 @@ Contents
238238
----------------
239239

240240
$ cd $HOME/src/
241-
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz
242-
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.md5
243-
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.sig
244-
$ md5sum -c invenio-1.0.9.tar.gz.md5
245-
$ gpg --verify invenio-1.0.9.tar.gz.sig invenio-1.0.9.tar.gz
246-
$ tar xvfz invenio-1.0.9.tar.gz
247-
$ cd invenio-1.0.9
241+
$ wget http://invenio-software.org/download/invenio-1.0.10.tar.gz
242+
$ wget http://invenio-software.org/download/invenio-1.0.10.tar.gz.md5
243+
$ wget http://invenio-software.org/download/invenio-1.0.10.tar.gz.sig
244+
$ md5sum -c invenio-1.0.10.tar.gz.md5
245+
$ gpg --verify invenio-1.0.10.tar.gz.sig invenio-1.0.10.tar.gz
246+
$ tar xvfz invenio-1.0.10.tar.gz
247+
$ cd invenio-1.0.10
248248
$ ./configure
249249
$ make
250250
$ make install
@@ -287,19 +287,19 @@ Contents
287287
sources. (The built files will be installed into different
288288
"target" directories later.)
289289

290-
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz
291-
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.md5
292-
$ wget http://invenio-software.org/download/invenio-1.0.9.tar.gz.sig
290+
$ wget http://invenio-software.org/download/invenio-1.0.10.tar.gz
291+
$ wget http://invenio-software.org/download/invenio-1.0.10.tar.gz.md5
292+
$ wget http://invenio-software.org/download/invenio-1.0.10.tar.gz.sig
293293

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

298-
$ md5sum -c invenio-1.0.9.tar.gz.md5
298+
$ md5sum -c invenio-1.0.10.tar.gz.md5
299299

300300
Verify MD5 checksum.
301301

302-
$ gpg --verify invenio-1.0.9.tar.gz.sig invenio-1.0.9.tar.gz
302+
$ gpg --verify invenio-1.0.10.tar.gz.sig invenio-1.0.10.tar.gz
303303

304304
Verify GnuPG cryptographic signature. Note that you may
305305
first have to import my public key into your keyring, if you
@@ -311,11 +311,11 @@ Contents
311311
warning that may follow after the signature has been
312312
successfully verified.
313313

314-
$ tar xvfz invenio-1.0.9.tar.gz
314+
$ tar xvfz invenio-1.0.10.tar.gz
315315

316316
Untar the distribution tarball.
317317

318-
$ cd invenio-1.0.9
318+
$ cd invenio-1.0.10
319319

320320
Go to the source directory.
321321

Makefile.am

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,4 +552,7 @@ update-v1.0.7-tables: # from v1.0.7 to v1.0.8
552552
update-v1.0.8-tables: # from v1.0.8 to v1.0.9
553553
@echo "Nothing to do; table structure did not change between v1.0.8 and v1.0.9."
554554

555+
update-v1.0.9-tables: # from v1.0.9 to v1.0.10
556+
@echo "Nothing to do; table structure did not change between v1.0.9 and v1.0.10."
557+
555558
CLEANFILES = *~ *.pyc *.tmp

NEWS

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,58 @@ releases. For more information about the current release, please
66
consult RELEASE-NOTES. For more information about changes, please
77
consult ChangeLog.
88

9+
Invenio v1.0.10 -- released 2016-11-09
10+
--------------------------------------
11+
12+
New features
13+
~~~~~~~~~~~~
14+
15+
+ installation
16+
17+
- Initial release of kickstart installations scripts. Ported from
18+
the old `tiborsimko/invenio-devscripts` repository of helper
19+
scripts and adapted to resemble Invenio 3 kickstart installation
20+
scripts. Tested on Ubuntu 12.04 and CentOS 6.
21+
22+
Improved features
23+
~~~~~~~~~~~~~~~~~
24+
25+
+ I18N
26+
27+
- Updates Catalan, French, German, Italian, Russian, Slovak, and
28+
Spanish translations from Transifex.
29+
30+
+ installation
31+
32+
- Installation scripts now support Ubuntu 14.04 LTS.
33+
- Uses `/usr/sbin/service foo` consistently everywhere to restart
34+
daemons instead of deprecated `/etc/init.d/foo`.
35+
36+
Bug fixes
37+
~~~~~~~~~
38+
39+
+ WebAccess
40+
41+
- Improves the WebAccess FireRole documentation by providing
42+
corrected example on how to use groups in FireRole definitions.
43+
(#3107) (#3225)
44+
45+
+ WebSearch
46+
47+
- Fixes asynchronous external collection getter tests following the
48+
update of the Invenio project web site.
49+
50+
+ global
51+
52+
- Silences most MySQL UTF-8 warnings related to inserting into and
53+
updating BLOB table columns.
54+
55+
+ installation
56+
57+
- Amends canonical location of py-editdist and pyRXP packages,
58+
fixing the installation problem.
59+
- Fixes Apache virtual host configuration generation on CentOS 6.
60+
961
Invenio v1.0.9 -- released 2015-05-21
1062
-------------------------------------
1163

RELEASE-NOTES

Lines changed: 45 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
============================
2-
Invenio v1.0.9 is released
3-
============================
1+
=============================
2+
Invenio v1.0.10 is released
3+
=============================
44

5-
Invenio v1.0.9 was released on May 21, 2015.
5+
Invenio v1.0.10 was released on November 9, 2016.
66

77
About
88
-----
@@ -11,52 +11,63 @@ Invenio is a digital library framework enabling you to build your own
1111
digital library or document repository on the web.
1212

1313
This old stable release update is recommended to all Invenio sites
14-
using v1.0.8 or previous releases.
14+
using v1.0.9 or previous releases.
1515

16-
Security fixes
17-
--------------
16+
New features
17+
------------
1818

19-
+ WebStyle:
19+
+ installation
2020

21-
- Adds back the `HttpOnly` cookie attribute in order to better
22-
protect against potential XSS vulnerabilities. (#3064)
21+
- Initial release of kickstart installations scripts. Ported from
22+
the old `tiborsimko/invenio-devscripts` repository of helper
23+
scripts and adapted to resemble Invenio 3 kickstart installation
24+
scripts. Tested on Ubuntu 12.04 and CentOS 6.
2325

2426
Improved features
2527
-----------------
2628

27-
+ installation:
29+
+ I18N
30+
31+
- Updates Catalan, French, German, Italian, Russian, Slovak, and
32+
Spanish translations from Transifex.
2833

29-
- Apache virtual environments are now created with appropriate
30-
`WSGIDaemonProcess` user value, taken from the configuration
31-
variable `CFG_BIBSCHED_PROCESS_USER`, provided it is set. This
32-
change makes it easier to run Invenio under non-Apache user
33-
identity.
34+
+ installation
3435

35-
- Apache virtual environments are now created with appropriate
36-
`WSGIPythonHome` directive so that it would be easier to run
37-
Invenio from within Python virtual environments.
36+
- Installation scripts now support Ubuntu 14.04 LTS.
37+
- Uses `/usr/sbin/service foo` consistently everywhere to restart
38+
daemons instead of deprecated `/etc/init.d/foo`.
3839

3940
Bug fixes
4041
---------
4142

42-
+ global:
43+
+ WebAccess
44+
45+
- Improves the WebAccess FireRole documentation by providing
46+
corrected example on how to use groups in FireRole definitions.
47+
(#3107) (#3225)
48+
49+
+ WebSearch
50+
51+
- Fixes asynchronous external collection getter tests following the
52+
update of the Invenio project web site.
53+
54+
+ global
4355

44-
- Replaces `invenio-demo.cern.ch` by `demo.invenio-software.org`
45-
which is the new canonical URL of the demo site. (#2867)
56+
- Silences most MySQL UTF-8 warnings related to inserting into and
57+
updating BLOB table columns.
4658

47-
+ testutils:
59+
+ installation
4860

49-
- Switches off SSL verification when running the test suite. Useful
50-
for Python-2.7.9 where self-signed SSL certificates (that are
51-
usually used on development installations) would cause apparent
52-
test failures. (#2868)
61+
- Amends canonical location of py-editdist and pyRXP packages,
62+
fixing the installation problem.
63+
- Fixes Apache virtual host configuration generation on CentOS 6.
5364

5465
Download
5566
--------
5667

57-
- http://invenio-software.org/download/invenio-1.0.9.tar.gz
58-
- http://invenio-software.org/download/invenio-1.0.9.tar.gz.md5
59-
- http://invenio-software.org/download/invenio-1.0.9.tar.gz.sig
68+
- http://invenio-software.org/download/invenio-1.0.10.tar.gz
69+
- http://invenio-software.org/download/invenio-1.0.10.tar.gz.md5
70+
- http://invenio-software.org/download/invenio-1.0.10.tar.gz.sig
6071

6172
Installation
6273
------------
@@ -66,19 +77,19 @@ Please follow the INSTALL file bundled in the distribution tarball.
6677
Upgrade
6778
-------
6879

69-
If you are upgrading from Invenio v1.0.8, then:
80+
If you are upgrading from Invenio v1.0.9, then:
7081

7182
a) Stop your bibsched queue and your Apache server.
7283

7384
b) Install the update::
7485

75-
$ tar xvfz invenio-1.0.9.tar.gz
76-
$ cd invenio-1.0.9
86+
$ tar xvfz invenio-1.0.10.tar.gz
87+
$ cd invenio-1.0.10
7788
$ sudo rsync -a /opt/invenio/etc/ /opt/invenio/etc.OLD/
7889
$ sh /opt/invenio/etc/build/config.nice
7990
$ make
8091
$ make check-custom-templates
81-
$ make update-v1.0.8-tables
92+
$ make update-v1.0.9-tables
8293
$ sudo -u www-data make install
8394
$ sudo -u www-data /opt/invenio/bin/inveniocfg --update-all
8495
$ sudo rsync -a /opt/invenio/etc.OLD/ \

0 commit comments

Comments
 (0)