1 |
%define name smeserver-extrarepositories |
%define name smeserver-extrarepositories |
2 |
%define version 0.1 |
%define version 0.1 |
3 |
%define release 12 |
%define release 14 |
4 |
Summary: easy configuration of extra yum repo |
Summary: easy configuration of extra yum repo |
5 |
Name: %{name} |
Name: %{name} |
6 |
Version: %{version} |
Version: %{version} |
18 |
Provides configuration for external yum repository comaptible with Koozali SME Server. |
Provides configuration for external yum repository comaptible with Koozali SME Server. |
19 |
|
|
20 |
%changelog |
%changelog |
21 |
|
* Sat Dec 29 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-14.sme |
22 |
|
- fix typo in asterisk-current |
23 |
|
- fix typo in migrate fragment for zmrepo |
24 |
|
- renamed digium as digium-current |
25 |
|
|
26 |
* Fri Dec 28 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-12.sme |
* Fri Dec 28 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-12.sme |
27 |
- zoneminder needs ffmpeg from zmrepo [SME: 10539] |
- zoneminder needs ffmpeg from zmrepo [SME: 10539] |
28 |
|
|
131 |
REPO['GPGCheck']='no' |
REPO['GPGCheck']='no' |
132 |
REPO['Visible']='no' |
REPO['Visible']='no' |
133 |
REPO['status']='disabled' |
REPO['status']='disabled' |
134 |
REPO['BaseURL']='http://packages.asterisk.org/centos$releasever/current/$basearch/' |
REPO['BaseURL']='http://packages.asterisk.org/centos/$releasever/current/$basearch/' |
135 |
REPO['MirrorList']='' |
REPO['MirrorList']='' |
136 |
REPO['GPGKey']='' |
REPO['GPGKey']='' |
137 |
REPO['Exclude']='' |
REPO['Exclude']='' |
143 |
# Digium Repo |
# Digium Repo |
144 |
##################### |
##################### |
145 |
##################### |
##################### |
146 |
REPO['reponame']='digium' |
REPO['reponame']='digium-current' |
147 |
REPO['fullreponame']='Digium packages - EL' |
REPO['fullreponame']='Digium packages - EL' |
148 |
REPO['EnableGroups']='no' |
REPO['EnableGroups']='no' |
149 |
REPO['Visible']='no' |
REPO['Visible']='no' |
908 |
{ |
{ |
909 |
my $repo = $DB->get($name) or next; |
my $repo = $DB->get($name) or next; |
910 |
my $BaseURL = $repo->prop('BaseURL') || ''; |
my $BaseURL = $repo->prop('BaseURL') || ''; |
911 |
$BaseURL = s/zmrepo.mehvc.com/zmrepo.zoneminder.com/g; |
$BaseURL =~ s/zmrepo.mehvc.com/zmrepo.zoneminder.com/g; |
912 |
$repo->set_prop('Exclude', join(',', @exclude)); |
$repo->set_prop('BaseURL', $BaseURL); |
913 |
|
$repo->delete('Exclude'); |
914 |
} |
} |
915 |
|
|
916 |
} |
} |
917 |
|
|
918 |
EOF |
EOF |
919 |
|
|
920 |
|
cat << 'EOF' >$RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate/10asterisk |
921 |
|
{ |
922 |
|
for my $name ( qw(asterisk-current) ) |
923 |
|
{ |
924 |
|
my $repo = $DB->get($name) or next; |
925 |
|
my $BaseURL = $repo->prop('BaseURL') || ''; |
926 |
|
$BaseURL =~ s/centos\$/centos\/\$/g; |
927 |
|
$repo->set_prop('BaseURL', $BaseURL); |
928 |
|
} |
929 |
|
|
930 |
|
} |
931 |
|
|
932 |
|
EOF |
933 |
|
|
934 |
|
|
935 |
|
|