Skip to content

Commit

Permalink
FS-11567: [Build-System] CentOS packaging: Put version parser into sp…
Browse files Browse the repository at this point in the history
…ec files.
  • Loading branch information
andywolk committed May 23, 2019
1 parent 2fb5a39 commit efd35f6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
7 changes: 4 additions & 3 deletions freeswitch-config-rayo.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
#
######################################################################################################################

%define version 1.7.0
%define nonparsedversion 1.7.0
%define version %(echo '%{nonparsedversion}' | sed 's/-//g')
%define release 1

%define fsname freeswitch
Expand Down Expand Up @@ -74,7 +75,7 @@ Summary: Rayo configuration for the FreeSWITCH Open Source telephone platform.
Group: System/Libraries
Packager: Chris Rienzo
URL: http://www.freeswitch.org/
Source0: freeswitch-%{version}.tar.bz2
Source0: freeswitch-%{nonparsedversion}.tar.bz2
Requires: freeswitch
Requires: freeswitch-application-conference
Requires: freeswitch-application-esf
Expand Down Expand Up @@ -103,7 +104,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
FreeSWITCH rayo server implementation.

%prep
%setup -b0 -q -n freeswitch-%{version}
%setup -b0 -q -n freeswitch-%{nonparsedversion}

%build

Expand Down
7 changes: 4 additions & 3 deletions freeswitch.spec
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
%{?with_mod_shout:%define build_mod_shout 1 }
%{?with_mod_opusfile:%define build_mod_opusfile 1 }

%define version 1.7.0
%define nonparsedversion 1.7.0
%define version %(echo '%{nonparsedversion}' | sed 's/-//g')
%define release 1

######################################################################################################################
Expand Down Expand Up @@ -118,7 +119,7 @@ Vendor: http://www.freeswitch.org/
# Source files and where to get them
#
######################################################################################################################
Source0: http://files.freeswitch.org/%{name}-%{version}.tar.bz2
Source0: http://files.freeswitch.org/%{name}-%{nonparsedversion}.tar.bz2
Source1: http://files.freeswitch.org/downloads/libs/v8-3.24.14.tar.bz2
Source2: http://files.freeswitch.org/downloads/libs/mongo-c-driver-1.1.0.tar.gz
Source3: http://files.freeswitch.org/downloads/libs/pocketsphinx-0.8.tar.gz
Expand Down Expand Up @@ -1430,7 +1431,7 @@ Basic vanilla config set for the FreeSWITCH Open Source telephone platform.
######################################################################################################################

%prep
%setup -b0 -q
%setup -b0 -q -n %{name}-%{nonparsedversion}
cp %{SOURCE1} libs/
cp %{SOURCE2} libs/
cp %{SOURCE3} libs/
Expand Down
4 changes: 2 additions & 2 deletions scripts/ci/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,11 @@ set_fs_ver () {
rpm_version="$major.$minor.$micro"
fi

sed -e "s|\(%define version \).*|\1$rpm_version|" \
sed -e "s|\(%define nonparsedversion \).*|\1$rpm_version|" \
freeswitch.spec > freeswitch.spec.$$
mv freeswitch.spec.$$ freeswitch.spec

sed -e "s|\(%define version \).*|\1$rpm_version|" \
sed -e "s|\(%define nonparsedversion \).*|\1$rpm_version|" \
freeswitch-config-rayo.spec > freeswitch-config-rayo.spec.$$
mv freeswitch-config-rayo.spec.$$ freeswitch-config-rayo.spec

Expand Down

0 comments on commit efd35f6

Please sign in to comment.