summaryrefslogtreecommitdiff
path: root/libre/icecat
AgeCommit message (Collapse)Author
2013-05-10icecat,iceweasel-libre: updating bookmarksAndré Fabian Silva Delgado
2013-05-08icecat: disable pgo and revert necko-wifiMárcio Alexandre Silva Delgado
2013-05-08icecat: disable necko-wifiMárcio Alexandre Silva Delgado
2013-05-08icecat: put wireless-tool to depsMárcio Alexandre Silva Delgado
2013-05-08icecat: put media.gstreamer.enabled on vendor.jsAndré Fabian Silva Delgado
2013-05-07ice{weasel-libre,cat,ape-libre}: change to gstreamer0.10-base depsMárcio Alexandre Silva Delgado
2013-05-07ice{weasel-libre,cat,ape-libre}: adding gst-plugins-base depsMárcio Alexandre Silva Delgado
2013-05-07ice{weasel-libre,cat,ape-libre}: rebuilding with gstreamer supportMárcio Alexandre Silva Delgado
2013-05-07icecat-17.0.1-8: rebuild against libpngAndré Fabian Silva Delgado
2013-04-12ice{cat,weasel-libre}: Rebuild with GCC 4.7.2 and PGO re-enabled for i686 => ↵André Fabian Silva Delgado
https://bugs.archlinux.org/task/34738
2013-04-12ice{cat,weasel-libre}: fixing PKGBUILDAndré Fabian Silva Delgado
2013-04-12icecat-17.0.1-7: adapting PKGBUILD with new changes, updating mozconfig and ↵André Fabian Silva Delgado
mozconfig.pgo
2013-04-10ice{ape-libre,cat,dove-libre,weasel-libre}: Add workaround for preprocessor ↵André Fabian Silva Delgado
misdetection
2013-03-01disabling pgo support on icecat due that pgo generates issues on the compilingAndré Fabian Silva Delgado
2013-03-01updating md5sumAndré Fabian Silva Delgado
2013-03-01fixing issue on Freenode's handlersAndré Fabian Silva Delgado
2013-02-24icecat: fixing pgoAndré Fabian Silva Delgado
2013-02-22icecat: improving pgoAndré Fabian Silva Delgado
2013-02-22icecat: keeps PKGBUILD prolixAndré Fabian Silva Delgado
2013-02-22icecat: improving some partsAndré Fabian Silva Delgado
2013-02-22icecat-17.0.1-7: enabling pgoAndré Fabian Silva Delgado
2013-02-20fixing oficial name on GNU IceCatAndré Fabian Silva Delgado
2013-02-20fixing description on ice* packagesAndré Fabian Silva Delgado
2013-02-20fixing mozilla packagesAndré Fabian Silva Delgado
2013-01-31icecat-17.0.1-5: optimizing mozconfigAndré Fabian Silva Delgado
2013-01-18icecat-17.0.1-4: updating md5sumsAndré Fabian Silva Delgado
2013-01-18icecat-17.0.1-4: fixing icecat-safe.desktopAndré Fabian Silva Delgado
2013-01-18icecat-17.0.1-4: revert name on icecat.desktopAndré Fabian Silva Delgado
2013-01-18icecat-17.0.1-4: updating md5sumAndré Fabian Silva Delgado
2013-01-18icecat-17.0.1-4: fixing Name on icecat.desktopAndré Fabian Silva Delgado
2013-01-18icecat-17.0.1-4: fixing the some important details on libre.patchAndré Fabian Silva Delgado
2013-01-17icecat-17.0.1-4: updating pkgrelAndré Fabian Silva Delgado
2013-01-17ice{cat,wease}: Add full path to binary, fixes ↵André Fabian Silva Delgado
https://bugs.archlinux.org/task/26245
2013-01-16icecat-17.0.1-2: taking parts from lukeshu's works to optimize our worksAndré Fabian Silva Delgado
2013-01-13ice{cat,weasel}: revert to back pkg stables and mv lukeshu pkgs to libre-testingMárcio Alexandre Silva Delgado
2013-01-13icecat-17.0.1-2: updating vendor.js md5sumAndré Fabian Silva Delgado
2013-01-13icecat-17.0.1-2: change libre.patchAndré Fabian Silva Delgado
2013-01-12libre/icecat: use vendor.js to simplify libre.patchLuke Shumaker
2013-01-12libre/icecat: sync files with versions from firefox and upstreamLuke Shumaker
* firefox-install-dir.patch: use version from firefox package * icecat.desktop: merge with version from firefox package * mozconfig: merge with versions from icecat upstream and firefox package
2013-01-12libre/icecat: tidy up, rename filesLuke Shumaker
PKGBUILD-only: * do the build in "mozilla-release", to match firefox PKGBUILD and file changes: * mv {,bug-}xulrunner-copy-stub.patch * rm cairo.patch # was unapplied * mv {icecat,firefox}-install-dir.patch * mv {icecat,firefox}.install * rm gcc47.patch # was unapplied * rm icecat-safe.desktop # no longer offered for firefox * add shared-libs.patch from firefox, this was done by a sed script *
2013-01-12libre/{icecat,iceweasel-libre}: clean up a bitLuke Shumaker
* don't duplicate the mis64el fix in iceweasel * clean up whitespace and quoting * re-order a few things * don't give geticeweasel.org as iceweasel's url * don't symlink /usr/lib/mozilla/plugins to /usr/lib/$pkgbase/plugins * more elegant version of debfile() for iceweasel. * drop i586 from arch=(), ours has changed too greatly
2013-01-12libre/{icecat,iceweasel-libre}: fix PGO, make more similar to firefoxLuke Shumaker
The biggest part of that change is using the variable "pkgbase" so they don't all have to be different. Note that I ran firefox through moz-normalize before comparing them.
2013-01-12libre/{icecat,iceweasel-libre}: run through moz-normalize-*Luke Shumaker
2012-12-26(scripted) fix file permission breakage introduced in commit d62bd1Luke Shumaker
I did this with this command: git diff d62bd1^..d62bd1 | egrep '^old mode ' -C1 \ | tr '\n' ' ' | sed 's/diff --git/\n&/g' \ | sed -r 's|^diff --git a/([^ ]*) b/([^ ]*) old mode 100([0-9]*) new mode 100([0-9]*)|chmod \3 ./\1|' \ | bash The first line finds all of the file-permission changes in the commit. The second line squashes some newlines to get one line per file. This line is in the format: diff --git a/FILE b/FILE old mode OLDMODE new mode NEWMODE The third line extracts the values from those lines and transforms the line into: chmod FILE ./OLDMODE The fourth line (obviously) just executes the output.
2012-12-04icecat-17.0.1-1: fixing icecat-install-dir.patchAndré Fabian Silva Delgado
2012-12-04icecat-17.0.1-1: updating libre.patch md5sumAndré Fabian Silva Delgado
2012-12-04icecat-17.0.1-1: updating mozconfig md5sumAndré Fabian Silva Delgado
2012-12-04icecat-17.0.1-1: updating versionAndré Fabian Silva Delgado
2012-11-30icecat-14.0-4: removing a black space in libre.patchAndré Fabian Silva Delgado
2012-11-30icecat-14.0-4: fixing some parts in libre.patchAndré Fabian Silva Delgado