/[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.11 - (hide annotations) (download)
Mon Nov 12 17:03:10 2018 UTC (5 years, 10 months ago) by jcrisp
Branch: MAIN
CVS Tags: smeserver-extrarepositories-0_1-7
Changes since 1.10: +38 -18 lines
* Mon Nov 30 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.1-7.sme
- Add libreswan repo  [SME: 10605]
- remove duplicate remi-safe entry

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

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