/[smeserver]/rpms/e-smith-mysql/sme10/e-smith-mysql.spec
ViewVC logotype

Diff of /rpms/e-smith-mysql/sme10/e-smith-mysql.spec

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

Revision 1.5 by unnilennium, Thu Mar 31 12:57:40 2016 UTC Revision 1.15 by jpp, Tue Dec 8 02:55:37 2020 UTC
# Line 1  Line 1 
1  # $Id: e-smith-mysql.spec,v 1.4 2016/03/31 11:25:33 unnilennium Exp $  # $Id: e-smith-mysql.spec,v 1.14 2016/07/24 15:20:03 unnilennium Exp $
2    
3  Summary: e-smith specific mysql configuration and templates.  Summary: e-smith specific mysql configuration and templates.
4  %define name e-smith-mysql  %define name e-smith-mysql
5  Name: %{name}  Name: %{name}
6  %define version 2.6.0  %define version 2.6.0
7  %define release 4  %define release 14
8  Version: %{version}  Version: %{version}
9  Release: %{release}%{?dist}  Release: %{release}%{?dist}
10  License: GPL  License: GPL
11  Group: Networking/Daemons  Group: Networking/Daemons
12  Source: %{name}-%{version}.tar.xz  Source: %{name}-%{version}.tar.xz
13  Patch0:  e-smith-mysql-2.6.0-mariadb1.patch  Patch0: e-smith-mysql-2.6.0-mariadb1.patch
14    Patch1: e-smith-mysql-2.6.0-mysqld2mariadb.patch
15    Patch2: e-smith-mysql-2.6.0-use_default_innodb_settings.patch
16    Patch3: e-smith-mysql-2.6.0-mariadb_forgotten_var.patch
17    Patch4: e-smith-mysql-2.6.0.bz9671.RemoveDummyMysqlDatabase.patch
18    Patch5: e-smith-mysql-2.6.0.bz9688.skipredirect.patch
19    Patch6: e-smith-mysql-2.6.0-bz11145-updateevent.patch
20    
21  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
22  BuildArchitectures: noarch  BuildArchitectures: noarch
23  Requires: mariadb-server  Requires: mariadb-server
# Line 21  BuildRequires: e-smith-devtools >= 1.13. Line 28  BuildRequires: e-smith-devtools >= 1.13.
28  AutoReqProv: no  AutoReqProv: no
29    
30  %changelog  %changelog
31    * Mon Dec 07 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-14.sme
32    - e-smith-update event [SME: 11145]
33    - mariadb systemd integration [SME: 11021]
34      move set.password and template
35      create /usr/lib/systemd/system/mariadb.service.d/sme.conf
36      create /sbin/e-smith/systemd/mariadb-initialize + chmod
37      cleanup
38    - mysql.init systemd integration [SME: 11120]
39      create mysql_init.service
40    
41    
42    * Sun Jul 24 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-13.sme
43    - systemd skip redirect [SME: 9688]
44    
45    * Sat Jul 23 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-12.sme
46    - Corrected a typo in e-smith-mysql-2.6.0.bz9671.RemoveDummyMysqlDatabase.patch
47    - [SME: 9671]
48    
49    * Thu Jul 21 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-11.sme
50    - fix broken link /etc/init.d/supervise/mariadb [SME: 9686]
51    
52    * Mon Jul 18 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-10.sme
53    - Remove Dummy database from backup and restoration [SME: 9671]
54    - Added  e-smith-mysql-2.6.0.bz9671.RemoveDummyMysqlDatabase.patch
55    
56    * Mon Jul 18 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme
57    - fix forgotten mysqld variables in various scripts [SME: 9438]
58    -  e-smith-mysql-2.6.0-mariadb_forgotten_var.patch
59    
60    * Mon Apr 11 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-7.sme
61    - Use default InnoDB settings [SME: 9439]
62    
63    * Mon Apr 11 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-6.sme
64    - Rename mysqld to mariadb [SME: 9438]
65    
66    * Mon Apr 11 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-5.sme
67    - Remove uneeded scriplets %post and %postun [SME: 9422]
68    
69  * Thu Mar 31 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-4.sme  * Thu Mar 31 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-4.sme
70  - new path for pid file with mariadb [SME: 9407]  - new path for pid file with mariadb [SME: 9407]
71  - my.cnf : Innodb needs to be active for mariadb [SME: 9406]  - my.cnf : Innodb needs to be active for mariadb [SME: 9406]
# Line 725  mysql. Line 770  mysql.
770  %prep  %prep
771  %setup  %setup
772  %patch0 -p1  %patch0 -p1
773    %patch1 -p1
774    %patch2 -p1
775    %patch3 -p1
776    %patch4 -p1
777    %patch5 -p1
778    # mysqld renamed to mariadb [SME: 9438]
779    # TODO: remove on next tarball creation
780    rm -f root/service/mysqld
781    rm -rf root/var/service/mysqld
782    rm -rf root/var/run/
783    rm -rf root/var/log/mysqld
784    rm -f root/etc/rc.d/init.d/supervise/mysqld
785    rm -f root/etc/rc.d/rc7.d/S50mysqld
786    
787    mkdir -p root/var/log/mariadb.run
788    %patch6 -p1
789    
790    
791  %build  %build
# Line 734  perl createlinks Line 795  perl createlinks
795  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
796  (cd root   ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)  (cd root   ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
797  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
798      --dir /var/run/mysqld 'attr(0755,mysql,mysql)' \      --file /var/service/mariadb/run 'attr(0755,root,root)' \
799      --file /var/service/mysqld/run 'attr(0755,root,root)' \      --file /var/service/mariadb/control/t 'attr(0750,root,root)' \
800      --file /var/service/mysqld/control/t 'attr(0750,root,root)' \      --file /var/service/mariadb/control/d 'attr(0750,root,root)' \
801      --file /var/service/mysqld/control/d 'attr(0750,root,root)' \      --file /var/service/mariadb/control/i 'attr(0750,root,root)' \
802      --file /var/service/mysqld/control/i 'attr(0750,root,root)' \      --file /var/service/mariadb/control/q 'attr(0750,root,root)' \
803      --file /var/service/mysqld/control/q 'attr(0750,root,root)' \      --file /var/service/mariadb/log/run 'attr(0755,root,root)' \
804      --file /var/service/mysqld/log/run 'attr(0755,root,root)' \      --dir '/var/log/mariadb.run' 'attr(2750,smelog,smelog)' \
     --dir '/var/log/mysqld' 'attr(2750,smelog,smelog)' \  
805      --dir '/home/e-smith/db/mysql' 'attr(0750,root,root)' \      --dir '/home/e-smith/db/mysql' 'attr(0750,root,root)' \
806      > %{name}-%{version}-filelist      > %{name}-%{version}-filelist
807  echo "%doc COPYING"          >> %{name}-%{version}-filelist  echo "%doc COPYING"          >> %{name}-%{version}-filelist
# Line 750  echo "%doc COPYING"          >> %{name}- Line 810  echo "%doc COPYING"          >> %{name}-
810  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
811    
812  %post  %post
 # mysql.com compatibility  
 [ -e /etc/rc.d/init.d/mysqld ] || ln -s ./mysql /etc/rc.d/init.d/mysqld  
 # We remove this because the template has been renamed  
 /bin/rm -f /etc/e-smith/events/bootstrap-console-save/templates2expand/etc/e-smith/sql/init/10fix_privilege_tables  
   
813    
814  %postun  %postun
 if [ "$1" == 0 ]; then  
   [ -L /etc/rc.d/init.d/mysqld ] && rm /etc/rc.d/init.d/mysqld || :  
 fi  
815    
816  %files -f %{name}-%{version}-filelist  %files -f %{name}-%{version}-filelist
817  %defattr(-,root,root)  %defattr(-,root,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