/[smecontribs]/rpms/smeserver-extrarepositories/contribs9/smeserver-extrarepositories.spec
ViewVC logotype

Annotation of /rpms/smeserver-extrarepositories/contribs9/smeserver-extrarepositories.spec

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


Revision 1.17 - (hide annotations) (download)
Sat Dec 29 04:21:21 2018 UTC (5 years, 9 months ago) by jpp
Branch: MAIN
CVS Tags: smeserver-extrarepositories-0_1-12
Changes since 1.16: +5 -2 lines
* Fri Dec 28 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-12.sme
- zoneminder needs ffmpeg from zmrepo [SME: 10539]

1 jpp 1.1 %define name smeserver-extrarepositories
2     %define version 0.1
3 jpp 1.17 %define release 12
4 jpp 1.1 Summary: easy configuration of extra yum repo
5     Name: %{name}
6     Version: %{version}
7     Release: %{release}
8     License: GNU GPL version 2
9     URL: https://wiki.koozali.org
10     Group: SMEserver/addon
11     BuildRoot: /var/tmp/%{name}-%{version}
12     BuildArchitectures: noarch
13     BuildRequires: e-smith-devtools
14     Requires: e-smith-release >= 9.0
15     AutoReqProv: no
16    
17     %description
18     Provides configuration for external yum repository comaptible with Koozali SME Server.
19    
20     %changelog
21 jpp 1.17 * Fri Dec 28 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-12.sme
22     - zoneminder needs ffmpeg from zmrepo [SME: 10539]
23    
24 jpp 1.16 * Fri Dec 28 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-11.sme
25 jpp 1.12 - zmrepo url has changed [SME: 10675]
26    
27 jpp 1.13 * Fri Nov 30 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.1-7.sme
28 jcrisp 1.11 - Add libreswan repo [SME: 10605]
29     - remove duplicate remi-safe entry
30    
31     * Mon Jun 25 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.1-6.sme
32     - Update reetp URL [SME: 10604]
33 jcrisp 1.10
34 jpp 1.9 * Tue May 08 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-5.sme
35     - add elrepo-kernel repo [SME: 10581]
36    
37 jpp 1.8 * Sun Mar 18 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-4.sme
38     - exclude ffmpeg-2.6.4 and celt-0.11 from zmrepo [SME: 10543]
39     - add Sogo4 repo + migrate to exclude gnustep from epel if sogo repo present
40    
41 jpp 1.6 * Sun Feb 18 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-3.sme
42     - fix wrong escape sequence for $basearch and $releasever [SME: 10239]
43    
44 jpp 1.5 * Thu Feb 15 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-2.sme
45     - first multipackage version
46     - gpg keys not included
47    
48 jpp 1.1 * Mon May 01 2017 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-1.sme
49     - initial release
50    
51     %prep
52    
53     %build
54    
55     %install
56     rm -rf $RPM_BUILD_ROOT
57     # if needing to add a gpg key
58     mkdir -p $RPM_BUILD_ROOT/usr/share/rpm-gpg-keys/
59    
60     # if needing to add a gpg key
61     #cp %source0 $RPM_BUILD_ROOT/usr/share/rpm-gpg-keys/
62     #/usr/share/rpm-gpg-keys/RPM-GPG-KEY-${REPO['reponame']}
63    
64     # if needing to migrate something :
65     #mkdir -p $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate
66     #echo "" >$RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate/00REPONAMEmigrate
67    
68     # if needed to force something
69     #mkdir -p $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/force/${REPO['reponame']}
70     #echo "${REPO['Exclude']}" >\
71     # $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/force/${REPO['reponame']}/Exclude
72    
73    
74    
75     declare -A REPO
76    
77 jpp 1.4 function createrepo {
78 jpp 1.1 mkdir -p $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}
79     echo "${REPO['EnableGroups']}" > $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/EnableGroups
80     echo "${REPO['GPGCheck']}" > $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/GPGCheck
81     echo "${REPO['fullreponame']}" > $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/Name
82     echo "${REPO['Visible']}" > $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/Visible
83     echo "${REPO['status']}" > $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/status
84     echo "repository" > $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/type
85     [[ "${REPO['BaseURL']}" != '' ]] && echo "${REPO['BaseURL']}" >\
86     $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/BaseURL
87     [[ "${REPO['GPGKey']}" != '' ]] && echo "${REPO['GPGKey']}" >\
88 jpp 1.4 $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/GPGKey
89     [[ "${REPO['MirrorList']}" != '' ]] && echo "${REPO['MirrorList']}" >\
90     $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/MirrorList
91 jpp 1.1 [[ "${REPO['Exclude']}" != '' ]] && echo "${REPO['Exclude']}" >\
92 jpp 1.4 $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/Exclude
93     [[ "${REPO['IncludePkgs']}" != '' ]] && echo "${REPO['IncludePkgs']}" >\
94     $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/defaults/${REPO['reponame']}/IncludePkgs
95     return 0
96     }
97    
98    
99    
100 jpp 1.1 ######################
101     #####################
102     # asterisk 13 LTS
103     #####################
104     #####################
105     REPO['reponame']='asterisk-13'
106     REPO['fullreponame']='Asterisk-13 - EL'
107     REPO['EnableGroups']='yes'
108     REPO['GPGCheck']='no'
109     REPO['Visible']='no'
110     REPO['status']='disabled'
111 jpp 1.6 REPO['BaseURL']='http://packages.asterisk.org/centos/$releasever/asterisk-13/$basearch/'
112 jpp 1.1 REPO['MirrorList']=''
113     REPO['GPGKey']=''
114     REPO['Exclude']=''
115 jpp 1.4 REPO['IncludePkgs']=''
116     createrepo
117 jpp 1.1
118     ######################
119     #####################
120     # asterisk current
121     #####################
122     #####################
123     REPO['reponame']='asterisk-current'
124     REPO['fullreponame']='Asterisk-current - EL'
125     REPO['EnableGroups']='yes'
126     REPO['GPGCheck']='no'
127     REPO['Visible']='no'
128     REPO['status']='disabled'
129 jpp 1.6 REPO['BaseURL']='http://packages.asterisk.org/centos$releasever/current/$basearch/'
130 jpp 1.1 REPO['MirrorList']=''
131     REPO['GPGKey']=''
132     REPO['Exclude']=''
133 jpp 1.4 REPO['IncludePkgs']=''
134     createrepo
135 jpp 1.1
136     #####################
137     #####################
138     # Digium Repo
139     #####################
140     #####################
141     REPO['reponame']='digium'
142     REPO['fullreponame']='Digium packages - EL'
143     REPO['EnableGroups']='no'
144     REPO['Visible']='no'
145     REPO['status']='disabled'
146 jpp 1.6 REPO['BaseURL']='http://packages.digium.com/centos/$releasever/current/$basearch/'
147 jpp 1.1 REPO['MirrorList']=''
148     REPO['GPGCheck']='no'
149     REPO['GPGKey']=''
150     REPO['Exclude']=''
151 jpp 1.4 REPO['IncludePkgs']=''
152     createrepo
153 jpp 1.1
154     #####################
155     #####################
156     # Digium 13
157     #####################
158     #####################
159     REPO['reponame']='digium-13'
160     REPO['fullreponame']='Digium-13 packages - EL'
161     REPO['EnableGroups']='no'
162     REPO['Visible']='no'
163     REPO['status']='disabled'
164 jpp 1.6 REPO['BaseURL']='http://packages.digium.com/centos/$releasever/digium-13/$basearch/'
165 jpp 1.1 REPO['MirrorList']=''
166     REPO['GPGCheck']='no'
167     REPO['GPGKey']=''
168     REPO['Exclude']=''
169 jpp 1.4 REPO['IncludePkgs']=''
170     createrepo
171 jpp 1.1
172     #####################
173     #####################
174     #atomic
175     #####################
176     #####################
177     REPO['reponame']='atomic'
178     REPO['fullreponame']='Atomic'
179     REPO['EnableGroups']='no'
180     REPO['Visible']='no'
181     REPO['status']='disabled'
182     REPO['BaseURL']=''
183 jpp 1.6 REPO['MirrorList']='http://www.atomicorp.com/mirrorlist/atomic/centos-$releasever-$basearch'
184 jpp 1.1 REPO['GPGCheck']='yes'
185     REPO['GPGKey']='https://www.atomicorp.com/RPM-GPG-KEY.art.txt'
186     REPO['Exclude']=''
187 jpp 1.4 REPO['IncludePkgs']=''
188     createrepo
189 jpp 1.1
190     #####################
191     #####################
192 jpp 1.5 #centos-sclo-centos
193     #####################
194     #####################
195     REPO['reponame']='centos-sclo-centos'
196     REPO['fullreponame']='Centos-RH Software collections'
197     REPO['EnableGroups']='no'
198     REPO['Visible']='yes'
199     REPO['status']='disabled'
200 jpp 1.6 REPO['BaseURL']='http://mirror.centos.org/centos/$releasever/sclo/$basearch/sclo/'
201 jpp 1.5 REPO['MirrorList']=''
202     REPO['GPGCheck']='yes'
203     REPO['GPGKey']='https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-SCLo'
204     REPO['Exclude']=''
205     REPO['IncludePkgs']=''
206     createrepo
207    
208     #####################
209     #####################
210 jpp 1.1 #centos-sclo-rh
211     #####################
212     #####################
213     REPO['reponame']='centos-sclo-rh'
214     REPO['fullreponame']='Centos-RH Software collections'
215     REPO['EnableGroups']='no'
216     REPO['Visible']='yes'
217     REPO['status']='disabled'
218 jpp 1.6 REPO['BaseURL']='http://mirror.centos.org/centos/$releasever/sclo/$basearch/rh/'
219 jpp 1.1 REPO['MirrorList']=''
220     REPO['GPGCheck']='yes'
221     REPO['GPGKey']='https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-SCLo'
222     REPO['Exclude']=''
223 jpp 1.4 REPO['IncludePkgs']=''
224     createrepo
225 jpp 1.1
226     #####################
227     #####################
228     #egroupware
229     #####################
230     #####################
231     REPO['reponame']='egroupware'
232     REPO['fullreponame']='server_eGroupWare'
233     REPO['EnableGroups']='no'
234     REPO['Visible']='yes'
235     REPO['status']='disabled'
236 jpp 1.6 REPO['BaseURL']='http://download.opensuse.org/repositories/server:/eGroupWare/CentOS_$releasever/'
237 jpp 1.1 REPO['MirrorList']=''
238     REPO['GPGCheck']='yes'
239 jpp 1.6 REPO['GPGKey']='http://download.opensuse.org/repositories/server:/eGroupWare/CentOS_$releasever/repodata/repomd.xml.key'
240 jpp 1.1 REPO['Exclude']=''
241 jpp 1.4 REPO['IncludePkgs']=''
242     createrepo
243 jpp 1.1
244 jpp 1.2 #####################
245     #####################
246     #elastic
247     #####################
248     #####################
249     declare -A elashort=( ['6.x']='6.x' ['5.x']='5.x' ['1.6']='1' )
250     for elasver in "6.x" "5.x" "1.6"; do
251     REPO['reponame']="elastic${elashort[$elasver]}"
252     REPO['fullreponame']="Elasticsearch repository for $elasver packages"
253     REPO['EnableGroups']='yes'
254     REPO['Visible']='yes'
255     REPO['status']='disabled'
256     REPO['BaseURL']="https://artifacts.elastic.co/packages/$elasver/yum"
257     REPO['MirrorList']=''
258     REPO['GPGCheck']='yes'
259     REPO['GPGKey']='https://artifacts.elastic.co/GPG-KEY-elasticsearch'
260     REPO['Exclude']=''
261 jpp 1.4 REPO['IncludePkgs']=''
262     createrepo
263 jpp 1.2 done
264    
265     #####################
266     #####################
267     #ELRepo
268     #####################
269     #####################
270     REPO['reponame']='elrepo'
271     REPO['fullreponame']='ELRepo.org Community Enterprise Linux Repository'
272     REPO['EnableGroups']='no'
273     REPO['Visible']='no'
274     REPO['status']='disabled'
275 jpp 1.6 REPO['BaseURL']='http://elrepo.org/linux/elrepo/el$releasever/$basearch'
276 jpp 1.9 REPO['MirrorList']='http://elrepo.org/mirrors-elrepo.el$releasever'
277 jpp 1.2 REPO['GPGCheck']='yes'
278     REPO['GPGKey']='http://elrepo.org/RPM-GPG-KEY-elrepo.org'
279     REPO['Exclude']='clamav,spamassassin,libselinux,perl-HTML-Parser,lm_sensors,perl-IO-stringy,perl-XML-Parser,razor-agents,libgcrypt,rpm-python,libxml2,zlib,gnupg,libxml2-python,yum,module-init-tools,rpm,gettext,librpm4,glib2,perl-libwww-perl,perl-Convert-ASN1,beecrypt,fetchmail,libacl,libtool-ltdl,popt,libgpg-error,freetype,perl-MIME-tools,mutt,gd,perl-TimeDate,librpm4.4'
280 jpp 1.4 REPO['IncludePkgs']=''
281     createrepo
282 jpp 1.2
283     #####################
284     #####################
285 jpp 1.9 #ELRepo kernel
286     #####################
287     #####################
288     REPO['reponame']='elrepo-kernel'
289     REPO['fullreponame']='ELRepo.org Community Enterprise Linux Repository Kernel'
290     REPO['EnableGroups']='no'
291     REPO['Visible']='no'
292     REPO['status']='disabled'
293     REPO['BaseURL']='http://elrepo.org/linux/kernel/el$releasever/$basearch'
294     REPO['MirrorList']='http://elrepo.org/mirrors-elrepo-kernel.el$releasever'
295     REPO['GPGCheck']='yes'
296     REPO['GPGKey']='http://elrepo.org/RPM-GPG-KEY-elrepo.org'
297     REPO['Exclude']=''
298     REPO['IncludePkgs']=''
299     createrepo
300    
301     #####################
302     #####################
303 jpp 1.2 #EPEL
304     #####################
305     #####################
306     REPO['reponame']='epel'
307     REPO['fullreponame']='EPEL'
308     REPO['EnableGroups']='no'
309     REPO['Visible']='no'
310     REPO['status']='disabled'
311 jpp 1.6 REPO['BaseURL']='http://download.fedoraproject.org/pub/epel/$releasever/$basearch'
312     REPO['MirrorList']='http://mirrors.fedoraproject.org/mirrorlist?repo=epel-$releasever&arch=$basearch'
313 jpp 1.2 REPO['GPGCheck']='yes'
314     REPO['GPGKey']='http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL'
315     REPO['Exclude']='perl-Razor-Agent'
316 jpp 1.4 REPO['IncludePkgs']=''
317     createrepo
318 jpp 1.2
319 jpp 1.3 #####################
320     #####################
321     #erlang
322     #####################
323     #####################
324     REPO['reponame']='erlang'
325     REPO['fullreponame']='erlang programming language'
326     REPO['EnableGroups']='no'
327     REPO['Visible']='yes'
328     REPO['status']='disabled'
329 jpp 1.6 REPO['BaseURL']='http://packages.erlang-solutions.com/rpm/centos/$releasever/$basearch'
330 jpp 1.3 REPO['MirrorList']=''
331     REPO['GPGCheck']='yes'
332     REPO['GPGKey']='http://packages.erlang-solutions.com/rpm/erlang_solutions.asc'
333     REPO['Exclude']=''
334 jpp 1.4 REPO['IncludePkgs']=''
335     createrepo
336 jpp 1.3
337     #####################
338     #####################
339     #freeswitch
340     #####################
341     #####################
342     REPO['reponame']='freeswitch'
343     REPO['fullreponame']='Freeswitch'
344     REPO['EnableGroups']='no'
345     REPO['Visible']='yes'
346     REPO['status']='disabled'
347 jpp 1.6 REPO['BaseURL']='http://files.freeswitch.org/yum/$releasever/$basearch'
348 jpp 1.3 REPO['MirrorList']=''
349     REPO['GPGCheck']='yes'
350     REPO['GPGKey']='file:///etc/pki/rpm-gpg/RPM-GPG-KEY-FREESWITCH'
351     REPO['Exclude']=''
352 jpp 1.4 REPO['IncludePkgs']=''
353     createrepo
354    
355     #####################
356     #####################
357     #firewall Service
358     #####################
359     #####################
360     REPO['reponame']='fws'
361     REPO['fullreponame']='Firewall Services'
362     REPO['EnableGroups']='no'
363     REPO['Visible']='no'
364     REPO['status']='disabled'
365 jpp 1.6 REPO['BaseURL']='http://repo.firewall-services.com/centos/$releasever'
366 jpp 1.4 REPO['MirrorList']=''
367     REPO['GPGCheck']='yes'
368     REPO['GPGKey']='http://repo.firewall-services.com/RPM-GPG-KEY'
369     REPO['Exclude']=''
370     REPO['IncludePkgs']=''
371     createrepo
372    
373     #####################
374     #####################
375     #firewall Service testing
376     #####################
377     #####################
378     REPO['reponame']='fws-testing'
379     REPO['fullreponame']='Firewall Services testing'
380     REPO['EnableGroups']='no'
381     REPO['Visible']='no'
382     REPO['status']='disabled'
383 jpp 1.6 REPO['BaseURL']='http://repo.firewall-services.com/centos-testing/$releasever'
384 jpp 1.4 REPO['MirrorList']=''
385     REPO['GPGCheck']='yes'
386     REPO['GPGKey']='http://repo.firewall-services.com/RPM-GPG-KEY'
387     REPO['Exclude']=''
388     REPO['IncludePkgs']=''
389     createrepo
390    
391     #####################
392     #####################
393     # Geekery (last update 2016-09-25)
394     #####################
395     #####################
396     REPO['reponame']='geekery'
397     REPO['fullreponame']='geekery repository'
398     REPO['EnableGroups']='no'
399     REPO['Visible']='no'
400     REPO['status']='disabled'
401     REPO['BaseURL']=''
402 jpp 1.6 REPO['MirrorList']='http://geekery.epac.to/geekery/el$releasever-mirrors'
403 jpp 1.4 REPO['GPGCheck']='yes'
404     REPO['GPGKey']='http://geekery.altervista.org/download.php?filename=GEEKERY-GPG-KEY'
405     REPO['Exclude']=''
406     REPO['IncludePkgs']=''
407     createrepo
408    
409 jcrisp 1.11 #####################
410     #####################
411     # Libreswan
412     #####################
413     #####################
414     REPO['reponame']='libreswan'
415     REPO['fullreponame']='Libreswan'
416     REPO['EnableGroups']='no'
417     REPO['Visible']='no'
418     REPO['status']='disabled'
419     REPO['BaseURL']='http://download.libreswan.org/binaries/rhel/6/x86_64/'
420     REPO['MirrorList']=''
421     REPO['GPGCheck']='yes'
422     REPO['GPGKey']='http://download.libreswan.org/binaries/RPM-GPG-KEY-libreswan'
423     REPO['Exclude']=''
424     REPO['IncludePkgs']=''
425     createrepo
426    
427    
428 jpp 1.4 if ( "%{?dist}" == "el7" ); then
429     #####################
430     #####################
431     # Odoo10-nightly
432     #####################
433     #####################
434     REPO['reponame']='odoo10-nightly'
435     REPO['fullreponame']='Odoo 10 Nightly - EL7'
436     REPO['EnableGroups']='no'
437     REPO['Visible']='no'
438     REPO['status']='disabled'
439     REPO['BaseURL']='http://nightly.odoo.com/10.0/nightly/rpm/'
440     REPO['MirrorList']=''
441     REPO['GPGCheck']='yes'
442     REPO['GPGKey']='https://nightly.odoo.com/odoo.key'
443     REPO['Exclude']=''
444     REPO['IncludePkgs']=''
445     createrepo
446    
447     #####################
448     #####################
449     # Odoo9-nightly
450     #####################
451     #####################
452     REPO['reponame']='odoo9-nightly'
453     REPO['fullreponame']='Odoo 9 Nightly - EL7'
454     REPO['EnableGroups']='no'
455     REPO['Visible']='no'
456     REPO['status']='disabled'
457     REPO['BaseURL']='http://nightly.odoo.com/9.0/nightly/rpm/'
458     REPO['MirrorList']=''
459     REPO['GPGCheck']='yes'
460     REPO['GPGKey']='https://nightly.odoo.com/odoo.key'
461     REPO['Exclude']=''
462     REPO['IncludePkgs']=''
463     createrepo
464     fi
465    
466     #####################
467     #####################
468     # Okay
469     #####################
470     #####################
471     REPO['reponame']='okay'
472     REPO['fullreponame']='Extra OKay Packages for Enterprise Linux - Freeswitch and FusionPBX'
473     REPO['EnableGroups']='no'
474     REPO['Visible']='no'
475     REPO['status']='disabled'
476 jpp 1.6 REPO['BaseURL']='http://repo.okay.com.mx/centos/$releasever/$basearch/release'
477 jpp 1.4 REPO['MirrorList']=''
478     REPO['GPGCheck']='no'
479     REPO['GPGKey']=''
480     REPO['Exclude']=''
481     REPO['IncludePkgs']=''
482     createrepo
483    
484     #####################
485     #####################
486     # Openfusion
487     #####################
488     #####################
489     REPO['reponame']='openfusion'
490     REPO['fullreponame']='Openfusion'
491     REPO['EnableGroups']='no'
492     REPO['Visible']='yes'
493     REPO['status']='disabled'
494 jpp 1.6 REPO['BaseURL']='http://repo.openfusion.net/centos$releasever-$basearch'
495 jpp 1.4 REPO['MirrorList']=''
496     REPO['GPGCheck']='yes'
497     REPO['GPGKey']='http://repo.openfusion.net/RPM-GPG-KEY-openfusion'
498     REPO['Exclude']=''
499     REPO['IncludePkgs']=''
500     createrepo
501    
502     #####################
503     #####################
504     # Reetspetit
505     #####################
506     #####################
507     REPO['reponame']='reetp'
508     REPO['fullreponame']='Mirror John Crisp reetspetit.com'
509     REPO['EnableGroups']='no'
510     REPO['Visible']='yes'
511     REPO['status']='disabled'
512 jcrisp 1.10 REPO['BaseURL']='https://www.reetspetit.com/smeserver/$releasever'
513 jpp 1.4 REPO['MirrorList']=''
514     REPO['GPGCheck']='no'
515 jcrisp 1.10 REPO['GPGKey']='https://www.reetspetit.com/RPM-GPG-KEY'
516 jpp 1.4 REPO['Exclude']=''
517     REPO['IncludePkgs']=''
518     createrepo
519    
520 jcrisp 1.11 #####################
521     #####################
522 jpp 1.4 #remi-safe
523 jcrisp 1.11 #####################
524     #####################
525 jpp 1.4 REPO['reponame']='remi-safe'
526     REPO['fullreponame']='Remi - safe'
527     REPO['EnableGroups']='no'
528     REPO['GPGCheck']='yes'
529     REPO['Visible']='yes'
530     REPO['status']='enabled'
531 jpp 1.6 REPO['BaseURL']='http://rpms.famillecollet.com/enterprise/$releasever/safe/$basearch/'
532 jpp 1.4 REPO['MirrorList']=''
533     REPO['GPGKey']='http://rpms.famillecollet.com/RPM-GPG-KEY-remi'
534     REPO['Exclude']=''
535     REPO['IncludePkgs']=''
536     createrepo
537    
538     #####################
539     #####################
540     #remi
541     #####################
542     #####################
543     REPO['reponame']='remi'
544     REPO['fullreponame']='Remi - EL unsafe, will conflict with your base rpms'
545     REPO['EnableGroups']='no'
546     REPO['GPGCheck']='yes'
547     REPO['Visible']='no'
548     REPO['status']='enabled'
549 jpp 1.6 REPO['BaseURL']='http://rpms.famillecollet.com/enterprise/$releasever/remi/$basearch/'
550 jpp 1.4 REPO['MirrorList']=''
551     REPO['GPGKey']='http://rpms.famillecollet.com/RPM-GPG-KEY-remi'
552     REPO['Exclude']='mysql*,php-*,phpMyAdmin'
553     REPO['IncludePkgs']=''
554     createrepo
555    
556     #####################
557     #####################
558     #remi-ocsinventory
559     #####################
560     #####################
561     REPO['reponame']='remi-ocsinventory'
562     REPO['fullreponame']='Remi ocsinventory - EL'
563     REPO['EnableGroups']='no'
564     REPO['GPGCheck']='yes'
565     REPO['Visible']='yes'
566     REPO['status']='enabled'
567 jpp 1.6 REPO['BaseURL']='http://rpms.famillecollet.com/enterprise/$releasever/remi/$basearch/'
568 jpp 1.4 REPO['MirrorList']=''
569     REPO['GPGKey']='http://rpms.famillecollet.com/RPM-GPG-KEY-remi'
570     REPO['Exclude']=''
571     REPO['IncludePkgs']='ocsinventory* perl-Ocsinventory-Agent'
572     createrepo
573    
574     #####################
575     #####################
576     #remi-ocsinventory
577     #####################
578     #####################
579     REPO['reponame']='remi-roundcube'
580     REPO['fullreponame']='Remi Roundcube - EL'
581     REPO['EnableGroups']='no'
582     REPO['GPGCheck']='yes'
583     REPO['Visible']='yes'
584     REPO['status']='enabled'
585 jpp 1.6 REPO['BaseURL']='http://rpms.famillecollet.com/enterprise/$releasever/remi/$basearch/'
586 jpp 1.4 REPO['MirrorList']=''
587     REPO['GPGKey']='http://rpms.famillecollet.com/RPM-GPG-KEY-remi'
588     REPO['Exclude']=''
589     REPO['IncludePkgs']='php-kolab-net-ldap3,php-pear-Mail-mimeDecode,php-pear-Net-IDNA2,php-pear-Net-LDAP2,roundcubemail'
590     createrepo
591    
592    
593     #####################
594     #####################
595     #rpmfusion
596     #####################
597     #####################
598     REPO['reponame']='rpmfusion'
599     REPO['fullreponame']='rpmfusion free EL'
600     REPO['EnableGroups']='no'
601     REPO['Visible']='yes'
602     REPO['status']='disabled'
603 jpp 1.6 REPO['BaseURL']='http://download1.rpmfusion.org/free/el/updates/$releasever/$basearch/'
604     REPO['MirrorList']='http://mirrors.rpmfusion.org/mirrorlist?repo=free-el-updates-released-$releasever&arch=$basearch'
605 jpp 1.4 REPO['GPGCheck']='yes'
606 jpp 1.6 REPO['GPGKey']='https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-free-el-$releasever'
607 jpp 1.4 REPO['Exclude']=''
608     REPO['IncludePkgs']=''
609     createrepo
610    
611     #####################
612     #####################
613     #rpmfusion
614     #####################
615     #####################
616     REPO['reponame']='rpmfusion-nonfree'
617     REPO['fullreponame']='rpmfusion nonfree EL'
618     REPO['EnableGroups']='no'
619     REPO['Visible']='yes'
620     REPO['status']='disabled'
621 jpp 1.6 REPO['BaseURL']='http://download1.rpmfusion.org/nonfree/el/updates/$releasever/$basearch/'
622     REPO['MirrorList']='http://mirrors.rpmfusion.org/mirrorlist?repo=nonfree-el-updates-released-$releasever&arch=$basearch'
623 jpp 1.4 REPO['GPGCheck']='yes'
624 jpp 1.6 REPO['GPGKey']='https://rpmfusion.org/keys?action=AttachFile&do=get&target=RPM-GPG-KEY-rpmfusion-nonfree-el-$releasever'
625 jpp 1.4 REPO['Exclude']=''
626     REPO['IncludePkgs']=''
627     createrepo
628 jpp 1.3
629 jpp 1.5 #####################
630     #####################
631     #Sogo nightly
632     #####################
633     #####################
634     REPO['reponame']='sogo'
635     REPO['fullreponame']='Inverse SOGo 2 Repository'
636     REPO['EnableGroups']='no'
637     REPO['Visible']='yes'
638     REPO['status']='disabled'
639 jpp 1.6 REPO['BaseURL']='http://packages.inverse.ca/SOGo/nightly/2/rhel/$releasever/$basearch'
640 jpp 1.5 REPO['MirrorList']=''
641     REPO['GPGCheck']='no'
642     REPO['GPGKey']=''
643     REPO['Exclude']=''
644     REPO['IncludePkgs']='gnustep-base,gnustep-make,libmemcached,libwbxml,sogo*,sope49*'
645     createrepo
646    
647     #####################
648     #####################
649     #Sogo3 nightly
650     #####################
651     #####################
652     REPO['reponame']='sogo3'
653     REPO['fullreponame']='Inverse SOGo 3 Repository'
654     REPO['EnableGroups']='no'
655     REPO['Visible']='yes'
656     REPO['status']='disabled'
657 jpp 1.6 REPO['BaseURL']='http://packages.inverse.ca/SOGo/nightly/3/rhel/$releasever/$basearch'
658 jpp 1.5 REPO['MirrorList']=''
659     REPO['GPGCheck']='no'
660     REPO['GPGKey']=''
661     REPO['Exclude']=''
662     REPO['IncludePkgs']='gnustep-base,gnustep-make,libmemcached,libwbxml,sogo*,sope49*'
663     createrepo
664    
665     #####################
666     #####################
667 jpp 1.8 #Sogo4 nightly
668 jpp 1.7 #####################
669     #####################
670     REPO['reponame']='sogo4'
671     REPO['fullreponame']='Inverse SOGo 4 Repository'
672     REPO['EnableGroups']='no'
673     REPO['Visible']='yes'
674     REPO['status']='disabled'
675     REPO['BaseURL']='http://packages.inverse.ca/SOGo/nightly/4/rhel/$releasever/$basearch'
676     REPO['MirrorList']=''
677     REPO['GPGCheck']='no'
678     REPO['GPGKey']=''
679     REPO['Exclude']=''
680     REPO['IncludePkgs']='gnustep-base,gnustep-make,libmemcached,libwbxml,sogo*,sope49*'
681     createrepo
682    
683     #####################
684     #####################
685 jpp 1.5 #Sogo stable
686     #####################
687     #####################
688     REPO['reponame']='sogo-subscription'
689     REPO['fullreponame']='Inverse SOGo Repository only with subscription'
690     REPO['EnableGroups']='no'
691     REPO['Visible']='yes'
692     REPO['status']='disabled'
693 jpp 1.6 REPO['BaseURL']='http://packages.inverse.ca/download/SOGo/RHEL$releasever/$basearch'
694 jpp 1.5 REPO['MirrorList']=''
695     REPO['GPGCheck']='no'
696     REPO['GPGKey']=''
697     REPO['Exclude']=''
698     REPO['IncludePkgs']='gnustep-base,gnustep-make,libmemcached,libwbxml,sogo*,sope49*'
699     createrepo
700    
701     #####################
702     #####################
703     #Spectrum2
704     #####################
705     #####################
706     REPO['reponame']='spectrum2'
707     REPO['fullreponame']='Spectrum2'
708     REPO['EnableGroups']='no'
709     REPO['Visible']='yes'
710     REPO['status']='disabled'
711 jpp 1.6 REPO['BaseURL']='http://copr-be.cloud.fedoraproject.org/results/mcepl/spectrum2/epel-$releasever-$basearch'
712 jpp 1.5 REPO['MirrorList']=''
713     REPO['GPGCheck']='no'
714     REPO['GPGKey']=''
715     REPO['Exclude']=''
716     REPO['IncludePkgs']=''
717     createrepo
718    
719     #####################
720     #####################
721     #stephDL
722     #####################
723     #####################
724     REPO['reponame']='stephdl'
725     REPO['fullreponame']='Mirror Stephane de Labrusse'
726     REPO['EnableGroups']='no'
727     REPO['Visible']='yes'
728     REPO['status']='disabled'
729 jpp 1.6 REPO['BaseURL']='http://mirror.de-labrusse.fr/smeserver/$releasever'
730 jpp 1.5 REPO['MirrorList']=''
731     REPO['GPGCheck']='yes'
732     REPO['GPGKey']='http://mirror.de-labrusse.fr/RPM-GPG-KEY'
733     REPO['Exclude']=''
734     REPO['IncludePkgs']=''
735     createrepo
736    
737     #####################
738     #####################
739     #VirtualBox
740     #####################
741     #####################
742     REPO['reponame']='virtualbox'
743     REPO['fullreponame']='RHEL/CentOS VirtualBox'
744     REPO['EnableGroups']='no'
745     REPO['Visible']='yes'
746     REPO['status']='disabled'
747 jpp 1.6 REPO['BaseURL']='http://download.virtualbox.org/virtualbox/rpm/el/$releasever/$basearch'
748 jpp 1.5 REPO['MirrorList']=''
749     REPO['GPGCheck']='yes'
750     REPO['GPGKey']='https://www.virtualbox.org/download/oracle_vbox.asc'
751     REPO['Exclude']=''
752     REPO['IncludePkgs']=''
753     createrepo
754    
755     #####################
756     #####################
757     #Webtatic
758     #####################
759     #####################
760     REPO['reponame']='webtatic'
761     REPO['fullreponame']='webtatic - EL'
762     REPO['EnableGroups']='no'
763     REPO['Visible']='yes'
764     REPO['status']='disabled'
765     REPO['BaseURL']=''
766 jpp 1.6 REPO['MirrorList']='http://mirror.webtatic.com/yum/el-$releasever/$basearch/mirrolist'
767 jpp 1.5 REPO['GPGCheck']='yes'
768     if ( "%{?dist}" == "el5" ); then
769     REPO['GPGKey']='http://repo.webtatic.com/yum/RPM-GPG-KEY-webtatic-andy'
770     else
771     REPO['GPGKey']="http://repo.webtatic.com/yum/RPM-GPG-KEY-webtatic-%{?dist}"
772     fi
773     REPO['Exclude']=''
774     REPO['IncludePkgs']=''
775     createrepo
776    
777     #####################
778     #####################
779     #Xymon
780     #####################
781     #####################
782     REPO['reponame']='xymon'
783     REPO['fullreponame']='Xymon Terabithia RPMS - EL'
784     REPO['EnableGroups']='no'
785     REPO['Visible']='yes'
786     REPO['status']='disabled'
787 jpp 1.6 REPO['BaseURL']='http://terabithia.org/rpms/xymon/el$releasever/'
788 jpp 1.5 REPO['MirrorList']=''
789     REPO['GPGCheck']='yes'
790     REPO['GPGKey']="http://terabithia.org/rpms/RPM-GPG-KEY-JCLEAVER"
791     REPO['Exclude']=''
792     REPO['IncludePkgs']=''
793     createrepo
794    
795     #####################
796     #####################
797     #Zabbix2.4
798     #####################
799     #####################
800     declare -A zabshort=( ['2.4']='24' ['2.5']='25' ['3.0']='30' ['3.1']='31' ['3.2']='32' ['3.4']='35' ['3.5']='35')
801     for elasver in "2.4" "2.5" "3.0"; do
802     REPO['reponame']="zabbix${zabshort[$elasver]}"
803     REPO['fullreponame']="Zabbix $elasver Official Repository"
804     REPO['EnableGroups']='no'
805     REPO['Visible']='yes'
806     REPO['status']='disabled'
807 jpp 1.6 REPO['BaseURL']="http://repo.zabbix.com/zabbix/$elasver/rhel/\$releasever/\$basearch/"
808 jpp 1.5 REPO['MirrorList']=''
809     REPO['GPGCheck']='yes'
810     REPO['GPGKey']="http://repo.zabbix.com/RPM-GPG-KEY-ZABBIX"
811     REPO['Exclude']=''
812     REPO['IncludePkgs']=''
813     createrepo
814     done
815 jpp 1.3
816 jpp 1.5 #####################
817     #####################
818     #zmrepo
819     #####################
820     #####################
821     REPO['reponame']='zmrepo'
822     REPO['fullreponame']='ZoneMinder Repo - EL'
823     REPO['EnableGroups']='no'
824     REPO['Visible']='yes'
825     REPO['status']='disabled'
826 jpp 1.12 REPO['BaseURL']='http://zmrepo.zoneminder.com/el/$releasever/$basearch'
827 jpp 1.5 REPO['MirrorList']=''
828     REPO['GPGCheck']='no'
829     REPO['GPGKey']=""
830 jpp 1.17 REPO['Exclude']=''
831 jpp 1.5 REPO['IncludePkgs']=''
832     createrepo
833 jpp 1.2
834    
835 jpp 1.8 #####################################################
836     # migrates
837     ######################################################
838     mkdir -p $RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate
839     cat << 'EOF' >$RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate/90sogo
840     {
841     my @add = split(/[,; ]+/, 'gnustep-*');
842     my %remove = map { $_ => 1 } split(/[,; ]+/, '');
843    
844     for my $name ( qw(epel) )
845     {
846     my $repo = $DB->get($name) or next;
847    
848     my @exclude = split(/,/, $repo->prop('Exclude') || '');
849     push @exclude, @add;
850     @exclude = grep(!defined $remove{$_} && !/^CENTOS_/, @exclude);
851    
852     # remove duplicates
853     undef %saw;
854     @exclude = grep(!$saw{$_}++, @exclude);
855    
856     if ($#exclude >= 0)
857     {
858     $repo->set_prop('Exclude', join(',', @exclude));
859     }
860     else
861     {
862     $repo->delete('Exclude');
863     }
864     }
865     }
866    
867     EOF
868    
869    
870     cat << 'EOF' >$RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate/10epel
871     {
872     my @add = split(/[,; ]+/, '');
873     my %remove = map { $_ => 1 } split(/[,; ]+/, 'gnustep-*,gnustep*,gnustep-base,gnustep-make');
874    
875     for my $name ( qw(epel) )
876     {
877     my $repo = $DB->get($name) or next;
878    
879     my @exclude = split(/,/, $repo->prop('Exclude') || '');
880     push @exclude, @add;
881     @exclude = grep(!defined $remove{$_} && !/^CENTOS_/, @exclude);
882    
883     # remove duplicates
884     undef %saw;
885     @exclude = grep(!$saw{$_}++, @exclude);
886    
887     if ($#exclude >= 0)
888     {
889     $repo->set_prop('Exclude', join(',', @exclude));
890     }
891     else
892     {
893     $repo->delete('Exclude');
894     }
895     }
896     }
897    
898     EOF
899    
900 jpp 1.14 cat << 'EOF' >$RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate/10zmrepo
901 jpp 1.12 {
902     for my $name ( qw(zmrepo) )
903     {
904     my $repo = $DB->get($name) or next;
905     my $BaseURL = $repo->prop('BaseURL') || '';
906 jpp 1.16 $BaseURL = s/zmrepo.mehvc.com/zmrepo.zoneminder.com/g;
907 jpp 1.15 $repo->set_prop('Exclude', join(',', @exclude));
908 jpp 1.12 }
909    
910     }
911 jpp 1.8
912 jpp 1.12 EOF
913 jpp 1.8
914    
915    
916    
917 jpp 1.14
918 jpp 1.8 ##########################################################
919    
920 jpp 1.2 rm -f %{name}-%{version}-filelist*
921     /sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist
922 jpp 1.5 cat %{name}-%{version}-filelist| grep atomic > %{name}-%{version}-filelist-atomic
923     cat %{name}-%{version}-filelist| grep centos-sclo > %{name}-%{version}-filelist-centos-sclo
924 jpp 1.2 cat %{name}-%{version}-filelist| egrep 'digium|asterisk' > %{name}-%{version}-filelist-asterisk
925     cat %{name}-%{version}-filelist| grep egroupware > %{name}-%{version}-filelist-egroupware
926     cat %{name}-%{version}-filelist| grep elastic > %{name}-%{version}-filelist-elastic
927     cat %{name}-%{version}-filelist| grep elrepo > %{name}-%{version}-filelist-elrepo
928     cat %{name}-%{version}-filelist| grep epel > %{name}-%{version}-filelist-epel
929 jpp 1.3 cat %{name}-%{version}-filelist| grep erlang > %{name}-%{version}-filelist-erlang
930 jpp 1.4 cat %{name}-%{version}-filelist| grep freeswitch > %{name}-%{version}-filelist-freeswitch
931     cat %{name}-%{version}-filelist| grep fws > %{name}-%{version}-filelist-fws
932     cat %{name}-%{version}-filelist| grep geekery > %{name}-%{version}-filelist-geekery
933 jcrisp 1.11 cat %{name}-%{version}-filelist| grep libreswan > %{name}-%{version}-filelist-libreswan
934 jpp 1.4 if ( "%{?dist}" == "el7" ); then
935     cat %{name}-%{version}-filelist| grep odoo > %{name}-%{version}-filelist-odoo
936     fi
937     cat %{name}-%{version}-filelist| grep okay > %{name}-%{version}-filelist-okay
938     cat %{name}-%{version}-filelist| grep openfusion > %{name}-%{version}-filelist-openfusion
939     cat %{name}-%{version}-filelist| grep reetp > %{name}-%{version}-filelist-reetp
940     cat %{name}-%{version}-filelist| grep remi-safe > %{name}-%{version}-filelist-remi-safe
941     cat %{name}-%{version}-filelist| grep remi-ocsinventory > %{name}-%{version}-filelist-remi-ocsinventory
942     cat %{name}-%{version}-filelist| grep remi-roundcube > %{name}-%{version}-filelist-remi-roundcube
943     cat %{name}-%{version}-filelist| grep remi|egrep -v 'safe|ocsinventory|roundcube' > %{name}-%{version}-filelist-remi
944     cat %{name}-%{version}-filelist| grep rpmfusion > %{name}-%{version}-filelist-rpmfusion
945 jpp 1.5 cat %{name}-%{version}-filelist| grep sogo > %{name}-%{version}-filelist-sogo
946     cat %{name}-%{version}-filelist| grep spectrum2 > %{name}-%{version}-filelist-spectrum2
947     cat %{name}-%{version}-filelist| grep stephdl > %{name}-%{version}-filelist-stephdl
948     cat %{name}-%{version}-filelist| grep virtualbox > %{name}-%{version}-filelist-virtualbox
949     cat %{name}-%{version}-filelist| grep webtatic > %{name}-%{version}-filelist-webtatic
950     cat %{name}-%{version}-filelist| grep xymon > %{name}-%{version}-filelist-xymon
951     cat %{name}-%{version}-filelist| grep zabbix > %{name}-%{version}-filelist-zabbix
952     cat %{name}-%{version}-filelist| grep zmrepo > %{name}-%{version}-filelist-zmrepo
953 jpp 1.1
954     %clean
955     cd ..
956     rm -rf %{name}-%{version}
957    
958 jpp 1.5
959     #%files -f %{name}-%{version}-filelist
960     %files
961 jpp 1.1 %defattr(-,root,root)
962    
963     %pre
964    
965     %preun
966    
967     %post
968    
969     %postun
970     case "$1" in
971    
972     0)
973     # this is an uninstallation
974     ;;
975    
976     1)
977     # this is an upgrade
978     ;;
979     esac
980 jpp 1.5 %package atomic
981     Summary: Atomic Repository
982     %description atomic
983     Atomic Repository
984     %files atomic -f %{name}-%{version}-filelist-atomic
985     %defattr(-,root,root)
986 jpp 1.2
987 jpp 1.5 %package centos-sclo
988 jpp 1.4 Summary: CentOS Red-Hat software collection repository
989 jpp 1.5 %description centos-sclo
990     CentOS Red-Hat software collection repository only for x86_64 arch
991     %files centos-sclo -f %{name}-%{version}-filelist-centos-sclo
992 jpp 1.2 %defattr(-,root,root)
993    
994     %package asterisk
995     Summary: All repositories you need for Asterisk and FreePBX
996     %description asterisk
997     All repositories you need for Asterisk and FreePBX
998     %files asterisk -f %{name}-%{version}-filelist-asterisk
999     %defattr(-,root,root)
1000    
1001     %package egroupware
1002     Summary: Repository for eGroupWare
1003     %description egroupware
1004     Repository for eGroupWare
1005     %files egroupware -f %{name}-%{version}-filelist-egroupware
1006     %defattr(-,root,root)
1007    
1008     %package elastic
1009     Summary: Repositories for elastic search
1010     %description elastic
1011     Repositories for elastic search
1012     %files elastic -f %{name}-%{version}-filelist-elastic
1013     %defattr(-,root,root)
1014    
1015     %package elrepo
1016     Summary: ElRepo.org Community Enterprise Linux Repository
1017     %description elrepo
1018     ElRepo.org Community Enterprise Linux Repository
1019     %files elrepo -f %{name}-%{version}-filelist-elrepo
1020     %defattr(-,root,root)
1021    
1022     %package epel
1023     Summary: Fedora EPEL Repository
1024     %description epel
1025     Fedora EPEL Repository
1026     %files epel -f %{name}-%{version}-filelist-epel
1027     %defattr(-,root,root)
1028    
1029 jpp 1.3 %package erlang
1030     Summary: Erlang Repository
1031     %description erlang
1032     Erlang is a programming language. It is specifically used for ejabberd.
1033     %files erlang -f %{name}-%{version}-filelist-erlang
1034     %defattr(-,root,root)
1035    
1036     %package freeswitch
1037     Summary: Freeswitch Repository
1038     %description freeswitch
1039     FreeSWITCH is a scalable open source cross-platform telephony platform designed to route and interconnect popular communication protocols using audio, video, text or any other form of media. It was created in 2006 to fill the void left by proprietary commercial solutions. FreeSWITCH also provides a stable telephony platform on which many applications can be developed using a wide range of free tools
1040     %files freeswitch -f %{name}-%{version}-filelist-freeswitch
1041     %defattr(-,root,root)
1042    
1043 jpp 1.4 %package fws
1044     Summary: Firewall Services repository
1045     %description fws
1046     Firewall Services repository
1047     %files fws -f %{name}-%{version}-filelist-fws
1048     %defattr(-,root,root)
1049    
1050     %package geekery
1051     Summary: Geekery Repository
1052     %description geekery
1053     Geekery Repository
1054     %files geekery -f %{name}-%{version}-filelist-geekery
1055     %defattr(-,root,root)
1056    
1057 jcrisp 1.11 %package libreswan
1058     Summary: Libreswan Repository
1059     %description libreswan
1060     Geekery Repository
1061     %files libreswan -f %{name}-%{version}-filelist-libreswan
1062     %defattr(-,root,root)
1063    
1064 jpp 1.4 %package odoo
1065     Summary: Odoo 10 Nightly - EL7 Repository
1066     Distribution: el7
1067     %description odoo
1068     Odoo 10 Nightly - EL7 Repository
1069     # comment as not available for centos 6 SME9
1070     #%files odoo -f %{name}-%{version}-filelist-odoo
1071     #%defattr(-,root,root)
1072    
1073     %package okay
1074     Summary: Extra OKay Packages for Enterprise Linux
1075     %description okay
1076     Extra OKay Packages for Enterprise Linux - Freeswitch and FusionPBX
1077     %files okay -f %{name}-%{version}-filelist-okay
1078     %defattr(-,root,root)
1079    
1080     %package openfusion
1081     Summary: Openfusion Repository
1082     %description openfusion
1083     Openfusion Repository
1084     %files openfusion -f %{name}-%{version}-filelist-openfusion
1085     %defattr(-,root,root)
1086    
1087     %package reetp
1088     Summary: Mirror John Crisp reetspetit.com
1089     %description reetp
1090     Mirror John Crisp reetspetit.com
1091     %files reetp -f %{name}-%{version}-filelist-reetp
1092     %defattr(-,root,root)
1093    
1094     %package remi-safe
1095     Summary: Remi safe repository
1096     %description remi-safe
1097     Remi safe repository
1098     %files remi-safe -f %{name}-%{version}-filelist-remi-safe
1099     %defattr(-,root,root)
1100    
1101     %package remi-ocsinventory
1102     Summary: Remi repository filtered to install OCSinventory
1103     %description remi-ocsinventory
1104     Remi repository filtered to install OCSinventory
1105     %files remi-ocsinventory -f %{name}-%{version}-filelist-remi-ocsinventory
1106     %defattr(-,root,root)
1107    
1108     %package remi-roundcube
1109     Summary: Remi repository filtered to install Roundcube
1110     %description remi-roundcube
1111     Remi repository filtered to install Roundcube
1112     %files remi-roundcube -f %{name}-%{version}-filelist-remi-roundcube
1113     %defattr(-,root,root)
1114    
1115     %package remi-unsafe
1116     Summary: Remi unsafe repository
1117     %description remi-unsafe
1118     Remi unsafe repository. We call it unsafe, not because of the work, but because it can conflict with base rpm of your favorite distro. Use it at your own risk if you are able to handle the situation.
1119     %files remi-unsafe -f %{name}-%{version}-filelist-remi
1120     %defattr(-,root,root)
1121    
1122     %package rpmfusion
1123     Summary: RPMFusion repositories
1124     %description rpmfusion
1125     RPMFusion repositories
1126     %files rpmfusion -f %{name}-%{version}-filelist-rpmfusion
1127     %defattr(-,root,root)
1128 jpp 1.2
1129 jpp 1.5 %package sogo
1130     Summary: SOGo repositories
1131     %description sogo
1132     SOGo repositories
1133     %files sogo -f %{name}-%{version}-filelist-sogo
1134     %defattr(-,root,root)
1135    
1136     %package spectrum2
1137     Summary: Spectrum2 Repository
1138     %description spectrum2
1139     Spectrum2 Repository
1140     %files spectrum2 -f %{name}-%{version}-filelist-spectrum2
1141     %defattr(-,root,root)
1142    
1143     %package stephdl
1144     Summary: Stephane De Labrusse Repository
1145     %description stephdl
1146     Stephane De Labrusse Repository
1147     %files stephdl -f %{name}-%{version}-filelist-stephdl
1148     %defattr(-,root,root)
1149    
1150     %package virtualbox
1151     Summary: Virtualbox Repository
1152     %description virtualbox
1153     Virtualbox Repository
1154     %files virtualbox -f %{name}-%{version}-filelist-virtualbox
1155     %defattr(-,root,root)
1156    
1157     %package webtatic
1158     Summary: Webtatic Repository
1159     %description webtatic
1160     Webtatic Repository
1161     %files webtatic -f %{name}-%{version}-filelist-webtatic
1162     %defattr(-,root,root)
1163    
1164     %package xymon
1165     Summary: Xymon Terabithia Repository
1166     %description xymon
1167     Xymon Terabithia Repository
1168     %files xymon -f %{name}-%{version}-filelist-xymon
1169     %defattr(-,root,root)
1170    
1171     %package zabbix
1172     Summary: Zabbix official Repository
1173     %description zabbix
1174     Zabbix official Repository
1175     %files zabbix -f %{name}-%{version}-filelist-zabbix
1176     %defattr(-,root,root)
1177    
1178     %package zmrepo
1179     Summary: Zone Minder Repository
1180     %description zmrepo
1181     Zone Minder Repository
1182     %files zmrepo -f %{name}-%{version}-filelist-zmrepo
1183     %defattr(-,root,root)
1184    
1185    
1186    

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