From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/nss/
Date: Mon, 1 Nov 2021 01:25:06 +0000 (UTC) [thread overview]
Message-ID: <1635729107.8c67f2a1b088c44d08eba35cf93ace5143813423.whissi@gentoo> (raw)
commit: 8c67f2a1b088c44d08eba35cf93ace5143813423
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 1 01:11:47 2021 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Nov 1 01:11:47 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c67f2a1
dev-libs/nss: bump to v3.72
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
dev-libs/nss/Manifest | 1 +
dev-libs/nss/nss-3.72.ebuild | 367 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 368 insertions(+)
diff --git a/dev-libs/nss/Manifest b/dev-libs/nss/Manifest
index 7d209501bfa..105a2721e80 100644
--- a/dev-libs/nss/Manifest
+++ b/dev-libs/nss/Manifest
@@ -4,4 +4,5 @@ DIST nss-3.69.1.tar.gz 82426679 BLAKE2B 71948a9fee08536c41da9916e6d2eb82bf52bf68
DIST nss-3.69.tar.gz 82427268 BLAKE2B 1467c7f17b1d3d46fb4fcb1d19112585c24ec3d10125d7e954a87c3a6d0e20a300d2084a9480c88dad20274c500e1efb70143bb92b4a8110c2080abf3fe68dfe SHA512 9dd824b3e96aa5a032d5005cdf60a55efac23f69f3857cd1f4337f3ebad92fc2354bb05ed85f04a368e55306a46ebd17a91f7f432f1c191a96e99aecfa62cfdf
DIST nss-3.70.tar.gz 83917362 BLAKE2B 51de2e2cf5feb11045388b0badec24509d50f8bc8abd4116cbab77ff434f86a44ad4c98e533a1dd7093a9d1be9b7deb45f0426e3a173f9b2b92995cf63f2ea51 SHA512 9766282b36560d2f73ac5e90dbc3962802d6b1e8650ff9c0afbd6d2e1ff4cf8f2bc251f972344dc8a6ac5209b917aae03cc9883cb081011a7dea7bd258a95d82
DIST nss-3.71.tar.gz 83927933 BLAKE2B a8d683b9f9bff5390e0378ab0d55156f7cc69a52b0667658738e67e920548965e7a276dc4104547b2e6a1a6d18325c3f85b955b9c12d7f071d10930b5264207e SHA512 a4a724dc4e8677965b6245ea2309790d31ec7719658e2b349eb67c9008082132c76277340d15e4fdd8d2fe1f560ae6803fb038d023c3dfd2e3772fa3b77720e2
+DIST nss-3.72.tar.gz 83928300 BLAKE2B d92889e27e99095a18090eff0c08b8653ef1f53f4954f5bd018df2f2903647bc71f217159bb4b11f0d6b4fb289fda20bffa2d1d207d1836dcfc33dbd4bedf511 SHA512 1d818d2ef85735837275059fecf68d57e48152f0348ea54887c29171cf029b6944e94d99a8cd96e580a81edb678b79c55515ac0516e27daf6b290c34baed9ebb
DIST nss-cacert-class1-class3-r2.patch 21925 BLAKE2B 7627ff9a09f084c19d72d0490676865e3cab3ca7c920ae1ce4bea2db664f37fd0aa84fcda919809a516891ab2a62e2e7a43a9d6ada4c231adfe4c216525fac7d SHA512 1ce6ff9ab310aaca9005eafb461338b291df8523cc7044e096cd75774ce746c26eed19ec6bb2643c6c67f94650f2f309463492d80a90568f38ce2557f8ada2f4
diff --git a/dev-libs/nss/nss-3.72.ebuild b/dev-libs/nss/nss-3.72.ebuild
new file mode 100644
index 00000000000..97adb106159
--- /dev/null
+++ b/dev-libs/nss/nss-3.72.ebuild
@@ -0,0 +1,367 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic multilib toolchain-funcs multilib-minimal
+
+NSPR_VER="4.32"
+RTM_NAME="NSS_${PV//./_}_RTM"
+
+DESCRIPTION="Mozilla's Network Security Services library that implements PKI support"
+HOMEPAGE="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS"
+SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/${P}.tar.gz
+ cacert? ( https://dev.gentoo.org/~whissi/dist/ca-certificates/nss-cacert-class1-class3-r2.patch )"
+
+LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
+IUSE="cacert utils cpu_flags_ppc_altivec cpu_flags_ppc_vsx"
+# 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
+"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-lang/perl"
+
+RESTRICT="test"
+
+S="${WORKDIR}/${P}/${PN}"
+
+MULTILIB_CHOST_TOOLS=(
+ /usr/bin/nss-config
+)
+
+PATCHES=(
+ # Custom changes for gentoo
+ "${FILESDIR}/${PN}-3.53-gentoo-fixups.patch"
+ "${FILESDIR}/${PN}-3.21-gentoo-fixup-warnings.patch"
+ "${FILESDIR}/${PN}-3.23-hppa-byte_order.patch"
+)
+
+src_prepare() {
+ default
+
+ if use cacert ; then
+ eapply -p2 "${DISTDIR}"/nss-cacert-class1-class3-r2.patch
+ fi
+
+ 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
+ *86*-pc-solaris2*) echo "i86pc" ;;
+ 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
+
+ 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 FREEBL_NO_DEPEND=1
+ export FREEBL_LOWHASH=1
+ export NSS_SEED_ONLY_DEV_URANDOM=1
+ export USE_SYSTEM_ZLIB=1
+ export ZLIB_LIBS=-lz
+ export ASFLAGS=""
+ # Fix build failure on arm64
+ export NS_USE_GCC=1
+ # Detect compiler type and set proper environment value
+ if tc-is-gcc; then
+ export CC_IS_GCC=1
+ elif tc-is-clang; then
+ export CC_IS_CLANG=1
+ fi
+
+ # explicitly disable altivec/vsx if not requested
+ # https://bugs.gentoo.org/789114
+ case ${ARCH} in
+ ppc*)
+ use cpu_flags_ppc_altivec || export NSS_DISABLE_ALTIVEC=1
+ use cpu_flags_ppc_vsx || export NSS_DISABLE_CRYPTO_VSX=1
+ ;;
+ esac
+
+ 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} OS_TEST="$(nssarch)"
+ 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
+}
next reply other threads:[~2021-11-01 1:25 UTC|newest]
Thread overview: 468+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-01 1:25 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-24 7:30 [gentoo-commits] repo/gentoo:master commit in: dev-libs/nss/ Joonas Niilola
2024-11-22 13:12 Sam James
2024-10-25 11:09 Joonas Niilola
2024-10-14 19:11 Arthur Zamarin
2024-10-03 16:11 Arthur Zamarin
2024-10-02 11:08 Jakov Smolić
2024-10-02 11:08 Jakov Smolić
2024-10-02 8:31 Joonas Niilola
2024-10-02 8:14 Joonas Niilola
2024-09-28 12:46 Joonas Niilola
2024-09-27 8:35 Joonas Niilola
2024-08-31 13:11 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-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-05-02 19:12 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=1635729107.8c67f2a1b088c44d08eba35cf93ace5143813423.whissi@gentoo \
--to=whissi@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