public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nss/
Date: Sat,  2 May 2020 19:12:15 +0000 (UTC)	[thread overview]
Message-ID: <1588446732.89dadea09fea4dfa3bdf3302f2c3ea8b720bde03.polynomial-c@gentoo> (raw)

commit:     89dadea09fea4dfa3bdf3302f2c3ea8b720bde03
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat May  2 19:11:51 2020 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat May  2 19:12:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89dadea0

dev-libs/nss: Bump to version 3.52

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 dev-libs/nss/Manifest        |   1 +
 dev-libs/nss/nss-3.52.ebuild | 358 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 359 insertions(+)

diff --git a/dev-libs/nss/Manifest b/dev-libs/nss/Manifest
index beda8d670fa..0adc5af284f 100644
--- a/dev-libs/nss/Manifest
+++ b/dev-libs/nss/Manifest
@@ -1,3 +1,4 @@
 DIST nss-3.51.1.tar.gz 78310874 BLAKE2B c295b5fdf6e1d24cc79474f2c5a9e91fccf777212fbb072e8a64576ed1b060fea6ecbde1fa59bb07c998b9aa92bb7d450e722a8f34a72eaa35aef6cbd693420a SHA512 1878780886cc330489a14a60ee5cb67b174f3167d020db256eacdce079652ef8af65813914cd0fb5684457053fa27acc9bff72d0713fbea28795613ca45a6d46
 DIST nss-3.51.tar.gz 78305125 BLAKE2B 2c7b90d4cc9fe283bf81e21d0dceefff503e5a31f0053828b140b2b927ddab8c8881b23c7d4c003f3e2d0dcd22efbe699baee63443cab6e72d33a552fd430e3c SHA512 9c894b1ea41449b000750a7b3a89fcb43dfc3d0d4d6dcc0dc288bc73996f76f1ee1ede927a8aecae6d4a07f9f3d3e3a042c6a60cf06e27e0cdc004fce2e510fd
+DIST nss-3.52.tar.gz 81220587 BLAKE2B 0208c9047c61233ed36f02d57fdc64fa1734ef69d17fa499707f4a3b14a2e880b1dcf4b19b17a38e9b41d2e46b4a9488613d82989be747ad82aebc35b8e491af SHA512 a45baf38717bceda03c292b2c01def680a24a846327e17d36044a85e30ed40c68220c78c0a2c3025c11778ee58f5d5eb0fff1b4cd274b95c408fb59e394e62c6
 DIST nss-cacert-class1-class3.patch 22950 BLAKE2B 9d5e60df5f161a3c27c41e5a9419440a54f888eda454e3cde5ebe626d4075b65cf9938b5144d0fb022377f4bd415bff5e5c67d104409860aa9391b3eb8872c68 SHA512 a5aa740bf110a3f0262e3f1ef2fc739ac2b44f042e220039d48aee8e97cd764d5c10718220364f4098aba955882bd02cadb5481512388971a8290312f88a7df0

diff --git a/dev-libs/nss/nss-3.52.ebuild b/dev-libs/nss/nss-3.52.ebuild
new file mode 100644
index 00000000000..6ad4600ae7d
--- /dev/null
+++ b/dev-libs/nss/nss-3.52.ebuild
@@ -0,0 +1,358 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit eutils flag-o-matic multilib toolchain-funcs multilib-minimal
+
+NSPR_VER="4.25"
+RTM_NAME="NSS_${PV//./_}_RTM"
+
+DESCRIPTION="Mozilla's Network Security Services library that implements PKI support"
+HOMEPAGE="http://www.mozilla.org/projects/security/pki/nss/"
+SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/${P}.tar.gz
+	cacert? ( https://dev.gentoo.org/~axs/distfiles/${PN}-cacert-class1-class3.patch )"
+
+LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="cacert utils"
+# pkg-config called by nss-config -> virtual/pkgconfig in RDEPEND
+RDEPEND="
+	>=dev-libs/nspr-${NSPR_VER}[${MULTILIB_USEDEP}]
+	>=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}]
+	>=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
+	>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+RESTRICT="test"
+
+S="${WORKDIR}/${P}/${PN}"
+
+MULTILIB_CHOST_TOOLS=(
+	/usr/bin/nss-config
+)
+
+PATCHES=(
+	# Custom changes for gentoo
+	"${FILESDIR}/${PN}-3.47-gentoo-fixups.patch"
+	"${FILESDIR}/${PN}-3.21-gentoo-fixup-warnings.patch"
+	"${FILESDIR}/${PN}-3.23-hppa-byte_order.patch"
+)
+
+src_prepare() {
+	if use cacert ; then #521462
+		PATCHES+=(
+			"${DISTDIR}/${PN}-cacert-class1-class3.patch"
+		)
+	fi
+
+	default
+
+	pushd coreconf >/dev/null || die
+	# hack nspr paths
+	echo 'INCLUDES += -I$(DIST)/include/dbm' \
+		>> headers.mk || die "failed to append include"
+
+	# modify install path
+	sed -e '/CORE_DEPTH/s:SOURCE_PREFIX.*$:SOURCE_PREFIX = $(CORE_DEPTH)/dist:' \
+		-i source.mk || die
+
+	# Respect LDFLAGS
+	sed -i -e 's/\$(MKSHLIB) -o/\$(MKSHLIB) \$(LDFLAGS) -o/g' rules.mk
+	popd >/dev/null || die
+
+	# Fix pkgconfig file for Prefix
+	sed -i -e "/^PREFIX =/s:= /usr:= ${EPREFIX}/usr:" \
+		config/Makefile || die
+
+	# use host shlibsign if need be #436216
+	if tc-is-cross-compiler ; then
+		sed -i \
+			-e 's:"${2}"/shlibsign:shlibsign:' \
+			cmd/shlibsign/sign.sh || die
+	fi
+
+	# dirty hack
+	sed -i -e "/CRYPTOLIB/s:\$(SOFTOKEN_LIB_DIR):../freebl/\$(OBJDIR):" \
+		lib/ssl/config.mk || die
+	sed -i -e "/CRYPTOLIB/s:\$(SOFTOKEN_LIB_DIR):../../lib/freebl/\$(OBJDIR):" \
+		cmd/platlibs.mk || die
+
+	multilib_copy_sources
+
+	strip-flags
+}
+
+multilib_src_configure() {
+	# Ensure we stay multilib aware
+	sed -i -e "/@libdir@/ s:lib64:$(get_libdir):" config/Makefile || die
+}
+
+nssarch() {
+	# Most of the arches are the same as $ARCH
+	local t=${1:-${CHOST}}
+	case ${t} in
+		aarch64*)echo "aarch64";;
+		hppa*)   echo "parisc";;
+		i?86*)   echo "i686";;
+		x86_64*) echo "x86_64";;
+		*)       tc-arch ${t};;
+	esac
+}
+
+nssbits() {
+	local cc cppflags="${1}CPPFLAGS" cflags="${1}CFLAGS"
+	if [[ ${1} == BUILD_ ]]; then
+		cc=$(tc-getBUILD_CC)
+	else
+		cc=$(tc-getCC)
+	fi
+	echo > "${T}"/test.c || die
+	${cc} ${!cppflags} ${!cflags} -c "${T}"/test.c -o "${T}/${1}test.o" || die
+	case $(file "${T}/${1}test.o") in
+		*32-bit*x86-64*) echo USE_X32=1;;
+		*64-bit*|*ppc64*|*x86_64*) echo USE_64=1;;
+		*32-bit*|*ppc*|*i386*) ;;
+		*) die "Failed to detect whether ${cc} builds 64bits or 32bits, disable distcc if you're using it, please";;
+	esac
+}
+
+multilib_src_compile() {
+	# use ABI to determine bit'ness, or fallback if unset
+	local buildbits mybits
+	case "${ABI}" in
+		n32) mybits="USE_N32=1";;
+		x32) mybits="USE_X32=1";;
+		s390x|*64) mybits="USE_64=1";;
+		${DEFAULT_ABI})
+			einfo "Running compilation test to determine bit'ness"
+			mybits=$(nssbits)
+			;;
+	esac
+	# bitness of host may differ from target
+	if tc-is-cross-compiler; then
+		buildbits=$(nssbits BUILD_)
+	fi
+
+	local makeargs=(
+		CC="$(tc-getCC)"
+		CCC="$(tc-getCXX)"
+		AR="$(tc-getAR) rc \$@"
+		RANLIB="$(tc-getRANLIB)"
+		OPTIMIZER=
+		${mybits}
+	)
+
+	# Take care of nspr settings #436216
+	local myCPPFLAGS="${CPPFLAGS} $($(tc-getPKG_CONFIG) nspr --cflags)"
+	unset NSPR_INCLUDE_DIR
+
+	# Do not let `uname` be used.
+	if use kernel_linux ; then
+		makeargs+=(
+			OS_TARGET=Linux
+			OS_RELEASE=2.6
+			OS_TEST="$(nssarch)"
+		)
+	fi
+
+	export NSS_ALLOW_SSLKEYLOGFILE=1
+	export NSS_ENABLE_WERROR=0 #567158
+	export BUILD_OPT=1
+	export NSS_USE_SYSTEM_SQLITE=1
+	export NSDISTMODE=copy
+	export NSS_ENABLE_ECC=1
+	export FREEBL_NO_DEPEND=1
+	export FREEBL_LOWHASH=1
+	export NSS_SEED_ONLY_DEV_URANDOM=1
+	export ASFLAGS=""
+
+	local d
+
+	# Build the host tools first.
+	LDFLAGS="${BUILD_LDFLAGS}" \
+	XCFLAGS="${BUILD_CFLAGS}" \
+	NSPR_LIB_DIR="${T}/fakedir" \
+	emake -j1 -C coreconf \
+		CC="$(tc-getBUILD_CC)" \
+		${buildbits:-${mybits}}
+	makeargs+=( NSINSTALL="${PWD}/$(find -type f -name nsinstall)" )
+
+	# Then build the target tools.
+	for d in . lib/dbm ; do
+		CPPFLAGS="${myCPPFLAGS}" \
+		XCFLAGS="${CFLAGS} ${CPPFLAGS}" \
+		NSPR_LIB_DIR="${T}/fakedir" \
+		emake -j1 "${makeargs[@]}" -C ${d}
+	done
+}
+
+# Altering these 3 libraries breaks the CHK verification.
+# All of the following cause it to break:
+# - stripping
+# - prelink
+# - ELF signing
+# http://www.mozilla.org/projects/security/pki/nss/tech-notes/tn6.html
+# Either we have to NOT strip them, or we have to forcibly resign after
+# stripping.
+#local_libdir="$(get_libdir)"
+#export STRIP_MASK="
+#	*/${local_libdir}/libfreebl3.so*
+#	*/${local_libdir}/libnssdbm3.so*
+#	*/${local_libdir}/libsoftokn3.so*"
+
+export NSS_CHK_SIGN_LIBS="freebl3 nssdbm3 softokn3"
+
+generate_chk() {
+	local shlibsign="$1"
+	local libdir="$2"
+	einfo "Resigning core NSS libraries for FIPS validation"
+	shift 2
+	local i
+	for i in ${NSS_CHK_SIGN_LIBS} ; do
+		local libname=lib${i}.so
+		local chkname=lib${i}.chk
+		"${shlibsign}" \
+			-i "${libdir}"/${libname} \
+			-o "${libdir}"/${chkname}.tmp \
+		&& mv -f \
+			"${libdir}"/${chkname}.tmp \
+			"${libdir}"/${chkname} \
+		|| die "Failed to sign ${libname}"
+	done
+}
+
+cleanup_chk() {
+	local libdir="$1"
+	shift 1
+	local i
+	for i in ${NSS_CHK_SIGN_LIBS} ; do
+		local libfname="${libdir}/lib${i}.so"
+		# If the major version has changed, then we have old chk files.
+		[ ! -f "${libfname}" -a -f "${libfname}.chk" ] \
+			&& rm -f "${libfname}.chk"
+	done
+}
+
+multilib_src_install() {
+	pushd dist >/dev/null || die
+
+	dodir /usr/$(get_libdir)
+	cp -L */lib/*$(get_libname) "${ED}"/usr/$(get_libdir) || die "copying shared libs failed"
+	local i
+	for i in crmf freebl nssb nssckfw ; do
+		cp -L */lib/lib${i}.a "${ED}"/usr/$(get_libdir) || die "copying libs failed"
+	done
+
+	# Install nss-config and pkgconfig file
+	dodir /usr/bin
+	cp -L */bin/nss-config "${ED}"/usr/bin || die
+	dodir /usr/$(get_libdir)/pkgconfig
+	cp -L */lib/pkgconfig/nss.pc "${ED}"/usr/$(get_libdir)/pkgconfig || die
+
+	# create an nss-softokn.pc from nss.pc for libfreebl and some private headers
+	# bug 517266
+	sed 	-e 's#Libs:#Libs: -lfreebl#' \
+		-e 's#Cflags:#Cflags: -I${includedir}/private#' \
+		*/lib/pkgconfig/nss.pc >"${ED}"/usr/$(get_libdir)/pkgconfig/nss-softokn.pc \
+		|| die "could not create nss-softokn.pc"
+
+	# all the include files
+	insinto /usr/include/nss
+	doins public/nss/*.{h,api}
+	insinto /usr/include/nss/private
+	doins private/nss/{blapi,alghmac,cmac}.h
+
+	popd >/dev/null || die
+
+	local f nssutils
+	# Always enabled because we need it for chk generation.
+	nssutils=( shlibsign )
+
+	if multilib_is_native_abi ; then
+		if use utils; then
+			# The tests we do not need to install.
+			#nssutils_test="bltest crmftest dbtest dertimetest
+			#fipstest remtest sdrtest"
+			# checkcert utils has been removed in nss-3.22:
+			# https://bugzilla.mozilla.org/show_bug.cgi?id=1187545
+			# https://hg.mozilla.org/projects/nss/rev/df1729d37870
+			# certcgi has been removed in nss-3.36:
+			# https://bugzilla.mozilla.org/show_bug.cgi?id=1426602
+			nssutils+=(
+				addbuiltin
+				atob
+				baddbdir
+				btoa
+				certutil
+				cmsutil
+				conflict
+				crlutil
+				derdump
+				digest
+				makepqg
+				mangle
+				modutil
+				multinit
+				nonspr10
+				ocspclnt
+				oidcalc
+				p7content
+				p7env
+				p7sign
+				p7verify
+				pk11mode
+				pk12util
+				pp
+				rsaperf
+				selfserv
+				signtool
+				signver
+				ssltap
+				strsclnt
+				symkeyutil
+				tstclnt
+				vfychain
+				vfyserv
+			)
+			# install man-pages for utils (bug #516810)
+			doman doc/nroff/*.1
+		fi
+		pushd dist/*/bin >/dev/null || die
+		for f in ${nssutils[@]}; do
+			dobin ${f}
+		done
+		popd >/dev/null || die
+	fi
+
+	# Prelink breaks the CHK files. We don't have any reliable way to run
+	# shlibsign after prelink.
+	dodir /etc/prelink.conf.d
+	printf -- "-b ${EPREFIX}/usr/$(get_libdir)/lib%s.so\n" ${NSS_CHK_SIGN_LIBS} \
+		> "${ED}"/etc/prelink.conf.d/nss.conf
+}
+
+pkg_postinst() {
+	multilib_pkg_postinst() {
+		# We must re-sign the libraries AFTER they are stripped.
+		local shlibsign="${EROOT}/usr/bin/shlibsign"
+		# See if we can execute it (cross-compiling & such). #436216
+		"${shlibsign}" -h >&/dev/null
+		if [[ $? -gt 1 ]] ; then
+			shlibsign="shlibsign"
+		fi
+		generate_chk "${shlibsign}" "${EROOT}"/usr/$(get_libdir)
+	}
+
+	multilib_foreach_abi multilib_pkg_postinst
+}
+
+pkg_postrm() {
+	multilib_pkg_postrm() {
+		cleanup_chk "${EROOT}"/usr/$(get_libdir)
+	}
+
+	multilib_foreach_abi multilib_pkg_postrm
+}


             reply	other threads:[~2020-05-02 19:12 UTC|newest]

Thread overview: 457+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-02 19:12 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-31 13:11 [gentoo-commits] repo/gentoo:master commit in: dev-libs/nss/ Joonas Niilola
2024-08-27  7:00 Joonas Niilola
2024-08-03  7:18 Joonas Niilola
2024-07-28  6:57 Joonas Niilola
2024-07-25 12:12 Joonas Niilola
2024-07-05  8:02 Joonas Niilola
2024-07-05  8:02 Joonas Niilola
2024-07-01 18:55 Mike Gilbert
2024-06-30  6:10 Joonas Niilola
2024-06-08  6:39 Joonas Niilola
2024-06-01  8:37 Joonas Niilola
2024-05-28 18:45 Joonas Niilola
2024-05-26 16:14 Arthur Zamarin
2024-05-09  5:23 Joonas Niilola
2024-05-01 23:18 Ionen Wolkens
2024-05-01 23:18 Ionen Wolkens
2024-05-01 23:18 Ionen Wolkens
2024-05-01  5:28 Joonas Niilola
2024-04-15  7:37 Joonas Niilola
2024-04-15  7:24 Joonas Niilola
2024-04-02 11:30 Sam James
2024-04-02 11:30 Sam James
2024-04-02 11:30 Sam James
2024-04-02  6:40 Joonas Niilola
2024-04-02  6:40 Joonas Niilola
2024-04-01  6:47 Joonas Niilola
2024-03-17  9:48 Arthur Zamarin
2024-03-17  9:48 Arthur Zamarin
2024-03-17  9:48 Arthur Zamarin
2024-03-17  9:48 Arthur Zamarin
2024-03-17  7:40 Joonas Niilola
2024-03-17  7:40 Joonas Niilola
2024-02-22 11:15 Sam James
2024-02-22  7:07 Joonas Niilola
2024-02-22  7:07 Joonas Niilola
2024-02-21  8:45 Joonas Niilola
2024-02-17  9:18 Joonas Niilola
2024-01-23  8:54 Joonas Niilola
2024-01-06  9:32 Joonas Niilola
2023-12-19  7:59 Joonas Niilola
2023-12-19  7:59 Joonas Niilola
2023-12-16  9:53 Joonas Niilola
2023-12-16  9:53 Joonas Niilola
2023-12-16  8:24 Joonas Niilola
2023-12-16  8:10 Joonas Niilola
2023-12-16  8:10 Joonas Niilola
2023-12-05 19:56 Arthur Zamarin
2023-12-05 19:56 Arthur Zamarin
2023-12-05 19:56 Arthur Zamarin
2023-12-05 19:56 Arthur Zamarin
2023-12-02  6:51 Joonas Niilola
2023-10-17 12:32 Sam James
2023-10-04 19:37 Sam James
2023-10-03  6:57 Joonas Niilola
2023-09-28  6:43 Joonas Niilola
2023-09-27  2:55 Sam James
2023-09-26 20:40 Sam James
2023-09-01  8:56 Joonas Niilola
2023-08-22  5:45 Joonas Niilola
2023-07-28  8:24 Joonas Niilola
2023-07-02 16:47 Joonas Niilola
2023-06-29  6:51 Joonas Niilola
2023-06-29  6:41 Joonas Niilola
2023-06-05  9:31 Joonas Niilola
2023-05-11  7:01 Joonas Niilola
2023-05-06  8:51 Sam James
2023-05-06  8:18 Joonas Niilola
2023-04-15  6:19 Joonas Niilola
2023-04-12 13:23 Sam James
2023-04-12  2:41 Sam James
2023-04-11 20:11 Arthur Zamarin
2023-04-11 13:11 Arthur Zamarin
2023-04-11 13:11 Arthur Zamarin
2023-04-11  7:01 Joonas Niilola
2023-04-11  7:01 Joonas Niilola
2023-03-25  6:32 Joonas Niilola
2023-03-10  9:14 Joonas Niilola
2023-03-10  9:14 Joonas Niilola
2023-02-22  7:14 Joonas Niilola
2023-01-06  8:36 Joonas Niilola
2022-11-20 14:42 Joonas Niilola
2022-11-18  7:20 Joonas Niilola
2022-11-11  8:34 Joonas Niilola
2022-11-03  8:08 Joonas Niilola
2022-11-03  8:08 Joonas Niilola
2022-11-02 18:12 Arthur Zamarin
2022-11-02 18:12 Arthur Zamarin
2022-11-02 18:12 Arthur Zamarin
2022-11-02 18:08 Arthur Zamarin
2022-11-02 16:15 Sam James
2022-11-02 14:24 Joonas Niilola
2022-11-02 14:24 Joonas Niilola
2022-10-17  5:16 Joonas Niilola
2022-10-14  7:10 Joonas Niilola
2022-09-23  7:03 Agostino Sarubbo
2022-09-22  4:09 Sam James
2022-09-22  4:09 Sam James
2022-09-21 17:45 Arthur Zamarin
2022-09-21 17:45 Arthur Zamarin
2022-09-21 12:30 Joonas Niilola
2022-09-21 12:30 Joonas Niilola
2022-09-19  6:06 Joonas Niilola
2022-09-16  9:34 Joonas Niilola
2022-08-24 17:57 Joonas Niilola
2022-08-23 13:11 Joonas Niilola
2022-08-23 13:11 Joonas Niilola
2022-08-19  8:15 Joonas Niilola
2022-07-23  9:13 Joonas Niilola
2022-07-23  9:13 Joonas Niilola
2022-06-25  9:32 Joonas Niilola
2022-06-17  7:37 Joonas Niilola
2022-06-17  7:37 Joonas Niilola
2022-06-05  6:18 Joonas Niilola
2022-06-04 11:15 Jakov Smolić
2022-06-03 11:20 Agostino Sarubbo
2022-06-03 11:17 Agostino Sarubbo
2022-06-03  6:41 Jakov Smolić
2022-06-02 23:13 Sam James
2022-06-02 23:13 Sam James
2022-06-02 11:49 Joonas Niilola
2022-06-02 11:49 Joonas Niilola
2022-06-01  9:38 Sam James
2022-06-01  7:34 Lars Wendler
2022-05-26  0:58 WANG Xuerui
2022-05-16  6:25 Joonas Niilola
2022-04-29  5:58 Joonas Niilola
2022-04-29  5:58 Joonas Niilola
2022-04-10 12:59 Joonas Niilola
2022-04-09 19:57 Arthur Zamarin
2022-04-09 16:32 Arthur Zamarin
2022-04-05  2:37 Sam James
2022-04-02 22:25 Sam James
2022-04-02 12:53 Arthur Zamarin
2022-04-02  8:11 Joonas Niilola
2022-04-02  8:11 Joonas Niilola
2022-04-02  7:33 Arthur Zamarin
2022-04-02  5:30 Joonas Niilola
2022-04-01  6:45 Joonas Niilola
2022-03-30  4:57 Joonas Niilola
2022-03-06 17:30 Joonas Niilola
2022-03-04  8:07 Joonas Niilola
2022-02-19  6:20 Joonas Niilola
2022-02-05 13:16 Joonas Niilola
2022-01-26 13:44 Joonas Niilola
2022-01-25 21:25 Sam James
2022-01-24 14:42 Sam James
2022-01-24  3:42 Sam James
2022-01-24  3:42 Sam James
2022-01-23 15:21 Sam James
2022-01-23  7:41 Joonas Niilola
2022-01-22 13:10 Joonas Niilola
2022-01-22 13:10 Joonas Niilola
2022-01-09 12:36 Joonas Niilola
2022-01-08 17:13 Lars Wendler
2022-01-08 17:13 Lars Wendler
2021-12-17  9:06 Joonas Niilola
2021-12-17  9:06 Joonas Niilola
2021-12-17  9:06 Joonas Niilola
2021-12-04  1:32 Sam James
2021-12-02  8:29 Agostino Sarubbo
2021-12-02  8:27 Agostino Sarubbo
2021-12-02  8:26 Agostino Sarubbo
2021-12-02  3:20 Sam James
2021-12-02  3:20 Sam James
2021-12-02  1:01 Sam James
2021-12-01 22:12 Sam James
2021-12-01 17:28 Thomas Deutschmann
2021-12-01 17:28 Thomas Deutschmann
2021-11-16  6:33 Joonas Niilola
2021-11-14  9:21 Sam James
2021-11-14  2:15 Sam James
2021-11-13 19:50 Sam James
2021-11-11 18:36 Arthur Zamarin
2021-11-11 15:14 Jakov Smolić
2021-11-11  7:32 Joonas Niilola
2021-11-11  6:51 Joonas Niilola
2021-11-10 18:11 Arthur Zamarin
2021-11-07  7:43 Joonas Niilola
2021-11-05  3:43 Sam James
2021-11-04  8:41 Joonas Niilola
2021-11-01  1:25 Thomas Deutschmann
2021-10-15 14:33 Thomas Deutschmann
2021-09-09 12:10 Joonas Niilola
2021-09-08  1:07 Georgy Yakovlev
2021-09-05 19:31 Thomas Deutschmann
2021-09-04  6:26 Joonas Niilola
2021-09-02 18:10 Georgy Yakovlev
2021-09-01 14:17 Thomas Deutschmann
2021-08-08 18:57 Lars Wendler
2021-08-08 18:57 Lars Wendler
2021-07-13 21:04 Thomas Deutschmann
2021-06-11 12:37 Thomas Deutschmann
2021-05-28 19:36 Thomas Deutschmann
2021-05-28 19:16 Thomas Deutschmann
2021-05-28 19:16 Thomas Deutschmann
2021-05-16 20:51 Thomas Deutschmann
2021-04-16 11:35 Thomas Deutschmann
2021-04-16 11:35 Thomas Deutschmann
2021-03-31 15:25 Sergei Trofimovich
2021-03-31 14:08 Agostino Sarubbo
2021-03-29 14:50 Sam James
2021-03-28 18:20 Sam James
2021-03-28 18:20 Sam James
2021-03-28 18:20 Sam James
2021-03-28 18:18 Sam James
2021-03-28 18:18 Sam James
2021-03-19  9:24 Lars Wendler
2021-03-19  9:24 Lars Wendler
2021-02-21 12:58 Fabian Groffen
2021-02-21  2:17 Thomas Deutschmann
2021-01-24  0:58 Thomas Deutschmann
2021-01-24  0:58 Thomas Deutschmann
2021-01-09 13:53 Lars Wendler
2021-01-09 12:38 Joonas Niilola
2021-01-06 19:34 Fabian Groffen
2020-12-22 23:08 Thomas Deutschmann
2020-12-14 18:38 Thomas Deutschmann
2020-11-17 19:05 Agostino Sarubbo
2020-11-14 10:44 Lars Wendler
2020-11-14 10:44 Lars Wendler
2020-10-31 15:47 Piotr Karbowski
2020-10-28 22:35 Sergei Trofimovich
2020-10-28 22:33 Sergei Trofimovich
2020-10-28 22:30 Sergei Trofimovich
2020-10-28 22:27 Sergei Trofimovich
2020-10-28 16:18 Sam James
2020-10-28  3:05 Sam James
2020-10-26 16:12 Thomas Deutschmann
2020-10-23 12:16 Sam James
2020-10-21  3:43 Sam James
2020-10-21  1:09 Sam James
2020-10-21  1:08 Sam James
2020-10-19 21:04 Thomas Deutschmann
2020-10-07  6:55 Agostino Sarubbo
2020-10-07  6:42 Agostino Sarubbo
2020-10-03  9:16 Sergei Trofimovich
2020-10-02 22:22 Sam James
2020-10-01 23:06 Sergei Trofimovich
2020-10-01 22:55 Sergei Trofimovich
2020-10-01 17:29 Sergei Trofimovich
2020-10-01 11:13 Sam James
2020-09-30 18:05 Thomas Deutschmann
2020-08-31 22:09 Thomas Deutschmann
2020-08-31 22:09 Thomas Deutschmann
2020-08-30 22:49 Sam James
2020-08-23 21:18 Thomas Deutschmann
2020-08-23 20:46 Thomas Deutschmann
2020-08-23  8:12 Sergei Trofimovich
2020-08-14 18:02 Sergei Trofimovich
2020-08-11 17:46 Sam James
2020-08-11 17:46 Sam James
2020-08-11 16:18 Sam James
2020-08-11 14:18 Agostino Sarubbo
2020-08-11 14:13 Agostino Sarubbo
2020-08-11 14:12 Agostino Sarubbo
2020-07-26  9:27 Lars Wendler
2020-06-29 22:08 Thomas Deutschmann
2020-06-29 13:37 Agostino Sarubbo
2020-06-29 10:02 Lars Wendler
2020-06-29 10:02 Lars Wendler
2020-06-19  7:58 Lars Wendler
2020-06-13 17:05 Mike Gilbert
2020-06-12 18:44 Sergei Trofimovich
2020-06-11  8:34 Agostino Sarubbo
2020-06-11  8:29 Agostino Sarubbo
2020-06-11  8:27 Agostino Sarubbo
2020-06-11  8:25 Agostino Sarubbo
2020-06-10 13:01 Agostino Sarubbo
2020-06-09 20:00 Mart Raudsepp
2020-06-09 14:42 Agostino Sarubbo
2020-06-09  9:20 Lars Wendler
2020-06-07 11:26 James Le Cuirot
2020-05-22 16:47 Lars Wendler
2020-04-20  9:00 Lars Wendler
2020-04-20  7:46 Lars Wendler
2020-04-10 11:12 Lars Wendler
2020-03-25  8:12 Agostino Sarubbo
2020-03-20  9:16 Sergei Trofimovich
2020-03-18 16:03 Agostino Sarubbo
2020-03-18 12:03 Agostino Sarubbo
2020-03-18 11:31 Agostino Sarubbo
2020-03-18 11:11 Agostino Sarubbo
2020-03-18  9:49 Agostino Sarubbo
2020-03-17 18:44 Agostino Sarubbo
2020-03-17  8:34 Mart Raudsepp
2020-03-16 18:25 Sergei Trofimovich
2020-03-09 10:44 Lars Wendler
2020-03-07 15:21 Jory Pratt
2020-03-06 14:16 Jory Pratt
2020-02-08 15:19 Jory Pratt
2020-01-24 21:31 Thomas Deutschmann
2020-01-15 10:35 Lars Wendler
2020-01-07 20:56 Jory Pratt
2019-12-15 16:37 Thomas Deutschmann
2019-12-15 16:37 Thomas Deutschmann
2019-12-15 16:37 Thomas Deutschmann
2019-12-10 19:25 Sergei Trofimovich
2019-12-10 10:54 Agostino Sarubbo
2019-12-06  5:46 Jory Pratt
2019-12-03 11:58 Agostino Sarubbo
2019-12-03 11:56 Agostino Sarubbo
2019-12-03 10:07 Agostino Sarubbo
2019-12-03 10:06 Agostino Sarubbo
2019-12-03 10:03 Agostino Sarubbo
2019-12-03  1:54 Aaron Bauman
2019-11-22  9:11 Lars Wendler
2019-10-06 11:14 Lars Wendler
2019-10-06 11:14 Lars Wendler
2019-09-26  6:42 Sergei Trofimovich
2019-09-22 20:57 Aaron Bauman
2019-09-20  6:39 Sergei Trofimovich
2019-09-08 18:30 Sergei Trofimovich
2019-09-08 18:26 Sergei Trofimovich
2019-09-04 18:32 Sergei Trofimovich
2019-09-04  9:41 Agostino Sarubbo
2019-09-04  6:00 Mikle Kolyada
2019-09-04  6:00 Mikle Kolyada
2019-09-04  6:00 Mikle Kolyada
2019-08-31 15:42 Jory Pratt
2019-07-10  8:23 Lars Wendler
2019-07-10  8:23 Lars Wendler
2019-06-25  8:00 Lars Wendler
2019-05-17  1:45 Jory Pratt
2019-05-13 12:02 Lars Wendler
2019-05-12 10:20 Lars Wendler
2019-05-12 10:20 Lars Wendler
2019-03-18  9:01 Lars Wendler
2019-03-17 17:34 Jory Pratt
2019-02-02 10:36 Lars Wendler
2019-01-30 21:27 Thomas Deutschmann
2019-01-30 21:27 Thomas Deutschmann
2019-01-30 13:43 Lars Wendler
2019-01-18  8:03 Mikle Kolyada
2019-01-18  8:02 Mikle Kolyada
2019-01-11 21:00 Mart Raudsepp
2018-12-26 17:16 Matt Turner
2018-12-15 22:39 Sergei Trofimovich
2018-12-13 20:53 Mikle Kolyada
2018-12-13 12:48 Thomas Deutschmann
2018-12-12 20:13 Sergei Trofimovich
2018-12-11 23:32 Sergei Trofimovich
2018-12-11 23:27 Sergei Trofimovich
2018-12-11 23:24 Sergei Trofimovich
2018-12-11 10:50 Lars Wendler
2018-12-11 10:50 Lars Wendler
2018-12-02 14:04 Lars Wendler
2018-12-02 14:04 Lars Wendler
2018-10-25 11:40 Lars Wendler
2018-09-09  6:51 Mikle Kolyada
2018-09-09  1:12 Thomas Deutschmann
2018-09-03 14:06 Lars Wendler
2018-09-03 14:06 Lars Wendler
2018-06-27  8:13 Lars Wendler
2018-06-22  9:56 Mikle Kolyada
2018-05-28 14:08 Lars Wendler
2018-05-08  8:47 Lars Wendler
2018-05-08  8:47 Lars Wendler
2018-04-11  8:19 Lars Wendler
2018-03-21  7:50 Lars Wendler
2018-03-07 12:36 Lars Wendler
2018-03-07  9:13 Lars Wendler
2018-03-07  9:13 Lars Wendler
2018-03-02 23:51 Mart Raudsepp
2018-01-20 10:04 Lars Wendler
2018-01-20 10:04 Lars Wendler
2017-11-29 17:27 Lars Wendler
2017-11-29 17:27 Lars Wendler
2017-11-15 18:51 Lars Wendler
2017-09-21 22:26 Lars Wendler
2017-09-21 22:26 Lars Wendler
2017-09-13  1:49 Jory Pratt
2017-07-05  9:25 Lars Wendler
2017-06-12 13:39 Jory Pratt
2017-05-25 18:00 Ian Stakenvicius
2017-05-24 15:29 Ian Stakenvicius
2017-05-04 20:03 Markus Meier
2017-04-30  9:37 Agostino Sarubbo
2017-04-29 15:02 Agostino Sarubbo
2017-04-22 22:26 Lars Wendler
2017-04-22 13:19 Jeroen Roovers
2017-04-22  7:33 Tobias Klausmann
2017-04-19 20:20 Ian Stakenvicius
2017-04-19 20:20 Ian Stakenvicius
2017-04-06 13:08 Lars Wendler
2017-04-06 13:08 Lars Wendler
2017-03-29  0:02 Michael Weber
2017-03-23  7:59 Lars Wendler
2017-03-08  9:47 Lars Wendler
2017-03-08  9:47 Lars Wendler
2017-02-21  9:30 Lars Wendler
2017-02-08  0:39 Jory Pratt
2017-01-18 10:02 Agostino Sarubbo
2017-01-15 22:10 Tobias Klausmann
2017-01-15 20:18 Jeroen Roovers
2017-01-13 17:02 Markus Meier
2017-01-10 15:22 Agostino Sarubbo
2017-01-10 14:56 Agostino Sarubbo
2017-01-09  2:15 Jory Pratt
2017-01-08 21:42 Jory Pratt
2017-01-08 18:17 Markus Meier
2017-01-06 14:33 Tobias Klausmann
2017-01-04 14:37 Aaron Bauman
2016-12-01 20:34 Ian Stakenvicius
2016-10-05  6:59 Lars Wendler
2016-10-05  6:59 Lars Wendler
2016-09-28 10:09 Lars Wendler
2016-08-08 17:57 Lars Wendler
2016-08-08 17:57 Lars Wendler
2016-08-04 19:29 Ian Stakenvicius
2016-08-02 11:26 Jeroen Roovers
2016-07-25  6:24 Jeroen Roovers
2016-07-09  2:58 Ian Stakenvicius
2016-07-09  2:54 Ian Stakenvicius
2016-07-02 20:36 Lars Wendler
2016-06-13 14:54 Tobias Klausmann
2016-06-12 20:02 Markus Meier
2016-06-10 15:32 Agostino Sarubbo
2016-06-07 20:57 Lars Wendler
2016-06-07 20:57 Lars Wendler
2016-03-20 12:24 Agostino Sarubbo
2016-03-19 12:28 Agostino Sarubbo
2016-03-19  7:23 Jeroen Roovers
2016-03-18  6:10 Markus Meier
2016-03-17 11:34 Agostino Sarubbo
2016-03-16 14:09 Agostino Sarubbo
2016-03-15 20:50 Tobias Klausmann
2016-03-15  9:27 Lars Wendler
2016-03-14 14:30 Agostino Sarubbo
2016-03-14 14:29 Agostino Sarubbo
2016-02-29 22:09 Ian Stakenvicius
2016-02-29 20:13 Ian Stakenvicius
2016-02-29 20:05 Ian Stakenvicius
2016-02-16  7:21 Lars Wendler
2016-02-15 22:27 Lars Wendler
2016-02-15 22:27 Lars Wendler
2016-02-03 20:44 Markus Meier
2016-01-31 11:11 Agostino Sarubbo
2016-01-31 11:09 Agostino Sarubbo
2016-01-31  9:57 Jeroen Roovers
2016-01-30 16:42 Tobias Klausmann
2016-01-30  7:51 Jeroen Roovers
2016-01-05  0:38 Mike Frysinger
2016-01-05  0:38 Mike Frysinger
2015-12-27 10:04 Mikle Kolyada
2015-12-16 18:35 Mike Frysinger
2015-11-18  9:32 Agostino Sarubbo
2015-11-15 18:26 Matt Turner
2015-11-14 16:52 Markus Meier
2015-11-09  8:53 Agostino Sarubbo
2015-11-06  4:21 Jeroen Roovers
2015-11-05 10:07 Agostino Sarubbo
2015-11-05 10:06 Agostino Sarubbo
2015-11-04 19:39 Ian Stakenvicius
2015-10-02 18:08 Ian Stakenvicius
2015-08-28 20:35 Ian Stakenvicius
2015-08-28 20:35 Ian Stakenvicius

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=1588446732.89dadea09fea4dfa3bdf3302f2c3ea8b720bde03.polynomial-c@gentoo \
    --to=polynomial-c@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