SPECS (DEVEL): opera.spec - kestrel moved to DEVEL branch
arekm
arekm at pld-linux.org
Tue Sep 4 18:01:34 CEST 2007
Author: arekm Date: Tue Sep 4 16:01:34 2007 GMT
Module: SPECS Tag: DEVEL
---- Log message:
- kestrel moved to DEVEL branch
---- Files affected:
SPECS:
opera.spec (1.246 -> 1.246.2.1)
---- Diffs:
================================================================
Index: SPECS/opera.spec
diff -u SPECS/opera.spec:1.246 SPECS/opera.spec:1.246.2.1
--- SPECS/opera.spec:1.246 Tue Sep 4 13:59:48 2007
+++ SPECS/opera.spec Tue Sep 4 18:01:29 2007
@@ -1,323 +1,115 @@
# $Revision$, $Date$
+# BRANCHES:
+# - HEAD - stable version
+# - DEVEL - development version
+# - WEEKLY - weekly development version
+
# TODO:
# - move translations into a separate, noarch package
-# - add kestrel (snap) x86_64 version (yes, it's available)
-# - drop those dozens of if statements and use branches for different sources
#
%bcond_without shared # static or shared version
%bcond_without distributable # distributable or not
-%bcond_without incall # include all tarballs into src.rpm (but splitted into shared/static)
%bcond_with snap # snap version
%bcond_with weekly # weekly snapshot version
-%ifarch sparc sparcv9
-%undefine with_shared
-%endif
-
-%if %{with weekly}
-%define ver 9.23
-%define sver %{ver}
-%define fix %{nil}
-%define dirrel 20070809
-%define reltype %{nil}
-%define magicstr 660
-%define with_snap 1
-%else
-%if %{with snap}
%define ver 9.50
-%define sver %{ver}
-%define fix %{nil}
%define dirrel 20070903
%define reltype Alpha-1
%define magicstr 1567
-%else
-%define ver 9.23
-%define sver 9.23
-%define fix %{nil}
-%define dirrel 20070809
-%define reltype final
-%define magicstr 660
-%endif
-%endif
-%define shver %(echo %{ver} | tr -d .)%{fix}
+%define sver %{ver}
+%define shver %(echo %{ver} | tr -d .)
+%define sreltype %(echo %{reltype} | tr - _)
%define x86_shared_rel %{dirrel}.5
-%define x86_static_rel %{dirrel}.1
+%define x86_static_rel %{dirrel}.9
%define sparc_shared_rel %{dirrel}.2
%define sparc_static_rel %{dirrel}.1
%define ppc_shared_rel %{dirrel}.3
%define ppc_static_rel %{dirrel}.1
+%define x86_64_shared_rel %{dirrel}.2
+%define x86_64_static_rel %{dirrel}.1
+
%if %{with shared}
+
%define type shared
-# We should be able to build src.rpm also on not supported archs
+
+# Defined to be able to build src.rpm also on not supported archs
%define rel %{x86_shared_rel}
+
%ifarch sparc sparcv9
-#%%define rel %{sparc_shared_rel}
-%define rel %{sparc_static_rel}
-%else
+%define rel %{sparc_shared_rel}
+%endif
+
%ifarch ppc
%define rel %{ppc_shared_rel}
%endif
+
+%ifarch %{x8664}
+%define rel %{x86_64_shared_rel}
%endif
-%else
+
+%else # [with shared]
+
%define type static
+
+# Defined to be able to build src.rpm also on not supported archs
%define rel %{x86_static_rel}
+
%ifarch sparc sparcv9
%define rel %{sparc_static_rel}
-%else
+%endif
+
%ifarch ppc
%define rel %{ppc_static_rel}
%endif
-%endif
-%endif
-# define to 0 and then redefine to avoid
-# not defined macros
-%define need_ix86_shared_snap 0
-%define need_sparc_shared_snap 0
-%define need_ppc_shared_snap 0
-%define need_ix86_static_snap 0
-%define need_sparc_static_snap 0
-%define need_ppc_static_snap 0
-
-%define need_ix86_shared 0
-%define need_sparc_shared 0
-%define need_ppc_shared 0
-%define need_ix86_static 0
-%define need_sparc_static 0
-%define need_ppc_static 0
-
-%if %{with incall}
-# with incall? [if]
-%if %{with snap}
-# with snap? [if]
-%if %{with shared}
-# with shared? [if]
-%define need_ix86_shared_snap 1
-%define need_sparc_shared_snap 0
-%define need_ppc_shared_snap 1
-%else
-# with shared: [else]
-%define need_ix86_static_snap 1
-%define need_sparc_static_snap 1
-%define need_ppc_static_snap 1
-%endif
-# with shared; [endif]
-%else
-# with snap: [else]
-%if %{with shared}
-# with shared? [if]
-%define need_ix86_shared 1
-#%%define need_sparc_shared 1
-%define need_sparc_static 1
-%define need_ppc_shared 1
-%else
-# with shared: [else]
-%define need_ix86_static 1
-%define need_sparc_static 1
-%define need_ppc_static 1
-%endif
-# with shared; [endif]
-%endif
-# with snap; [endif]
-%else
-# with incall: [else]
-%ifarch %{ix86}
-# is ix86? [if]
-%if %{with snap}
-# with snap? [if]
-%if %{with shared}
-# with shared? [if]
-%define need_ix86_shared_snap 1
-%else
-# with shared: [else]
-%define need_ix86_static_snap 1
-%endif
-# with shared; [endif]
-%else
-# with snap: [else]
-%if %{with shared}
-# with shared? [if]
-%define need_ix86_shared 1
-%else
-# with shared: [else]
-%define need_ix86_static 1
-%endif
-# with shared; [endif]
-%endif
-# with snap; [endif]
-%else
-# is ix86: [else]
-%ifarch sparc sparc64
-# is sparc? [if]
-%if %{with snap}
-# with snap? [if]
-%if %{with shared}
-# with shared? [if]
-%define need_sparc_shared_snap 1
-%else
-# with shared: [else]
-%define need_sparc_static_snap 1
-%endif
-# with shared; [endif]
-%else
-# with snap: [else]
-%if %{with shared}
-# with shared? [if]
-#%%define need_sparc_shared 1
-%define need_sparc_static 1
-%else
-# with shared: [else]
-%define need_sparc_static 1
-%endif
-# with shared; [endif]
-%endif
-# with snap; [endif]
-%else
-# is sparc: [else]
-%ifarch ppc
-# is ppc? [if]
-%if %{with snap}
-# with snap? [if]
-%if %{with shared}
-# with shared? [if]
-%define need_ppc_shared_snap 1
-%else
-# with shared: [else]
-%define need_ppc_static_snap 1
-%endif
-# with shared; [endif]
-%else
-# with snap: [else]
-%if %{with shared}
-# with shared? [if]
-%define need_ppc_shared 1
-%else
-# with shared: [else]
-%define need_ppc_static 1
-%endif
-# with shared; [endif]
-%endif
-# with snap; [endif]
-%endif
-# is ppc; [endif]
-%endif
-# is sparc; [endif]
-%endif
-# is ix86; [endif]
+%ifarch %{x8664}
+%define rel %{x86_64_static_rel}
%endif
-# with incall; [endif]
-%if %{with weekly}
-%define need_ppc_shared_snap 0
-%define need_ppc_static_snap 0
-%define need_sparc_shared_snap 0
-%define need_sparc_static_snap 0
-%endif
+%endif # [with shared]
%define _rel 1
Summary: World fastest web browser
Summary(pl.UTF-8): Najszybsza przeglÄ
darka WWW na Ĺwiecie
Name: opera
-Version: %{ver}%{fix}
-Release: %{?with_snap:1.%{rel}.}%{_rel}
+Version: %{ver}
+Release: 0.%{_rel}.%{sreltype}
Epoch: 2
-License: Distributable for PLD until 31 Dec 2006 - http://distribute.opera.com/ (otherwise restricted, see file LICENSE)
+License: Distributable
Group: X11/Applications/Networking
-%if %{need_ix86_static}
-Source0: ftp://ftp.opera.com/pub/opera/linux/%{shver}/%{reltype}/en/i386/static/%{name}-%{sver}-%{x86_static_rel}-static-qt.i386-en.tar.bz2
-# Source0-md5: 0c721abff854df6c8ec7746956a37f55
+Source0: http://snapshot.opera.com/unix/%{ver}-%{reltype}/intel-linux/%{name}-%{sver}-%{x86_shared_rel}-shared-qt.i386-%{magicstr}.tar.bz2
+# Source0-md5: 8655d3c4623db40076507f03987158ae
%{!?with_distributable:NoSource: 0}
-%endif
-
-%if %{need_ix86_static_snap}
-%if %{with weekly}
-Source30100: http://snapshot.opera.com/unix/Weekly-%{magicstr}/intel-linux/%{name}-%{sver}-%{x86_static_rel}-static-qt.i386-en-%{magicstr}.tar.bz2
-%else
-Source100: http://snapshot.opera.com/unix/%{ver}-%{reltype}/intel-linux/%{name}-%{sver}-%{x86_static_rel}-static-qt.i386-en-%{magicstr}.tar.bz2
-%endif
-%{!?with_distributable:NoSource: 100}
-%endif
-%if %{need_sparc_static}
-Source1: ftp://ftp.opera.com/pub/opera/linux/%{shver}/%{reltype}/en/sparc/static/%{name}-%{sver}-%{sparc_static_rel}-static-qt.sparc-en.tar.bz2
-# Source1-md5: 98a84755df7d74812e8b8fa20d09d929
-%{!?with_distributable:NoSource: 1}
-%endif
-
-%if %{need_sparc_static_snap}
-Source101: http://snapshot.opera.com/unix/%{ver}-%{reltype}/%{magicstr}/sparc-linux/%{name}-%{sver}-%{sparc_static_rel}-static-qt.sparc-en.tar.bz2
-# Source101-md5: 913ccb28106f9f5acd3d94c8dc71ae1
-%{!?with_distributable:NoSource: 101}
-%endif
+#Source1: http://snapshot.opera.com/unix/%{ver}-%{reltype}/sparc-linux/%{name}-%{sver}-%{sparc_shared_rel}-shared-qt.sparc-%{magicstr}.tar.bz2
+# Source1-md5: 913ccb28106f9f5acd3d94c8dc71ae1
+#%{!?with_distributable:NoSource: 1}
-%if %{need_ppc_static}
-Source2: ftp://ftp.opera.com/pub/opera/linux/%{shver}/%{reltype}/en/ppc/static/%{name}-%{sver}-%{ppc_static_rel}-static-qt.ppc-en.tar.bz2
-# Source2-md5: 132fa2d85a2e0c2840b8bf2d27cfc93d
+Source2: http://snapshot.opera.com/unix/%{ver}-%{reltype}/ppc-linux/%{name}-%{sver}-%{ppc_shared_rel}-shared-qt.ppc-%{magicstr}.tar.bz2
+# Source2-md5: 94b4d77cdcdf42a40ebe2d682892bb9a
%{!?with_distributable:NoSource: 2}
-%endif
-
-%if %{need_ppc_static_snap}
-%if %{with weekly}
-Source30102: http://snapshot.opera.com/unix/Weekly-%{magicstr}/ppc-linux/%{name}-%{sver}-%{ppc_static_rel}-static-qt.ppc-en-%{magicstr}.tar.bz2
-%else
-Source102: http://snapshot.opera.com/unix/%{ver}-%{reltype}/%{magicstr}/ppc-linux/%{name}-%{sver}-%{ppc_static_rel}-static-qt.ppc-en.tar.bz2
-%endif
-%{!?with_distributable:NoSource: 102}
-%endif
-
-%if %{need_ix86_shared}
-Source20: ftp://ftp.opera.com/pub/opera/linux/%{shver}/%{reltype}/en/i386/shared/%{name}-%{sver}-%{x86_shared_rel}-shared-qt.i386-en.tar.bz2
-# Source20-md5: fe3c699c4509788276a94e325cd1bc5b
-%{!?with_distributable:NoSource: 20}
-%endif
-
-%if %{need_ix86_shared_snap}
-%if %{with weekly}
-Source301020: http://snapshot.opera.com/unix/Weekly-%{magicstr}/intel-linux/%{name}-%{sver}-%{x86_shared_rel}-shared-qt.i386-en-%{magicstr}.tar.bz2
-# Source301020-md5: fe3c699c4509788276a94e325cd1bc5b
-%else
-Source1020: http://snapshot.opera.com/unix/%{ver}-%{reltype}/intel-linux/%{name}-%{sver}-%{x86_shared_rel}-shared-qt.i386-%{magicstr}.tar.bz2
-# Source1020-md5: 8655d3c4623db40076507f03987158ae
-%{!?with_distributable:NoSource: 1020}
-%endif
-%endif
-%if %{need_sparc_shared}
-Source21: ftp://ftp.opera.com/pub/opera/linux/%{shver}/%{reltype}/en/sparc/shared/gcc-2.95/%{name}-%{sver}-%{sparc_shared_rel}-shared-qt.sparc-en.tar.bz2
-# Source21-md5: 883df8058672cf52678a07d714dcfce
-%{!?with_distributable:NoSource: 21}
-%endif
-
-%if %{need_sparc_shared_snap}
-Source1021: http://snapshot.opera.com/unix/%{ver}-%{reltype}/%{magicstr}/sparc-linux/%{name}-%{sver}-%{sparc_shared_rel}-shared-qt.sparc-en.tar.bz2
-# Source1021-md5: e190021f5530de3f711006cd9f6bb339
-%{!?with_distributable:NoSource: 1021}
-%endif
-
-%if %{need_ppc_shared}
-Source22: ftp://ftp.opera.com/pub/opera/linux/%{shver}/%{reltype}/en/ppc/shared/gcc-2.95/%{name}-%{sver}-%{ppc_shared_rel}-shared-qt.ppc-en.tar.bz2
-# Source22-md5: 2f9bf50540fac7ed63f2984a13b1010d
-%{!?with_distributable:NoSource: 22}
-%endif
-
-%if %{need_ppc_shared_snap}
-%if %{with weekly}
-Source301022: http://snapshot.opera.com/unix/Weekly-%{magicstr}/ppc-linux/%{name}-%{sver}-%{ppc_shared_rel}-shared-qt.ppc-en-%{magicstr}.tar.bz2
-# Source301022-md5: 65293d788e18d0c23cccac71b9fe567c
-%else
-Source1022: http://snapshot.opera.com/unix/%{ver}-%{reltype}/ppc-linux/%{name}-%{sver}-%{ppc_shared_rel}-shared-qt.ppc-%{magicstr}.tar.bz2
-# Source1022-md5: 94b4d77cdcdf42a40ebe2d682892bb9a
-%{!?with_distributable:NoSource: 1022}
-%endif
-%endif
-
-%ifarch %{x8664}
-Source23: http://snapshot.opera.com/unix/9.50-Alpha-1/x86_64-linux/%{name}-%{version}-%{dirrel}.2-shared-qt.x86_64-%{magicstr}.tar.bz2
-# Source23-md5: 40b850632dbb729a0bb16a1c450d97e5
-%{!?with_distributable:NoSource: 23}
-%endif
+Source3: http://snapshot.opera.com/unix/%{ver}-%{reltype}/x86_64-linux/%{name}-%{sver}-%{x86_64_shared_rel}-shared-qt.x86_64-%{magicstr}.tar.bz2
+# Source3-md5: 40b850632dbb729a0bb16a1c450d97e5
+%{!?with_distributable:NoSource: 3}
+
+Source10: http://snapshot.opera.com/unix/%{ver}-%{reltype}/intel-linux/%{name}-%{sver}-%{x86_static_rel}-static-qt.i386-%{magicstr}.tar.bz2
+# Source10-md5: 9526a13ebb9d93271ca8ae8f7f3c8f46
+%{!?with_distributable:NoSource: 10}
+
+#Source11: http://snapshot.opera.com/unix/%{ver}-%{reltype}/sparc-linux/%{name}-%{sver}-%{sparc_static_rel}-static-qt.sparc-%{magicstr}.tar.bz2
+# Source11-md5: e190021f5530de3f711006cd9f6bb339
+#%{!?with_distributable:NoSource: 11}
+
+Source12: http://snapshot.opera.com/unix/%{ver}-%{reltype}/ppc-linux/%{name}-%{sver}-%{ppc_static_rel}-static-qt.ppc-%{magicstr}.tar.bz2
+# Source12-md5: b8f9b9a0be3d3d47b701779622c2f004
+%{!?with_distributable:NoSource: 12}
+
+#Source13: http://snapshot.opera.com/unix/%{ver}-%{reltype}/x86_64-linux/%{name}-%{sver}-%{x86_64_static_rel}-static-qt.x86_64-%{magicstr}.tar.bz2
+## Source13-md5: 40b850632dbb729a0bb16a1c450d97e5
+#%{!?with_distributable:NoSource: 13}
Source4: %{name}.desktop
Patch0: %{name}-wrapper.patch
@@ -345,17 +137,21 @@
%prep
%ifarch %{ix86}
-%setup -q -T -b %{?with_weekly:30}%{?with_snap:10}%{?with_shared:2}0 -n %{name}-%{sver}-%{rel}-%{type}-qt.i386%{!?with_snap:-en}%{?magicstr:-%{magicstr}}
-%endif
-%ifarch %{x8664}
-%setup -q -T -b 23 -n %{name}-%{version}-%{dirrel}.2-shared-qt.x86_64-%{magicstr}
+%setup -q -T -b %{!?with_shared:1}0 -n %{name}-%{sver}-%{rel}-%{type}-qt.i386%{?magicstr:-%{magicstr}}
%endif
+
%ifarch sparc sparcv9
-%setup -q -T -b %{?with_weekly:30}%{?with_snap:10}%{?with_shared:2}1 -n %{name}-%{sver}-%{rel}-%{type}-qt.sparc%{!?with_snap:-en}-en%{?magicstr:-%{magicstr}}
+%setup -q -T -b %{!?with_shared:1}1 -n %{name}-%{sver}-%{rel}-%{type}-qt.sparc%{?magicstr:-%{magicstr}}
%endif
+
%ifarch ppc
-%setup -q -T -b %{?with_weekly:30}%{?with_snap:10}%{?with_shared:2}2 -n %{name}-%{sver}-%{rel}-%{type}-qt.ppc-en%{!?with_snap:-en}%{?magicstr:-%{magicstr}}
+%setup -q -T -b %{!?with_shared:1}2 -n %{name}-%{sver}-%{rel}-%{type}-qt.ppc%{?magicstr:-%{magicstr}}
+%endif
+
+%ifarch %{x8664}
+%setup -q -T -b %{!?with_shared:1}3 -n %{name}-%{sver}-%{rel}-%{type}-qt.x86_64-%{magicstr}
%endif
+
%patch0 -p1
%install
@@ -383,13 +179,8 @@
# install in kde etc.
install %{SOURCE4} $RPM_BUILD_ROOT%{_desktopdir}
-%if %{with snap}
install etc/* $RPM_BUILD_ROOT%{_sysconfdir}
install usr/share/pixmaps/*.xpm $RPM_BUILD_ROOT%{_pixmapsdir}
-%else
-mv -f $RPM_BUILD_ROOT%{_datadir}/%{name}/config/* $RPM_BUILD_ROOT%{_sysconfdir}
-install images/opera.xpm $RPM_BUILD_ROOT%{_pixmapsdir}
-%endif
%clean
rm -rf $RPM_BUILD_ROOT
@@ -416,10 +207,6 @@
%dir %{_libdir}/opera/bin
%attr(755,root,root) %{_libdir}/opera/bin/*
%dir %{_plugindir}
-%if ! %{with snap}
-%attr(755,root,root) %{_plugindir}/*
-%{_datadir}/opera/images
-%endif
%dir %{_datadir}/opera
%{_datadir}/opera/*.*
%{_datadir}/opera/ini
@@ -439,6 +226,9 @@
All persons listed below can be reached at <cvs_login>@pld-linux.org
$Log$
+Revision 1.246.2.1 2007/09/04 16:01:29 arekm
+- kestrel moved to DEVEL branch
+
Revision 1.246 2007/09/04 11:59:48 glen
- add plain amd64 support
================================================================
---- CVS-web:
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/opera.spec?r1=1.246&r2=1.246.2.1&f=u
More information about the pld-cvs-commit
mailing list