/[smecontribs]/rpms/madsonic/contribs10/madsonic.spec
ViewVC logotype

Diff of /rpms/madsonic/contribs10/madsonic.spec

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

Revision 1.1 by jpp, Thu Jun 3 15:20:24 2021 UTC Revision 1.8 by jpp, Sat Jul 23 18:42:15 2022 UTC
# Line 1  Line 1 
1  %define name madsonic  %define name madsonic
2  %define version 5.0.3760  %define version 6.2.9092
3  %define release 1  %define release 1
4  %define __os_install_post \  %define __os_install_post \
5         /usr/lib/rpm/brp-compress \         /usr/lib/rpm/brp-compress \
# Line 12  Version:        %{version} Line 12  Version:        %{version}
12  Release:        %{release}%{?dist}  Release:        %{release}%{?dist}
13  Summary:        A web-based music streamer, jukebox and Podcast receiver  Summary:        A web-based music streamer, jukebox and Podcast receiver
14  Source:         %{name}-%{version}.tar.gz  Source:         %{name}-%{version}.tar.gz
15    Patch0:         madsonic-6.2.9084-test.patch
16  BuildRoot: /var/tmp/%{name}-%{version}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-buildroot
17  BuildArch: noarch  BuildArch: noarch
18  BuildRequires: e-smith-devtools  BuildRequires: e-smith-devtools
# Line 21  License:        GPLv3 Line 22  License:        GPLv3
22  URL:            http://madsonic.org  URL:            http://madsonic.org
23    
24  %changelog  %changelog
25    * Fri Jul 22 2022 Jean-Philippe Pialasse <tests@pialasse.com> 6.2.9092-1.sme
26    - update with log4j fixes and more
27    - systemd capable
28    - enable mediasonic.test by default
29    
30    * Fri Jun 04 2021 Jean-Philippe Pialasse <tests@pialasse.com> 6.2.9084-2.sme
31    - fix permissions [SME: 10699]
32    - fix noise on start with initial install [SME: 8016]
33    
34    * Thu Jun 03 2021 Jean-Philippe Pialasse <tests@pialasse.com> 6.2.9084-1.sme
35    - update to 6.2.9084
36    - first build for SME10
37    
38  * Sun Nov 17 2013 JP Pialasse <tests@pialasse.com> 5.0.3760-1.sme  * Sun Nov 17 2013 JP Pialasse <tests@pialasse.com> 5.0.3760-1.sme
39  - first build for sme  - first build for sme
40  - adding noarch  - adding noarch
# Line 34  from home. Line 48  from home.
48    
49  Apps for Android, iPhone and Windows Phone are also available.  Apps for Android, iPhone and Windows Phone are also available.
50    
51  Java 1.6 or higher is required to run Madsonic.  Java 1.8 or higher is required to run Madsonic.>= 6.2
52    
53  %prep  %prep
54  %setup  %setup
55    %patch0 -p1
56    
57    mkdir -p root/run/madsonic
58    mkdir -p root/usr/lib/tmpfiles.d/
59    mkdir -p root/usr/bin
60    echo "d /run/madsonic 0755 madsonic madsonic" > root/usr/lib/tmpfiles.d/madsonic.conf
61    rm root/etc/init.d/madsonic
62    
63    pushd root/usr/bin/
64    ln -sf  /usr/share/madsonic/madsonic.sh madsonic
65    popd
66    
67    
68  %install  %install
# Line 45  rm -rf $RPM_BUILD_ROOT Line 70  rm -rf $RPM_BUILD_ROOT
70  (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)  (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
71  rm -f %{name}-%{version}-filelist  rm -f %{name}-%{version}-filelist
72  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \  /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
73  | grep -v "/etc/sysconfig/madsonic" \   --dir /usr/share/madsonic 'attr(0750,madsonic,madsonic)' \
74  | grep -v   "/etc/init.d$" \   --dir /var/madsonic 'attr(0750,madsonic,madsonic)' \
75  | grep -v   "/etc/sysconfig$"\   --file /usr/lib/tmpfiles.d/madsonic.conf 'attr(0750,root,root)' \
76     --dir /run/madsonic 'attr(0755,madsonic,madsonic)' \
77     --ignoredir /run \
78     --ignoredir "/etc/sysconfig/madsonic" \
79     --ignoredir   "/etc/init.d" \
80     --ignoredir   "/etc/sysconfig"\
81       > %{name}-%{version}-filelist       > %{name}-%{version}-filelist
82    
83  %clean  %clean
# Line 58  rm -rf $RPM_BUILD_ROOT Line 88  rm -rf $RPM_BUILD_ROOT
88  %config(noreplace) /etc/sysconfig/madsonic  %config(noreplace) /etc/sysconfig/madsonic
89    
90  %pre  %pre
91    grep '^madsonic:' /etc/passwd > /dev/null || \
92    /usr/sbin/useradd -c "madsonic" -M -d /usr/share/madsonic   -s /bin/bash madsonic
93    /usr/sbin/usermod -aG audio madsonic
94    
95  # Stop Madsonic service.  # Stop Madsonic service.
96  if [ -e /etc/init.d/madsonic ]; then  if [ -e /etc/init.d/madsonic ]; then
97    service madsonic stop    service madsonic stop
98  fi  fi
99    [ -e /usr/lib/systemd/system/madsonic.service ] && systemctl stop madsonic
100    
101  # Backup database.  # Backup database.
102  if [ -e /var/madsonic/db ]; then  if [ -e /var/madsonic/db ]; then
# Line 72  fi Line 107  fi
107  exit 0  exit 0
108    
109  %post  %post
110  ln -sf /usr/share/madsonic/madsonic.sh /usr/bin/madsonic  #ln -sf /usr/share/madsonic/madsonic.sh /usr/bin/madsonic
111  chmod 750 /var/madsonic  #chmod 750 /var/madsonic
112    
113  # Clear jetty cache.  # Clear jetty cache.
114  rm -rf /var/madsonic/jetty  rm -rf /var/madsonic/jetty
# Line 82  rm -rf /var/madsonic/jetty Line 117  rm -rf /var/madsonic/jetty
117  chcon -t java_exec_t /etc/init.d/madsonic 2>/dev/null  chcon -t java_exec_t /etc/init.d/madsonic 2>/dev/null
118    
119  # Configure and start Madsonic service.  # Configure and start Madsonic service.
120  chkconfig --add madsonic  #chkconfig --add madsonic
121  service madsonic start  #service madsonic start
122    
123  exit 0  exit 0
124  %preun  %preun
# Line 92  if [ $1 = 0 ] ; then Line 127  if [ $1 = 0 ] ; then
127    
128    # Stop the service.    # Stop the service.
129    [ -e /etc/init.d/madsonic ] && service madsonic stop    [ -e /etc/init.d/madsonic ] && service madsonic stop
130      [ -e /usr/lib/systemd/system/madsonic.service ] && systemctl stop madsonic
131    
132    # Remove symlink.    # Remove symlink.
133    rm -f /usr/bin/madsonic    rm -f /usr/bin/madsonic


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