Hello community,

here is the log from the commit of package gnuhealth for openSUSE:Factory 
checked in at 2017-09-17 22:38:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnuhealth (Old)
 and      /work/SRC/openSUSE:Factory/.gnuhealth.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnuhealth"

Sun Sep 17 22:38:47 2017 rev:15 rq:526510 version:3.2.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnuhealth/gnuhealth.changes      2017-08-29 
11:48:04.250576270 +0200
+++ /work/SRC/openSUSE:Factory/.gnuhealth.new/gnuhealth.changes 2017-09-17 
22:40:01.326369759 +0200
@@ -1,0 +2,11 @@
+Sat Sep 16 16:18:04 UTC 2017 - [email protected]
+
+- version 3.2.3 Fix bug #52038: Field history is repeated in the tree
+  view of the prescription line 
+
+-------------------------------------------------------------------
+Thu Sep 14 19:14:55 UTC 2017 - [email protected]
+
+- Documentation adapted
+
+-------------------------------------------------------------------

Old:
----
  gnuhealth-3.2.2.tar.gz

New:
----
  gnuhealth-3.2.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gnuhealth.spec ++++++
--- /var/tmp/diff_new_pack.Eyiy9d/_old  2017-09-17 22:40:02.566195439 +0200
+++ /var/tmp/diff_new_pack.Eyiy9d/_new  2017-09-17 22:40:02.602190378 +0200
@@ -24,7 +24,7 @@
 BuildRequires:  fdupes
 BuildRequires:  python3-setuptools
 
-Version:        %{majorver}.2
+Version:        %{majorver}.3
 Release:        0
 
 Url:            http://health.gnu.org

++++++ GNUHealth.README.SUSE ++++++
--- /var/tmp/diff_new_pack.Eyiy9d/_old  2017-09-17 22:40:02.750169573 +0200
+++ /var/tmp/diff_new_pack.Eyiy9d/_new  2017-09-17 22:40:02.754169011 +0200
@@ -7,13 +7,14 @@
 You have already installed the package gnuhealth and found this documentation. 
Good.
 
 1) Log in as root and start the database
-#su
-#systemctl start postgresql
+> su
+> systemctl start postgresql
 
 2) Change postgres parameters. You need to log in as user postgres, in order 
to avoid authorisation issues. Assuming we have nano as editor:
 <you are logged in as user 'root'>
-#su postgres
-#nano /var/lib/pgsql/data/pg_hba.conf
+
+> su postgres
+> nano /var/lib/pgsql/data/pg_hba.conf
 
 FOR LOCAL CONNECTIONS (Database on the same machine) change the line
     local   all             all                                     md5
@@ -23,28 +24,24 @@
 Save your input. This will make sure that Tryton/GNUHealth server can connect 
to the database
 
 3) Create a role for 'tryton' in the database (sill as user postgres)
-#psql -c "CREATE USER tryton WITH CREATEDB;"
+> psql -c "CREATE USER tryton WITH CREATEDB;"
 
 4) exit as user postgres and restart postgres
-#exit
-#systemctl restart postgresql
-
-5) Now lets look at /etc/tryton/trytond.conf. Uncomment the line with 
super_pwd (it is recommended that you set your own password here!
-#nano /etc/tryton/trytond.conf
-uncomment super_pwd
+> exit
+> systemctl restart postgresql
 
-6) start gnuhealth/trytond:
-#systemctl start gnuhealth
+5) start gnuhealth/trytond:
+> systemctl start gnuhealth
 
-7) Install the tryton client:
-#zypper in tryton
+6) Install the tryton client:
+> zypper in tryton
 
-8) Open the tryton client:
-#tryton
+7) Open the tryton client:
+> tryton
 go to 'manage profiles' -> add -> name it 'localhost' -> Host: localhost
 -> you should now see a selection of available databases
 
-Note: Fron Tryton Release 4.2 onwards it is not possible anymore to create 
databases 
+Note: From Tryton Release 4.2 onwards it is not possible anymore to create 
databases 
 from the Frontend. You need to do this manually (see 
/usr/share/doc/packages/trytond/tryton-server.README.SUSE)
 
 DONE.
@@ -69,24 +66,24 @@
 
     As user tryton, run tryton-admin:
 
-    # /usr/bin/trytond-admin -c /etc/tryton/trytond.conf --all -d mydb
+    > /usr/bin/trytond-admin -c /etc/tryton/trytond.conf --all -d mydb
     
   * GNU_Health 3.0 on openSUSE delivered 2 modules, which are not (yet) in 3.2
     anymore: pdq and hl7. You need to delete them first
 
     Log in as database owner (usually tryton):
     
-    # sudo su tryton -s /bin/bash
+    > sudo su tryton -s /bin/bash
 
     Delete the 2 modules:
-    # psql mydb
+    > psql mydb
     delete from ir_module where name='pdq';
     delete from ir_module where name='hl7';
     
     Quit with CRTL-D
     Apply the database patch:
     
-    # psql mydb < /usr/share/doc/packages/gnuhealth/upgrade/3.2/upgrade_32.sql
+    > psql mydb < /usr/share/doc/packages/gnuhealth/upgrade/3.2/upgrade_32.sql
     
     Remember to replace mydb with the name of your database.
 
@@ -135,7 +132,7 @@
 
 Starting with GNU Health 3.2, GNU Health comes with its own WebDAV-Server that 
can be used for shared calendars. In order to enable the WebDAV server, it 
comes with a systemd-service. As input parameter for the service the 
database-name on which to operate must be passed. Say your database is called 
mydb, invoke the service with
 
-systemctl enable [email protected]
+> systemctl enable [email protected]
 
 You can start multiple webdav services for different databases in parallel.
 
@@ -158,4 +155,4 @@
 [4] https://github.com/mbehrle/tryton/blob/wiki/InstallationonopenSUSE.md
 
 
- -- Axel Braun <[email protected]>  TUE Jun 20 15:40:04 UTC 2017
+ -- Axel Braun <[email protected]>  THU Sep 14 19:14:04 UTC 2017

++++++ gnuhealth-3.2.2.tar.gz -> gnuhealth-3.2.3.tar.gz ++++++
/work/SRC/openSUSE:Factory/gnuhealth/gnuhealth-3.2.2.tar.gz 
/work/SRC/openSUSE:Factory/.gnuhealth.new/gnuhealth-3.2.3.tar.gz differ: char 
5, line 1


Reply via email to