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 31E37158451 for ; Sun, 14 Jan 2024 11:00:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BDAFE2A81; Sun, 14 Jan 2024 11:00:44 +0000 (UTC) Received: from mail.levelnine.at (mail.levelnine.at [148.251.88.187]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 01F66E29FA for ; Sun, 14 Jan 2024 11:00:43 +0000 (UTC) Received: from mail.levelnine.at (localhost [IPv6:::1]) by mail.levelnine.at (Postfix) with ESMTPA id 797BC64C1F6D for ; Sun, 14 Jan 2024 12:00:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=levelnine.at; s=mail; t=1705230042; bh=TxbJE244PGNWXsP7oKiZ2h4kuH1BJvSuFdGZ34CLd/g=; h=Date:From:To:Subject; b=r1GBB6efBCzsraWthrEPFmudcFtVWnK3EUn6EZpGQA4UeMWfOghsRGQF5d0j8X1C1 DYKBKe+rlSM8xXXUYHrs/hV89MgI3j2V3wNjldxE7EiYBZObLDU8melhwYjlkgBQv/ b0E1yT02wdnFbVeu1VeC1dJu1OZQocod25fC+cAQ= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Date: Sun, 14 Jan 2024 12:00:42 +0100 From: Michael Mair-Keimberger To: gentoo-dev@lists.gentoo.org Subject: [gentoo-dev] PATCH freedict: use HTTPS for HOMEPAGE and SRC_URI Message-ID: <21425d8fad42c1f31ab5bc6bb61737d7@levelnine.at> X-Sender: mmk@levelnine.at Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Archives-Salt: 1bfa914e-67a5-4bf0-a6b1-de5429a51473 X-Archives-Hash: 0e7849bc4c55ae98fe9301e6b8d29c73 Hi, This is a simple fix for freedict.eclass to use https instead of http. I've made a PR at github: https://github.com/gentoo/gentoo/pull/34785 The changes looks as following: diff --git a/eclass/freedict.eclass b/eclass/freedict.eclass index 7a49a5f19778..b649afc7c1af 100644 --- a/eclass/freedict.eclass +++ b/eclass/freedict.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: freedict.eclass @@ -28,8 +28,8 @@ FREEDICT_P=${PN/freedict-/} [[ ${FORLANG} ]] && die "FORLANG is banned, set DESCRIPTION instead" [[ ${TOLANG} ]] && die "TOLANG is banned, set DESCRIPTION instead" -HOMEPAGE="http://freedict.sourceforge.net/en/" -SRC_URI="http://freedict.sourceforge.net/download/linux/${FREEDICT_P}.tar.gz" +HOMEPAGE="https://freedict.sourceforge.net/en/" +SRC_URI="https://freedict.sourceforge.net/download/linux/${FREEDICT_P}.tar.gz" LICENSE="GPL-2+" SLOT="0" Regards, Michael