public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/
Date: Sun, 24 Sep 2023 01:52:20 +0000 (UTC)	[thread overview]
Message-ID: <1695520243.643f04360ac6f258d37d6fb5e0c71868a4e0f1c5.sam@gentoo> (raw)

commit:     643f04360ac6f258d37d6fb5e0c71868a4e0f1c5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 01:50:43 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 01:50:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643f0436

media-gfx/imagemagick: add 7.1.1.18 (w/ USE=hardened)

This adds a USE=hardened which sets the new configure arg (added between .15 and .18)
called --with-security-policy.

It defaults upstream to 'open'. We follow that default for USE=-hardened, but
set it to 'limited' for USE=hardened.

Bug: https://bugs.gentoo.org/716674
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-gfx/imagemagick/Manifest                    |   1 +
 media-gfx/imagemagick/imagemagick-7.1.1.18.ebuild | 247 ++++++++++++++++++++++
 2 files changed, 248 insertions(+)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index 83b4155d2ce2..afb3633f3502 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -4,4 +4,5 @@ DIST ImageMagick-6.9.12-93.tar.xz 9261928 BLAKE2B 245ea5bdf49c1d4ca4e0cb34537748
 DIST ImageMagick-6.9.12-96.tar.xz 9275248 BLAKE2B 81cad8da2d809d38c0146d54a7a39b75d39ac88138ef504a669aaa8293452baa1a1985568e80e4128e76fb3eded5d7111a45d47eea59b827e652ca5ee1a6396e SHA512 ffdc40d37919ec19ffd47955a39351a3532caca355f73f93bda1577157346a7d8b5727c4c8abddc87262bd9442e1af4ad8aae748a1364c28a407c3fb8c42ffb5
 DIST ImageMagick-7.1.1-11.tar.xz 10196156 BLAKE2B 328ffe6dbf30b597ec56f94ab5e74cca553cb47eca244c76b91273c278c097990fb8ed7eeaa22311d4408022808e752cbb4c8775c56b3d64d3a4216487093e9e SHA512 b3c839457b62a6b83d3ab9cf12bda2f41030eed75ae5ff898331ffdfe202a93ea8284c8f8608f4ecd013c7eb0c4cbef6527caff62bcf382d62e8531389628fc3
 DIST ImageMagick-7.1.1-15.tar.xz 10200668 BLAKE2B e9910b94d1a47641785cf05b1bfe99f310619aa48d32eb42823b7e83b9be2904e6ebc63965e6eaca2ed1162e6b0055f54bac946602759941a0d20fbf7502bf9d SHA512 afd6216d423a2b8b03727bac089bb83a0fe43c9bfc4c244d4ad5b1c8fa4c3a47be4c7556ef8f008debd0252c7b176c54caddd3c5c8b0ea4f5ca1836943326e8a
+DIST ImageMagick-7.1.1-18.tar.xz 10221468 BLAKE2B 1c4813f9fce578c9389922de5a4dbd8b0d925d1589844e3a3209b1045e03a254801abe9bf8570309b1ac701cb42d62ac497cda77a83efa720cf4cddf3ccec09e SHA512 5e62696089bc4f8510d19862d453d289db82bd6525b31575d61dfcfaf28b28f2d70d87dd4679972e2547380ac6c29520769f74825195ea529c2699be792baffd
 DIST ImageMagick-7.1.1-6.tar.xz 10392592 BLAKE2B ed02f36d0014f2699db5df0eb1cf3b18ccbdbee92e3a3bcfb85084672faeb984c6bb27cdf46349768f936ac91ebac744aa00fa3a95fcf1f02a4969f315d2079d SHA512 52aa9aca4d987ee8f2142ce2e192230465399435d0cd7e64683349d0da1f52f2fbd03a2c667605c0c9da66435f84df173c60b7eb93ecada691e801e08dd9fd48

diff --git a/media-gfx/imagemagick/imagemagick-7.1.1.18.ebuild b/media-gfx/imagemagick/imagemagick-7.1.1.18.ebuild
new file mode 100644
index 000000000000..93a5b83426a4
--- /dev/null
+++ b/media-gfx/imagemagick/imagemagick-7.1.1.18.ebuild
@@ -0,0 +1,247 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+QA_PKGCONFIG_VERSION=$(ver_cut 1-3)
+inherit autotools flag-o-matic perl-functions toolchain-funcs
+
+if [[ ${PV} == 9999 ]] ; then
+	EGIT_REPO_URI="https://github.com/ImageMagick/ImageMagick.git"
+	inherit git-r3
+	MY_P="imagemagick-9999"
+else
+	MY_PV="$(ver_rs 3 '-')"
+	MY_P="ImageMagick-${MY_PV}"
+	SRC_URI="mirror://imagemagick/${MY_P}.tar.xz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+fi
+
+S="${WORKDIR}/${MY_P}"
+
+DESCRIPTION="A collection of tools and libraries for many image formats"
+HOMEPAGE="https://www.imagemagick.org/"
+
+LICENSE="imagemagick"
+# Please check this on bumps, SONAME is often not updated! Use abidiff on old/new.
+# If ABI is broken, change the bit after the '-'.
+SLOT="0/$(ver_cut 1-3)-18"
+IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hardened hdri heif jbig jpeg jpeg2k jpegxl lcms lqr lzma opencl openexr openmp pango perl +png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zip zlib"
+
+REQUIRED_USE="corefonts? ( truetype )
+	svg? ( xml )
+	test? ( corefonts )"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	!media-gfx/graphicsmagick[imagemagick]
+	dev-libs/libltdl
+	bzip2? ( app-arch/bzip2 )
+	corefonts? ( media-fonts/corefonts )
+	djvu? ( app-text/djvu )
+	fftw? ( sci-libs/fftw:3.0 )
+	fontconfig? ( media-libs/fontconfig )
+	fpx? ( >=media-libs/libfpx-1.3.0-r1 )
+	graphviz? ( media-gfx/graphviz )
+	heif? ( media-libs/libheif:=[x265] )
+	jbig? ( >=media-libs/jbigkit-2:= )
+	jpeg? ( media-libs/libjpeg-turbo:= )
+	jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
+	jpegxl? ( >=media-libs/libjxl-0.6:= )
+	lcms? ( media-libs/lcms:2= )
+	lqr? ( media-libs/liblqr )
+	opencl? ( virtual/opencl )
+	openexr? ( media-libs/openexr:0= )
+	pango? ( x11-libs/pango )
+	perl? ( >=dev-lang/perl-5.8.8:= )
+	png? ( media-libs/libpng:= )
+	postscript? ( app-text/ghostscript-gpl:= )
+	raw? ( media-libs/libraw:= )
+	svg? (
+		gnome-base/librsvg
+		media-gfx/potrace
+	)
+	tiff? ( media-libs/tiff:= )
+	truetype? (
+		media-fonts/urw-fonts
+		>=media-libs/freetype-2
+	)
+	webp? ( media-libs/libwebp:= )
+	wmf? ( media-libs/libwmf )
+	X? (
+		x11-libs/libICE
+		x11-libs/libSM
+		x11-libs/libXext
+		x11-libs/libXt
+	)
+	xml? ( dev-libs/libxml2 )
+	lzma? ( app-arch/xz-utils )
+	zip? ( dev-libs/libzip:= )
+	zlib? ( sys-libs/zlib:= )"
+DEPEND="${RDEPEND}
+	X? ( x11-base/xorg-proto )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-9999-nocputuning.patch"
+)
+
+pkg_pretend() {
+	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+pkg_setup() {
+	[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+src_prepare() {
+	default
+
+	#elibtoolize # for Darwin modules
+	eautoreconf
+
+	# For testsuite, see https://bugs.gentoo.org/show_bug.cgi?id=500580#c3
+	local ati_cards mesa_cards nvidia_cards render_cards
+	shopt -s nullglob
+	ati_cards=$(echo -n /dev/ati/card* | sed 's/ /:/g')
+	if test -n "${ati_cards}"; then
+		addpredict "${ati_cards}"
+	fi
+	mesa_cards=$(echo -n /dev/dri/card* | sed 's/ /:/g')
+	if test -n "${mesa_cards}"; then
+		addpredict "${mesa_cards}"
+	fi
+	nvidia_cards=$(echo -n /dev/nvidia* | sed 's/ /:/g')
+	if test -n "${nvidia_cards}"; then
+		addpredict "${nvidia_cards}"
+	fi
+	render_cards=$(echo -n /dev/dri/renderD128* | sed 's/ /:/g')
+	if test -n "${render_cards}"; then
+		addpredict "${render_cards}"
+	fi
+	shopt -u nullglob
+	addpredict /dev/nvidiactl
+}
+
+src_configure() {
+	local depth=16
+	use q8 && depth=8
+	use q32 && depth=32
+
+	use perl && perl_check_env
+
+	[[ ${CHOST} == *-solaris* ]] && append-ldflags -lnsl -lsocket
+
+	local myeconfargs=(
+		$(use_enable static-libs static)
+		$(use_enable hdri)
+		$(use_enable opencl)
+		$(use_enable openmp)
+		--with-threads
+		--with-modules
+		--with-quantum-depth=${depth}
+		$(use_with cxx magick-plus-plus)
+		$(use_with perl)
+		--with-perl-options='INSTALLDIRS=vendor'
+		--with-gs-font-dir="${EPREFIX}"/usr/share/fonts/urw-fonts
+		$(use_with bzip2 bzlib)
+		$(use_with X x)
+		$(use_with zip)
+		$(use_with zlib)
+		--without-autotrace
+		$(use_with postscript dps)
+		$(use_with djvu)
+		--with-dejavu-font-dir="${EPREFIX}"/usr/share/fonts/dejavu
+		$(use_with fftw)
+		$(use_with fpx)
+		$(use_with fontconfig)
+		$(use_with truetype freetype)
+		$(use_with postscript gslib)
+		$(use_with graphviz gvc)
+		$(use_with heif heic)
+		$(use_with jbig)
+		$(use_with jpeg)
+		$(use_with jpeg2k openjp2)
+		$(use_with jpegxl jxl)
+		$(use_with lcms)
+		$(use_with lqr)
+		$(use_with lzma)
+		$(use_with openexr)
+		$(use_with pango)
+		$(use_with png)
+		$(use_with raw)
+		$(use_with svg rsvg)
+		$(use_with tiff)
+		$(use_with webp)
+		$(use_with corefonts windows-font-dir "${EPREFIX}"/usr/share/fonts/corefonts)
+		$(use_with wmf)
+		$(use_with xml)
+
+		# Default upstream (as of 6.9.12.96/7.1.1.18 anyway) is open
+		# For now, let's make USE=hardened do 'limited', and have USE=-hardened
+		# reflect the upstream default of 'open'.
+		#
+		# We might change it to 'secure' and 'limited' at some point.
+		# See also bug #716674.
+		--with-security-policy=$(usex hardened limited open)
+	)
+
+	CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}"
+}
+
+src_test() {
+	# Install default (unrestricted) policy in $HOME for test suite, bug #664238
+	local _im_local_config_home="${HOME}/.config/ImageMagick"
+	mkdir -p "${_im_local_config_home}" || \
+		die "Failed to create IM config dir in '${_im_local_config_home}'"
+	cp "${FILESDIR}"/policy.test.xml "${_im_local_config_home}/policy.xml" || \
+		die "Failed to install default blank policy.xml in '${_im_local_config_home}'"
+
+	local im_command= IM_COMMANDS=()
+	if [[ ${PV} == 9999 ]] ; then
+		IM_COMMANDS+=( "magick -version" ) # Show version we are using -- cannot verify because of live ebuild
+	else
+		IM_COMMANDS+=( "magick -version | grep -q -- \"${MY_PV}\"" ) # Verify that we are using version we just built
+	fi
+	IM_COMMANDS+=( "magick -list policy" ) # Verify that policy.xml is used
+	IM_COMMANDS+=( "emake check" ) # Run tests
+
+	for im_command in "${IM_COMMANDS[@]}"; do
+		eval "${S}"/magick.sh \
+			${im_command} || \
+			die "Failed to run \"${im_command}\""
+	done
+}
+
+src_install() {
+	# Ensure documentation installation files and paths with each release!
+	emake \
+		DESTDIR="${D}" \
+		DOCUMENTATION_PATH="${EPREFIX}"/usr/share/doc/${PF}/html \
+		install
+
+	rm -f "${ED}"/usr/share/doc/${PF}/html/{ChangeLog,LICENSE,NEWS.txt}
+	dodoc {AUTHORS,README}.txt
+
+	if use perl; then
+		find "${ED}" -type f -name perllocal.pod -exec rm -f {} +
+		find "${ED}" -depth -mindepth 1 -type d -empty -exec rm -rf {} +
+	fi
+
+	find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} +
+	# .la files in parent are not needed, keep plugin .la files
+	find "${ED}"/usr/$(get_libdir)/ -maxdepth 1 -name "*.la" -delete || die
+
+	if use opencl; then
+		cat <<-EOF > "${T}"/99${PN}
+		SANDBOX_PREDICT="/dev/nvidiactl:/dev/nvidia-uvm:/dev/ati/card:/dev/dri/card:/dev/dri/card0:/dev/dri/renderD128"
+		EOF
+
+		insinto /etc/sandbox.d
+		doins "${T}"/99${PN} #472766
+	fi
+
+	insinto /usr/share/${PN}
+	doins config/*icm
+}


             reply	other threads:[~2023-09-24  1:52 UTC|newest]

Thread overview: 585+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-24  1:52 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-05  7:41 [gentoo-commits] repo/gentoo:master commit in: media-gfx/imagemagick/ Sam James
2024-09-08  9:10 Sam James
2024-09-08  8:53 Sam James
2024-03-04 11:24 Sam James
2024-03-04 11:24 Sam James
2024-02-06  5:03 Ionen Wolkens
2024-02-06  5:03 Ionen Wolkens
2024-02-04 21:43 Ionen Wolkens
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-21  7:58 Viorel Munteanu
2024-01-05  5:57 Sam James
2024-01-05  5:57 Sam James
2024-01-05  5:33 Arthur Zamarin
2024-01-05  5:33 Arthur Zamarin
2024-01-05  5:33 Arthur Zamarin
2024-01-05  5:33 Arthur Zamarin
2024-01-05  5:33 Arthur Zamarin
2024-01-05  5:33 Arthur Zamarin
2024-01-05  5:31 Arthur Zamarin
2024-01-05  5:31 Arthur Zamarin
2024-01-05  5:31 Arthur Zamarin
2024-01-05  5:31 Arthur Zamarin
2024-01-05  5:31 Arthur Zamarin
2024-01-05  5:31 Arthur Zamarin
2024-01-05  3:59 Sam James
2024-01-05  3:59 Sam James
2024-01-05  3:59 Sam James
2024-01-05  3:59 Sam James
2023-12-28  4:35 Sam James
2023-12-27 22:22 Sam James
2023-12-27 22:22 Sam James
2023-12-19  5:19 Sam James
2023-12-12  6:30 Viorel Munteanu
2023-10-27 15:20 Michał Górny
2023-09-24  1:52 Sam James
2023-09-24  1:52 Sam James
2023-09-24  0:28 Sam James
2023-09-24  0:28 Sam James
2023-08-31  6:29 Sam James
2023-08-31  6:29 Sam James
2023-08-31  6:29 Sam James
2023-08-31  6:29 Sam James
2023-08-31  6:29 Sam James
2023-08-31  6:29 Sam James
2023-08-04 11:46 Arthur Zamarin
2023-08-04 11:46 Arthur Zamarin
2023-08-04 11:46 Arthur Zamarin
2023-07-15  8:49 Arthur Zamarin
2023-07-15  8:20 Arthur Zamarin
2023-06-21 21:46 Sam James
2023-06-17 14:41 Sam James
2023-06-09 14:41 Andreas K. Hüttel
2023-06-01  4:20 Sam James
2023-06-01  4:20 Sam James
2023-05-06 20:35 Andreas K. Hüttel
2023-05-02 19:12 Arthur Zamarin
2023-05-02 19:12 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-05-01  6:38 Arthur Zamarin
2023-04-29 17:01 Andreas K. Hüttel
2023-04-25  1:00 Sam James
2023-04-25  1:00 Sam James
2023-04-15  8:08 Sam James
2023-04-15  8:08 Sam James
2023-04-09 18:44 Arthur Zamarin
2023-04-02 19:27 Arthur Zamarin
2023-04-02 19:27 Arthur Zamarin
2023-04-02 19:27 Arthur Zamarin
2023-04-02 19:27 Arthur Zamarin
2023-04-02 19:27 Arthur Zamarin
2023-04-02 19:27 Arthur Zamarin
2023-04-02 19:27 Arthur Zamarin
2023-04-02 14:35 Andreas K. Hüttel
2023-04-02 13:49 Andreas K. Hüttel
2023-03-12 13:31 Arthur Zamarin
2023-03-12 13:31 Arthur Zamarin
2023-03-12 13:31 Arthur Zamarin
2023-03-12 13:31 Arthur Zamarin
2023-03-12 13:31 Arthur Zamarin
2023-03-12 13:31 Arthur Zamarin
2023-03-12 13:31 Arthur Zamarin
2023-03-12 13:31 Arthur Zamarin
2023-03-09  7:57 Sam James
2023-03-09  6:40 Sam James
2023-03-09  6:40 Sam James
2023-03-09  6:40 Sam James
2023-02-08 14:59 Andreas K. Hüttel
2023-02-04 16:55 Andreas K. Hüttel
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2023-01-01 19:29 Arthur Zamarin
2022-12-03  8:11 Sam James
2022-10-02 16:51 Andreas K. Hüttel
2022-08-31  2:51 Sam James
2022-08-27 18:04 Arthur Zamarin
2022-08-27 18:04 Arthur Zamarin
2022-08-25 18:25 Agostino Sarubbo
2022-08-25 18:24 Agostino Sarubbo
2022-08-25 18:22 Agostino Sarubbo
2022-08-25 18:17 Agostino Sarubbo
2022-08-25 18:16 Agostino Sarubbo
2022-08-25 18:16 Agostino Sarubbo
2022-08-25 18:15 Agostino Sarubbo
2022-07-29  2:33 Sam James
2022-07-26  6:22 Sam James
2022-07-26  6:22 Sam James
2022-07-17 18:04 Sam James
2022-07-17 18:04 Sam James
2022-07-17 18:04 Sam James
2022-07-16 22:44 Sam James
2022-07-16 17:14 Sam James
2022-07-16 17:13 Sam James
2022-07-16 17:12 Sam James
2022-05-14 21:30 David Seifert
2022-05-14 10:30 WANG Xuerui
2022-04-17 18:32 Sam James
2022-04-17 18:32 Sam James
2022-01-26  2:31 Thomas Deutschmann
2022-01-01 13:43 James Le Cuirot
2021-11-16 18:35 Thomas Deutschmann
2021-11-14  3:53 Thomas Deutschmann
2021-11-14  3:53 Thomas Deutschmann
2021-11-01  1:25 Thomas Deutschmann
2021-10-20 23:47 Thomas Deutschmann
2021-10-20 23:47 Thomas Deutschmann
2021-10-20 23:47 Thomas Deutschmann
2021-10-20 23:47 Thomas Deutschmann
2021-09-05 19:31 Thomas Deutschmann
2021-09-05 19:31 Thomas Deutschmann
2021-09-05 19:31 Thomas Deutschmann
2021-08-24 13:17 Thomas Deutschmann
2021-08-04 20:36 Thomas Deutschmann
2021-08-04 20:36 Thomas Deutschmann
2021-07-23 22:41 Thomas Deutschmann
2021-07-12 14:35 Thomas Deutschmann
2021-07-12 14:35 Thomas Deutschmann
2021-06-25 18:48 Thomas Deutschmann
2021-06-25 11:21 Thomas Deutschmann
2021-06-25  1:33 Yixun Lan
2021-06-14 14:40 Thomas Deutschmann
2021-06-14 14:40 Thomas Deutschmann
2021-05-21  2:12 Thomas Deutschmann
2021-05-13  0:18 Thomas Deutschmann
2021-05-13  0:18 Thomas Deutschmann
2021-05-10 12:11 Thomas Deutschmann
2021-04-30 12:50 Thomas Deutschmann
2021-04-26 21:47 Thomas Deutschmann
2021-04-24 19:49 Thomas Deutschmann
2021-04-17 15:01 Thomas Deutschmann
2021-04-17 15:01 Thomas Deutschmann
2021-04-13 18:12 Thomas Deutschmann
2021-04-11 18:49 Thomas Deutschmann
2021-04-11 18:49 Thomas Deutschmann
2021-04-05 19:54 Thomas Deutschmann
2021-03-30  0:21 Thomas Deutschmann
2021-03-21 23:16 Thomas Deutschmann
2021-03-21 23:16 Thomas Deutschmann
2021-03-21 23:16 Thomas Deutschmann
2021-03-08 23:06 Thomas Deutschmann
2021-03-08  0:28 Thomas Deutschmann
2021-03-08  0:28 Thomas Deutschmann
2021-03-01 18:25 Thomas Deutschmann
2021-03-01 18:25 Thomas Deutschmann
2021-02-23 22:14 Thomas Deutschmann
2021-02-15 15:34 Thomas Deutschmann
2021-02-15 15:14 Thomas Deutschmann
2021-02-15 15:14 Thomas Deutschmann
2021-02-07  0:40 Thomas Deutschmann
2021-02-07  0:40 Thomas Deutschmann
2021-02-01 15:01 Thomas Deutschmann
2021-02-01 15:01 Thomas Deutschmann
2021-02-01 15:01 Thomas Deutschmann
2021-02-01 15:01 Thomas Deutschmann
2021-01-27 15:10 Thomas Deutschmann
2021-01-27 15:10 Thomas Deutschmann
2021-01-27 15:10 Thomas Deutschmann
2021-01-26  0:06 Sam James
2021-01-23 15:28 Lars Wendler
2021-01-22  0:33 Thomas Deutschmann
2021-01-22  0:33 Thomas Deutschmann
2021-01-22  0:33 Thomas Deutschmann
2021-01-06 14:07 Fabian Groffen
2020-12-27 17:42 Fabian Groffen
2020-12-20 20:08 Thomas Deutschmann
2020-12-20 20:08 Thomas Deutschmann
2020-12-20 20:08 Thomas Deutschmann
2020-12-06 16:48 Thomas Deutschmann
2020-12-06 16:48 Thomas Deutschmann
2020-12-06 16:48 Thomas Deutschmann
2020-11-30  1:53 Thomas Deutschmann
2020-11-30  1:53 Thomas Deutschmann
2020-11-30  1:53 Thomas Deutschmann
2020-11-30  1:53 Thomas Deutschmann
2020-11-22 21:40 Thomas Deutschmann
2020-11-22 16:24 Thomas Deutschmann
2020-11-06 17:54 Thomas Deutschmann
2020-11-06 17:54 Thomas Deutschmann
2020-11-01 23:41 Thomas Deutschmann
2020-10-18 15:11 Thomas Deutschmann
2020-10-18 15:11 Thomas Deutschmann
2020-10-16 21:20 Andreas K. Hüttel
2020-10-16 20:59 Andreas K. Hüttel
2020-10-11 18:59 Thomas Deutschmann
2020-10-04 20:38 Thomas Deutschmann
2020-10-04 20:38 Thomas Deutschmann
2020-09-30 19:42 Thomas Deutschmann
2020-08-23 20:34 Thomas Deutschmann
2020-08-23 20:34 Thomas Deutschmann
2020-08-19 19:35 Thomas Deutschmann
2020-08-11 20:54 Thomas Deutschmann
2020-08-10 20:39 Thomas Deutschmann
2020-08-10 20:34 Thomas Deutschmann
2020-07-12 13:17 Thomas Deutschmann
2020-07-12 13:17 Thomas Deutschmann
2020-07-05 19:07 Thomas Deutschmann
2020-07-05 19:07 Thomas Deutschmann
2020-07-05 19:07 Thomas Deutschmann
2020-06-28 21:30 Thomas Deutschmann
2020-06-28 21:30 Thomas Deutschmann
2020-06-28 21:30 Thomas Deutschmann
2020-06-14 23:30 Thomas Deutschmann
2020-06-14 23:30 Thomas Deutschmann
2020-06-06 23:18 Andreas K. Hüttel
2020-06-04 21:57 Thomas Deutschmann
2020-06-04 17:14 Mart Raudsepp
2020-06-02 13:29 Michał Górny
2020-06-02  9:38 Michał Górny
2020-06-02  9:38 Michał Górny
2020-06-02  8:16 Michał Górny
2020-06-01 20:09 Thomas Deutschmann
2020-05-15 15:00 Thomas Deutschmann
2020-05-15 15:00 Thomas Deutschmann
2020-05-09 16:11 Thomas Deutschmann
2020-04-30 22:51 Thomas Deutschmann
2020-04-30 22:51 Thomas Deutschmann
2020-04-28 19:23 Mart Raudsepp
2020-04-25 10:38 Mikle Kolyada
2020-04-24  9:51 Thomas Deutschmann
2020-04-24  9:51 Thomas Deutschmann
2020-04-24  9:51 Thomas Deutschmann
2020-04-23  8:10 Sergei Trofimovich
2020-04-23  8:10 Sergei Trofimovich
2020-04-22 22:43 Pacho Ramos
2020-04-22 22:43 Pacho Ramos
2020-04-20 13:29 Agostino Sarubbo
2020-04-20 13:26 Agostino Sarubbo
2020-04-19  8:38 Sergei Trofimovich
2020-04-19  8:38 Sergei Trofimovich
2020-04-04  1:12 Andreas Sturmlechner
2020-03-30 17:03 Thomas Deutschmann
2020-03-21 19:20 Pacho Ramos
2020-03-21 19:20 Pacho Ramos
2020-03-11 23:04 Thomas Deutschmann
2020-03-11 23:04 Thomas Deutschmann
2020-03-10 15:58 Thomas Deutschmann
2020-03-10 15:58 Thomas Deutschmann
2020-03-10 15:58 Thomas Deutschmann
2020-02-24 17:38 Thomas Deutschmann
2020-02-24 17:38 Thomas Deutschmann
2020-02-24 17:38 Thomas Deutschmann
2020-02-14 15:30 Thomas Deutschmann
2020-02-14 15:30 Thomas Deutschmann
2020-02-14 15:30 Thomas Deutschmann
2020-01-15 15:15 Thomas Deutschmann
2020-01-14 23:14 Thomas Deutschmann
2020-01-14 23:14 Thomas Deutschmann
2020-01-14 23:14 Thomas Deutschmann
2020-01-05 23:20 Thomas Deutschmann
2019-12-14 23:20 Thomas Deutschmann
2019-12-01 16:42 Thomas Deutschmann
2019-12-01 16:42 Thomas Deutschmann
2019-11-23 14:39 Thomas Deutschmann
2019-11-23 14:39 Thomas Deutschmann
2019-11-17 22:22 Thomas Deutschmann
2019-11-17 22:22 Thomas Deutschmann
2019-11-10 21:25 Thomas Deutschmann
2019-11-10 20:35 Michał Górny
2019-11-10 18:21 Thomas Deutschmann
2019-11-10 18:21 Thomas Deutschmann
2019-10-10 21:40 Thomas Deutschmann
2019-10-10 21:40 Thomas Deutschmann
2019-10-06  8:13 Thomas Deutschmann
2019-10-06  8:13 Thomas Deutschmann
2019-10-06  8:13 Thomas Deutschmann
2019-09-30  6:46 Michał Górny
2019-09-08 13:34 Thomas Deutschmann
2019-09-08 13:34 Thomas Deutschmann
2019-09-08 13:34 Thomas Deutschmann
2019-08-16 20:42 Thomas Deutschmann
2019-08-16 20:42 Thomas Deutschmann
2019-08-16 20:42 Thomas Deutschmann
2019-07-22 16:58 Thomas Deutschmann
2019-07-05 11:27 Jonas Stein
2019-06-29 14:47 Thomas Deutschmann
2019-06-29 14:47 Thomas Deutschmann
2019-06-24 21:57 Thomas Deutschmann
2019-06-18 12:55 Thomas Deutschmann
2019-06-18 12:55 Thomas Deutschmann
2019-06-10 19:50 Thomas Deutschmann
2019-05-24 13:15 Thomas Deutschmann
2019-05-24 13:15 Thomas Deutschmann
2019-05-24 13:15 Thomas Deutschmann
2019-05-14  0:13 Thomas Deutschmann
2019-04-24 22:27 Thomas Deutschmann
2019-04-24 22:27 Thomas Deutschmann
2019-04-24 22:27 Thomas Deutschmann
2019-04-16 15:50 Thomas Deutschmann
2019-04-14 14:37 Aaron Bauman
2019-04-01 20:39 Thomas Deutschmann
2019-04-01 20:39 Thomas Deutschmann
2019-04-01 20:39 Thomas Deutschmann
2019-03-13 23:06 Thomas Deutschmann
2019-03-04  0:39 Thomas Deutschmann
2019-03-04  0:39 Thomas Deutschmann
2019-03-04  0:39 Thomas Deutschmann
2019-02-20 21:02 Thomas Deutschmann
2019-02-20 21:02 Thomas Deutschmann
2019-02-20 21:02 Thomas Deutschmann
2019-02-17 15:54 Thomas Deutschmann
2019-02-04 10:26 Thomas Deutschmann
2019-01-31 18:12 Thomas Deutschmann
2019-01-06 19:50 Thomas Deutschmann
2019-01-06 19:50 Thomas Deutschmann
2018-12-22 19:22 Thomas Deutschmann
2018-12-17  0:34 Thomas Deutschmann
2018-12-17  0:34 Thomas Deutschmann
2018-12-11 13:44 Thomas Deutschmann
2018-12-11 13:44 Thomas Deutschmann
2018-12-10 23:12 Thomas Deutschmann
2018-12-10 21:46 James Le Cuirot
2018-10-31 13:45 Thomas Deutschmann
2018-10-31 13:45 Thomas Deutschmann
2018-10-28 20:33 Thomas Deutschmann
2018-10-28 20:33 Thomas Deutschmann
2018-10-19  8:51 Michał Górny
2018-09-30 21:26 Thomas Deutschmann
2018-09-30 20:44 Thomas Deutschmann
2018-09-30 20:44 Thomas Deutschmann
2018-09-30 20:44 Thomas Deutschmann
2018-09-09  0:16 Thomas Deutschmann
2018-09-09  0:16 Thomas Deutschmann
2018-09-09  0:16 Thomas Deutschmann
2018-09-08 18:40 Thomas Deutschmann
2018-09-08 18:40 Thomas Deutschmann
2018-09-01  1:32 Thomas Deutschmann
2018-08-23 11:05 Thomas Deutschmann
2018-08-22  0:41 Thomas Deutschmann
2018-08-22  0:41 Thomas Deutschmann
2018-08-21 14:01 Thomas Deutschmann
2018-08-04 23:26 Thomas Deutschmann
2018-07-29 10:35 Sergei Trofimovich
2018-07-29 10:35 Sergei Trofimovich
2018-07-25 19:18 Thomas Deutschmann
2018-07-22 16:18 Mikle Kolyada
2018-07-21  9:49 Tobias Klausmann
2018-07-21  9:47 Tobias Klausmann
2018-07-20 10:34 Thomas Deutschmann
2018-07-15  2:00 Thomas Deutschmann
2018-07-14 20:16 Sergei Trofimovich
2018-07-14 20:16 Sergei Trofimovich
2018-07-14 18:22 Sergei Trofimovich
2018-07-14 18:22 Sergei Trofimovich
2018-07-10 19:11 Sergei Trofimovich
2018-07-10 19:11 Sergei Trofimovich
2018-07-09 21:17 Mikle Kolyada
2018-07-09 21:12 Thomas Deutschmann
2018-07-08 22:39 Thomas Deutschmann
2018-07-08 22:39 Thomas Deutschmann
2018-07-08 22:39 Thomas Deutschmann
2018-07-03 10:36 Lars Wendler
2018-07-03 10:20 Lars Wendler
2018-07-03 10:20 Lars Wendler
2018-06-17 20:58 Thomas Deutschmann
2018-05-28 14:12 Thomas Deutschmann
2018-05-08 14:27 Thomas Deutschmann
2018-05-08 14:27 Thomas Deutschmann
2018-04-28 14:35 Mikle Kolyada
2018-04-27  6:13 Sergei Trofimovich
2018-04-27  6:13 Sergei Trofimovich
2018-04-25  6:08 Sergei Trofimovich
2018-04-25  6:08 Sergei Trofimovich
2018-04-23 14:19 Aaron Bauman
2018-04-23  2:20 Matt Turner
2018-04-23  2:20 Matt Turner
2018-04-23  2:20 Matt Turner
2018-04-23  2:20 Matt Turner
2018-04-23  1:48 Matt Turner
2018-04-23  1:48 Matt Turner
2018-04-22 23:30 Matt Turner
2018-04-22 23:30 Matt Turner
2018-04-21 19:16 Thomas Deutschmann
2018-04-21 19:07 Thomas Deutschmann
2018-01-20 18:47 Tobias Klausmann
2018-01-20 16:49 Tobias Klausmann
2018-01-09  7:51 Sergei Trofimovich
2018-01-09  7:51 Sergei Trofimovich
2018-01-07 20:53 Markus Meier
2018-01-07 20:53 Markus Meier
2018-01-07 17:54 Lars Wendler
2018-01-07 17:54 Lars Wendler
2018-01-06 22:30 Sergei Trofimovich
2018-01-06 22:30 Sergei Trofimovich
2018-01-06 21:33 Sergei Trofimovich
2018-01-06 17:53 Agostino Sarubbo
2018-01-06 11:41 Sergei Trofimovich
2018-01-06 11:41 Sergei Trofimovich
2018-01-01 19:53 Thomas Deutschmann
2017-12-29  0:24 Sergei Trofimovich
2017-12-29  0:24 Sergei Trofimovich
2017-12-26 20:19 Sergei Trofimovich
2017-12-26 20:19 Sergei Trofimovich
2017-12-21 19:28 Markus Meier
2017-12-21 19:28 Markus Meier
2017-12-15 23:21 Sergei Trofimovich
2017-12-15 23:21 Sergei Trofimovich
2017-12-14 20:27 Agostino Sarubbo
2017-12-13  7:40 Sergei Trofimovich
2017-12-12 18:41 Markus Meier
2017-12-12 18:41 Markus Meier
2017-12-12 16:35 Thomas Deutschmann
2017-12-07 23:39 Thomas Deutschmann
2017-12-03 11:18 Sergei Trofimovich
2017-12-03 11:18 Sergei Trofimovich
2017-11-30 20:20 Tobias Klausmann
2017-11-30 20:19 Tobias Klausmann
2017-11-29 18:52 Thomas Deutschmann
2017-11-28 23:38 Thomas Deutschmann
2017-11-19 15:14 Markus Meier
2017-11-08 12:51 Tobias Klausmann
2017-10-30  9:05 Sergei Trofimovich
2017-10-29 21:08 Thomas Deutschmann
2017-10-29 11:39 Manuel Rüger
2017-10-29 11:20 Sergei Trofimovich
2017-10-28 15:15 Thomas Deutschmann
2017-10-28 15:15 Thomas Deutschmann
2017-10-06  6:35 Lars Wendler
2017-10-06  6:35 Lars Wendler
2017-09-09 17:16 Sergei Trofimovich
2017-09-08 22:49 Sergei Trofimovich
2017-08-31 15:18 Matt Turner
2017-08-21 14:01 Lars Wendler
2017-08-21 14:01 Lars Wendler
2017-08-18 21:02 Thomas Deutschmann
2017-08-04  7:53 Lars Wendler
2017-08-04  7:53 Lars Wendler
2017-07-31 11:36 Tobias Klausmann
2017-07-25 18:52 Markus Meier
2017-07-21 21:03 Sergei Trofimovich
2017-07-17 13:21 Lars Wendler
2017-07-17 13:21 Lars Wendler
2017-07-15 23:53 Thomas Deutschmann
2017-06-24 10:37 Justin Lecher
2017-06-18  9:51 Alexis Ballier
2017-05-27 13:23 Tobias Klausmann
2017-05-26 18:29 Markus Meier
2017-05-26 14:59 Agostino Sarubbo
2017-05-26 14:05 Agostino Sarubbo
2017-05-24 13:46 Agostino Sarubbo
2017-05-24  6:51 Agostino Sarubbo
2017-05-23  8:03 Lars Wendler
2017-05-22 21:46 Lars Wendler
2017-03-27  9:01 Lars Wendler
2017-03-27  9:01 Lars Wendler
2017-02-22 15:47 Lars Wendler
2017-02-22 15:47 Lars Wendler
2017-02-17 10:19 Lars Wendler
2017-02-17 10:18 Lars Wendler
2017-02-05 17:05 Markus Meier
2017-01-29  6:39 Lars Wendler
2017-01-29  6:39 Lars Wendler
2017-01-24 11:46 Agostino Sarubbo
2017-01-23 16:27 Agostino Sarubbo
2017-01-22 16:58 Jeroen Roovers
2017-01-22 16:27 Agostino Sarubbo
2017-01-21 17:27 Agostino Sarubbo
2017-01-21 17:16 Agostino Sarubbo
2017-01-21 11:37 Tobias Klausmann
2017-01-21  1:53 Lars Wendler
2017-01-21  1:53 Lars Wendler
2017-01-12  9:30 Jeroen Roovers
2017-01-11  3:14 Lars Wendler
2016-12-19  8:14 Lars Wendler
2016-12-19  8:14 Lars Wendler
2016-12-02 14:21 Tobias Klausmann
2016-12-01 12:53 Agostino Sarubbo
2016-12-01 12:50 Agostino Sarubbo
2016-11-30 19:39 Markus Meier
2016-11-28  9:38 Agostino Sarubbo
2016-11-28  9:35 Agostino Sarubbo
2016-11-27 11:40 Agostino Sarubbo
2016-11-26 16:41 Lars Wendler
2016-11-26 16:41 Lars Wendler
2016-11-20 13:45 Agostino Sarubbo
2016-11-16 21:30 Lars Wendler
2016-11-16 21:30 Lars Wendler
2016-11-09  8:58 Lars Wendler
2016-10-31 20:31 Lars Wendler
2016-10-31 20:31 Lars Wendler
2016-10-24 18:07 Markus Meier
2016-10-14  5:43 Jeroen Roovers
2016-10-12 10:09 Jeroen Roovers
2016-10-11 15:55 Tobias Klausmann
2016-10-11 15:51 Agostino Sarubbo
2016-10-11  7:07 Lars Wendler
2016-10-11  7:07 Lars Wendler
2016-10-10 11:32 Lars Wendler
2016-10-07 11:06 Lars Wendler
2016-10-07 11:06 Lars Wendler
2016-09-29 13:14 Agostino Sarubbo
2016-09-29  9:41 Agostino Sarubbo
2016-09-27 14:19 Jeroen Roovers
2016-09-27  8:24 Tobias Klausmann
2016-09-26 18:58 Agostino Sarubbo
2016-09-26 18:56 Agostino Sarubbo
2016-09-26 12:37 Lars Wendler
2016-09-26 12:37 Lars Wendler
2016-09-12  6:37 Lars Wendler
2016-08-07 22:31 Lars Wendler
2016-07-10  8:56 Markus Meier
2016-07-08 12:02 Agostino Sarubbo
2016-07-08 10:02 Agostino Sarubbo
2016-07-08  7:53 Agostino Sarubbo
2016-06-11 13:19 Markus Meier
2016-06-07  9:18 Jeroen Roovers
2016-06-06 11:17 Tobias Klausmann
2016-06-04  8:02 Lars Wendler
2016-06-03  4:41 Jeroen Roovers
2016-06-02 13:06 Agostino Sarubbo
2016-06-02 13:05 Agostino Sarubbo
2016-06-02  6:18 Lars Wendler
2016-06-02  6:18 Lars Wendler
2016-05-31  4:20 Lars Wendler
2016-05-25 11:25 Agostino Sarubbo
2016-05-25  9:48 Agostino Sarubbo
2016-05-22 15:32 Lars Wendler
2016-05-21  8:00 Markus Meier
2016-05-20 19:49 Tobias Klausmann
2016-05-20  9:25 Jeroen Roovers
2016-05-19  8:24 Lars Wendler
2016-05-15 21:39 Lars Wendler
2016-05-15 21:39 Lars Wendler
2016-05-10 21:57 Lars Wendler
2016-05-09  9:03 Lars Wendler
2016-05-05  8:51 Lars Wendler
2016-05-05  8:51 Lars Wendler
2016-05-04 14:12 Lars Wendler
2016-05-02  6:04 Lars Wendler
2016-05-02  6:04 Lars Wendler
2015-12-21 10:14 Lars Wendler
2015-08-27  7:32 Tim Harder

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=1695520243.643f04360ac6f258d37d6fb5e0c71868a4e0f1c5.sam@gentoo \
    --to=sam@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