firefox-vl.spec 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782
  1. %bcond_with clang
  2. # do not include minor version number in MOZILLA_FIVE_HOME
  3. %global ffmajor 78.12
  4. %global geckomajor 78.12
  5. %global ffminor 0
  6. %global ffversion %{ffmajor}%{?ffminor:.%{ffminor}}
  7. %define ffdir %{_libdir}/firefox
  8. %define tarballdir firefox-%{ffversion}
  9. %global mozappdir %{_libdir}/%{name}
  10. %global langpackdir %{mozappdir}/distribution/extensions
  11. %global nodewrapperdir %{_builddir}/%{tarballdir}/bin
  12. %define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
  13. %define homepage https://vinelinux.org/
  14. %global _build_id_links none
  15. %define ffrelease 1%{?_dist_release}
  16. %define desktop_file_utils_version 0.6
  17. %define libjpeg_turbo_version 1.1.0
  18. #%define gecko_version %{geckomajor}%{?ffminor:.%{ffminor}}
  19. %define gecko_version %{geckomajor}
  20. ExclusiveArch: i386 i586 i686 x86_64 ia64 ppc
  21. Summary: Fx Browser
  22. Summary(ja): Fx ウェブブラウザ
  23. Name: firefox
  24. Version: %{ffversion}
  25. Release: %{ffrelease}
  26. Group: internet
  27. Vendor: Project Vine
  28. Distribution: Vine Linux
  29. Packager: daisuke
  30. URL: https://www.mozilla.org/ja/
  31. License: MPLv1.1 or GPLv2+ or LGPLv2+
  32. Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}esr/source/firefox-%{version}esr.source.tar.xz
  33. Source2: cbindgen-vendor-0.14.3.tar.xz
  34. Source230: mozconfig-firefox-vine6
  35. Source240: mozconfig-firefox-vine7
  36. Source11: firefox-vine-default-bookmarks.html
  37. Source12: firefox-vine-default-prefs.js
  38. Source21: firefox.vine.sh.in
  39. Source22: firefox.png
  40. Source23: fx-about.png
  41. Source24: fx-about-wordmark.svg
  42. Source25: firefox.desktop
  43. Source26: firefox-safe-mode.desktop
  44. Source27: firefox-safe-mode.vine.sh
  45. Source30: firefox.1
  46. Source32: node-stdout-nonblocking-wrapper
  47. Source50: firefox-xremote-client.sh.in
  48. Source100: find-external-requires
  49. # for newer rust
  50. #Source900: https://raw.githubusercontent.com/servo/rust-cssparser/master/src/parser.rs
  51. # locale sources
  52. %define MOZ_BUILD_LOCALES "ja"
  53. Source1000: firefox-%{ffversion}esr-langpacks.tar.xz
  54. Source1010: firefox-unofficial-branding-fx.tar.xz
  55. #
  56. Source2000: firefox-searchplugins-6.0-ja.tar.bz2
  57. Source3000: firefox.metainfo.xml
  58. # Build patches
  59. #Patch3: mozilla-build-arm.patch
  60. #Patch25: rhbz-1219542-s390-build.patch
  61. #Patch26: build-icu-big-endian.patch
  62. #Patch32: build-rust-ppc64le.patch
  63. #Patch35: build-ppc-jit.patch
  64. # Always feel lucky for unsupported platforms:
  65. # https://bugzilla.mozilla.org/show_bug.cgi?id=1347128
  66. #Patch37: build-jit-atomic-always-lucky.patch
  67. # Fixing missing cacheFlush when JS_CODEGEN_NONE is used (s390x)
  68. #Patch38: build-cacheFlush-missing.patch
  69. #Patch40: build-aarch64-skia.patch
  70. Patch41: build-disable-elfhack.patch
  71. #Patch44: build-arm-libopus.patch
  72. Patch46: firefox-nss-version.patch
  73. #Patch47: fedora-shebang-build.patch
  74. #Patch48: build-arm-wasm.patch
  75. #Patch49: build-arm-libaom.patch
  76. # Fedora specific patches
  77. Patch215: firefox-enable-addons.patch
  78. Patch219: rhbz-1173156.patch
  79. Patch221: firefox-fedora-ua.patch
  80. Patch224: mozilla-1170092.patch
  81. #ARM run-time patch
  82. Patch226: rhbz-1354671.patch
  83. Patch227: firefox-locale-debug.patch
  84. # Upstream patches
  85. Patch402: mozilla-1196777.patch
  86. Patch412: mozilla-1337988.patch
  87. Patch415: Bug-1238661---fix-mozillaSignalTrampoline-to-work-.patch
  88. Patch417: bug1375074-save-restore-x28.patch
  89. Patch422: mozilla-1580174-webrtc-popup.patch
  90. # Wayland specific upstream patches
  91. #Patch574: firefox-pipewire-0-2.patch
  92. #Patch575: firefox-pipewire-0-3.patch
  93. #VA-API patches
  94. Patch584: firefox-disable-ffvpx-with-vapi.patch
  95. Patch585: firefox-vaapi-extra-frames.patch
  96. Patch589: mozilla-1634213.patch
  97. # PGO/LTO patches
  98. Patch600: pgo.patch
  99. Patch602: mozilla-1516803.patch
  100. #Patch700: rust-1.47.patch
  101. # customization patches
  102. ## Vine patch
  103. Patch1000: ignore-python-unicode-exception.patch
  104. # vine customization patch
  105. Patch2000: firefox-47.0.1-vine.patch
  106. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  107. BuildRequires: alsa-lib-devel
  108. BuildRequires: autoconf213
  109. BuildRequires: bzip2-devel
  110. # cbindgen needs clang
  111. BuildRequires: clang-devel, lld, llvm-devel
  112. BuildRequires: curl-devel
  113. BuildRequires: desktop-file-utils
  114. BuildRequires: freetype2-devel
  115. BuildRequires: gstreamer-devel
  116. BuildRequires: gstreamer-plugins-base-devel
  117. BuildRequires: gtk3-devel
  118. BuildRequires: lcms-devel
  119. BuildRequires: libffi-devel
  120. BuildRequires: libgnome-devel
  121. BuildRequires: libIDL-devel
  122. BuildRequires: libjpeg-turbo-devel >= %{libjpeg_turbo_version}
  123. BuildRequires: libnotify-devel
  124. BuildRequires: libpng-devel
  125. BuildRequires: libXt-devel
  126. BuildRequires: libXrender-devel
  127. BuildRequires: libXScrnSaver-devel
  128. BuildRequires: nasm
  129. BuildRequires: nodejs > 10.0.0
  130. BuildRequires: pango-devel
  131. BuildRequires: pulseaudio-libs-devel
  132. BuildRequires: python-devel
  133. BuildRequires: python
  134. BuildRequires: rust >= 1.34.0
  135. BuildRequires: cargo
  136. BuildRequires: startup-notification-devel
  137. BuildRequires: unzip
  138. BuildRequires: wget
  139. BuildRequires: yasm
  140. BuildRequires: zip
  141. BuildRequires: zlib-devel
  142. Requires: desktop-file-utils >= %{desktop_file_utils_version}
  143. Conflicts: firefox-esr
  144. Provides: webclient
  145. Provides: metainfo()
  146. Provides: metainfo(firefox.metainfo.xml)
  147. Conflicts: xulrunner < 17.0.1
  148. AutoProv: 0
  149. %define _use_internal_dependency_generator 0
  150. %define __find_requires %{SOURCE100}
  151. %description
  152. Fx Browser is an open-source web browser based on mozilla technology.
  153. This is unofficial build of firefox browser.
  154. %description -l ja
  155. FX ウェブブラウザは Mozilla テクノロジーをベースとしたオープンソースの
  156. ウェブブラウザです。
  157. #---------------------------------------------------------------------
  158. %prep
  159. %setup -q -n %{name}-%{version} -c
  160. cd %{tarballdir}
  161. %if 0%{?disable_elfhack}
  162. %patch41 -p1 -b .disable-elfhack
  163. %endif
  164. %patch46 -p1 -b .nss-version
  165. # Fedora patches
  166. %patch215 -p1 -b .addons
  167. %patch219 -p1 -b .rhbz-1173156
  168. %patch221 -p1 -b .fedora-ua
  169. %patch224 -p1 -b .1170092
  170. #ARM run-time patch
  171. %ifarch aarch64
  172. %patch226 -p1 -b .1354671
  173. %endif
  174. %patch227 -p1 -b .locale-debug
  175. %patch402 -p1 -b .1196777
  176. %ifarch %{arm}
  177. %patch415 -p1 -b .1238661
  178. %endif
  179. #patch584 -p1 -b .firefox-disable-ffvpx-with-vapi
  180. #patch585 -p1 -b .firefox-vaapi-extra-frames
  181. #patch589 -p1 -b .mozilla-1634213
  182. # PGO patches
  183. %patch600 -p1 -b .pgo
  184. #fix
  185. %patch602 -p1 -b .1516803
  186. # for rust-1.47
  187. # %patch700 -p1 -b .rust-1.47
  188. #%patch1000 -p0 -b .ignore-exception
  189. perl -pi \
  190. -e 's|pref\("extensions.langpacks.signatures.required".*$|pref("extensions.langpacks.signatures.required", false);|' \
  191. browser/app/profile/firefox.js
  192. perl -pi \
  193. -e 's|pref\("layout.spellcheckDefault".*$|pref("layout.spellcheckDefault", 0);|' \
  194. browser/app/profile/firefox.js
  195. perl -pi \
  196. -e 's|browser.startup.homepage=.*$|browser.startup.homepage=https://vinelinux.org/|' \
  197. browser/branding/unofficial/locales/browserconfig.properties
  198. perl -pi \
  199. -e 's|pref\("startup.homepage_override_url".*$|pref("startup.homepage_override_url", "https://vinelinux.org/");|' \
  200. browser/branding/unofficial/locales/browserconfig.properties
  201. perl -pi \
  202. -e 's|pref\("startup.homepage_welcome_url".*$|pref("startup.homepage_welcome_url", "https://vinelinux.org/");|' \
  203. browser/branding/unofficial/locales/browserconfig.properties
  204. # replace source for newer rust
  205. #cp -f %{SOURCE900} ./third_party/rust/cssparser/src/
  206. #sed -i -e 's/"files":{[^}]*}/"files":{ }/' ./third_party/rust/cssparser/.cargo-checksum.json
  207. %{__rm} -f .mozconfig
  208. %{__cp} %{SOURCE240} .mozconfig
  209. #sed -i -e 's/enable-optimize/disable-optimize/g' .mozconfig
  210. %global optimize_flags "-O3"
  211. echo 'ac_add_options --enable-optimize=%{?optimize_flags}' >> .mozconfig
  212. echo "ac_add_options --disable-debug-symbols" >> .mozconfig
  213. echo "ac_add_options --disable-debug" >> .mozconfig
  214. %if %{with clang}
  215. echo "ac_add_options --enable-linker=lld" >> .mozconfig
  216. %endif
  217. echo 'export NODEJS="%{nodewrapperdir}/node-stdout-nonblocking-wrapper"' >> .mozconfig
  218. # Remove executable bit to make brp-mangle-shebangs happy.
  219. chmod -x third_party/rust/itertools/src/lib.rs
  220. # update searchplugins
  221. #%{__tar} xjvf %{SOURCE2000} -C browser/locales/en-US/
  222. # setup unofficial branding logos
  223. %{__tar} xvf %{SOURCE1010}
  224. %{__cp} %{SOURCE23} browser/branding/unofficial/content/about.png
  225. %{__cp} %{SOURCE24} browser/branding/unofficial/content/about-wordmark.svg
  226. %{__cp} browser/branding/unofficial/locales/en-US/brand.* browser/branding/nightly/locales/en-US/
  227. #---------------------------------------------------------------------
  228. %build
  229. cd %{tarballdir}
  230. export LANG=ja_JP.UTF-8
  231. # install bundled cbindgen
  232. mkdir -p my_rust_vendor
  233. cd my_rust_vendor
  234. %{__tar} xf %{SOURCE2}
  235. mkdir -p .cargo
  236. cat > .cargo/config <<EOL
  237. [source.crates-io]
  238. replace-with = "vendored-sources"
  239. [source.vendored-sources]
  240. directory = "`pwd`"
  241. EOL
  242. env CARGO_HOME=.cargo cargo install cbindgen
  243. export PATH=`pwd`/.cargo/bin:$PATH
  244. cd -
  245. mkdir %{nodewrapperdir} || :
  246. cp %{SOURCE32} %{nodewrapperdir}/ || :
  247. #autoconf-2.13
  248. MOZ_OPT_FLAGS=$(echo "$RPM_OPT_FLAGS" | \
  249. %{__sed} -e 's/-Wall//')
  250. MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-Werror=format-security//')
  251. MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fpermissive"
  252. MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -fPIC -Wl,-z,relro -Wl,-z,now"
  253. MOZ_OPT_FLAGS=$(echo "$MOZ_OPT_FLAGS" | %{__sed} -e 's/-g/-g0/')
  254. export MOZILLA_OFFICIAL=1
  255. export BUILD_OFFICIAL=1
  256. export MOZ_APP_DISPLAYNAME="Fx Browser"
  257. export PREFIX='%{_prefix}'
  258. export LIBDIR='%{_libdir}'
  259. %if %{with clang}
  260. export CC=clang
  261. export CXX=clang++
  262. export LLVM_PROFDATA="llvm-profdata"
  263. export AR="llvm-ar"
  264. export NM="llvm-nm"
  265. export RANLIB="llvm-ranlib"
  266. MOZ_OPT_FLAGS="$MOZ_OPT_FLAGS -Wno-ignored-optimization-argument"
  267. %else
  268. export CC=gcc
  269. export CXX=g++
  270. export AR="gcc-ar"
  271. export NM="gcc-nm"
  272. export RANLIB="gcc-ranlib"
  273. MOZ_LINK_FLAGS="-Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
  274. %endif
  275. export RPM_OPT_FLAGS=$MOZ_OPT_FLAGS
  276. export CFLAGS=$MOZ_OPT_FLAGS
  277. export CXXFLAGS=$MOZ_OPT_FLAGS
  278. export LDFLAGS=$MOZ_LINK_FLAGS
  279. export RUSTFLAGS="-Cdebuginfo=0"
  280. MOZ_SMP_FLAGS=-j1
  281. # On x86 architectures, Mozilla can build up to 4 jobs at once in parallel,
  282. # however builds tend to fail on other arches when building in parallel.
  283. %ifarch %{ix86} x86_64
  284. [ -z "$RPM_BUILD_NCPUS" ] && \
  285. RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
  286. [ "$RPM_BUILD_NCPUS" -ge 2 ] && MOZ_SMP_FLAGS=-j2
  287. [ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
  288. [ "$RPM_BUILD_NCPUS" -ge 8 ] && MOZ_SMP_FLAGS=-j8
  289. %endif
  290. sed -i 's/\(MOZ_PKG_FATAL_WARNINGS =\).*/\1 0/' \
  291. browser/installer/Makefile.in &&
  292. export MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
  293. #export MOZ_SERVICES_SYNC="1"
  294. #export STRIP=/bin/true
  295. MOZ_NOSPAM=1 ./mach build
  296. #export LDFLAGS="-Wl,-rpath,%{ffdir}"
  297. #%__make -f client.mk build MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
  298. #---------------------------------------------------------------------
  299. %install
  300. cd %{tarballdir}
  301. %{__rm} -rf $RPM_BUILD_ROOT
  302. export LANG=ja_JP.UTF-8
  303. # set up our default bookmarks
  304. %{__cp} -p %{SOURCE11} objdir/dist/bin/browser/chrome/en-US/locale/browser/bookmarks.html
  305. # Make sure locale works for langpacks
  306. %{__cat} > objdir/dist/bin/browser/defaults/preferences/firefox-l10n.js << EOF
  307. pref("general.useragent.locale", "chrome://global/locale/intl.properties");
  308. EOF
  309. export MOZ_APP_DISPLAYNAME="Fx Browser"
  310. DESTDIR=$RPM_BUILD_ROOT %{__make} -C objdir install
  311. %{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications}
  312. if [ "%{version}" != "%{ffmajor}" ]; then
  313. if [ -d "$RPM_BUILD_ROOT%{_libdir}/firefox-%{version}" ]; then
  314. %{__mv} $RPM_BUILD_ROOT%{_libdir}/firefox-%{version} $RPM_BUILD_ROOT%{ffdir}
  315. fi
  316. fi
  317. # install icons
  318. %{__install} -p -D %{SOURCE22} $RPM_BUILD_ROOT%{_datadir}/pixmaps/firefox.png
  319. for desktopfiles in %{SOURCE25} %{SOURCE26}
  320. do
  321. desktop-file-install --vendor vine \
  322. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  323. --add-category Application \
  324. --add-category Network \
  325. $desktopfiles
  326. done
  327. # Register as an application to be visible in the software center
  328. #
  329. # NOTE: It would be *awesome* if this file was maintained by the upstream
  330. # project, translated and installed into the right place during `make install`.
  331. #
  332. # See http://www.freedesktop.org/software/appstream/docs/ for more details.
  333. #
  334. %{__mkdir_p} %{buildroot}%{_datadir}/metainfo
  335. install -m644 %{SOURCE3000} %{buildroot}%{_datadir}/metainfo/%{name}.metainfo.xml
  336. %{__install} -p -m 755 %{SOURCE21} $RPM_BUILD_ROOT%{_bindir}/firefox
  337. %{__install} -p -m 755 %{SOURCE27} $RPM_BUILD_ROOT%{_bindir}/firefox-safe-mode
  338. %{__install} -p -D -m 664 %{SOURCE30} $RPM_BUILD_ROOT%{_mandir}/man1/firefox.1
  339. %{__rm} -f %{buildroot}/%{mozappdir}/firefox-config
  340. %{__rm} -f %{buildroot}/%{mozappdir}/update-settings.ini
  341. echo > ../%{name}.lang
  342. # Extract langpacks, make any mods needed, repack the langpack, and install it.
  343. %{__mkdir_p} %{buildroot}%{langpackdir}
  344. %{__tar} xf %{SOURCE1000}
  345. for langpack in `ls firefox-langpacks/*.xpi`; do
  346. language=`basename $langpack .xpi`
  347. extensionID=langpack-$language@firefox.mozilla.org
  348. %{__mkdir_p} $extensionID
  349. unzip -qq $langpack -d $extensionID
  350. find $extensionID -type f | xargs chmod 644
  351. # sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \
  352. # $extensionID/browser/chrome/$language/locale/branding/browserconfig.properties
  353. if [ $language = "ja" ]; then
  354. sed -i \
  355. -e "s|Mozilla Firefox|Fx ウェブブラウザ|g" \
  356. -e "s|Firefox|Fx ウェブブラウザ|g" \
  357. -e "s|Mozilla|Project Vine|g" \
  358. -e 's|\(.*trademarkInfo.part1.*"\).*">|\1Vine Linux および Vine Linux ロゴは Project Vine および有限会社ヴァインカーブの日本およびその他の国における商標です。">|g' \
  359. $extensionID/browser/chrome/$language/locale/branding/brand.*
  360. else
  361. sed -i \
  362. -e "s|Mozilla Firefox|Fx Browser|g" \
  363. -e "s|Firefox|Fx Browser|g" \
  364. -e "s|Mozilla|Project Vine|g" \
  365. -e 's|\(.*trademarkInfo.part1.*"\).*">|\1Vine Linux and the Vine Linux logos are trademarks of Project Vine and Vine Caves Ltd.">|g' \
  366. $extensionID/browser/chrome/$language/locale/branding/brand.*
  367. fi
  368. %{__cp} -p %{SOURCE11} $extensionID/browser/chrome/$language/locale/browser/bookmarks.html
  369. cd $extensionID
  370. zip -qq -r9mX ../${extensionID}.xpi *
  371. cd -
  372. %{__install} -m 644 ${extensionID}.xpi %{buildroot}%{langpackdir}
  373. language=`echo $language | sed -e 's/-/_/g'`
  374. echo "%%lang($language) %{langpackdir}/${extensionID}.xpi" >> %{name}.lang
  375. done
  376. %{__rm} -rf firefox-langpacks
  377. # Keep compatibility with the old preference location
  378. %{__mkdir_p} $RPM_BUILD_ROOT/%{ffdir}/defaults/preferences
  379. %{__mkdir_p} $RPM_BUILD_ROOT/%{ffdir}/browser/defaults
  380. ln -s %{mozappdir}/defaults/preferences $RPM_BUILD_ROOT/%{mozappdir}/browser/defaults/preferences
  381. # Default preferences
  382. %{__cat} %{SOURCE12} | %{__sed} -e 's,FIREFOX_RPM_VR,%{ffversion}-%{release},g' > vine-default-prefs
  383. %{__cp} vine-default-prefs %{buildroot}%{mozappdir}/defaults/preferences/all-vine.js
  384. rm -f vine-default-prefs
  385. # System extensions
  386. %{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{firefox_app_id}
  387. %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{firefox_app_id}
  388. # Copy over the LICENSE
  389. %{__install} -p -c -m 644 LICENSE $RPM_BUILD_ROOT/%{ffdir}
  390. # another bug fixed by looking at the debian package
  391. %{__mkdir_p} $RPM_BUILD_ROOT%{ffdir}/chrome/icons/default/
  392. for i in default{16,32,48,64,128}.png
  393. do
  394. %{__cp} -f browser/branding/unofficial/$i $RPM_BUILD_ROOT%{ffdir}/browser/chrome/icons/default/
  395. done
  396. # own mozilla plugin dir (#135050)
  397. %{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/plugins
  398. # System extensions
  399. %{__mkdir_p} %{buildroot}%{_datadir}/mozilla/extensions/%{firefox_app_id}
  400. %{__mkdir_p} %{buildroot}%{_libdir}/mozilla/extensions/%{firefox_app_id}
  401. # Copy over the LICENSE
  402. %{__install} -p -c -m 644 LICENSE %{buildroot}/%{mozappdir}
  403. # Copy over run-mozilla.sh
  404. %{__cp} build/unix/run-mozilla.sh %{buildroot}%{mozappdir}
  405. # Remove copied libraries to speed up build
  406. rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libmozjs.so
  407. rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libmozalloc.so
  408. rm -f %{buildroot}%{mozappdirdev}/sdk/lib/libxul.so
  409. # cleanup unpackaged files
  410. %{__rm} -rf $RPM_BUILD_ROOT%{_includedir}/*
  411. %{__rm} -rf $RPM_BUILD_ROOT%{_libdir}/%{name}-devel-*
  412. %{__rm} -rf $RPM_BUILD_ROOT%{_datadir}/idl
  413. #---------------------------------------------------------------------
  414. %clean
  415. %{__rm} -rf $RPM_BUILD_ROOT
  416. #---------------------------------------------------------------------
  417. %post
  418. update-desktop-database %{_datadir}/applications >& /dev/null ||:
  419. %postun
  420. update-desktop-database %{_datadir}/applications>& /dev/null ||:
  421. umask 022
  422. %preun
  423. # is it a final removal?
  424. if [ $1 -eq 0 ]; then
  425. %{__rm} -rf %{ffdir}/components
  426. %{__rm} -rf %{ffdir}/extensions
  427. %{__rm} -rf %{ffdir}/plugins
  428. %{__rm} -rf %{langpackdir}
  429. fi
  430. #---------------------------------------------------------------------
  431. %files
  432. %defattr(-,root,root,-)
  433. %{_bindir}/firefox
  434. %{_bindir}/firefox-safe-mode
  435. %{_mandir}/man1/*
  436. %{_datadir}/applications/vine-%{name}.desktop
  437. %{_datadir}/applications/vine-%{name}-safe-mode.desktop
  438. %{_datadir}/pixmaps/firefox.png
  439. %{_datadir}/metainfo/firefox.metainfo.xml
  440. %{ffdir}
  441. %{_libdir}/mozilla
  442. #---------------------------------------------------------------------
  443. %changelog
  444. * Fri Jul 16 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.12.0-1
  445. - updated to 78.12.0.
  446. * Wed Jun 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.11.0-1
  447. - updated to 78.11.0.
  448. * Thu May 06 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.10.1-1
  449. - updated to 78.10.1.
  450. * Mon Apr 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.10.0-1
  451. - updated to 78.10.0.
  452. * Thu Mar 25 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.9.0-1
  453. - updated to 78.9.0.
  454. * Fri Feb 26 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.8.0-1
  455. - updated to 78.8.0.
  456. * Sat Feb 06 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.7.1-1
  457. - updated to 78.7.1.
  458. * Wed Jan 27 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.7.0-1
  459. - updated to 78.7.0.
  460. * Tue Jan 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.6.1-1
  461. - updated to 78.6.1.
  462. * Wed Dec 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.6.0-1
  463. - updated to 78.6.0.
  464. * Thu Nov 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.5.0-1
  465. - updated to 78.5.0.
  466. - dropped Patch700: fixed in upstream.
  467. * Tue Nov 10 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.4.1-1
  468. - updated to 78.4.1.
  469. * Mon Oct 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.4.0-1
  470. - updated to 78.4.0.
  471. - added Patch700 to build with rust-1.47.
  472. * Fri Oct 02 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.3.1-1
  473. - updated to 78.3.1.
  474. * Wed Sep 23 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.3.0-1
  475. - updated to 78.3.0.
  476. * Fri Aug 28 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.2.0-1
  477. - updated to 78.2.0.
  478. - updated metainfo.
  479. * Thu Jul 30 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.1.0-1
  480. - updated to 78.1.0.
  481. * Fri Jul 17 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 78.0.2-1
  482. - updated to 78.0.2.
  483. - replaced all patches to rawhide's.
  484. * Thu Jul 02 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.10.0-1
  485. - updated to 68.10.0.
  486. * Sat Jun 06 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.9.0-1
  487. - updated to 68.9.0.
  488. * Wed May 27 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.8.0-1
  489. - updated to 68.8.0.
  490. - updated metainfo.
  491. - fixed "License:" tag.
  492. * Sat Apr 11 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.7.0-1
  493. - updated to 68.7.0.
  494. * Sun Apr 05 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.6.1-1
  495. - updated to 68.6.1.
  496. * Thu Mar 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.6.0-1
  497. - updated to 68.6.0.
  498. * Tue Feb 18 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.5.0-1
  499. - updated to 68.5.0.
  500. - dropped Source900: fixed in upstream.
  501. * Fri Nov 01 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.2.0-1
  502. - updated to 68.2.0.
  503. * Sun Sep 29 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 68.1.0-1
  504. - updated to 68.1.0.
  505. - dropped Patch37, 225 and 406-415.
  506. - imported Patch419-421 from upstream (via rawhide).
  507. - updated Patch224.
  508. - added Patch1000.
  509. * Sat Jun 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.7.2-1
  510. - updated to 60.7.2.
  511. * Thu Jun 20 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.7.1-1
  512. - updated to 60.7.1.
  513. * Sat May 11 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.6.3-1
  514. - updated to 60.6.3.
  515. * Mon May 06 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.6.2-1
  516. - updated to 60.6.2.
  517. * Wed Dec 12 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.4.0-1
  518. - updated to 60.4.0.
  519. - updated branding informations in language packs.
  520. - re-added default profiles.
  521. - dropped Patch416: fixed in upstream.
  522. * Thu Dec 06 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 60.3.0-1
  523. - updated to 60.3.0.
  524. - dropped patches.
  525. - imported patches from rawhide.
  526. * Fri Jul 28 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 54.0.1-1
  527. - update to 54.0.1
  528. * Mon May 15 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 53.0.2-1
  529. - update to 53.0.2
  530. * Sun Apr 30 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 53.0-1
  531. - update to 53.0
  532. - build with gtk3
  533. - disable rust
  534. * Sat Apr 08 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0.2-1
  535. - update to 52.0.2
  536. * Mon Mar 20 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0.1-2
  537. - fix default bookmarks
  538. * Sat Mar 18 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0.1-1
  539. - update to 52.0.1
  540. * Thu Mar 09 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 52.0-1
  541. - update to 52.0
  542. * Sun Jan 29 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 51.0.1-1
  543. - update to 51.0.1
  544. * Thu Jan 26 2017 Daisuke SUZUKI <daisuke@vinelinux.org> 51.0-1
  545. - update to 51.0
  546. * Wed Dec 21 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 50.1.0-1
  547. - update to 50.1.0
  548. * Tue Nov 22 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 50.0-1
  549. - update to 50.0
  550. * Tue Nov 08 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 49.0.1-2
  551. - fix broken locale..
  552. * Fri Nov 04 2016 Daisuke SUZUKI <daisuke@vinelinux.org> 49.0.1-1
  553. - update to 49.0.1
  554. - update imported patches.
  555. * Wed Aug 3 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 48.0-1
  556. - new upstream release.
  557. - updated upstream patches.
  558. - updated imported patches.
  559. * Thu Jun 30 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 47.0.1-1
  560. - new upstream release
  561. - update Patch2000 (firefox-47.0.1-vine.patch)
  562. * Tue Jun 28 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 46.0.1-2
  563. - update Source230 (mozconfig-firefox-vine6)
  564. - add Patch5 (firefox-46.0.1-vine6.patch)
  565. * Wed May 04 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 46.0.1-1
  566. - new upstream release
  567. - update Patch15 (firefox-46.0.1-enable-addons.patch)
  568. * Sat Apr 23 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 45.0.2-1
  569. - new upstream release
  570. * Sun Mar 27 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 45.0.1-1
  571. - new upstream release
  572. * Fri Feb 12 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.2-1
  573. - new upstream release
  574. * Thu Feb 11 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0.1-1
  575. - new upstream release
  576. * Tue Jan 26 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 44.0-1
  577. - new upstream release
  578. * Sun Jan 24 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.4-2
  579. - update Source25 (firefox.desktop)
  580. - update Source26 (firefox-safe-mode.desktop)
  581. - add Source27 (firefox-safe-mode.vine.sh)
  582. * Sat Jan 09 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.4-1
  583. - new upstream release
  584. * Tue Dec 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.3-1
  585. - new upstream release
  586. * Wed Dec 23 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.2-1
  587. - new upstream release
  588. * Sat Dec 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0.1-1
  589. - new upstream release
  590. * Wed Dec 16 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 43.0-1
  591. - new upstream release
  592. - update Source100 (find-external-requires)
  593. * Sat Nov 07 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 42.0-1
  594. - update to 42.0
  595. - update Patch2000 (firefox-42.0-vine.patch)
  596. * Sun Oct 18 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 41.0.2-1
  597. - update to 41.0.2
  598. * Fri Oct 09 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 41.0.1-1
  599. - update to 41.0.1
  600. - update Patch2000 (firefox-41.0.1-vine.patch)
  601. * Sat Aug 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 40.0.3-1
  602. - update to 40.0.3
  603. * Mon Aug 17 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 40.0.2-1
  604. - update to 40.0.2
  605. - add BuildRequires: gstreamer-plugins-base-devel
  606. - remove BuildRequires: gstreamer-plugins-devel
  607. - update startup script (SOURCE21)
  608. * Sun Apr 12 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 37.0.1-1
  609. - update to 37.0.1
  610. * Sat Apr 4 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 37.0-1
  611. - update to 37.0
  612. * Sun Mar 29 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 36.0.4-1
  613. - update to 36.0.4
  614. * Wed Mar 11 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 36.0.1-1
  615. - update to 36.0.1
  616. * Tue Mar 03 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 36.0-1
  617. - update to 36.0
  618. * Mon Feb 02 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 35.0.1-1
  619. - update to 35.0.1
  620. * Sun Jan 18 2015 Daisuke SUZUKI <daisuke@vinelinux.org> 35.0-1
  621. - update to 35.0
  622. * Wed Dec 03 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 34.0.5-1
  623. - update to 34.0.5
  624. * Tue Nov 11 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 33.1-1
  625. - update to 33.1
  626. * Mon Nov 10 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 33.0.3-1
  627. - update to 33.0.3
  628. * Tue Oct 14 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 33.0-1
  629. - update to 33.0
  630. * Wed Oct 01 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0.3-2
  631. - update firefox-vine-default-prefs.js
  632. - remove intl.accept_languages
  633. * Thu Sep 25 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0.3-1
  634. - update to 32.0.3
  635. * Sun Sep 07 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0-2
  636. - update mozconfig
  637. - sync vine6/7 config
  638. - build with internal jpeg on vine6
  639. - disable optimize on i686
  640. * Thu Sep 04 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 32.0-1
  641. - update to 32.0
  642. * Wed Jul 23 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 31.0-1
  643. - update to 31.0
  644. * Wed Jun 11 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 30.0-1
  645. - update to 30.0
  646. * Thu May 15 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 29.0.1-1
  647. - update to 29.0.1
  648. * Wed Apr 30 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 29.0-1
  649. - update to 29.0
  650. * Thu Mar 20 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 28.0-1
  651. - update to 28.0
  652. * Sun Feb 16 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 27.0.1-1
  653. - update to 27.0.1
  654. * Mon Feb 10 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 27.0-1
  655. - update to 27.0
  656. - enable gstreamer/pulseaudio on Vine Linux 6
  657. * Fri Dec 13 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 26.0-2
  658. - add patch100,101 from upstream
  659. * Wed Dec 11 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 26.0-1
  660. - update to 26.0
  661. * Sun Nov 17 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 25.0.1-1
  662. - update to 25.0.1
  663. * Tue Oct 29 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 25.0-1
  664. - update to 25.0
  665. * Wed Oct 23 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 24.0-3
  666. - set media.gstreamer.enabled true by default.
  667. * Fri Oct 18 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 24.0-2
  668. - enable gstreamer and pulseaudio on Vine7
  669. * Tue Sep 17 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 24.0-1
  670. - update to 24.0
  671. - update searchplugins
  672. - add BR: gstreamer-devel, gstreamer-plugins-devel
  673. * Wed Aug 07 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0-2
  674. - fix vine customize patch
  675. - update unofficial logos
  676. * Tue Aug 06 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 23.0-1
  677. - update to 23.0
  678. * Thu Jun 27 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 22.0-1
  679. - update to 22.0
  680. * Mon May 20 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 21.0-2
  681. - disable helth reporting by default.
  682. - fix to install Vine's default settings
  683. * Sun May 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 21.0-1
  684. - update to 21.0
  685. - enable pdfjs
  686. - build with python27 on Vine6
  687. * Thu Apr 18 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 20.0.1-2
  688. - remove patch22
  689. * Mon Apr 15 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 20.0.1-1
  690. - update to 20.0.1
  691. - build with internal nss/nspr
  692. * Fri Mar 29 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-3
  693. - add BR: curl-devel
  694. * Sun Mar 24 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-2
  695. - add Patch16 to fix mozbz#239254 (fixed in upstream)
  696. * Fri Mar 08 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0.2-1
  697. - update to 19.0.2
  698. - disable shared-js on Vine Linux 6
  699. * Wed Feb 20 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 19.0-1
  700. - update to 19.0
  701. - add Patch1000 to disable pdf.js feature for now.
  702. - pdf.js is not ready to use for CJK.
  703. * Sat Jan 19 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 18.0.1-1
  704. - update to 18.0.1
  705. * Wed Jan 09 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 18.0-1
  706. - update to 18.0
  707. * Wed Nov 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 17.0-1
  708. - update to 17.0
  709. * Sun Oct 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0.2-1
  710. - update to 16.0.2
  711. * Fri Oct 12 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0.1-1
  712. - update to 16.0.1
  713. * Tue Oct 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 16.0-1
  714. - update to 16.0
  715. * Tue Oct 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-3
  716. - dont use separated plugins on Vine6
  717. - use --enable-optimize instead of --enable-optimize="\$RPM_OPT_FLAGS"
  718. * Mon Oct 08 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-2
  719. - add workaround to build with internal nss library
  720. * Sat Oct 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 15.0.1-1
  721. - update to 15.0.1
  722. - add BR: python-devel
  723. - build with external nss/nspr on Vine7
  724. * Tue Jul 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 14.0.1-2
  725. - update search plugins
  726. * Tue Jul 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 14.0.1-1
  727. - update to 14.0.1
  728. - build with internal nss/nspr
  729. * Sat Jun 16 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 13.0.1-1
  730. - update to 13.0.1
  731. * Wed Jun 06 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 13.0-1
  732. - update to 13.0
  733. * Sun May 20 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-3
  734. - add patch2 to fix build failure with gcc-4.1 (vine5)
  735. * Mon May 07 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-2
  736. - use internal nspr on Vine Linux 6
  737. - add patch2 to fix build failure with gcc-4.4
  738. * Wed Apr 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 12.0-1
  739. - update to 12.0
  740. - add patch1 to fix build failure with system cairo
  741. * Fri Feb 17 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0.2-1
  742. - update to 10.0.2
  743. * Mon Feb 13 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0.1-1
  744. - update to 10.0.1
  745. * Wed Feb 01 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 10.0-1
  746. - update to 10.0
  747. - use internal libvpx
  748. * Thu Jan 26 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-4
  749. - add AutoProv: no
  750. * Thu Dec 29 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-3
  751. - update mozconfig-firefox-vine5,6,7
  752. - fix spec to build in parallel
  753. * Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-2
  754. - update mozconfig
  755. - build with internal nss on Vine6
  756. * Thu Dec 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0.1-1
  757. - update to 9.0.1
  758. * Wed Dec 21 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 9.0-1
  759. - update to 9.0
  760. - build with nss-3.13.1
  761. * Tue Nov 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0.1-1
  762. - update to 8.0.1
  763. * Fri Nov 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.0-1
  764. - update to 8.0
  765. - remove version number from MOZ_DIST_BIN
  766. - /usr/lib*/firefox-8.0 -> /usr/lib*/firefox
  767. * Fri Sep 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0.1-1
  768. - update to 7.0.1
  769. * Wed Sep 28 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 7.0-1
  770. - update to 7.0
  771. * Tue Sep 06 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.2-1
  772. - update to 6.0.2
  773. * Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 6.0-2
  774. - rebuild with libnotify-0.7
  775. * Sun Aug 14 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0-1
  776. - update to 6.0
  777. * Tue Jul 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0.1-1
  778. - update to 5.0.1
  779. * Thu Jul 07 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 5.0-1
  780. - update to 5.0
  781. - do not build with external xulrunner
  782. - remove BR: gecko-devel, R: gecko-libs
  783. - add BR: alsa-lib-devel, lcms-devel, libvpx-devel, libpng-devel,
  784. sqlite3-devel, zip
  785. * Mon May 23 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0.1-1
  786. - update to 4.0.1
  787. - remove MimeType from firefox-safe-mode.desktop
  788. - add BR: yasm, unzip
  789. * Thu Mar 31 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-2
  790. - add "--disable-ipc" on non-x86 architecture
  791. - update parallel build option
  792. - mozilla can build up to 4 jobs in parallel on x86
  793. - disable C++ exceptions since mozilla code is not exception-safe
  794. * Wed Mar 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 4.0-1
  795. - update to 4.0
  796. - BR: libjpeg-turbo-devel >= 1.1.0
  797. - BR: nspr-devel >= 4.8.7
  798. - BR: nss-devel >= 3.12.9
  799. - BR: cairo-devel >= 1.10.2-2
  800. - use langpacks.xpi instead of l10n source
  801. - update firefox startup script
  802. * Thu Mar 10 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.15-1
  803. - update to 3.6.15
  804. * Wed Mar 02 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.14-1
  805. - update to 3.6.14
  806. * Sat Jan 08 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.13-1
  807. - update to 3.6.13
  808. * Thu Oct 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.11-1
  809. - update to 3.6.11
  810. * Tue Sep 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.9-1
  811. - update to 3.6.9
  812. * Mon Jul 26 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.8-1
  813. - update to 3.6.8
  814. * Wed Jul 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.7-1
  815. - update to 3.6.7
  816. * Wed Jun 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.4-1
  817. - update to 3.6.4
  818. * Sat Apr 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.3-1
  819. - update to 3.6.3
  820. * Fri Apr 02 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6.2-1
  821. - update to 3.6.2
  822. * Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-2
  823. - remove version number from browsername.
  824. - rebuild with xulrunner-1.9.2-3
  825. * Thu Jan 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.6-1
  826. - update to 3.6
  827. * Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-2
  828. - update desktop files
  829. * Fri Jan 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.7-1
  830. - new upstream release
  831. - move to unofficial build from community build.
  832. - change about dialog.
  833. * Sat Nov 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.5-1
  834. - new upstream release
  835. * Sat Aug 08 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-3
  836. - rebuild again with xulrunner-1.9.1.2-2
  837. * Fri Aug 07 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-2
  838. - rebuild with xulrunner-1.9.1.2-2
  839. * Wed Aug 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.2-1
  840. - new upstream release
  841. * Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-2
  842. - remove MimeType entry from firefox-safe-mode.desktop (<BTS:0735>)
  843. - add default{32,48}.png to %%{ffdir}/chrome/icons/default (<BTS:0733>)
  844. * Sun Jul 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5.1-1
  845. - new upstream release
  846. - add BR: libXt-devel, startup-notification-devel
  847. * Wed Jul 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-3
  848. - enable-system-cairo
  849. * Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-2
  850. - add Patch3010 to fix releasenotes urls
  851. * Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-1
  852. - update to firefox 3.5 release
  853. * Tue Jun 30 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.5-0.1.rc3
  854. - update to firefox-3.5rc3
  855. * Fri Jun 12 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.11-1
  856. - new upstream release
  857. * Wed May 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-4
  858. - rebuild to fix broken package..
  859. * Tue May 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-3
  860. - add Obsoletes: firefox3
  861. * Tue Apr 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.10-2
  862. - new upstream release
  863. * Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-2
  864. - build with gecko-libs (xulrunner)
  865. - update firefox startup script (/usr/bin/firefox)
  866. * Wed Apr 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.9-1
  867. - new upstream release
  868. - build with nspr-4.7.4, nss-3.12.3
  869. - set FLASH_FORCE_PULSEAUDIO if PA server is running.
  870. * Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.8-1
  871. - new upstream release
  872. - update default bookmarks
  873. * Thu Mar 05 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.7-1
  874. - new upstream release
  875. * Mon Feb 16 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-2
  876. - modify mozconfig
  877. - remove --enable-xft
  878. - remove --enable-system-cairo, add --disable-system-cairo
  879. * Wed Feb 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.6-1
  880. - new upstream release
  881. * Sat Dec 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.5-1
  882. - new upstream release
  883. * Sat Nov 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.4-1
  884. - new upstream release
  885. * Thu Oct 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-2
  886. - add Patch30 to remove EULA
  887. * Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.3-1
  888. - new upstream release
  889. * Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-2
  890. - disable dbus.
  891. * Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.2-1
  892. - new upstream release
  893. * Thu Jul 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0.1-1
  894. - new upstream release
  895. * Wed Jul 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-2
  896. - rebuild with nss-3.12, nspr-4.7.1
  897. - use unofficial branding
  898. - change brand*Name to "Firefox Community Edition - Gran Paradiso"
  899. * Sun Jun 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 3.0-1
  900. - new upstream release
  901. * Sat Apr 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0.14-1
  902. - new upstream release
  903. * Wed Mar 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.13-1
  904. - new upstream release
  905. * Tue Feb 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.12-0vl3
  906. - new upstream release
  907. * Sat Dec 01 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.11-0vl3
  908. - new upstream release
  909. * Tue Nov 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.10-0vl3
  910. - new upstream release
  911. * Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.9-0vl3
  912. - new upstream release
  913. * Fri Oct 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.8-0vl3
  914. - new upstream release
  915. - build with nspr-4.6.7
  916. - update default bookmarks
  917. * Tue Jul 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.6-0vl3
  918. - new upstream release
  919. * Thu Jul 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.5-0vl3
  920. - new upstream release
  921. * Tue Jun 12 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl9
  922. - fix pkgconfig file for x86_64 [VineSeed-x86_64:00333]
  923. - require ns{pr,s}-devel instead of ns{pr,s} for firefox-devel
  924. * Sat Jun 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl6
  925. - fix exclude condition of firefox-{nss,nspr}.pc (<BTS:532>)
  926. * Thu May 31 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.4-0vl3
  927. - update to firefox-2.0.0.4
  928. - remove Patch1020 which is merged in upstream
  929. * Sun May 20 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.0.0.3-0vl5
  930. - added Patch1020 for workaround gcc visibility hidden bugs
  931. * Sat May 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl4
  932. - add build options to build with external nss/nspr libraries
  933. ac_add_options --with-system-nspr
  934. ac_add_options --with-system-nss
  935. - remove firefox-{nspr,nss}.pc from %%files devel
  936. * Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl3
  937. - rebuild with new environment/toolchain
  938. - update ja locale
  939. * Wed Mar 21 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.3-0vl2
  940. - new upstream release
  941. * Sat Feb 24 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.2-0vl2
  942. - new upstream release
  943. * Sat Jan 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl6
  944. - remove typeaheadfind and venkman extention.
  945. * Fri Jan 26 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl4
  946. - add build options for FireBug (<BTS:wishes:9>)
  947. --enable-jsd, --enable-extention=default,typeaheadfind,venkman
  948. * Thu Dec 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0.1-0vl2
  949. - update to firefox-2.0.0.1
  950. * Mon Nov 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl6
  951. - add Patch10 to fix Bug358798
  952. - fix idl install path (<BTS:401>)
  953. * Sat Oct 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl4
  954. - update vine default settings
  955. - use Firefox for UA string instead of BonEcho
  956. - add vendor/vendorSub to UA string
  957. - disable spell check by default
  958. - enable smooth scroll by default
  959. * Tue Oct 24 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl2
  960. - update to firefox-2.0 final
  961. * Mon Oct 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl0.rc3
  962. - update to firefox-2.0rc3
  963. - drop unneeded patches.
  964. * Mon Oct 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl4
  965. - change Summary, desktopfiles
  966. - use Firefox Community Edition, instead of Firefox.
  967. * Fri Sep 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.7-0vl2
  968. - new upstream release
  969. * Thu Aug 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.6-0vl2
  970. - new upstream release
  971. - -safe-mode option (VinePlus:03026)
  972. - add Patch1010
  973. - add -safe-mode option in Usage(--help).
  974. - add firefox-safe-mode.desktop
  975. * Wed Jul 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.5-0vl2
  976. - new upstream release
  977. - update default bookmarks
  978. * Tue Jun 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl4
  979. - copy nss headers
  980. * Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.4-0vl2
  981. - new upstream release
  982. * Wed May 03 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.3-0vl2
  983. - new upstream release
  984. * Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl4
  985. - use firefox-1.5 for MOZILLA_FIVE_HOME instead of firefox-1.5.0.2
  986. - applications using gtkmozembed of firefox become unaffected to
  987. firefox's minor version changes.
  988. * Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.2-0vl2
  989. - new upstream release
  990. * Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl6
  991. - clean up spec file ( remove unneeded %%ghost file ... )
  992. * Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl4
  993. - fix missing default theme in theme changer
  994. * Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl3
  995. - add upstream patches (100,101,102)
  996. - update default bookmarks
  997. - build en-US locale
  998. - disable pango rendering by default
  999. (workaround fix slow rendering in some page)
  1000. * Thu Feb 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.0.1-0vl2
  1001. - new upstream release
  1002. * Thu Jan 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl4
  1003. - fix libnssckbi broken symlink problem (BUG:8)
  1004. * Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl3
  1005. - add devel subpackage for gtkembedmoz
  1006. * Thu Dec 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl2
  1007. - re-enable ja locale
  1008. - fix crash bug with COMPOSITE enabled X server
  1009. - add patch to /usr/bin/firefox
  1010. * Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5-0vl1
  1011. - new upstream release
  1012. * Sat Sep 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.7-0vl2
  1013. - update to firefox-1.0.7
  1014. * Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl10
  1015. - modified mozconfig to use RPM_OPT_FLAGS
  1016. * Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl8
  1017. - add Patch110 to fix crash with gtk-2.7 (fixed in upstream)
  1018. * Thu Aug 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl6
  1019. - rebuild with pango-1.9.1
  1020. - add pango-cairo patch
  1021. * Sat Jul 23 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl4
  1022. - update Patch25 to enable extension update feature
  1023. (disabled in preferences by default)
  1024. * Wed Jul 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-0vl2
  1025. - new upstream release
  1026. * Thu Jul 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.5-0vl2
  1027. - new upstream release
  1028. * Sat May 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl6
  1029. - add more pango rendering patch from FC-devel.
  1030. - add IM candidate window position patch.
  1031. * Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl4
  1032. - fix wrong condition branching in spec file.
  1033. * Fri May 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-0vl2
  1034. - new upstream release
  1035. - drop obsolete patch{103,104}
  1036. * Sat Apr 16 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.3-0vl1
  1037. - new upstream release
  1038. * Mon Mar 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
  1039. - new upstream release
  1040. * Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl6
  1041. - clean up spec file
  1042. - drop own pixmap file (use included one)
  1043. - fix up file permissions
  1044. * Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl4
  1045. - remove "new-window" option from openurl in /usr/bin/firefox
  1046. * Tue Mar 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl2
  1047. - readd patch31,32 for pango rendering fix.
  1048. * Mon Mar 14 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl0
  1049. - rebuild for Vine Linux 3.1 (VinePlus)
  1050. * Mon Mar 07 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl1
  1051. - new upstream release
  1052. - merge some patches from fedora
  1053. - include ja-JP langpack only.
  1054. - add Japanese translation for mozilla-firefox.desktop
  1055. - disable gnomeui, gnomestripe patch
  1056. - disable mozilla official branding.
  1057. * Mon Jan 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0-0vl1
  1058. - initial build for Vine Linux
  1059. - based on fedora package, add Vine patch from Mozilla package.
  1060. * Tue Dec 28 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-8
  1061. - Add upstream langpacks
  1062. * Sat Dec 25 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-7
  1063. - Make sure we get a URL passed in to firefox (#138861)
  1064. - Mark some generated files as ghost (#136015)
  1065. * Wed Dec 15 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-6
  1066. - Don't have downloads "disappear" when downloading to desktop (#139015)
  1067. - Add RPM version to the useragent
  1068. - BuildRequires pango-devel
  1069. * Sat Dec 11 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-5
  1070. - Fix spacing in textareas when using pango for rendering
  1071. - Enable pango rendering by default.
  1072. - Enable smooth scrolling by default
  1073. * Fri Dec 3 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-4
  1074. - Add StartupWMClass patch from Damian Christey (#135830)
  1075. - Use system colors by default (#137810)
  1076. - Re-add s390(x)
  1077. * Sat Nov 20 2004 Christopher Blizzard <blizzard@redhat.com> 0:1.0-3
  1078. - Add patch that uses pango for selection.
  1079. * Fri Nov 12 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-2
  1080. - Fix livemarks icon issue. (#138989)
  1081. * Mon Nov 8 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-1
  1082. - Firefox 1.0
  1083. * Thu Nov 4 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.3
  1084. - Add support for GNOME stock icons. (bmo #233461)
  1085. * Sat Oct 30 2004 Warren Togami <wtogami@redhat.com> 0:0.99-1.0RC1.2
  1086. - #136330 BR freetype-devel with conditions
  1087. - #135050 firefox should own mozilla plugin dir
  1088. * Sat Oct 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.1
  1089. - Update to firefox-rc1
  1090. - Add patch for s390(x)
  1091. * Tue Oct 26 2004 Christopher Aillon <caillon@redhat.com>
  1092. - Fix LD_LIBRARY_PATH at startup (Steve Knodle)
  1093. * Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.21
  1094. - Prevent inlining of stack direction detection (#135255)
  1095. * Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.20
  1096. - More file chooser fixes:
  1097. Pop up a confirmation dialog before overwriting files (#134648)
  1098. Allow saving as complete once again
  1099. - Fix for upstream 263263.
  1100. * Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.18
  1101. - Fix for upstream 262689.
  1102. * Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com 0:0.10.1-1.0PR1.16
  1103. - Update pango patch to one that defaults to off
  1104. * Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.15
  1105. - Fix problem where default apps aren't showing up in the download
  1106. dialog (#136261)
  1107. - Fix default height being larger than the available area, cherry picked
  1108. from upstream
  1109. * Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.13
  1110. - Actually turn on pango in the mozconfig
  1111. * Sat Oct 16 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.12
  1112. - Disable the default application checks. (#133713)
  1113. - Disable the software update feature. (#136017)
  1114. * Wed Oct 13 2004 Christopher Blizzard <blizzard@redhat.com>
  1115. - Use pango for rendering
  1116. * Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.10
  1117. - Fix for 64 bit crash at startup (b.m.o #256603)
  1118. * Fri Oct 8 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.9
  1119. - Fix compile issues (#134914)
  1120. - Add patch to fix button focus issues (#133507)
  1121. - Add patches to fix tab focus stealing issue (b.m.o #124750)
  1122. * Fri Oct 1 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.8
  1123. - Update to 0.10.1
  1124. - Fix tab switching keybindings (#133504)
  1125. * Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> 0:0.10.0-1.0PR1.7
  1126. - filter out library Provides: and internal Requires:
  1127. * Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.6
  1128. - Prereq desktop-file-utils >= 0.9
  1129. * Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.5
  1130. - Add clipboard access prevention patch.
  1131. * Wed Sep 29 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.4
  1132. - Add the xul mime type to the .desktop file
  1133. * Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.3
  1134. - Backport the GTK+ file chooser.
  1135. - Update desktop database after uninstall.
  1136. * Mon Sep 27 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.2
  1137. - Change the vendor to mozilla not fedora
  1138. - Build with --disable-strip so debuginfo packages work (#133738)
  1139. - Add pkgconfig patch (bmo #261090)
  1140. * Fri Sep 24 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.1
  1141. - Add a BR for desktop-file-utils
  1142. - Update default configuration options to use the firefox mozconfig (#132916)
  1143. - Use Red Hat bookmarks (#133262)
  1144. - Update default homepage (#132721)
  1145. - Fix JS math on AMD64 (#133226)
  1146. - Build with MOZILLA_OFICIAL (#132917)
  1147. * Tue Sep 14 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.0
  1148. - Update to 1.0PR1
  1149. - Update man page references to say Firefox instead of Firebird
  1150. - Remove gcc34 and extensions patch; they are now upstream
  1151. - Update desktop database
  1152. - Minor tweaks to the .desktop file
  1153. * Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0:0.9.3-8
  1154. - Fixup .desktop entry Name, GenericName, and Comment (#131602)
  1155. - Add MimeType desktop entry (patch from jrb@redhat.com)
  1156. - Build with --disable-xprint
  1157. * Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0:0.9.3-7
  1158. - rawhide import
  1159. - fedora.us #1765 NetBSD's freetype 2.1.8 compat patch
  1160. * Sun Aug 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.6
  1161. - and mng support is disabled again as it seams that there is
  1162. no real mng support in the code
  1163. * Sat Aug 28 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.5
  1164. - remove ldconfig from scriptlets (bug #1846 comment #40)
  1165. - reenabled mng support (bug #1971)
  1166. - removed --enable-strip to let rpm to the stripping (bug #1971)
  1167. - honor system settings in firefox.sh (bug #1971)
  1168. - setting umask 022 in scriptlets (bug #1962)
  1169. * Sat Aug 07 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.4
  1170. - copy the icon to the right place(TM)
  1171. * Fri Aug 06 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.3
  1172. - readded the xpm removed in 0:0.9.2-0.fdr.5
  1173. * Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.2
  1174. - added mozilla-1.7-psfonts.patch from rawhide mozilla
  1175. * Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.1
  1176. - updated to 0.9.3
  1177. - removed following from .mozconfig:
  1178. ac_add_options --with-system-mng
  1179. ac_add_options --enable-xprint
  1180. ac_add_options --disable-dtd-debug
  1181. ac_add_options --disable-freetype2
  1182. ac_add_options --enable-strip-libs
  1183. ac_add_options --enable-reorder
  1184. ac_add_options --enable-mathml
  1185. ac_add_options --without-system-nspr
  1186. * Tue Aug 03 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.5
  1187. - applied parts of the patch from Matthias Saou (bug #1846)
  1188. - delete empty directories in %%{ffdir}/chrome
  1189. - more cosmetic changes to the spec file
  1190. * Wed Jul 14 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.4
  1191. - mozilla-default-plugin-less-annoying.patch readded
  1192. * Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.3
  1193. - added krb5-devel as build requirement
  1194. * Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.2
  1195. - added patch from bugzilla.mozilla.org (bug #247846)
  1196. - removed Xvfb hack
  1197. * Fri Jul 09 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.1
  1198. - updated to 0.9.2
  1199. * Mon Jul 05 2004 Warren Togami <wtogami@redhat.com> 0:0.9.1-0.fdr.3
  1200. - mharris suggestion for backwards compatibilty with Xvfb hack
  1201. * Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.2
  1202. - added massive hack from the debian package to create the
  1203. extension directory
  1204. * Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.1
  1205. - updated to 0.9.1
  1206. * Thu Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.4
  1207. - remove extensions patch
  1208. - add post hack to create extensions
  1209. - enable negotiateauth extension
  1210. - copy icon to browser/app/default.xpm
  1211. - --enable-official-branding
  1212. * Thu Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.3
  1213. - extensions patch
  1214. * Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.2
  1215. - added gnome-vfs2-devel as BuildRequires
  1216. - added gcc-3.4 patch
  1217. * Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.1
  1218. - updated to 0.9
  1219. - dropped x86_64 patches
  1220. - dropped xremote patches
  1221. * Wed May 26 2004 Adrian Reber <adrian@lisas.de> 0:0.8-0.fdr.13
  1222. - remove unused files: mozilla-config
  1223. * Sun May 23 2004 David Hill <djh[at]ii.net> 0:0.8-0.fdr.12
  1224. - update mozconfig (fixes bug #1443)
  1225. - installation directory includes version number
  1226. * Mon May 10 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.11
  1227. - merge x86_64 release 10 with fedora.us release 10 bump release to 11
  1228. * Mon Apr 19 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.10
  1229. - rebuild for FC2
  1230. - change Source71 to properly replace Source7 for maintainability
  1231. * Sun Apr 18 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.10
  1232. - 3rd xremote patch
  1233. - test -Os rather than -O2
  1234. * Sun Apr 18 2004 Gene Czarcinski <gene@czarc.net>
  1235. - more x86_64 fixes
  1236. - fix firefix-xremote-client for x86_64 (similar to what is done for
  1237. firefox.sh.in)
  1238. * Sat Apr 03 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.9
  1239. - xremote patch for thunderbird integration #1113
  1240. - back out ugly hack from /usr/bin/firefox
  1241. - correct default bookmarks
  1242. * Wed Feb 25 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.7
  1243. - readded the new firefox icons
  1244. * Sat Feb 21 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.6
  1245. - removed new firefox icons
  1246. * Wed Feb 18 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.5
  1247. - nothing
  1248. * Thu Feb 12 2004 Gene Czarcinski <czar@acm.org>
  1249. - update for x86_64 ... usr mozilla-1.6 patches
  1250. - change "firefox-i*" to "firefox-*" in above stuff
  1251. * Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.4
  1252. - another icon changed
  1253. * Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.3
  1254. - startup script modified
  1255. * Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.2
  1256. - new firefox icon
  1257. - more s/firebird/firefox/
  1258. * Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.1
  1259. - new version: 0.8
  1260. - new name: firefox
  1261. * Sun Oct 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.2
  1262. - s/0.6.1/0.7/
  1263. - changed user-app-dir back to .phoenix as .mozilla-firebird
  1264. is not working as expected
  1265. - manpage now also available as MozillaFirebird.1
  1266. * Thu Oct 16 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.1
  1267. - updated to 0.7
  1268. - provides webclient
  1269. - run regxpcom and regchrome after installation and removal
  1270. - added a man page from the debian package
  1271. - changed user-app-dir from .phoenix to .mozilla-firebird
  1272. * Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.2
  1273. - now with mozilla-default-plugin-less-annoying.patch; see bug #586
  1274. * Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.1
  1275. - updated to 0.6.1
  1276. - changed buildrequires for XFree86-devel from 0:4.3.0 to 0:4.2.1
  1277. it should now also build on RH80
  1278. * Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.5.rh90
  1279. - enabled the type ahead extension: bug #484
  1280. * Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.4.rh90
  1281. - renamed it again back to MozillaFirbird
  1282. - added libmng-devel to BuildRequires
  1283. - startup homepage is now www.fedora.us
  1284. - improved the startup script to use the unix remote protocol
  1285. to open a new window
  1286. * Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.3.rh90
  1287. - new icon from http://iconpacks.mozdev.org/phoenix/iconshots/flame48true.png
  1288. - now using gtk2 as toolkit
  1289. - renamed again back to mozilla-firebird (I like it better)
  1290. - Provides: MozillaFirebird for compatibility with previous releases
  1291. - changed default bookmarks.html to contain links to www.fedora.us
  1292. * Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.2.rh90
  1293. - renamed package to MozillaFirebird and all files with the old name
  1294. - enabled mng, mathml, xinerama support
  1295. - now honouring RPM_OPT_FLAGS
  1296. * Mon May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.1.rh90
  1297. - updated to 0.6
  1298. * Thu May 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.1.cvs20030501.rh90
  1299. - Updated to CVS.
  1300. - Renamed to mozilla-firebird.
  1301. * Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030409.rh90
  1302. - Updated to CVS.
  1303. - Removed hard-coded library path.
  1304. * Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030402.rh90
  1305. - Changed Prereq to Requires.
  1306. - Changed BuildRequires to gtk+-devel (instead of file).
  1307. - Recompressed source with bzip2.
  1308. - Removed post.
  1309. * Wed Apr 02 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030402.rh90
  1310. - Added desktop-file-utils to BuildRequires.
  1311. - Changed category to X-Fedora-Extra.
  1312. - Updated to CVS.
  1313. * Sun Mar 30 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030328.rh90
  1314. - Added Epoch:0.
  1315. - Added libgtk-1.2.so.0 to the BuildRequires
  1316. * Fri Mar 28 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030328.rh90
  1317. - Updated to latest CVS.
  1318. - Moved phoenix startup script into its own file
  1319. * Wed Mar 26 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030326.rh90
  1320. - Updated to latest CVS.
  1321. - Changed release to 9 vs 8.1.
  1322. - Added cvs script.
  1323. - added encoding to desktop file.
  1324. * Sun Mar 23 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030323.rh81
  1325. - Updated to latest CVS.
  1326. - added release specification XFree86-devel Build Requirement.
  1327. - changed chmod to %attr
  1328. * Fri Mar 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030317.rh81
  1329. - Fixed naming scheme.
  1330. - Fixed .desktop file.
  1331. * Mon Mar 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030317.1
  1332. - Updated to CVS.
  1333. * Fri Mar 14 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.2
  1334. - General Tweaking.
  1335. * Thu Mar 13 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.1
  1336. - Updated CVS.
  1337. - Modified mozconfig.
  1338. * Sun Mar 09 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030309.1
  1339. - Initial RPM release.