From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/cabextract/
Date: Tue, 6 Nov 2018 02:12:39 +0000 (UTC) [thread overview]
Message-ID: <1541470348.052405702013032edf4686bad9a541a737e681cc.whissi@gentoo> (raw)
commit: 052405702013032edf4686bad9a541a737e681cc
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 6 02:12:11 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Tue Nov 6 02:12:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05240570
app-arch/cabextract: bump to v1.9
Bug: https://bugs.gentoo.org/669280
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
| 1 +
| 66 +++++++++++++++++++++++++++++++
2 files changed, 67 insertions(+)
--git a/app-arch/cabextract/Manifest b/app-arch/cabextract/Manifest
index 58b2879374b..1595cdec74e 100644
--- a/app-arch/cabextract/Manifest
+++ b/app-arch/cabextract/Manifest
@@ -1,3 +1,4 @@
DIST cabextract-1.6.tar.gz 241731 BLAKE2B 49a94b1b0d8a6c9f61cd51280a035e3fedb8d7a2d097b132bc56114c6003a558647a7f8c47b8d08fcac1999e68bea5303adb2b03c8e6dd010995e8b0c6dcd442 SHA512 d1c71c0292e3d73d8edbff5f5230b3127c63028f5aba1d0cad968bc945202fb9c0773327affce3d28466068377f029c80735adbabe0929d29b2204dea73738f8
DIST cabextract-1.7.tar.gz 293760 BLAKE2B d5ab4783c944d5d8b1d9ed8a2fbbfd60aeeab9f12b836032f982efc5721055b2caa521147246b3b5274d9456b1dbd2d513455cfd57750cf6d7fdc18f109f96c9 SHA512 63789e485d57299f2a0a60dc6d9a94e83639eb59b73789eff52977d3d3bd37a1c00713c86a4c6289e35541d0b7240ea0545ba84013713c070b4324ae1f2865ce
DIST cabextract-1.8.tar.gz 289256 BLAKE2B ba9fea0cd12859b0de97b13362eaf276066650eb7151e0115af7ed2586cfa7497f72be2f9287d3ccb5ce5256ec26ca69e729df5bb0a327bb9f32ded25391460c SHA512 f8d676d6b738b0b13ac1cac7716c2fb46db423ef30b05ee64f00fcb19596131fbd34341c8b417af3de04896e9b6a8abf0d5976ee4bf87d016806a71317246d7a
+DIST cabextract-1.9.tar.gz 466334 BLAKE2B 1a82bddca826ee35ed13e1c0b50deca3ae1b7e31d7f427f54b5d6cf9651a727b7cbf8049c1a4326237725e007baecb4356721489611bb5e015bd7460e2530758 SHA512 d144c1df9ed8e8c339bcadb3d1be2eb2576bb066e3f75a3480df0d5e81407a633554e4674b3bb43716c0cf33a0f2327e6f798cd6d7825bceefa0ad839fcc3f64
--git a/app-arch/cabextract/cabextract-1.9.ebuild b/app-arch/cabextract/cabextract-1.9.ebuild
new file mode 100644
index 00000000000..49070540a76
--- /dev/null
+++ b/app-arch/cabextract/cabextract-1.9.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit autotools toolchain-funcs
+
+if [[ ${PV} == "9999" ]] ; then
+ EGIT_REPO_URI="https://github.com/kyz/libmspack.git"
+ inherit git-r3
+ MY_P="${PN}-9999"
+
+ LIBMSPACK_DEPEND="~dev-libs/libmspack-9999:="
+else
+ KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+ MY_PV="${PV/_alpha/alpha}"
+ MY_P="${PN}-${MY_PV}"
+ SRC_URI="https://www.cabextract.org.uk/${P}.tar.gz"
+
+ LIBMSPACK_DEPEND=">=dev-libs/libmspack-0.8_alpha:="
+fi
+
+DESCRIPTION="Extracts files from Microsoft cabinet archive files"
+HOMEPAGE="https://www.cabextract.org.uk/"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="extras"
+
+DEPEND="${LIBMSPACK_DEPEND}
+ virtual/pkgconfig"
+RDEPEND="extras? ( dev-lang/perl )"
+
+src_prepare() {
+ if [[ ${PV} == "9999" ]] ; then
+ # Re-create file layout from release tarball
+ pushd "${WORKDIR}" &>/dev/null || die
+ cp -aL "${S}"/${PN} "${WORKDIR}"/${PN}-source || die
+ rm -r "${S}" || die
+ mv "${WORKDIR}"/${PN}-source "${S}" || die
+ popd &>/dev/null || die
+ fi
+
+ default
+
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --with-external-libmspack=yes
+}
+
+src_compile() {
+ emake AR="$(tc-getAR)"
+}
+
+src_install() {
+ local DOCS=( AUTHORS ChangeLog NEWS README TODO doc/magic )
+ default
+ docinto html
+ dodoc doc/wince_cab_format.html
+ if use extras; then
+ dobin src/{wince_info,wince_rename,cabinfo,cabsplit}
+ fi
+}
next reply other threads:[~2018-11-06 2:12 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-06 2:12 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-12-01 0:11 [gentoo-commits] repo/gentoo:master commit in: app-arch/cabextract/ Matt Turner
2023-04-28 0:05 Sam James
2023-04-27 23:29 Sam James
2023-04-27 23:29 Sam James
2023-04-27 23:29 Sam James
2023-04-27 23:29 Sam James
2023-04-27 23:29 Sam James
2023-03-04 3:16 Matt Turner
2022-09-07 12:32 Joonas Niilola
2022-07-28 13:59 Sam James
2022-05-14 10:30 WANG Xuerui
2022-05-05 10:44 WANG Xuerui
2022-05-05 10:44 WANG Xuerui
2022-01-01 10:05 James Le Cuirot
2021-06-25 1:33 Yixun Lan
2021-01-06 12:52 Fabian Groffen
2020-09-19 22:29 Sam James
2020-09-15 17:22 Thomas Deutschmann
2020-09-13 8:44 Sergei Trofimovich
2020-09-13 8:38 Sergei Trofimovich
2020-09-12 8:01 Sergei Trofimovich
2020-09-09 21:59 Sergei Trofimovich
2020-09-09 21:20 Sam James
2020-09-09 20:59 Sam James
2020-06-01 0:07 Matt Turner
2020-05-01 8:40 Mart Raudsepp
2020-04-23 7:16 Sergei Trofimovich
2019-04-14 14:37 Aaron Bauman
2019-03-04 10:06 Lars Wendler
2019-03-04 10:06 Lars Wendler
2019-01-30 13:20 Tobias Klausmann
2018-12-26 20:00 Sergei Trofimovich
2018-12-26 17:29 Matt Turner
2018-12-26 13:55 Sergei Trofimovich
2018-12-07 12:47 Mikle Kolyada
2018-11-23 16:18 Sergei Trofimovich
2018-11-22 15:28 Thomas Deutschmann
2018-11-18 10:38 Sergei Trofimovich
2018-11-07 23:44 Thomas Deutschmann
2018-11-07 9:43 Agostino Sarubbo
2018-11-04 1:20 Thomas Deutschmann
2018-10-21 17:51 Lars Wendler
2018-07-26 11:55 Lars Wendler
2018-03-02 18:09 Michał Górny
2015-09-02 16:30 Justin Lecher
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=1541470348.052405702013032edf4686bad9a541a737e681cc.whissi@gentoo \
--to=whissi@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