diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-09-16 09:05:06 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-09-16 09:08:08 +0200 |
commit | 8a9ad27eef186e6c526831e0181a57e190e576ec (patch) | |
tree | 47edcf263f302fc4ebd0ecc2bc1b3d72849983a3 /app-emacs | |
parent | dev-lang/python: Stabilize 3.8.13_p8 hppa, #868555 (diff) | |
download | gentoo-8a9ad27eef186e6c526831e0181a57e190e576ec.tar.gz gentoo-8a9ad27eef186e6c526831e0181a57e190e576ec.tar.bz2 gentoo-8a9ad27eef186e6c526831e0181a57e190e576ec.zip |
app-emacs/filladapt: Don't use an uncompressed distfile
ELPA doesn't have a compressed version of the file, so provide it from
my devspace.
Closes: https://bugs.gentoo.org/870301
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/filladapt/Manifest | 2 | ||||
-rw-r--r-- | app-emacs/filladapt/filladapt-2.12.2.ebuild | 10 |
2 files changed, 4 insertions, 8 deletions
diff --git a/app-emacs/filladapt/Manifest b/app-emacs/filladapt/Manifest index 5ef648508983..e17d5015d05e 100644 --- a/app-emacs/filladapt/Manifest +++ b/app-emacs/filladapt/Manifest @@ -1,2 +1,2 @@ -DIST filladapt-2.12.2.el 30238 BLAKE2B 9007ce3e8667d010cc5c04ec4d1f078995dab569bea6f1d35a15564ad5bddce1649a149fef396660b577cb3df016c86f3d570f0708bf54a6588baecc50c3c2c0 SHA512 485d008addfba33e56ccd751b0af304ae55dd6d261ad10f6d7876c16c5299c4964c16bde8bee37b87351da6ef80ef785641803a12a4ec02a80f72ee289720f38 +DIST filladapt-2.12.2.el.gz 8535 BLAKE2B 31af33094524bbc1533edad51e2b9b98730af5580abd04d3ff937260a59ac9c5c414b18a08256a4ad0806d4130cc98aaf7f1c4a45ca0f65fd6da24a3602a4387 SHA512 b2ffb9e4c1b0f275ed03dbac8f53f4c07e68c0620d98b14456512ac1e6c1b6a096dd1f350886f07e215101697eda38b0a2dee98a7f61a0fbe136b6f358ac3932 DIST filladapt-2.12.el.gz 9267 BLAKE2B 81510bd51808f7aaa4874a1127a74bfc7d35c5f1dca0100694853025fd1bc884d75c2023f0e373eb1fe69cc5d423a48d884b4ff5cfdfc82b161f6a404965b6bd SHA512 31bf3dca48129cc25653827678215eb4c62ff777cfbdf0d71142c0cc3111a078b1af316e121b27be2a47c317cfa440ac00e7fbc2bdf3e8ac7d54748297249328 diff --git a/app-emacs/filladapt/filladapt-2.12.2.ebuild b/app-emacs/filladapt/filladapt-2.12.2.ebuild index e2880aa486fe..3554b3861367 100644 --- a/app-emacs/filladapt/filladapt-2.12.2.ebuild +++ b/app-emacs/filladapt/filladapt-2.12.2.ebuild @@ -8,9 +8,9 @@ NEED_EMACS=24.4 inherit elisp readme.gentoo-r1 DESCRIPTION="Filladapt enhances the behavior of Emacs' fill functions" -HOMEPAGE="http://www.wonderworks.com/ https://elpa.gnu.org/packages/filladapt.html" -SRC_URI="https://elpa.gnu.org/packages/${P}.el" -S="${WORKDIR}" +HOMEPAGE="http://www.wonderworks.com/ + https://elpa.gnu.org/packages/filladapt.html" +SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.el.gz" LICENSE="GPL-3+" SLOT="0" @@ -21,7 +21,3 @@ DOC_CONTENTS="Filladapt is not enabled as a site default. Add the following lines to your ~/.emacs file to enable adaptive fill by default: \n\t(require 'filladapt) \n\t(setq-default filladapt-mode t)" - -src_unpack() { - mv "${DISTDIR}"/${P}.el "${WORKDIR}"/${PN}.el || die -} |