Compare commits

...

12 Commits

Author SHA1 Message Date
Daniel Berteaud
c68fe117a8 Disable atrpms, the repo is now un reachable and not strictly needed 2015-11-23 09:23:45 +01:00
Daniel Berteaud
a658fbd07c Exclude php-horde-horde from Epel 2015-11-23 09:20:19 +01:00
Daniel Berteaud
86b997dffa Spec file update 2015-07-17 18:12:25 +02:00
Daniel Berteaud
b1247c3e38 Exclude hylafax from smecontribs, it's utterly broken 2015-07-17 18:11:23 +02:00
Daniel Berteaud
d637e9f3d3 Spec file update 2014-06-23 18:18:19 +02:00
Daniel Berteaud
d5ed230d0f Exclude perl-Perl-Tidy from rpmforge 2014-06-23 18:17:27 +02:00
Daniel Berteaud
6d5cfcc4dc Exclude libmemcached from base, SOGo needs the version from sogo repository 2013-11-12 21:35:17 +01:00
Daniel Berteaud
52c0cf7bf4 Use $releasever for SOGo repo 2013-11-12 13:19:34 +01:00
Daniel Berteaud
7ea53a9e5a update the spec file 2013-11-12 13:18:47 +01:00
Daniel Berteaud
34dd973ebc Revert "Use for SOGo repo"
This reverts commit 49890afb39.
2013-11-12 13:17:46 +01:00
Daniel Berteaud
49890afb39 Use for SOGo repo 2013-11-12 13:16:14 +01:00
Daniel Berteaud
31a8319b18 Replace sme7contribs with sme8contribs 2013-11-12 12:06:44 +01:00
20 changed files with 33 additions and 9 deletions

View File

@ -1,4 +1,4 @@
%define version 0.2.10
%define version 0.2.13
%define release 1
%define name ipasserelle-repo
@ -7,6 +7,7 @@ Summary: RPM repositories configuration for the iPasserelle
Name: %{name}
Version: %{version}
Release: %{release}%{?dist}
Epoch: 9
License: GPL
Group: Networking/Daemons
Source: %{name}-%{version}.tar.gz
@ -44,6 +45,17 @@ rm -rf $RPM_BUILD_ROOT
%preun
%changelog
* Fri Jul 17 2015 Daniel Berteaud <daniel@firewall-services.com> 0.2.13-1
- Exclude hylafax from smecontribs
* Mon Jun 23 2014 Daniel Berteaud <daniel@firewall-services.com> 0.2.12-1
- Exclude perl-Perl-Tidy from rpmforge
* Tue Nov 12 2013 Daniel Berteaud <daniel@firewall-services.com> 0.2.11-1
- New branch for SME9
- Replace sme7contribs with sme8contribs
- Use $releasever for SOGo repo
* Tue Nov 12 2013 Daniel Berteaud <daniel@firewall-services.com> 0.2.10-1
- Remove some references to EL5, prepare SME9 compatibility

View File

@ -1 +1 @@
enabled
disabled

View File

@ -1 +1 @@
gnustep-make,libmemcached,hylafax+
gnustep-make,libmemcached,hylafax+,php-horde-horde

View File

@ -1 +1 @@
freetype,htop,iptraf,rsync,syslinux,perl-rrdtool,php-pear-db,dansguardian,squidguard
freetype,htop,iptraf,rsync,syslinux,perl-rrdtool,php-pear-db,dansguardian,squidguard,perl-Perl-Tidy

View File

@ -1 +0,0 @@
http://sme-mirror.firewall-services.com/releases/obsolete/7.6/smecontribs/i386/

View File

@ -1 +0,0 @@
SME Server - contribs 7.X

View File

@ -0,0 +1 @@
http://mirrorlist.contribs.org/mirrorlist/smecontribs-8

View File

@ -0,0 +1 @@
SME Server - contribs 8.X

View File

@ -1 +1 @@
perl-rrdtool
perl-rrdtool,hylafax

View File

@ -1 +1 @@
http://inverse.ca/downloads/SOGo/RHEL5/nightly/$basearch
http://inverse.ca/downloads/SOGo/RHEL$releasever/nightly/$basearch

View File

@ -1 +1 @@
http://inverse.ca/downloads/SOGo/RHEL5/$basearch
http://inverse.ca/downloads/SOGo/RHEL$releasever/$basearch

View File

@ -0,0 +1,6 @@
{
my $repo = $DB->get("base") or return '';
my @exclude = split /[;,]/, ($repo->prop('Exclude') || '');
push @exclude, 'libmemcached' unless (grep {$_ eq 'libmemcached'} @exclde);
$repo->set_prop('Exclude', join(',', @exclude));
}

View File

@ -0,0 +1,6 @@
{
my $repo = $DB->get("epel") or return '';
my @exclude = split /[;,]/, ($repo->prop('Exclude') || '');
push @exclude, 'php-horde-horde' unless (grep {$_ eq 'php-horde-horde'} @exclude);
$repo->set_prop('Exclude', join(',', @exclude));
}