Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package nextcloud for openSUSE:Factory 
checked in at 2021-07-07 18:30:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/nextcloud (Old)
 and      /work/SRC/openSUSE:Factory/.nextcloud.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "nextcloud"

Wed Jul  7 18:30:31 2021 rev:60 rq:904436 version:22.0.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/nextcloud/nextcloud.changes      2021-07-02 
13:29:02.420028181 +0200
+++ /work/SRC/openSUSE:Factory/.nextcloud.new.2625/nextcloud.changes    
2021-07-07 18:31:42.386413351 +0200
@@ -1,0 +2,27 @@
+Tue Jul  6 19:58:39 UTC 2021 - ecsos <[email protected]>
+
+- Fix some scriptlet and their output text.
+
+-------------------------------------------------------------------
+Tue Jul  6 14:22:09 UTC 2021 - Michael Str??der <[email protected]>
+
+- Update to 22.0.0
+  - User-defined groups with Circles that makes it easier to manage teams 
+    where you can share files or assign tasks to circles, or create chat 
+    rooms for a circle
+  - Integrated chat and task management where you can simply share a deck 
+    card into a chat room or turn a chat message into a task
+  - Easy approval workflow, where an administrator can define a new 
+    approval flow in the settings and users can, on a document, request 
+    approval
+  - Getting your document signatures easy with integrated PDF signing with 
+    DocuSign, EIDEasy, and LibreSign
+  - Integrated knowledge management Nextcloud puts knowledge available to 
+    everyone at a moments' notice, providing easy search, sharing, and 
+    portable access
+  - Groupware improvements bringing a trash bin feature in Calendar, 
+    resource booking to facilitate the handling of resources in 
+    organizations. Nextcloud Mail features improved threading, email tagging, 
+    and support for Sieve filtering
+
+-------------------------------------------------------------------

Old:
----
  nextcloud-21.0.3.tar.bz2

New:
----
  nextcloud-22.0.0.tar.bz2

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

Other differences:
------------------
++++++ nextcloud.spec ++++++
--- /var/tmp/diff_new_pack.MnQCD0/_old  2021-07-07 18:31:43.194407011 +0200
+++ /var/tmp/diff_new_pack.MnQCD0/_new  2021-07-07 18:31:43.198406979 +0200
@@ -47,7 +47,7 @@
 %endif
 
 Name:           nextcloud
-Version:        21.0.3
+Version:        22.0.0
 Release:        0
 Summary:        File hosting service
 License:        AGPL-3.0-only
@@ -208,6 +208,7 @@
 
 %pre
 %service_add_pre %{name}-cron.timer %{name}-cron.service
+
 # avoid fatal php errors, while we are changing files
 # https://github.com/nextcloud
 #
@@ -215,35 +216,30 @@
 # If the first argument to pre is 1, the RPM operation is an initial 
installation. If the argument is 2, 
 # the operation is an upgrade from an existing version to a new one.
 if [ $1 -gt 1 -a ! -s %{statedir}/apache_stopped_during_nextcloud_install ]; 
then      
-  echo "%{name} update: Checking for running Apache"
+  echo "o %{name} pre-install: Checking for running Apache"
   # FIXME: this above should make it idempotent -- a requirement with openSUSE.
   # it does not work.
 %if 0%{?suse_version} && 0
-%if 0%{?suse_version} <= 1110
-  rcapache2 status       | grep running > 
%{statedir}/apache_stopped_during_nextcloud_install
-  rcapache2 stop
-%else
   service apache2 status | grep running > 
%{statedir}/apache_stopped_during_nextcloud_install
   service apache2 stop
 %endif
-%endif
 %if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
   service httpd status | grep running > 
%{statedir}/apache_stopped_during_nextcloud_install
   service httpd stop
 %endif
 fi
 if [ -s %{statedir}/apache_stopped_during_nextcloud_install ]; then
-  echo "%{name} pre-install: Stopping Apache"
+  echo "o %{name} pre-install: Stopping Apache"
 fi
 
 if [ $1 -eq 1 ]; then
-    echo "%{name}-server: First install starting"
+    echo "o %{name} pre-install: First install starting"
 else
-    echo "%{name}-server: Upgrade starting ..."
+    echo "o %{name} pre-install: Upgrade starting ..."
 fi
 # https://github.com/nextcloud
 if [ -x %{ocphp_bin}/php -a -f %{nc_dir}/occ ]; then
-  echo "%{name}: occ maintenance:mode --on"
+  echo "o %{name} pre-install: occ maintenance:mode --on"
   su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
maintenance:mode --on" || true
   echo yes > %{statedir}/occ_maintenance_mode_during_nextcloud_install
 fi
@@ -262,15 +258,11 @@
 fi
 
 if [ -s %{statedir}/apache_stopped_during_nextcloud_install ]; then
-  echo "%{name} post-install: Restarting Apache"
+  echo "o %{name} post-install: Restarting Apache"
   ## If we stopped apache in pre section, we now should restart. -- but *ONLY* 
then!
   ## Maybe delegate that task to occ upgrade? They also need to handle this, 
somehow.
 %if 0%{?suse_version}
-%if 0%{?suse_version} <= 1310
-  rcapache2 start
-%else
-  rcapache2 restart apache2.service
-%endif
+  service apache2 start
 %endif
 %if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
   service httpd start
@@ -278,18 +270,18 @@
 fi
 
 if [ -s %{statedir}/occ_maintenance_mode_during_nextcloud_install ]; then
-echo "%{name}: occ maintenance:repair (fix possible errors)"
+echo "o %{name} post-install: occ maintenance:repair (fix possible errors)"
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
maintenance:repair" || true
-echo "%{name}: occ db:add-missing-* (add missing db things)"
+echo "o %{name} post-install: occ db:add-missing-* (add missing db things)"
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
maintenance:mimetype:update-db" || true
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
db:add-missing-columns" || true
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
db:add-missing-indices" || true
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
db:add-missing-primary-keys" || true
-echo "%{name}: occ update apps"
+echo "o %{name} post-install: occ update apps"
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
app:update --all" || true
-echo "%{name}: occ upgrade"
+echo "o %{name} post-install: occ upgrade"
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
upgrade" || true
-echo "%{name}: occ maintenance:mode --off"
+echo "o %{name} post-install: occ maintenance:mode --off"
 su %{nc_user} -s /bin/sh -c "cd %{nc_dir}; PATH=%{ocphp_bin}:$PATH php ./occ 
maintenance:mode --off" || true
 fi
 
@@ -297,9 +289,9 @@
 rm -f %{statedir}/occ_maintenance_mode_during_nextcloud_install
 
 if [ $1 -eq 1 ]; then
-    echo "%{name}-server: First install complete"
+    echo "o %{name} post-install: First install complete"
 else
-    echo "%{name}-server: Upgrade complete"
+    echo "o %{name} post-install: Upgrade complete"
 fi
 
 %preun

++++++ nextcloud-21.0.3.tar.bz2 -> nextcloud-22.0.0.tar.bz2 ++++++
/work/SRC/openSUSE:Factory/nextcloud/nextcloud-21.0.3.tar.bz2 
/work/SRC/openSUSE:Factory/.nextcloud.new.2625/nextcloud-22.0.0.tar.bz2 differ: 
char 11, line 1

Reply via email to