From: "Jory Pratt" <anarchy@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/mozilla:master commit in: www-client/firefox/
Date: Tue, 3 Nov 2015 18:05:10 +0000 (UTC) [thread overview]
Message-ID: <1446573894.ffbb099aabc9bdd6c3f554b3f36387dcf5068824.anarchy@gentoo> (raw)
commit: ffbb099aabc9bdd6c3f554b3f36387dcf5068824
Author: Jory A. Pratt <anarchy <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 3 18:04:54 2015 +0000
Commit: Jory Pratt <anarchy <AT> gentoo <DOT> org>
CommitDate: Tue Nov 3 18:04:54 2015 +0000
URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=ffbb099a
Fix broken commit
www-client/firefox/firefox-42.0.ebuild | 417 +++++++++++++++++++++++++++++++++
1 file changed, 417 insertions(+)
diff --git a/www-client/firefox/firefox-42.0.ebuild b/www-client/firefox/firefox-42.0.ebuild
new file mode 100644
index 0000000..aa151b7
--- /dev/null
+++ b/www-client/firefox/firefox-42.0.ebuild
@@ -0,0 +1,417 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+VIRTUALX_REQUIRED="pgo"
+WANT_AUTOCONF="2.1"
+MOZ_ESR=""
+
+# This list can be updated with scripts/get_langs.sh from the mozilla overlay
+# No official support as of fetch time
+# csb
+MOZ_LANGS=( af ar as ast be bg bn-BD bn-IN br bs ca cs cy da de el en
+en-GB en-US en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd
+gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko lt lv mai mk ml mr
+nb-NO nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta te
+th tr uk vi xh zh-CN zh-TW )
+
+# Convert the ebuild version to the upstream mozilla version, used by mozlinguas
+MOZ_PV="${PV/_alpha/a}" # Handle alpha for SRC_URI
+MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI
+MOZ_PV="${MOZ_PV/_rc/rc}" # Handle rc for SRC_URI
+
+if [[ ${MOZ_ESR} == 1 ]]; then
+ # ESR releases have slightly version numbers
+ MOZ_PV="${MOZ_PV}esr"
+fi
+
+# Patch version
+PATCH="${PN}-42.0-patches-01b2"
+MOZ_HTTP_URI="http://archive.mozilla.org/pub/${PN}/releases"
+
+MOZCONFIG_OPTIONAL_GTK3=1
+MOZCONFIG_OPTIONAL_WIFI=1
+MOZCONFIG_OPTIONAL_JIT="enabled"
+
+inherit check-reqs flag-o-matic toolchain-funcs eutils gnome2-utils mozconfig-v6.42 multilib pax-utils fdo-mime autotools virtualx mozlinguas
+
+DESCRIPTION="Firefox Web Browser"
+HOMEPAGE="http://www.mozilla.com/firefox"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+
+SLOT="0"
+LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
+IUSE="bindist egl hardened +minimal neon pgo selinux +gmp-autoupdate test"
+RESTRICT="!bindist? ( bindist )"
+
+# More URIs appended below...
+SRC_URI="${SRC_URI}
+ https://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz
+ https://dev.gentoo.org/~axs/mozilla/patchsets/${PATCH}.tar.xz
+ https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz"
+
+ASM_DEPEND=">=dev-lang/yasm-1.1"
+
+# Mesa 7.10 needed for WebGL + bugfixes
+RDEPEND="
+ >=dev-libs/nss-3.20.1
+ >=dev-libs/nspr-4.10.10
+ selinux? ( sec-policy/selinux-mozilla )"
+
+DEPEND="${RDEPEND}
+ pgo? (
+ >=sys-devel/gcc-4.5 )
+ amd64? ( ${ASM_DEPEND}
+ virtual/opengl )
+ x86? ( ${ASM_DEPEND}
+ virtual/opengl )"
+
+# No source releases for alpha|beta
+if [[ ${PV} =~ alpha ]]; then
+ CHANGESET="8a3042764de7"
+ SRC_URI="${SRC_URI}
+ https://dev.gentoo.org/~nirbheek/mozilla/firefox/firefox-${MOZ_PV}_${CHANGESET}.source.tar.xz"
+ S="${WORKDIR}/mozilla-aurora-${CHANGESET}"
+else
+ S="${WORKDIR}/firefox-${MOZ_PV}"
+ SRC_URI="${SRC_URI}
+ ${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.xz"
+fi
+#elif [[ ${PV} =~ beta ]]; then
+# S="${WORKDIR}/mozilla-beta"
+# SRC_URI="${SRC_URI}
+# ${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.xz"
+#else
+# SRC_URI="${SRC_URI}
+# ${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.xz"
+# if [[ ${MOZ_ESR} == 1 ]]; then
+# S="${WORKDIR}/mozilla-esr${PV%%.*}"
+# else
+# S="${WORKDIR}/mozilla-release"
+# fi
+#fi
+
+QA_PRESTRIPPED="usr/$(get_libdir)/${PN}/firefox"
+
+BUILD_OBJ_DIR="${S}/ff"
+
+pkg_setup() {
+ moz_pkgsetup
+
+ # Avoid PGO profiling problems due to enviroment leakage
+ # These should *always* be cleaned up anyway
+ unset DBUS_SESSION_BUS_ADDRESS \
+ DISPLAY \
+ ORBIT_SOCKETDIR \
+ SESSION_MANAGER \
+ XDG_SESSION_COOKIE \
+ XAUTHORITY
+
+ if ! use bindist; then
+ einfo
+ elog "You are enabling official branding. You may not redistribute this build"
+ elog "to any users on your network or the internet. Doing so puts yourself into"
+ elog "a legal problem with Mozilla Foundation"
+ elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag"
+ fi
+
+ if use pgo; then
+ einfo
+ ewarn "You will do a double build for profile guided optimization."
+ ewarn "This will result in your build taking at least twice as long as before."
+ fi
+}
+
+pkg_pretend() {
+ # Ensure we have enough disk space to compile
+ if use pgo || use debug || use test ; then
+ CHECKREQS_DISK_BUILD="8G"
+ else
+ CHECKREQS_DISK_BUILD="4G"
+ fi
+ check-reqs_pkg_setup
+}
+
+src_unpack() {
+ unpack ${A}
+
+ # Unpack language packs
+ mozlinguas_src_unpack
+}
+
+src_prepare() {
+ # Apply our patches
+ EPATCH_SUFFIX="patch" \
+ EPATCH_FORCE="yes" \
+ epatch "${WORKDIR}/firefox"
+
+ # Allow user to apply any additional patches without modifing ebuild
+ epatch_user
+
+ # Enable gnomebreakpad
+ if use debug ; then
+ sed -i -e "s:GNOME_DISABLE_CRASH_DIALOG=1:GNOME_DISABLE_CRASH_DIALOG=0:g" \
+ "${S}"/build/unix/run-mozilla.sh || die "sed failed!"
+ fi
+
+ # Ensure that our plugins dir is enabled as default
+ sed -i -e "s:/usr/lib/mozilla/plugins:/usr/lib/nsbrowser/plugins:" \
+ "${S}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 32bit!"
+ sed -i -e "s:/usr/lib64/mozilla/plugins:/usr/lib64/nsbrowser/plugins:" \
+ "${S}"/xpcom/io/nsAppFileLocationProvider.cpp || die "sed failed to replace plugin path for 64bit!"
+
+ # Fix sandbox violations during make clean, bug 372817
+ sed -e "s:\(/no-such-file\):${T}\1:g" \
+ -i "${S}"/config/rules.mk \
+ -i "${S}"/nsprpub/configure{.in,} \
+ || die
+
+ # Don't exit with error when some libs are missing which we have in
+ # system.
+ sed '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' \
+ -i "${S}"/browser/installer/Makefile.in || die
+
+ # Don't error out when there's no files to be removed:
+ sed 's@\(xargs rm\)$@\1 -f@' \
+ -i "${S}"/toolkit/mozapps/installer/packager.mk || die
+
+ # Keep codebase the same even if not using official branding
+ sed '/^MOZ_DEV_EDITION=1/d' \
+ -i "${S}"/browser/branding/aurora/configure.sh || die
+
+ eautoreconf
+
+ # Must run autoconf in js/src
+ cd "${S}"/js/src || die
+ eautoconf
+
+ # Need to update jemalloc's configure
+ cd "${S}"/memory/jemalloc/src || die
+ WANT_AUTOCONF= eautoconf
+}
+
+src_configure() {
+ MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
+ MEXTENSIONS="default"
+ # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
+ # Note: These are for Gentoo Linux use ONLY. For your own distribution, please
+ # get your own set of keys.
+ _google_api_key=AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc
+
+ ####################################
+ #
+ # mozconfig, CFLAGS and CXXFLAGS setup
+ #
+ ####################################
+
+ mozconfig_init
+ mozconfig_config
+
+ # It doesn't compile on alpha without this LDFLAGS
+ use alpha && append-ldflags "-Wl,--no-relax"
+
+ # Add full relro support for hardened
+ use hardened && append-ldflags "-Wl,-z,relro,-z,now"
+
+ if use neon ; then
+ mozconfig_annotate '' --with-fpu=neon
+ mozconfig_annotate '' --with-thumb=yes
+ mozconfig_annotate '' --with-thumb-interwork=no
+ fi
+
+ if [[ ${CHOST} == armv* ]] ; then
+ mozconfig_annotate '' --with-float-abi=hard
+ mozconfig_annotate '' --enable-skia
+
+ if ! use system-libvpx ; then
+ sed -i -e "s|softfp|hard|" \
+ "${S}"/media/libvpx/moz.build
+ fi
+ fi
+
+ use egl && mozconfig_annotate 'Enable EGL as GL provider' --with-gl-provider=EGL
+
+ # Setup api key for location services
+ echo -n "${_google_api_key}" > "${S}"/google-api-key
+ mozconfig_annotate '' --with-google-api-keyfile="${S}/google-api-key"
+
+ mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
+ mozconfig_annotate '' --disable-mailnews
+
+ # Other ff-specific settings
+ mozconfig_annotate '' --with-default-mozilla-five-home=${MOZILLA_FIVE_HOME}
+
+ # Allow for a proper pgo build
+ if use pgo; then
+ echo "mk_add_options PROFILE_GEN_SCRIPT='\$(PYTHON) \$(OBJDIR)/_profile/pgo/profileserver.py'" >> "${S}"/.mozconfig
+ fi
+
+ echo "mk_add_options MOZ_OBJDIR=${BUILD_OBJ_DIR}" >> "${S}"/.mozconfig
+
+ # Finalize and report settings
+ mozconfig_final
+
+ if [[ $(gcc-major-version) -lt 4 ]]; then
+ append-cxxflags -fno-stack-protector
+ fi
+
+ # workaround for funky/broken upstream configure...
+ emake -f client.mk configure
+}
+
+src_compile() {
+ if use pgo; then
+ addpredict /root
+ addpredict /etc/gconf
+ # Reset and cleanup environment variables used by GNOME/XDG
+ gnome2_environment_reset
+
+ # Firefox tries to use dri stuff when it's run, see bug 380283
+ shopt -s nullglob
+ cards=$(echo -n /dev/dri/card* | sed 's/ /:/g')
+ if test -z "${cards}"; then
+ cards=$(echo -n /dev/ati/card* /dev/nvidiactl* | sed 's/ /:/g')
+ if test -n "${cards}"; then
+ # Binary drivers seem to cause access violations anyway, so
+ # let's use indirect rendering so that the device files aren't
+ # touched at all. See bug 394715.
+ export LIBGL_ALWAYS_INDIRECT=1
+ fi
+ fi
+ shopt -u nullglob
+ addpredict "${cards}"
+
+ CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
+ MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \
+ Xemake -f client.mk profiledbuild || die "Xemake failed"
+ else
+ CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getLD)" \
+ MOZ_MAKE_FLAGS="${MAKEOPTS}" SHELL="${SHELL:-${EPREFIX%/}/bin/bash}" \
+ emake -f client.mk realbuild
+ fi
+
+}
+
+src_install() {
+ MOZILLA_FIVE_HOME="/usr/$(get_libdir)/${PN}"
+ DICTPATH="\"${EPREFIX}/usr/share/myspell\""
+
+ cd "${BUILD_OBJ_DIR}" || die
+
+ # Pax mark xpcshell for hardened support, only used for startupcache creation.
+ pax-mark m "${BUILD_OBJ_DIR}"/dist/bin/xpcshell
+
+ # Add our default prefs for firefox
+ cp "${FILESDIR}"/gentoo-default-prefs.js-1 \
+ "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \
+ || die
+
+ # Set default path to search for dictionaries.
+ echo "pref(\"spellchecker.dictionary_path\", ${DICTPATH});" \
+ >> "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \
+ || die
+
+ echo "pref(\"extensions.autoDisableScopes\", 3);" >> \
+ "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \
+ || die
+
+ local plugin
+ use gmp-autoupdate || for plugin in \
+ gmp-gmpopenh264 ; do
+ echo "pref(\"media.${plugin}.autoupdate\", false);" >> \
+ "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" \
+ || die
+ done
+
+ MOZ_MAKE_FLAGS="${MAKEOPTS}" \
+ emake DESTDIR="${D}" install
+
+ # Install language packs
+ mozlinguas_src_install
+
+ local size sizes icon_path icon name
+ if use bindist; then
+ sizes="16 32 48"
+ icon_path="${S}/browser/branding/aurora"
+ # Firefox's new rapid release cycle means no more codenames
+ # Let's just stick with this one...
+ icon="aurora"
+ name="Aurora"
+
+ # Override preferences to set the MOZ_DEV_EDITION defaults, since we
+ # don't define MOZ_DEV_EDITION to avoid profile debaucles.
+ # (source: browser/app/profile/firefox.js)
+ cat >>"${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js" <<PROFILE_EOF
+pref("app.feedback.baseURL", "https://input.mozilla.org/%LOCALE%/feedback/firefoxdev/%VERSION%/");
+sticky_pref("lightweightThemes.selectedThemeID", "firefox-devedition@mozilla.org");
+sticky_pref("browser.devedition.theme.enabled", true);
+sticky_pref("devtools.theme", "dark");
+PROFILE_EOF
+
+ else
+ sizes="16 22 24 32 256"
+ icon_path="${S}/browser/branding/official"
+ icon="${PN}"
+ name="Mozilla Firefox"
+ fi
+
+ # Install icons and .desktop for menu entry
+ for size in ${sizes}; do
+ insinto "/usr/share/icons/hicolor/${size}x${size}/apps"
+ newins "${icon_path}/default${size}.png" "${icon}.png"
+ done
+ # The 128x128 icon has a different name
+ insinto "/usr/share/icons/hicolor/128x128/apps"
+ newins "${icon_path}/mozicon128.png" "${icon}.png"
+ # Install a 48x48 icon into /usr/share/pixmaps for legacy DEs
+ newicon "${icon_path}/content/icon48.png" "${icon}.png"
+ newmenu "${FILESDIR}/icon/${PN}.desktop" "${PN}.desktop"
+ sed -i -e "s:@NAME@:${name}:" -e "s:@ICON@:${icon}:" \
+ "${ED}/usr/share/applications/${PN}.desktop" || die
+
+ # Add StartupNotify=true bug 237317
+ if use startup-notification ; then
+ echo "StartupNotify=true"\
+ >> "${ED}/usr/share/applications/${PN}.desktop" \
+ || die
+ fi
+
+ # Required in order to use plugins and even run firefox on hardened.
+ if use jit; then
+ pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/{firefox,firefox-bin,plugin-container}
+ else
+ pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container
+ fi
+
+ if use minimal; then
+ rm -r "${ED}"/usr/include "${ED}${MOZILLA_FIVE_HOME}"/{idl,include,lib,sdk} \
+ || die "Failed to remove sdk and headers"
+ fi
+
+ # very ugly hack to make firefox not sigbus on sparc
+ # FIXME: is this still needed??
+ use sparc && { sed -e 's/Firefox/FirefoxGentoo/g' \
+ -i "${ED}/${MOZILLA_FIVE_HOME}/application.ini" \
+ || die "sparc sed failed"; }
+
+ # revdep-rebuild entry
+ insinto /etc/revdep-rebuild
+ echo "SEARCH_DIRS_MASK=${MOZILLA_FIVE_HOME}" >> ${T}/10firefox
+ doins "${T}"/10${PN} || die
+}
+
+pkg_preinst() {
+ gnome2_icon_savelist
+}
+
+pkg_postinst() {
+ # Update mimedb for the new .desktop file
+ fdo-mime_desktop_database_update
+ gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+ gnome2_icon_cache_update
+}
next reply other threads:[~2015-11-03 18:05 UTC|newest]
Thread overview: 445+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-03 18:05 Jory Pratt [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-01-20 18:00 [gentoo-commits] proj/mozilla:master commit in: www-client/firefox/ Thomas Deutschmann
2022-01-14 9:14 Joonas Niilola
2022-01-12 7:54 Joonas Niilola
2022-01-11 19:59 Thomas Deutschmann
2022-01-11 19:15 Thomas Deutschmann
2021-12-19 11:58 Joonas Niilola
2021-12-18 8:50 Joonas Niilola
2020-03-28 13:21 Jory Pratt
2020-03-27 4:00 Jory Pratt
2020-03-24 2:22 Jory Pratt
2020-03-18 22:58 Jory Pratt
2020-03-12 15:13 Jory Pratt
2020-03-11 20:03 Thomas Deutschmann
2020-03-11 3:40 Jory Pratt
2020-03-10 16:01 Jory Pratt
2020-03-10 15:57 Jory Pratt
2020-03-01 13:44 Jory Pratt
2020-02-27 13:36 Jory Pratt
2020-02-25 0:19 Jory Pratt
2020-02-24 22:38 Thomas Deutschmann
2020-02-12 13:40 Jory Pratt
2020-02-10 19:53 Jory Pratt
2020-02-10 16:15 Jory Pratt
2020-02-02 1:27 Jory Pratt
2020-02-01 21:47 Jory Pratt
2020-02-01 21:38 Jory Pratt
2020-01-29 23:19 Jory Pratt
2020-01-27 23:42 Jory Pratt
2020-01-24 2:46 Jory Pratt
2020-01-18 3:56 Jory Pratt
2020-01-14 1:05 Jory Pratt
2020-01-10 22:37 Jory Pratt
2020-01-08 22:29 Jory Pratt
2020-01-08 4:19 Jory Pratt
2020-01-08 0:03 Jory Pratt
2020-01-07 18:19 Jory Pratt
2020-01-06 16:16 Jory Pratt
2019-12-30 4:48 Jory Pratt
2019-12-23 16:11 Jory Pratt
2019-12-18 21:26 Jory Pratt
2019-12-16 19:26 Jory Pratt
2019-12-13 16:11 Jory Pratt
2019-12-12 23:55 Jory Pratt
2019-12-10 5:32 Jory Pratt
2019-12-10 5:32 Jory Pratt
2019-12-09 3:35 Jory Pratt
2019-12-08 17:00 Jory Pratt
2019-12-02 21:26 Thomas Deutschmann
2019-12-02 16:42 Jory Pratt
2019-11-29 23:00 Jory Pratt
2019-11-26 16:23 Jory Pratt
2019-11-22 21:56 Jory Pratt
2019-11-22 21:55 Jory Pratt
2019-11-21 14:12 Jory Pratt
2019-11-19 18:19 Jory Pratt
2019-11-19 13:40 Jory Pratt
2019-11-12 15:30 Jory Pratt
2019-11-11 18:57 Jory Pratt
2019-11-10 18:29 Thomas Deutschmann
2019-11-06 0:51 Thomas Deutschmann
2019-11-02 15:48 Jory Pratt
2019-10-31 16:06 Thomas Deutschmann
2019-10-22 14:09 Jory Pratt
2019-10-16 3:29 Jory Pratt
2019-10-11 22:02 Jory Pratt
2019-10-08 21:18 Thomas Deutschmann
2019-10-06 15:26 Thomas Deutschmann
2019-10-06 15:26 Thomas Deutschmann
2019-10-06 15:26 Thomas Deutschmann
2019-10-06 15:26 Thomas Deutschmann
2019-10-01 18:52 Jory Pratt
2019-09-29 1:36 Jory Pratt
2019-09-27 3:42 Jory Pratt
2019-09-27 2:39 Jory Pratt
2019-09-21 13:08 Thomas Deutschmann
2019-09-14 20:35 Jory Pratt
2019-09-07 14:22 Thomas Deutschmann
2019-09-04 20:43 Jory Pratt
2019-09-04 13:43 Jory Pratt
2019-09-04 12:59 Jory Pratt
2019-09-03 21:10 Jory Pratt
2019-09-03 20:20 Jory Pratt
2019-09-01 7:03 Jory Pratt
2019-08-30 14:21 Jory Pratt
2019-08-29 0:36 Jory Pratt
2019-08-24 2:24 Jory Pratt
2019-08-22 14:34 Jory Pratt
2019-08-21 21:07 Jory Pratt
2019-08-15 15:20 Jory Pratt
2019-08-12 16:10 Jory Pratt
2019-08-12 15:57 Jory Pratt
2019-07-10 12:52 Jory Pratt
2019-07-09 20:02 Jory Pratt
2019-07-09 20:02 Jory Pratt
2019-06-29 7:50 Jory Pratt
2019-06-20 16:21 Jory Pratt
2019-06-20 2:59 Jory Pratt
2019-06-17 18:54 Jory Pratt
2019-06-16 14:13 Jory Pratt
2019-06-13 2:05 Jory Pratt
2019-06-12 14:52 Jory Pratt
2019-06-09 13:59 Jory Pratt
2019-06-06 14:15 Jory Pratt
2019-06-06 1:16 Jory Pratt
2019-06-02 22:40 Jory Pratt
2019-05-30 5:45 Jory Pratt
2019-05-29 12:01 Jory Pratt
2019-05-21 21:16 Jory Pratt
2019-05-20 22:43 Jory Pratt
2019-05-20 20:55 Jory Pratt
2019-05-13 15:59 Jory Pratt
2019-05-07 22:33 Jory Pratt
2019-05-06 16:08 Jory Pratt
2019-05-04 3:39 Jory Pratt
2019-05-04 3:39 Jory Pratt
2019-05-01 6:39 Jory Pratt
2019-04-26 23:32 Jory Pratt
2019-04-26 20:35 Jory Pratt
2019-04-26 8:55 Jory Pratt
2019-04-24 10:46 Jory Pratt
2019-04-23 15:18 Jory Pratt
2019-04-22 1:46 Jory Pratt
2019-04-16 1:49 Jory Pratt
2019-04-11 19:24 Jory Pratt
2019-04-09 3:09 Jory Pratt
2019-04-06 0:30 Jory Pratt
2019-04-01 16:18 Jory Pratt
2019-03-31 16:35 Jory Pratt
2019-03-28 10:11 Thomas Deutschmann
2019-03-28 0:53 Thomas Deutschmann
2019-03-25 20:07 Thomas Deutschmann
2018-11-01 17:30 Ian Stakenvicius
2018-10-25 17:29 Thomas Deutschmann
2018-10-23 16:58 Thomas Deutschmann
2018-10-22 20:15 Ian Stakenvicius
2018-08-27 13:28 Ian Stakenvicius
2018-08-27 13:28 Ian Stakenvicius
2018-08-15 17:18 Ian Stakenvicius
2018-07-09 5:34 Jory Pratt
2018-06-28 18:20 Jory Pratt
2018-06-19 14:58 Jory Pratt
2018-06-19 1:08 Jory Pratt
2018-06-12 19:45 Jory Pratt
2018-06-11 9:35 Jory Pratt
2018-06-05 12:46 Jory Pratt
2018-05-31 21:44 Jory Pratt
2018-05-29 19:09 Jory Pratt
2018-05-25 7:26 Lars Wendler
2018-05-09 18:24 Ian Stakenvicius
2018-04-25 13:43 Lars Wendler
2018-03-27 8:33 Lars Wendler
2018-03-21 7:41 Lars Wendler
2018-03-12 5:04 Jory Pratt
2018-02-23 7:25 Lars Wendler
2018-02-20 14:49 Jory Pratt
2018-02-19 16:00 Jory Pratt
2018-02-19 11:26 Jory Pratt
2018-02-15 22:46 Jory Pratt
2018-02-14 4:20 Ian Stakenvicius
2018-02-14 4:19 Ian Stakenvicius
2018-01-30 2:31 Ian Stakenvicius
2018-01-29 5:12 Ian Stakenvicius
2018-01-26 4:28 Ian Stakenvicius
2018-01-26 4:28 Ian Stakenvicius
2018-01-13 13:36 Jory Pratt
2018-01-09 14:24 Jory Pratt
2017-12-27 23:18 Jory Pratt
2017-12-19 12:43 Jory Pratt
2017-12-14 19:31 Jory Pratt
2017-12-11 16:13 Jory Pratt
2017-12-03 18:31 Jory Pratt
2017-11-27 20:01 Jory Pratt
2017-11-27 15:00 Jory Pratt
2017-11-14 16:18 Ian Stakenvicius
2017-11-12 1:09 Jory Pratt
2017-11-06 0:35 Jory Pratt
2017-11-02 2:19 Jory Pratt
2017-10-28 21:21 Jory Pratt
2017-10-27 12:48 Jory Pratt
2017-10-26 12:57 Jory Pratt
2017-10-22 20:56 Jory Pratt
2017-10-19 13:20 Jory Pratt
2017-10-16 2:15 Jory Pratt
2017-10-12 13:16 Jory Pratt
2017-10-11 13:13 Jory Pratt
2017-10-09 12:52 Jory Pratt
2017-10-07 21:25 Jory Pratt
2017-10-06 12:46 Jory Pratt
2017-10-04 14:25 Jory Pratt
2017-10-04 13:06 Lars Wendler
2017-10-01 19:10 Ian Stakenvicius
2017-10-01 17:43 Ian Stakenvicius
2017-09-30 14:26 Ian Stakenvicius
2017-09-30 14:26 Ian Stakenvicius
2017-09-30 13:08 Ian Stakenvicius
2017-09-29 23:15 Ian Stakenvicius
2017-09-29 18:41 Ian Stakenvicius
2017-09-28 21:09 Ian Stakenvicius
2017-09-28 17:49 Ian Stakenvicius
2017-09-28 15:47 Ian Stakenvicius
2017-09-28 15:47 Ian Stakenvicius
2017-09-28 14:14 Ian Stakenvicius
2017-09-28 12:08 Jory Pratt
2017-09-27 17:40 Ian Stakenvicius
2017-09-19 0:33 Jory Pratt
2017-09-17 18:46 Jory Pratt
2017-09-10 23:46 Jory Pratt
2017-09-07 12:46 Jory Pratt
2017-08-30 12:28 Jory Pratt
2017-08-29 0:11 Jory Pratt
2017-08-24 23:49 Jory Pratt
2017-08-23 12:25 Jory Pratt
2017-08-22 0:28 Jory Pratt
2017-08-21 14:29 Jory Pratt
2017-08-16 13:08 Jory Pratt
2017-08-12 3:19 Jory Pratt
2017-08-08 12:30 Lars Wendler
2017-08-07 13:15 Jory Pratt
2017-07-30 13:04 Jory Pratt
2017-07-25 12:28 Jory Pratt
2017-07-23 22:22 Jory Pratt
2017-07-18 13:33 Jory Pratt
2017-07-10 12:33 Jory Pratt
2017-06-28 17:29 Jory Pratt
2017-06-27 19:12 Jory Pratt
2017-06-26 19:36 Jory Pratt
2017-06-20 1:09 Jory Pratt
2017-06-14 10:49 Jory Pratt
2017-06-06 20:37 Jory Pratt
2017-05-29 14:50 Ian Stakenvicius
2017-05-28 18:22 Jory Pratt
2017-05-19 2:22 Ian Stakenvicius
2017-05-12 21:13 Ian Stakenvicius
2017-05-04 17:46 Ian Stakenvicius
2017-05-03 21:25 Ian Stakenvicius
2017-04-26 20:25 Ian Stakenvicius
2017-04-21 13:58 Ian Stakenvicius
2017-04-19 21:00 Ian Stakenvicius
2017-03-11 1:00 Andrew Savchenko
2017-03-09 0:32 Ian Stakenvicius
2017-03-07 17:35 Ian Stakenvicius
2017-02-13 23:40 Jory Pratt
2017-02-08 1:39 Jory Pratt
2017-01-28 0:31 Jory Pratt
2017-01-28 0:31 Jory Pratt
2017-01-26 23:56 Jory Pratt
2017-01-21 20:34 Jory Pratt
2017-01-17 18:05 Jory Pratt
2017-01-17 17:24 Andrew Savchenko
2017-01-17 16:59 Andrew Savchenko
2017-01-13 17:40 Jory Pratt
2017-01-11 17:37 Jory Pratt
2017-01-09 2:23 Jory Pratt
2017-01-09 0:20 Jory Pratt
2017-01-08 20:13 Jory Pratt
2016-12-13 20:30 Jory Pratt
2016-11-29 1:35 Jory Pratt
2016-11-20 4:04 Ian Stakenvicius
2016-11-20 3:07 Ian Stakenvicius
2016-11-20 1:44 Ian Stakenvicius
2016-11-18 21:55 Ian Stakenvicius
2016-11-18 21:55 Ian Stakenvicius
2016-11-03 23:25 Jory Pratt
2016-11-02 23:34 Jory Pratt
2016-10-28 0:09 Jory Pratt
2016-10-22 23:02 Jory Pratt
2016-10-16 15:22 Jory Pratt
2016-10-11 18:02 Ian Stakenvicius
2016-10-09 14:42 Ian Stakenvicius
2016-09-27 14:10 Jory Pratt
2016-09-22 14:39 Ian Stakenvicius
2016-09-12 14:46 Ian Stakenvicius
2016-09-05 22:28 Jory Pratt
2016-09-03 13:50 Jory Pratt
2016-08-14 17:59 Jory Pratt
2016-08-03 20:49 Ian Stakenvicius
2016-07-26 16:50 Ian Stakenvicius
2016-06-07 19:40 Ian Stakenvicius
2016-03-31 16:15 Ian Stakenvicius
2016-03-28 15:29 Ian Stakenvicius
2016-03-28 14:57 Ian Stakenvicius
2016-03-28 14:57 Ian Stakenvicius
2016-03-18 2:26 Ian Stakenvicius
2016-03-11 2:33 Ian Stakenvicius
2016-03-07 17:50 Ian Stakenvicius
2016-03-05 22:15 Jory Pratt
2016-02-22 21:20 Ian Stakenvicius
2016-02-17 15:24 Ian Stakenvicius
2016-02-13 22:51 Jory Pratt
2016-02-11 19:47 Ian Stakenvicius
2016-02-05 19:17 Ian Stakenvicius
2016-01-26 12:44 Jory Pratt
2016-01-21 3:47 Jory Pratt
2016-01-16 4:39 Jory Pratt
2016-01-16 4:39 Jory Pratt
2016-01-16 3:13 Jory Pratt
2016-01-04 3:27 Jory Pratt
2016-01-01 17:20 Jory Pratt
2015-12-23 21:32 Ian Stakenvicius
2015-12-23 21:30 [gentoo-commits] proj/mozilla:crossdev " Ian Stakenvicius
2015-12-06 4:29 ` [gentoo-commits] proj/mozilla:master " Ian Stakenvicius
2015-12-16 18:38 Ian Stakenvicius
2015-11-27 21:00 Ian Stakenvicius
2015-11-21 19:46 Jory Pratt
2015-11-03 18:02 Jory Pratt
2015-10-30 17:43 Jory Pratt
2015-10-13 16:53 Ian Stakenvicius
2015-10-10 14:49 Ian Stakenvicius
2015-09-23 0:32 Ian Stakenvicius
2015-09-11 16:47 Ian Stakenvicius
2015-09-07 20:23 Ian Stakenvicius
2015-09-07 20:23 Ian Stakenvicius
2015-08-31 1:16 Jory Pratt
2015-08-14 16:05 Jory Pratt
2015-08-13 20:01 Jory Pratt
2015-08-07 16:32 Ian Stakenvicius
2015-08-03 16:17 Jory Pratt
2015-07-03 19:54 Ian Stakenvicius
2015-06-20 17:10 Jory Pratt
2015-06-13 15:49 Jory Pratt
2015-06-12 22:57 Jory Pratt
2015-06-12 1:22 Jory Pratt
2015-04-25 2:51 Jory Pratt
2015-04-17 1:42 Jory Pratt
2015-04-06 19:49 Ian Stakenvicius
2015-04-05 13:59 Jory Pratt
2015-03-15 15:01 Jory Pratt
2015-03-13 12:02 Jory Pratt
2015-03-08 5:38 Jory Pratt
2015-03-08 3:39 Jory Pratt
2015-03-05 17:41 Ian Stakenvicius
2015-03-04 0:16 git@oystercatcher mirror+tproxy
2015-03-04 0:16 Ian Stakenvicius
2015-02-04 3:44 Jory Pratt
2015-02-04 3:44 Jory Pratt
2015-01-13 3:27 Jory Pratt
2015-01-02 20:31 Jory Pratt
2014-08-25 19:25 Ian Stakenvicius
2014-07-28 20:56 ` Ian Stakenvicius
2014-07-31 15:13 Ian Stakenvicius
2014-08-25 19:25 ` Ian Stakenvicius
2014-06-13 17:51 Ian Stakenvicius
2014-05-11 1:20 Jory Pratt
2014-05-10 1:14 Jory Pratt
2014-04-15 13:30 Jory Pratt
2014-04-02 14:08 Ian Stakenvicius
2014-03-22 10:59 Lars Wendler
2014-03-21 13:39 Lars Wendler
2014-03-21 1:39 Jory Pratt
2014-03-20 17:24 Lars Wendler
2013-12-16 20:15 Jory Pratt
2013-12-13 1:14 Jory Pratt
2013-11-18 14:40 Jory Pratt
2013-11-18 14:04 Jory Pratt
2013-09-24 22:43 Jory Pratt
2013-09-24 14:01 Jory Pratt
2013-09-20 2:14 Jory Pratt
2013-09-09 21:21 Jory Pratt
2013-09-09 19:46 Jory Pratt
2013-08-24 1:14 Jory Pratt
2013-08-12 19:25 Jory Pratt
2013-08-12 19:22 Jory Pratt
2013-08-05 21:35 Jory Pratt
2013-06-22 23:01 Jory Pratt
2013-06-19 13:22 Jory Pratt
2013-05-27 6:08 Nirbheek Chauhan
2013-05-17 1:45 Jory Pratt
2013-05-16 1:33 Jory Pratt
2013-05-09 12:05 Jory Pratt
2013-05-06 14:17 Jory Pratt
2013-04-28 13:45 Jory Pratt
2013-04-23 13:07 Jory Pratt
2013-04-23 13:07 Jory Pratt
2013-04-22 13:42 Jory Pratt
2013-04-20 22:19 Jory Pratt
2013-04-11 1:38 Jory Pratt
2013-04-11 1:35 Jory Pratt
2013-04-05 19:05 Jory Pratt
2013-03-29 3:11 Jory Pratt
2013-01-17 17:19 Jory Pratt
2013-01-16 22:32 Jory Pratt
2013-01-09 20:12 Jory Pratt
2013-01-04 23:42 Jory Pratt
2012-12-28 17:27 Jory Pratt
2012-12-17 15:18 Jory Pratt
2012-12-17 14:11 Jory Pratt
2012-12-15 20:15 Jory Pratt
2012-12-06 5:40 Lars Wendler
2012-12-03 21:08 Jory Pratt
2012-12-03 16:19 Jory Pratt
2012-12-03 15:42 Lars Wendler
2012-12-03 15:41 Lars Wendler
2012-12-02 13:49 Jory Pratt
2012-11-26 16:25 Jory Pratt
2012-09-24 20:33 Jory Pratt
2012-09-07 0:22 Jory Pratt
2012-08-31 12:21 Jory Pratt
2012-08-16 11:57 Nirbheek Chauhan
2012-08-11 22:35 Nirbheek Chauhan
2012-08-01 2:16 Jory Pratt
2012-07-31 13:55 Jory Pratt
2012-07-27 2:09 Nirbheek Chauhan
2012-06-15 3:15 Jory Pratt
2012-06-15 3:14 Jory Pratt
2012-06-06 13:26 Jory Pratt
2012-06-04 20:48 Jory Pratt
2012-05-27 12:04 Nirbheek Chauhan
2012-04-30 3:10 Jory Pratt
2012-04-09 15:07 Jory Pratt
2012-04-09 2:28 Jory Pratt
2012-04-04 1:13 Jory Pratt
2012-03-21 12:27 Jory Pratt
2012-03-18 5:08 Jory Pratt
2012-03-16 2:21 Jory Pratt
2012-03-14 1:01 Jory Pratt
2012-03-14 1:01 Jory Pratt
2012-02-26 0:41 Jory Pratt
2012-02-11 14:19 Jory Pratt
2012-02-11 2:13 Jory Pratt
2012-02-01 1:03 Jory Pratt
2012-01-30 23:48 Jory Pratt
2012-01-30 14:57 Jory Pratt
2012-01-26 14:58 Nirbheek Chauhan
2012-01-15 16:06 Jory Pratt
2012-01-04 20:32 Nirbheek Chauhan
2012-01-04 20:27 Jory Pratt
2012-01-04 20:25 Jory Pratt
2011-12-22 8:40 Lars Wendler
2011-12-21 15:34 Jory Pratt
2011-12-20 20:27 JD Horelick
2011-12-20 15:03 Jory Pratt
2011-11-21 15:02 Jory Pratt
2011-11-17 23:37 Jory Pratt
2011-11-10 2:50 Jory Pratt
2011-10-02 21:16 Jory Pratt
2011-10-01 13:38 Nirbheek Chauhan
2011-09-26 13:50 Jory Pratt
2011-09-14 21:01 Jory Pratt
2011-09-13 23:24 Jory Pratt
2011-08-26 20:37 Nirbheek Chauhan
2011-08-21 16:37 Jory Pratt
2011-08-21 1:55 Jory Pratt
2011-08-20 20:49 Jory Pratt
2011-03-28 19:16 Jory Pratt
2011-03-04 4:57 Jory Pratt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1446573894.ffbb099aabc9bdd6c3f554b3f36387dcf5068824.anarchy@gentoo \
--to=anarchy@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox