/[smecontribs]/rpms/smeserver-mediawiki/contribs10/smeserver-mediawiki.spec
ViewVC logotype

Diff of /rpms/smeserver-mediawiki/contribs10/smeserver-mediawiki.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.10 by brianr, Fri Jun 3 09:35:35 2022 UTC Revision 1.18 by jpp, Tue Aug 2 05:52:32 2022 UTC
# Line 1  Line 1 
1  # $Id: smeserver-mediawiki.spec,v 1.9 2022/06/01 13:28:34 brianr Exp $  # $Id: smeserver-mediawiki.spec,v 1.17 2022/08/02 05:45:21 jpp Exp $
2  # Authority: ber_die  # Authority: ber_die
3  # Name: Dietmar Berteld  # Name: Dietmar Berteld
4    
5  %define name smeserver-mediawiki  %define name smeserver-mediawiki
6  %define version 1.38.0  %define version 1.38.2
7  %define release 1  %define release 2
8    
9  Summary:       Mediawiki Web Application for SME Server 7.x based on Mediawiki 1.38.0  Summary:       Mediawiki Web Application for SME Server 7.x based on Mediawiki 1.38.0
10  Name:          %{name}  Name:          %{name}
# Line 13  Release:       %{release}%{?dist} Line 13  Release:       %{release}%{?dist}
13  License:       GPL  License:       GPL
14  Group:         /Web/Applications  Group:         /Web/Applications
15  Source:        %{name}-%{version}.tar.gz  Source:        %{name}-%{version}.tar.gz
16  #Patch0:        smeserver-mediawiki-1.37.2-Fix-up-password-generation-and-localsettings.patch  
17  #Patch1:        smeserver-mediawiki-1.6.10-Update-to-SME10.patch  Patch0:        smeserver-mediawiki-1.38.2-bz12133-httpd24.patch
18    Patch1:        smeserver-mediawiki-1.38.2-bz12134-backup.patch
19    
20  URL:           http://mediawiki.org/  URL:           http://mediawiki.org/
21  BuildRoot:     /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot:     /var/tmp/%{name}-%{version}-%{release}-buildroot
22  BuildArch:     noarch  BuildArch:     noarch
23  Requires:      e-smith-base, e-smith-release >= 10  Requires:      e-smith-base, e-smith-release >= 10
24    Requires:      e-smith-apache >= 2.6.0-19
25    Requires:      smeserver-php >= 3.0.0-43
26  BuildRequires: e-smith-devtools  BuildRequires: e-smith-devtools
27    
28  %description  %description
# Line 31  After installation open your webbrowser Line 34  After installation open your webbrowser
34  http://your_e-smith-server_adress/wiki  http://your_e-smith-server_adress/wiki
35    
36  %changelog  %changelog
37    * Tue Aug 02 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.38.2-2.sme
38    - update to httpd 2.4 access syntax [SME: 12133]
39    - add to core backup [SME: 12134]
40    
41    * Tue Jul 12 2022 Brian Read <brianr@bjsystems.co.uk> 1.38.2-1.sme
42    - Update version to Mediawiki-1.38.2 [sme: 11987]
43    - Fix initial admin user password
44    
45    * Thu Jun 09 2022 Brian Read <brianr@bjsystems.co.uk> 1.38.1-2.sme
46    - fix sql user create [SME: 11987]
47    
48    * Wed Jun 08 2022 Brian Read <brianr@bjsystems.co.uk> 1.38.0-2.sme
49    - Update version to Mediawiki-1.38.1 [sme: 11987]
50    
51    * Fri Jun 03 2022 Brian Read <brianr@bjsystems.co.uk> 1.38.0-2.sme
52    - update sql create [SME: 11987]
53    
54  * Fri Jun 03 2022 Brian Read <brianr@bjsystems.co.uk> 1.38.0-1.sme  * Fri Jun 03 2022 Brian Read <brianr@bjsystems.co.uk> 1.38.0-1.sme
55  - Rollup tar file to include mediawiki 1.38.0  [SME: 11987]  - Rollup tar file to include mediawiki 1.38.0  [SME: 11987]
56    
# Line 93  rm -rf $RPM_BUILD_ROOT Line 113  rm -rf $RPM_BUILD_ROOT
113    
114  %setup  %setup
115    
116  #%patch0 -p1  %patch0 -p1
117  #%patch1 -p1  %patch1 -p1
118    
119  %build  %build
120    perl createlinks
121    
122  %install  %install
123  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
# Line 134  esac Line 155  esac
155  APP=MediaWiki  APP=MediaWiki
156  URL=wiki  URL=wiki
157  WORKDIR=/root  WORKDIR=/root
158  MEDIAWIKIVERSION='1.38.0'  MEDIAWIKIVERSION='1.38.2'
159  INSTALLDIR=/usr/share/doc/mediawiki-$MEDIAWIKIVERSION/Sources  INSTALLDIR=/usr/share/doc/mediawiki-$MEDIAWIKIVERSION/Sources
160  HTMLDIR=/opt/mediawiki  HTMLDIR=/opt/mediawiki
161  MYSQLDB=mediawiki  MYSQLDB=mediawiki
# Line 151  rm -rf lang* Line 172  rm -rf lang*
172  #Untar application  #Untar application
173  echo "Decompressing files..."  echo "Decompressing files..."
174  mkdir -p $HTMLDIR  mkdir -p $HTMLDIR
175  tar xzf $INSTALLDIR/mediawiki-1.37.2.tar.gz -C /opt  tar xzf $INSTALLDIR/mediawiki-$MEDIAWIKIVERSION.tar.gz -C /opt
176  case $UPDATE in  case $UPDATE in
177     0) mv -f /opt/mediawiki-$MEDIAWIKIVERSION/* $HTMLDIR ;;     0) mv -f /opt/mediawiki-$MEDIAWIKIVERSION/* $HTMLDIR ;;
178     *) cp -ufR /opt/mediawiki-$MEDIAWIKIVERSION/* $HTMLDIR --reply=yes ;;     *) cp -ufR /opt/mediawiki-$MEDIAWIKIVERSION/* $HTMLDIR ;;
179  esac  esac
180  rm -rf /opt/mediawiki-$MEDIAWIKIVERSION  rm -rf /opt/mediawiki-$MEDIAWIKIVERSION
181  cp $INSTALLDIR/sme.* $HTMLDIR/skins/common/images  cp $INSTALLDIR/sme.* $HTMLDIR/skins/common/images
182  #Prepare config settings  #Prepare config settings
183  sed 's.mediawikipassword.'$MYSQLPASS'.g' $INSTALLDIR/LocalSettings.php > $HTMLDIR/LocalSettings.php  sed 's.mediawikipassword.'$MYSQLPASS'.g' $INSTALLDIR/LocalSettings.php > $HTMLDIR/LocalSettings.php
184  sed "s/mydomain/$DOMAIN/g" $HTMLDIR/LocalSettings.php > $HTMLDIR/LocalSettings2.php  sed "s/mydomain/$DOMAIN/g" $HTMLDIR/LocalSettings.php > $HTMLDIR/LocalSettings1.php
185    sed "s/myhost/$SRVNAME/g" $HTMLDIR/LocalSettings1.php > $HTMLDIR/LocalSettings2.php
186  case "$LANG" in  case "$LANG" in
187          de_DE) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "de";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;          de_DE) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "de";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;
188          es_ES) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "es";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;          es_ES) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "es";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;
# Line 168  case "$LANG" in Line 190  case "$LANG" in
190          it_IT) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "it";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;          it_IT) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "it";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;
191              *) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "en";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;              *) sed 's.$wgLanguageCode = "en";.$wgLanguageCode = "en";.g' $HTMLDIR/LocalSettings2.php > $HTMLDIR/LocalSettings.php ;;
192  esac  esac
193    rm $HTMLDIR/LocalSettings1.php
194  rm $HTMLDIR/LocalSettings2.php  rm $HTMLDIR/LocalSettings2.php
195  cp $INSTALLDIR/PwAuthPlugin.php $HTMLDIR/extensions/PwAuthPlugin.php  #cp $INSTALLDIR/PwAuthPlugin.php $HTMLDIR/extensions/PwAuthPlugin.php
196  #Creating SME-Groups for MediaWiki (disabled)  #Creating SME-Groups for MediaWiki (disabled)
197  #/sbin/e-smith/db accounts set mw_read group  #/sbin/e-smith/db accounts set mw_read group
198  #/sbin/e-smith/db accounts setprop mw_read Description "MediaWiki Read"  #/sbin/e-smith/db accounts setprop mw_read Description "MediaWiki Read"
# Line 194  case $UPDATE in Line 217  case $UPDATE in
217      echo "Creating MySQL User and DataBase..."      echo "Creating MySQL User and DataBase..."
218      mysqladmin -u root create $MYSQLDB      mysqladmin -u root create $MYSQLDB
219      mysql $MYSQLDB < $INSTALLDIR/$MYSQLDB.sql      mysql $MYSQLDB < $INSTALLDIR/$MYSQLDB.sql
220        mysql $MYSQLDB -e "UPDATE user SET user_password = MD5( CONCAT( user_id, '-', MD5( 'mediawikiadmin' ) ) ) WHERE user_id =1 "
221      mysql -u root -e "SET PASSWORD FOR $MYSQLUSER@localhost = PASSWORD( '$MYSQLPASS' ) "      mysql -u root -e "SET PASSWORD FOR $MYSQLUSER@localhost = PASSWORD( '$MYSQLPASS' ) "
222      mysqladmin flush-privileges      mysqladmin flush-privileges
223      ;;      ;;
# Line 204  case $UPDATE in Line 228  case $UPDATE in
228      ;;      ;;
229  esac  esac
230  # Rebuilding Wiki language menus  # Rebuilding Wiki language menus
231  php $HTMLDIR/maintenance/rebuildMessages.php --rebuild  #php $HTMLDIR/maintenance/rebuildMessages.php --rebuild
232  echo "Applying modifications to services..."  #echo "Applying modifications to services..."
233  # Uncomment the PwAuth-function  # Uncomment the PwAuth-function
234  sed 's.#!..g' $HTMLDIR/LocalSettings.php > $HTMLDIR/LocalSettings2.php  sed 's.#!..g' $HTMLDIR/LocalSettings.php > $HTMLDIR/LocalSettings2.php
235  mv $HTMLDIR/LocalSettings2.php $HTMLDIR/LocalSettings.php  mv $HTMLDIR/LocalSettings2.php $HTMLDIR/LocalSettings.php
236  /sbin/e-smith/expand-template /etc/httpd/conf/httpd.conf  #Handled in the -update event
237  systemctl restart httpd-e-smith.service  #/sbin/e-smith/expand-template /etc/httpd/conf/httpd.conf
238    #systemctl restart httpd-e-smith.service
239  echo "-------------------------------------------------------------------------------"  echo "-------------------------------------------------------------------------------"
240  case $UPDATE in  case $UPDATE in
241    0)    0)
# Line 247  echo "For more details, see http://wiki. Line 272  echo "For more details, see http://wiki.
272  echo "-------------------------------------------------------------------------------"  echo "-------------------------------------------------------------------------------"
273    
274  %preun  %preun
275    MEDIAWIKIVERSION='1.38.2'
276  INSTALLDIR=/usr/share/doc/mediawiki-$MEDIAWIKIVERSION/Sources  INSTALLDIR=/usr/share/doc/mediawiki-$MEDIAWIKIVERSION/Sources
277  if [ $1 = 0 ] ; then  if [ $1 = 0 ] ; then
278    mv $INSTALLDIR/DO_NOT_USE_OR_DELETE/MW-Full-Uninstall.sh /root/    mv $INSTALLDIR/DO_NOT_USE_OR_DELETE/MW-Full-Uninstall.sh /root/


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed