Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 78F97780CF1 for <~alpine/aports@lists.alpinelinux.org>; Mon, 3 Jan 2022 10:11:32 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cmpwn.com; s=key1; t=1641204266; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=7QvI5ANASInVUh2g+pyw2T4RK9B8CEJIvV2gvHAV6Zs=; b=VUgkG9MvH+/QACu9iafNDxp+xPdyYHSuo9Lro8LOFKrfSaxK+GHRE2HoNI0+AcB7K22/v5 SSLRCasYwLNrG70bo+0ArxJljnxXMq4A+sXIbPgkN4E1JYLMSw9e6szbf5f7z+MER8RIm/ DJALmAh1ClILiVZ8sxuyt8RW7ZSF67hVP/wvEMN9ZsfGZFHW5JZz/wB75+0EeVduWetLpI 2TLuRB8Bii6etgDHRgidWMI8MB2S2q/HaJtGEwRTodfrITEmqQGkBa3sVhWGqA8kj/WZFJ londknvyuFrp5zvSUjQ2Oj0WS1+utUonEnCeoDH7yXOdkU0wuB3uO4aDhZcxJA== From: Drew DeVault To: ~alpine/aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [PATCH] community/py3-pyphen: install dictionaries Date: Mon, 3 Jan 2022 11:04:24 +0100 Message-Id: <20220103100424.11780-1-sir@cmpwn.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: cmpwn.com Something fell out during the pyproject.toml farce. --- community/py3-pyphen/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/py3-pyphen/APKBUILD b/community/py3-pyphen/APKBUILD index 5229db4800..588eebda63 100644 --- a/community/py3-pyphen/APKBUILD +++ b/community/py3-pyphen/APKBUILD @@ -3,7 +3,7 @@ pkgname=py3-pyphen _pkgname=Pyphen pkgver=0.12.0 -pkgrel=0 +pkgrel=1 pkgdesc="python-based dictionary hyphenator library" url="https://www.pyphen.org" arch="noarch" @@ -27,6 +27,7 @@ check() { package() { python3 -m pyproject2setuppy.main install --prefix=/usr --root="$pkgdir" + cp -R pyphen/dictionaries "$pkgdir"/usr/lib/python3.*/site-packages/pyphen/ } sha512sums=" -- 2.34.1