From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4421F15815E for ; Sun, 11 Feb 2024 10:31:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D77B7E2A5A; Sun, 11 Feb 2024 10:31:53 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BA6F9E2A5A for ; Sun, 11 Feb 2024 10:31:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D1F5C343129 for ; Sun, 11 Feb 2024 10:31:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4250F13DB for ; Sun, 11 Feb 2024 10:31:50 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1703846066.fd54e74f1014536a986f02044ab19705db1af0c9.flow@gentoo> Subject: [gentoo-commits] proj/tex:main commit in: / X-VCS-Repository: proj/tex X-VCS-Files: diff-tex X-VCS-Directories: / X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: fd54e74f1014536a986f02044ab19705db1af0c9 X-VCS-Branch: main Date: Sun, 11 Feb 2024 10:31:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c9eaf65e-69d1-4d89-a2b3-5774b6ab8dac X-Archives-Hash: 37a82d036169d6bca5e38adb514c5e55 commit: fd54e74f1014536a986f02044ab19705db1af0c9 Author: Florian Schmaus gentoo org> AuthorDate: Fri Dec 29 10:34:26 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Fri Dec 29 10:34:26 2023 +0000 URL: https://gitweb.gentoo.org/proj/tex.git/commit/?id=fd54e74f add diff-tex script Signed-off-by: Florian Schmaus gentoo.org> diff-tex | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/diff-tex b/diff-tex new file mode 100755 index 0000000..560d93b --- /dev/null +++ b/diff-tex @@ -0,0 +1,21 @@ +#!/usr/bin/env bash +set -eu + +GENTOO_REPO_DIR=$(portageq get_repo_path / gentoo) +TEX_REPO_DIR=$(portageq get_repo_path / tex-overlay) + +case "${1}" in + core) + diff -u \ + "${GENTOO_REPO_DIR}/app-text/texlive-core/texlive-core-2021-r7.ebuild" \ + "${TEX_REPO_DIR}/app-text/texlive-core/texlive-core-2023.ebuild" + ;; + eclass) + diff -u \ + "${GENTOO_REPO_DIR}/eclass/texlive-common.eclass" \ + "${TEX_REPO_DIR}/eclass/texlive-common.eclass" + diff -u \ + "${GENTOO_REPO_DIR}/eclass/texlive-module.eclass" \ + "${TEX_REPO_DIR}/eclass/texlive-module.eclass" + ;; +esac