* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2018-01-16 6:55 Slawek Lis
0 siblings, 0 replies; 24+ messages in thread
From: Slawek Lis @ 2018-01-16 6:55 UTC (permalink / raw
To: gentoo-commits
commit: 1e410659486a0d0d62f94a70c36ffd2935060196
Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 16 06:54:03 2018 +0000
Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
CommitDate: Tue Jan 16 06:54:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e410659
app-arch/wimlib: added new package
Imported from overlay: 4nykey
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-arch/wimlib/Manifest | 1 +
app-arch/wimlib/metadata.xml | 21 ++++++++++++
app-arch/wimlib/wimlib-1.12.0.ebuild | 62 ++++++++++++++++++++++++++++++++++++
3 files changed, 84 insertions(+)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
new file mode 100644
index 00000000000..758e0402156
--- /dev/null
+++ b/app-arch/wimlib/Manifest
@@ -0,0 +1 @@
+DIST wimlib-1.12.0.tar.gz 1014508 BLAKE2B d12f4e0b458fe756b74c67f2f643256c44021e0f0c3e2a3a70eb87647c3c6cabd93413917bf8a8c6ab6820860c407f4454454719227f5cbf1a9a81a7bedc1a6e SHA512 0343b37550366f07fd6a6689f4445f390187beddde677f4d6d831c07936d03b613ae95f612ec7a75e978a5e678f33ab766d0f3b3d942886df56e4ef77d4b07b9
diff --git a/app-arch/wimlib/metadata.xml b/app-arch/wimlib/metadata.xml
new file mode 100644
index 00000000000..6f9a4af2ec3
--- /dev/null
+++ b/app-arch/wimlib/metadata.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>slis@gentoo.org</email>
+ </maintainer>
+ <use>
+ <flag name="fuse">
+ Use fuse libraries
+ </flag>
+ <flag name="ntfs">
+ Use libntfs-3g library from sys-fs/ntfs3g
+ </flag>
+ <flag name="openssl">
+ Use the SHA-1 message digest from libcrypto instead of compilling another implementation
+ </flag>
+ <flag name="yasm">
+ Use yasm assembler instead of nasm
+ </flag>
+ </use>
+</pkgmetadata>
diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild b/app-arch/wimlib/wimlib-1.12.0.ebuild
new file mode 100644
index 00000000000..591962cc886
--- /dev/null
+++ b/app-arch/wimlib/wimlib-1.12.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools pax-utils
+if [[ -z ${PV%%*9999} ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="git://wimlib.net/${PN}"
+else
+ inherit vcs-snapshot
+ MY_PV="${PV/_/-}"
+ MY_PV="${MY_PV^^}"
+ SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
+ RESTRICT="primaryuri"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="The open source Windows Imaging (WIM) library"
+HOMEPAGE="https://wimlib.net/"
+
+LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
+SLOT="0"
+IUSE="cpu_flags_x86_ssse3 fuse ntfs openssl threads yasm"
+REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
+
+RDEPEND="
+ dev-libs/libxml2:2
+ ntfs? ( sys-fs/ntfs3g )
+ fuse? ( sys-fs/fuse:0 )
+ openssl? ( dev-libs/openssl:0 )
+"
+DEPEND="
+ ${RDEPEND}
+ cpu_flags_x86_ssse3? (
+ yasm? ( dev-lang/yasm )
+ !yasm? ( dev-lang/nasm )
+ )
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with ntfs ntfs-3g)
+ $(use_with fuse)
+ $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
+ $(use_with openssl libcrypto)
+ $(use_enable threads multithreaded-compression)
+ )
+ has test ${FEATURES} && myeconfargs+=( --enable-test-support )
+ ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
+ econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+ emake
+ pax-mark m "${S}"/.libs/wimlib-imagex
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2018-01-17 9:20 Slawek Lis
0 siblings, 0 replies; 24+ messages in thread
From: Slawek Lis @ 2018-01-17 9:20 UTC (permalink / raw
To: gentoo-commits
commit: 3d59d2f1778312d3bc481cb0326746688ca75507
Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 17 09:20:10 2018 +0000
Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
CommitDate: Wed Jan 17 09:20:23 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d59d2f1
app-arch/wimlib: added iso useflag
In order to correctly use an ``--iso'' argument, mkisofs is required.
This is done by adding new use flag and dependency
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-arch/wimlib/metadata.xml | 3 +++
app-arch/wimlib/wimlib-1.12.0.ebuild | 3 ++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/app-arch/wimlib/metadata.xml b/app-arch/wimlib/metadata.xml
index 6f9a4af2ec3..0800647b3db 100644
--- a/app-arch/wimlib/metadata.xml
+++ b/app-arch/wimlib/metadata.xml
@@ -8,6 +8,9 @@
<flag name="fuse">
Use fuse libraries
</flag>
+ <flag name="iso">
+ Install app-cdr/cdrtools in order to prepare iso images
+ </flag>
<flag name="ntfs">
Use libntfs-3g library from sys-fs/ntfs3g
</flag>
diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild b/app-arch/wimlib/wimlib-1.12.0.ebuild
index 591962cc886..c6ce69eb2a1 100644
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.12.0.ebuild
@@ -21,7 +21,7 @@ HOMEPAGE="https://wimlib.net/"
LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse ntfs openssl threads yasm"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl threads yasm"
REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
RDEPEND="
@@ -29,6 +29,7 @@ RDEPEND="
ntfs? ( sys-fs/ntfs3g )
fuse? ( sys-fs/fuse:0 )
openssl? ( dev-libs/openssl:0 )
+ iso? ( app-cdr/cdrtools )
"
DEPEND="
${RDEPEND}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2018-01-17 9:50 Slawek Lis
0 siblings, 0 replies; 24+ messages in thread
From: Slawek Lis @ 2018-01-17 9:50 UTC (permalink / raw
To: gentoo-commits
commit: d99b01dfa0cbeee74cdfef1a783282e4f93bafb5
Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 17 09:49:50 2018 +0000
Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
CommitDate: Wed Jan 17 09:50:24 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99b01df
app-arch/wimlib: added dependency: app-cdr/cdrtools
This is needed for building from WAIK images
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-arch/wimlib/wimlib-1.12.0.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild b/app-arch/wimlib/wimlib-1.12.0.ebuild
index c6ce69eb2a1..efc6d34190b 100644
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.12.0.ebuild
@@ -29,7 +29,10 @@ RDEPEND="
ntfs? ( sys-fs/ntfs3g )
fuse? ( sys-fs/fuse:0 )
openssl? ( dev-libs/openssl:0 )
- iso? ( app-cdr/cdrtools )
+ iso? (
+ app-arch/cabextract
+ app-cdr/cdrtools
+ )
"
DEPEND="
${RDEPEND}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2019-01-01 18:47 Slawek Lis
0 siblings, 0 replies; 24+ messages in thread
From: Slawek Lis @ 2019-01-01 18:47 UTC (permalink / raw
To: gentoo-commits
commit: 4e7bd64df49223405cb0b477530ee4bd8d0f4b53
Author: Slawomir Lis <slis <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 1 18:45:28 2019 +0000
Commit: Slawek Lis <slis <AT> gentoo <DOT> org>
CommitDate: Tue Jan 1 18:45:28 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e7bd64d
app-arch/wimlib: version bump to 1.13.0
closes: https://bugs.gentoo.org/674262
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Slawek Lis <slis <AT> gentoo.org>
app-arch/wimlib/Manifest | 1 +
app-arch/wimlib/wimlib-1.13.0.ebuild | 68 ++++++++++++++++++++++++++++++++++++
2 files changed, 69 insertions(+)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index 758e0402156..01df841c87a 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1 +1,2 @@
DIST wimlib-1.12.0.tar.gz 1014508 BLAKE2B d12f4e0b458fe756b74c67f2f643256c44021e0f0c3e2a3a70eb87647c3c6cabd93413917bf8a8c6ab6820860c407f4454454719227f5cbf1a9a81a7bedc1a6e SHA512 0343b37550366f07fd6a6689f4445f390187beddde677f4d6d831c07936d03b613ae95f612ec7a75e978a5e678f33ab766d0f3b3d942886df56e4ef77d4b07b9
+DIST wimlib-1.13.0.tar.gz 1035146 BLAKE2B 305d4bd4a0299c99b537c2bc59c674740239d3fe7c240038f4846849f36046ef587b04643d5a482c876668bf8f9a94a7b45a5e4f12c6d235a579a08c3879acff SHA512 a7ec729dda07b3884a851533a3c9e9db3061d9f6273ec318e40ece3687f4671f66989c07c080fa9cdcf5f01318c5eba7256b58f15f711b3ff14f4eb61c2114cb
diff --git a/app-arch/wimlib/wimlib-1.13.0.ebuild b/app-arch/wimlib/wimlib-1.13.0.ebuild
new file mode 100644
index 00000000000..9db9ef57d01
--- /dev/null
+++ b/app-arch/wimlib/wimlib-1.13.0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools pax-utils
+if [[ -z ${PV%%*9999} ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="git://wimlib.net/${PN}"
+else
+ inherit vcs-snapshot
+ MY_PV="${PV/_/-}"
+ MY_PV="${MY_PV^^}"
+ SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
+ RESTRICT="primaryuri"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="The open source Windows Imaging (WIM) library"
+HOMEPAGE="https://wimlib.net/"
+
+LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
+SLOT="0"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl threads yasm"
+REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
+
+PATCHES=( "${FILESDIR}/syslinux-path.patch" )
+
+RDEPEND="
+ dev-libs/libxml2:2
+ ntfs? ( sys-fs/ntfs3g )
+ fuse? ( sys-fs/fuse:0 )
+ openssl? ( dev-libs/openssl:0 )
+ iso? (
+ app-arch/cabextract
+ app-cdr/cdrtools
+ )
+"
+DEPEND="
+ ${RDEPEND}
+ cpu_flags_x86_ssse3? (
+ yasm? ( dev-lang/yasm )
+ !yasm? ( dev-lang/nasm )
+ )
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with ntfs ntfs-3g)
+ $(use_with fuse)
+ $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
+ $(use_with openssl libcrypto)
+ $(use_enable threads multithreaded-compression)
+ )
+ has test ${FEATURES} && myeconfargs+=( --enable-test-support )
+ ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
+ econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+ emake
+ pax-mark m "${S}"/.libs/wimlib-imagex
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2019-11-02 11:45 Michał Górny
0 siblings, 0 replies; 24+ messages in thread
From: Michał Górny @ 2019-11-02 11:45 UTC (permalink / raw
To: gentoo-commits
commit: 25c02841f22cb191de145a0ca795a950345de8d9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 2 11:41:28 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Nov 2 11:41:28 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c02841
app-arch/wimlib: Remove RESTRICT=primaryuri
Closes: https://bugs.gentoo.org/696826
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-arch/wimlib/wimlib-1.12.0.ebuild | 3 +--
app-arch/wimlib/wimlib-1.13.0.ebuild | 1 -
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild b/app-arch/wimlib/wimlib-1.12.0.ebuild
index 77b9c95e275..c8a393c4005 100644
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -12,7 +12,6 @@ else
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
- RESTRICT="primaryuri"
KEYWORDS="~amd64 ~x86"
fi
diff --git a/app-arch/wimlib/wimlib-1.13.0.ebuild b/app-arch/wimlib/wimlib-1.13.0.ebuild
index 9db9ef57d01..c8a393c4005 100644
--- a/app-arch/wimlib/wimlib-1.13.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.0.ebuild
@@ -12,7 +12,6 @@ else
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
- RESTRICT="primaryuri"
KEYWORDS="~amd64 ~x86"
fi
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-01-19 3:15 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-01-19 3:15 UTC (permalink / raw
To: gentoo-commits
commit: ce709e1c715ea0dc7a240486c268813d0f015e21
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 19 03:11:25 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 19 03:11:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce709e1c
app-arch/wimlib: EAPI 7
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/wimlib-1.12.0.ebuild | 33 ++++++++++++++++++---------------
app-arch/wimlib/wimlib-1.13.0.ebuild | 34 ++++++++++++++++++----------------
2 files changed, 36 insertions(+), 31 deletions(-)
diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild b/app-arch/wimlib/wimlib-1.12.0.ebuild
index 3fb8e91ab6c..58cbc3ce1b7 100644
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.12.0.ebuild
@@ -1,17 +1,17 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit autotools pax-utils
+
if [[ -z ${PV%%*9999} ]]; then
inherit git-r3
EGIT_REPO_URI="git://wimlib.net/${PN}"
else
- inherit vcs-snapshot
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
- SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
@@ -20,28 +20,31 @@ HOMEPAGE="https://wimlib.net/"
LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl threads yasm"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
-PATCHES=( "${FILESDIR}/syslinux-path.patch" )
+RESTRICT="!test? ( test )"
+BDEPEND="
+ virtual/pkgconfig
+ cpu_flags_x86_ssse3? (
+ yasm? ( dev-lang/yasm )
+ !yasm? ( dev-lang/nasm )
+ )
+"
RDEPEND="
dev-libs/libxml2:2
ntfs? ( sys-fs/ntfs3g )
fuse? ( sys-fs/fuse:0 )
- openssl? ( dev-libs/openssl:0 )
+ openssl? ( dev-libs/openssl:0= )
iso? (
app-arch/cabextract
app-cdr/cdrtools
)
"
-DEPEND="
- ${RDEPEND}
- cpu_flags_x86_ssse3? (
- yasm? ( dev-lang/yasm )
- !yasm? ( dev-lang/nasm )
- )
-"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}/syslinux-path.patch" )
src_prepare() {
default
@@ -55,9 +58,9 @@ src_configure() {
$(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
$(use_with openssl libcrypto)
$(use_enable threads multithreaded-compression)
+ $(use_enable test enable-test-support)
--disable-static
)
- has test ${FEATURES} && myeconfargs+=( --enable-test-support )
ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
econf "${myeconfargs[@]}"
}
diff --git a/app-arch/wimlib/wimlib-1.13.0.ebuild b/app-arch/wimlib/wimlib-1.13.0.ebuild
index 3fb8e91ab6c..a6578586e5c 100644
--- a/app-arch/wimlib/wimlib-1.13.0.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.0.ebuild
@@ -1,17 +1,16 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit autotools pax-utils
if [[ -z ${PV%%*9999} ]]; then
inherit git-r3
EGIT_REPO_URI="git://wimlib.net/${PN}"
else
- inherit vcs-snapshot
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
- SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
@@ -20,28 +19,31 @@ HOMEPAGE="https://wimlib.net/"
LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl threads yasm"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
-PATCHES=( "${FILESDIR}/syslinux-path.patch" )
+RESTRICT="!test? ( test )"
+BDEPEND="
+ virtual/pkgconfig
+ cpu_flags_x86_ssse3? (
+ yasm? ( dev-lang/yasm )
+ !yasm? ( dev-lang/nasm )
+ )
+"
RDEPEND="
dev-libs/libxml2:2
ntfs? ( sys-fs/ntfs3g )
fuse? ( sys-fs/fuse:0 )
- openssl? ( dev-libs/openssl:0 )
+ openssl? ( dev-libs/openssl:0= )
iso? (
app-arch/cabextract
app-cdr/cdrtools
)
"
-DEPEND="
- ${RDEPEND}
- cpu_flags_x86_ssse3? (
- yasm? ( dev-lang/yasm )
- !yasm? ( dev-lang/nasm )
- )
-"
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}/syslinux-path.patch" )
src_prepare() {
default
@@ -55,15 +57,15 @@ src_configure() {
$(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
$(use_with openssl libcrypto)
$(use_enable threads multithreaded-compression)
+ $(use_enable test test-support)
--disable-static
)
- has test ${FEATURES} && myeconfargs+=( --enable-test-support )
ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
econf "${myeconfargs[@]}"
}
src_compile() {
- emake
+ default
pax-mark m "${S}"/.libs/wimlib-imagex
}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-01-19 3:15 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-01-19 3:15 UTC (permalink / raw
To: gentoo-commits
commit: fd58b053554f24cdab16f56e30560e3275e6a005
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 19 03:14:04 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 19 03:14:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd58b053
app-arch/wimlib: bump to 1.13.3
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/Manifest | 1 +
app-arch/wimlib/wimlib-1.13.3.ebuild | 73 ++++++++++++++++++++++++++++++++++++
2 files changed, 74 insertions(+)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index a14a38085f3..05d9a3f639d 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1 +1,2 @@
DIST wimlib-1.13.0.tar.gz 1035146 BLAKE2B 305d4bd4a0299c99b537c2bc59c674740239d3fe7c240038f4846849f36046ef587b04643d5a482c876668bf8f9a94a7b45a5e4f12c6d235a579a08c3879acff SHA512 a7ec729dda07b3884a851533a3c9e9db3061d9f6273ec318e40ece3687f4671f66989c07c080fa9cdcf5f01318c5eba7256b58f15f711b3ff14f4eb61c2114cb
+DIST wimlib-1.13.3.tar.gz 1030667 BLAKE2B 2b897392bed3c4a390479f34925474c229ee835ab624c81a0baa7ebb8f3484f27aa4efb2a440debdcafe23b152b385bbe0f198d6f0560e8f88a34c7328a74edd SHA512 5c6e3bd1d7bda55812c818cc527cd241ac8a15276648f2a307db1f2a858de0b322e9f2beffda5bab991811aee3f4a953c3e31847bfa76a7d32ad5850595a15d4
diff --git a/app-arch/wimlib/wimlib-1.13.3.ebuild b/app-arch/wimlib/wimlib-1.13.3.ebuild
new file mode 100644
index 00000000000..a6115205d0c
--- /dev/null
+++ b/app-arch/wimlib/wimlib-1.13.3.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools pax-utils
+if [[ -z ${PV%%*9999} ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="git://wimlib.net/${PN}"
+else
+ MY_PV="${PV/_/-}"
+ MY_PV="${MY_PV^^}"
+ SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="The open source Windows Imaging (WIM) library"
+HOMEPAGE="https://wimlib.net/"
+
+LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
+SLOT="0"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
+REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/pkgconfig
+ cpu_flags_x86_ssse3? (
+ yasm? ( dev-lang/yasm )
+ !yasm? ( dev-lang/nasm )
+ )
+"
+RDEPEND="
+ dev-libs/libxml2:2
+ ntfs? ( sys-fs/ntfs3g )
+ fuse? ( sys-fs/fuse:0 )
+ openssl? ( dev-libs/openssl:0= )
+ iso? (
+ app-arch/cabextract
+ app-cdr/cdrtools
+ )
+"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with ntfs ntfs-3g)
+ $(use_with fuse)
+ $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
+ $(use_with openssl libcrypto)
+ $(use_enable threads multithreaded-compression)
+ $(use_enable test test-support)
+ --disable-static
+ )
+ ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
+ econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+ default
+ pax-mark m "${S}"/.libs/wimlib-imagex
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-01-19 3:15 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-01-19 3:15 UTC (permalink / raw
To: gentoo-commits
commit: d287bc5ea064464f863ca2a0df99cbd8c38c3564
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 19 03:11:39 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 19 03:11:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d287bc5e
app-arch/wimlib: cleanup old
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/Manifest | 1 -
app-arch/wimlib/wimlib-1.12.0.ebuild | 76 ------------------------------------
2 files changed, 77 deletions(-)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index 01df841c87a..a14a38085f3 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1,2 +1 @@
-DIST wimlib-1.12.0.tar.gz 1014508 BLAKE2B d12f4e0b458fe756b74c67f2f643256c44021e0f0c3e2a3a70eb87647c3c6cabd93413917bf8a8c6ab6820860c407f4454454719227f5cbf1a9a81a7bedc1a6e SHA512 0343b37550366f07fd6a6689f4445f390187beddde677f4d6d831c07936d03b613ae95f612ec7a75e978a5e678f33ab766d0f3b3d942886df56e4ef77d4b07b9
DIST wimlib-1.13.0.tar.gz 1035146 BLAKE2B 305d4bd4a0299c99b537c2bc59c674740239d3fe7c240038f4846849f36046ef587b04643d5a482c876668bf8f9a94a7b45a5e4f12c6d235a579a08c3879acff SHA512 a7ec729dda07b3884a851533a3c9e9db3061d9f6273ec318e40ece3687f4671f66989c07c080fa9cdcf5f01318c5eba7256b58f15f711b3ff14f4eb61c2114cb
diff --git a/app-arch/wimlib/wimlib-1.12.0.ebuild b/app-arch/wimlib/wimlib-1.12.0.ebuild
deleted file mode 100644
index 58cbc3ce1b7..00000000000
--- a/app-arch/wimlib/wimlib-1.12.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools pax-utils
-
-if [[ -z ${PV%%*9999} ]]; then
- inherit git-r3
- EGIT_REPO_URI="git://wimlib.net/${PN}"
-else
- MY_PV="${PV/_/-}"
- MY_PV="${MY_PV^^}"
- SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="The open source Windows Imaging (WIM) library"
-HOMEPAGE="https://wimlib.net/"
-
-LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
-SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
-REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- virtual/pkgconfig
- cpu_flags_x86_ssse3? (
- yasm? ( dev-lang/yasm )
- !yasm? ( dev-lang/nasm )
- )
-"
-RDEPEND="
- dev-libs/libxml2:2
- ntfs? ( sys-fs/ntfs3g )
- fuse? ( sys-fs/fuse:0 )
- openssl? ( dev-libs/openssl:0= )
- iso? (
- app-arch/cabextract
- app-cdr/cdrtools
- )
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=( "${FILESDIR}/syslinux-path.patch" )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with ntfs ntfs-3g)
- $(use_with fuse)
- $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
- $(use_with openssl libcrypto)
- $(use_enable threads multithreaded-compression)
- $(use_enable test enable-test-support)
- --disable-static
- )
- ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- emake
- pax-mark m "${S}"/.libs/wimlib-imagex
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-07-12 6:35 Agostino Sarubbo
0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2021-07-12 6:35 UTC (permalink / raw
To: gentoo-commits
commit: ef4d74177d411c724c053aab35febd645afaa6a1
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 12 06:35:22 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jul 12 06:35:22 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef4d7417
app-arch/wimlib: amd64 stable wrt bug #801538
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-arch/wimlib/wimlib-1.13.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.13.3.ebuild b/app-arch/wimlib/wimlib-1.13.3.ebuild
index a6115205d0c..5c3f76379b5 100644
--- a/app-arch/wimlib/wimlib-1.13.3.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.3.ebuild
@@ -11,7 +11,7 @@ else
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz"
- KEYWORDS="~amd64 ~x86"
+ KEYWORDS="amd64 ~x86"
fi
DESCRIPTION="The open source Windows Imaging (WIM) library"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-07-13 6:33 Agostino Sarubbo
0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2021-07-13 6:33 UTC (permalink / raw
To: gentoo-commits
commit: f1f4075eac891b248ee7ed66ab70ba71494ef219
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 13 06:32:06 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Jul 13 06:32:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f4075e
app-arch/wimlib: x86 stable wrt bug #801538
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-arch/wimlib/wimlib-1.13.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.13.3.ebuild b/app-arch/wimlib/wimlib-1.13.3.ebuild
index 5c3f76379b5..be0165156be 100644
--- a/app-arch/wimlib/wimlib-1.13.3.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.3.ebuild
@@ -11,7 +11,7 @@ else
MY_PV="${PV/_/-}"
MY_PV="${MY_PV^^}"
SRC_URI="https://wimlib.net/downloads/${PN}-${MY_PV}.tar.gz"
- KEYWORDS="amd64 ~x86"
+ KEYWORDS="amd64 x86"
fi
DESCRIPTION="The open source Windows Imaging (WIM) library"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-07-16 6:01 Joonas Niilola
0 siblings, 0 replies; 24+ messages in thread
From: Joonas Niilola @ 2021-07-16 6:01 UTC (permalink / raw
To: gentoo-commits
commit: 63686c6c6beb3e4b8b384ad5da2989c5e730cd66
Author: Marco Scardovi <someone <AT> example <DOT> com>
AuthorDate: Sun Jul 11 08:23:33 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 16 06:00:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63686c6c
app-arch/wimlib: add myself as maintainer
wimlib is a library required by woeusb to open and modify wim files
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
Closes: https://github.com/gentoo/gentoo/pull/21591
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-arch/wimlib/metadata.xml | 33 +++++++++++++++------------------
1 file changed, 15 insertions(+), 18 deletions(-)
diff --git a/app-arch/wimlib/metadata.xml b/app-arch/wimlib/metadata.xml
index 7d39835030d..b591ed9e049 100644
--- a/app-arch/wimlib/metadata.xml
+++ b/app-arch/wimlib/metadata.xml
@@ -1,22 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <use>
- <flag name="fuse">
- Use fuse libraries
- </flag>
- <flag name="iso">
- Install app-cdr/cdrtools in order to prepare iso images
- </flag>
- <flag name="ntfs">
- Use libntfs-3g library from sys-fs/ntfs3g
- </flag>
- <flag name="openssl">
- Use the SHA-1 message digest from libcrypto instead of compilling another implementation
- </flag>
- <flag name="yasm">
- Use yasm assembler instead of nasm
- </flag>
- </use>
+ <maintainer type="person" proxied="yes">
+ <email>marco@scardovi.com</email>
+ <name>Marco Scardovi</name>
+ </maintainer>
+ <maintainer type="project" proxied="proxy">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <use>
+ <flag name="fuse">Use fuse libraries</flag>
+ <flag name="iso">Install app-cdr/cdrtools in order to prepare iso images</flag>
+ <flag name="ntfs">Use libntfs-3g library from sys-fs/ntfs3g</flag>
+ <flag name="openssl">Use the SHA-1 message digest from libcrypto instead of compilling another implementation</flag>
+ <flag name="yasm">Use yasm assembler instead of nasm</flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-07-16 6:01 Joonas Niilola
0 siblings, 0 replies; 24+ messages in thread
From: Joonas Niilola @ 2021-07-16 6:01 UTC (permalink / raw
To: gentoo-commits
commit: a752a165938b05d9046a0eb5341b197853ebbdac
Author: Marco Scardovi <someone <AT> example <DOT> com>
AuthorDate: Sun Jul 11 08:28:28 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 16 06:00:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a752a165
app-arch/wimlib: bump to 1.13.4
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-arch/wimlib/Manifest | 1 +
app-arch/wimlib/wimlib-1.13.4.ebuild | 65 ++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index 81d03e7fa4a..3c0a53feda8 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1 +1,2 @@
DIST wimlib-1.13.3.tar.gz 1030667 BLAKE2B 2b897392bed3c4a390479f34925474c229ee835ab624c81a0baa7ebb8f3484f27aa4efb2a440debdcafe23b152b385bbe0f198d6f0560e8f88a34c7328a74edd SHA512 5c6e3bd1d7bda55812c818cc527cd241ac8a15276648f2a307db1f2a858de0b322e9f2beffda5bab991811aee3f4a953c3e31847bfa76a7d32ad5850595a15d4
+DIST wimlib-1.13.4.tar.gz 1040411 BLAKE2B 4563429d42be39b959a15ef66ac4c173531ff0c0b0f1a341812a4f870c9f189478f3ce78bf6240544f71b1746d98c9eae3f7182d646355343e26526559384f07 SHA512 480fe6fa6c6e8f1bf9c3960f5e1671f3266535b18dc72e9d7c4c05c7fb833d9b00db5ae9fb49154da6e71e536cae8b562cbf81ab5a124e2a79326927e2cf7344
diff --git a/app-arch/wimlib/wimlib-1.13.4.ebuild b/app-arch/wimlib/wimlib-1.13.4.ebuild
new file mode 100644
index 00000000000..20589458d68
--- /dev/null
+++ b/app-arch/wimlib/wimlib-1.13.4.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools pax-utils
+
+DESCRIPTION="The open source Windows Imaging (WIM) library"
+HOMEPAGE="https://wimlib.net"
+SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
+SLOT="0"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
+REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/pkgconfig
+ cpu_flags_x86_ssse3? (
+ yasm? ( dev-lang/yasm )
+ !yasm? ( dev-lang/nasm )
+ )
+"
+RDEPEND="
+ dev-libs/libxml2:2
+ fuse? ( sys-fs/fuse:0 )
+ iso? (
+ app-arch/cabextract
+ app-cdr/cdrtools
+ )
+ ntfs? ( sys-fs/ntfs3g )
+ openssl? ( dev-libs/openssl:0= )
+"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with ntfs ntfs-3g)
+ $(use_with fuse)
+ $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
+ $(use_with openssl libcrypto)
+ $(use_enable threads multithreaded-compression)
+ $(use_enable test test-support)
+ --disable-static
+ )
+ ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
+ econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+ default
+ pax-mark m "${S}"/.libs/wimlib-imagex
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-07-16 6:01 Joonas Niilola
0 siblings, 0 replies; 24+ messages in thread
From: Joonas Niilola @ 2021-07-16 6:01 UTC (permalink / raw
To: gentoo-commits
commit: e1ce8e9db947f837e833ccea1a63b4c5f84f662a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 16 06:00:48 2021 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 16 06:00:48 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1ce8e9d
app-arch/wimlib: openssl -> ssl in 1.13.4
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
app-arch/wimlib/wimlib-1.13.4.ebuild | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
diff --git a/app-arch/wimlib/wimlib-1.13.4.ebuild b/app-arch/wimlib/wimlib-1.13.4.ebuild
index 20589458d68..84e997127f0 100644
--- a/app-arch/wimlib/wimlib-1.13.4.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.4.ebuild
@@ -12,8 +12,7 @@ SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs openssl test threads yasm"
-REQUIRED_USE="cpu_flags_x86_ssse3? ( !openssl )"
+IUSE="cpu_flags_x86_ssse3 fuse iso ntfs ssl test threads yasm"
RESTRICT="!test? ( test )"
@@ -32,7 +31,7 @@ RDEPEND="
app-cdr/cdrtools
)
ntfs? ( sys-fs/ntfs3g )
- openssl? ( dev-libs/openssl:0= )
+ ssl? ( dev-libs/openssl:0= )
"
src_prepare() {
@@ -44,12 +43,22 @@ src_configure() {
local myeconfargs=(
$(use_with ntfs ntfs-3g)
$(use_with fuse)
- $(use_enable cpu_flags_x86_ssse3 ssse3-sha1)
- $(use_with openssl libcrypto)
+ $(use_with ssl libcrypto)
$(use_enable threads multithreaded-compression)
$(use_enable test test-support)
--disable-static
)
+
+ if use cpu_flags_x86_ssse3; then
+ if ! use ssl; then
+ myeconfargs+=( --enable-ssse3-sha1 )
+ else
+ elog "cpu_flags_x86_ssse3 and ssl can't be enabled together, "
+ elog "enabling ssl and disabling cpu_flags_x86_ssse3 for you."
+ myeconfargs+=( --disable-ssse3-sha1 )
+ fi
+ fi
+
ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
econf "${myeconfargs[@]}"
}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-09-01 9:38 David Seifert
0 siblings, 0 replies; 24+ messages in thread
From: David Seifert @ 2021-09-01 9:38 UTC (permalink / raw
To: gentoo-commits
commit: 0ead2143e2e3542385101f6f776495dbd7c89ad5
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 1 09:38:17 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Sep 1 09:38:17 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ead2143
app-arch/wimlib: fix subslot op on sys-fs/ntfs3g
Signed-off-by: David Seifert <soap <AT> gentoo.org>
app-arch/wimlib/{wimlib-1.13.3.ebuild => wimlib-1.13.3-r1.ebuild} | 4 ++--
app-arch/wimlib/{wimlib-1.13.4.ebuild => wimlib-1.13.4-r1.ebuild} | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app-arch/wimlib/wimlib-1.13.3.ebuild b/app-arch/wimlib/wimlib-1.13.3-r1.ebuild
similarity index 95%
rename from app-arch/wimlib/wimlib-1.13.3.ebuild
rename to app-arch/wimlib/wimlib-1.13.3-r1.ebuild
index be0165156be..e1373f3790a 100644
--- a/app-arch/wimlib/wimlib-1.13.3.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.3-r1.ebuild
@@ -33,9 +33,9 @@ BDEPEND="
"
RDEPEND="
dev-libs/libxml2:2
- ntfs? ( sys-fs/ntfs3g )
+ ntfs? ( sys-fs/ntfs3g:= )
fuse? ( sys-fs/fuse:0 )
- openssl? ( dev-libs/openssl:0= )
+ openssl? ( dev-libs/openssl:= )
iso? (
app-arch/cabextract
app-cdr/cdrtools
diff --git a/app-arch/wimlib/wimlib-1.13.4.ebuild b/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
similarity index 96%
rename from app-arch/wimlib/wimlib-1.13.4.ebuild
rename to app-arch/wimlib/wimlib-1.13.4-r1.ebuild
index 84e997127f0..a914e9a0896 100644
--- a/app-arch/wimlib/wimlib-1.13.4.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
@@ -30,8 +30,8 @@ RDEPEND="
app-arch/cabextract
app-cdr/cdrtools
)
- ntfs? ( sys-fs/ntfs3g )
- ssl? ( dev-libs/openssl:0= )
+ ntfs? ( sys-fs/ntfs3g:= )
+ ssl? ( dev-libs/openssl:= )
"
src_prepare() {
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-12-05 4:00 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-12-05 4:00 UTC (permalink / raw
To: gentoo-commits
commit: 621ffb172754066677128b1c419f322f998a2699
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 5 03:59:52 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 5 03:59:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621ffb17
app-arch/wimlib: Stabilize 1.13.4-r1 amd64, #828272
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/wimlib-1.13.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.13.4-r1.ebuild b/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
index a914e9a0896b..62df98c30cc7 100644
--- a/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="The open source Windows Imaging (WIM) library"
HOMEPAGE="https://wimlib.net"
SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
SLOT="0"
IUSE="cpu_flags_x86_ssse3 fuse iso ntfs ssl test threads yasm"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2021-12-05 18:31 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-12-05 18:31 UTC (permalink / raw
To: gentoo-commits
commit: d7d54b5de6b68039aedc1fa682f04edfadaedd5e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 5 18:30:09 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 5 18:30:09 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7d54b5d
app-arch/wimlib: Stabilize 1.13.4-r1 x86, #828272
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/wimlib-1.13.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.13.4-r1.ebuild b/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
index 62df98c30cc7..13d1b0f2922b 100644
--- a/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
+++ b/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="The open source Windows Imaging (WIM) library"
HOMEPAGE="https://wimlib.net"
SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
SLOT="0"
IUSE="cpu_flags_x86_ssse3 fuse iso ntfs ssl test threads yasm"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2022-04-17 20:05 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-04-17 20:05 UTC (permalink / raw
To: gentoo-commits
commit: c746a9b3383eb84886096d6ae1ada96a803983aa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 17 20:04:26 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 17 20:05:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c746a9b3
app-arch/wimlib: fix UnusedLocalUse
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/metadata.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/app-arch/wimlib/metadata.xml b/app-arch/wimlib/metadata.xml
index b55da085cdf2..c8ff4e0d7be0 100644
--- a/app-arch/wimlib/metadata.xml
+++ b/app-arch/wimlib/metadata.xml
@@ -6,7 +6,6 @@
<flag name="fuse">Use fuse libraries</flag>
<flag name="iso">Install app-cdr/cdrtools in order to prepare iso images</flag>
<flag name="ntfs">Use libntfs-3g library from sys-fs/ntfs3g</flag>
- <flag name="openssl">Use the SHA-1 message digest from libcrypto instead of compilling another implementation</flag>
<flag name="yasm">Use yasm assembler instead of nasm</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2023-05-03 8:59 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-05-03 8:59 UTC (permalink / raw
To: gentoo-commits
commit: 7750ba579d626c49c8c68a67d404c6a610ea7e7b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 3 08:47:04 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 3 08:57:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7750ba57
app-arch/wimlib: add 1.14.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/Manifest | 1 +
app-arch/wimlib/wimlib-1.14.1.ebuild | 52 ++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index b34d8317072a..a7bd60bb4ea2 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1 +1,2 @@
DIST wimlib-1.13.4.tar.gz 1040411 BLAKE2B 4563429d42be39b959a15ef66ac4c173531ff0c0b0f1a341812a4f870c9f189478f3ce78bf6240544f71b1746d98c9eae3f7182d646355343e26526559384f07 SHA512 480fe6fa6c6e8f1bf9c3960f5e1671f3266535b18dc72e9d7c4c05c7fb833d9b00db5ae9fb49154da6e71e536cae8b562cbf81ab5a124e2a79326927e2cf7344
+DIST wimlib-1.14.1.tar.gz 1046078 BLAKE2B 56e44928229c9c4fda662fa64fc4021bd361c2c959f0786764b84fa4cc9d7f7b0d5440edb4d4079657cc7bf450ac9c755f554c7da7a8b2b7e96d69ddbeb4f22f SHA512 9f92a8ce2d386918d66a1a3e52d4fbffeeb9f8b9345b25012fd0bd07039a00be84fd83d83a9bb25bcefab09597a81e9392522be835dd6693dd00050f8624af00
diff --git a/app-arch/wimlib/wimlib-1.14.1.ebuild b/app-arch/wimlib/wimlib-1.14.1.ebuild
new file mode 100644
index 000000000000..aa43a0f710cc
--- /dev/null
+++ b/app-arch/wimlib/wimlib-1.14.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools pax-utils
+
+DESCRIPTION="The open source Windows Imaging (WIM) library"
+HOMEPAGE="https://wimlib.net"
+SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
+
+LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="fuse iso ntfs test yasm"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ fuse? ( sys-fs/fuse:3 )
+ iso? (
+ app-arch/cabextract
+ app-cdr/cdrtools
+ )
+ ntfs? ( sys-fs/ntfs3g:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ local myeconfargs=(
+ $(use_with ntfs ntfs-3g)
+ $(use_with fuse)
+ $(use_enable test test-support)
+ )
+
+ econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+ default
+ pax-mark m "${S}"/.libs/wimlib-imagex
+}
+
+src_install() {
+ default
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2023-06-03 16:12 Arthur Zamarin
0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2023-06-03 16:12 UTC (permalink / raw
To: gentoo-commits
commit: 351b72fc2d6071afc2d078aa112a0cd679114f26
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 3 16:11:55 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 3 16:11:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=351b72fc
app-arch/wimlib: Stabilize 1.14.1 x86, #907767
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-arch/wimlib/wimlib-1.14.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.14.1.ebuild b/app-arch/wimlib/wimlib-1.14.1.ebuild
index aa43a0f710cc..d00b7259b7d8 100644
--- a/app-arch/wimlib/wimlib-1.14.1.ebuild
+++ b/app-arch/wimlib/wimlib-1.14.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE="fuse iso ntfs test yasm"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2023-06-03 16:16 Arthur Zamarin
0 siblings, 0 replies; 24+ messages in thread
From: Arthur Zamarin @ 2023-06-03 16:16 UTC (permalink / raw
To: gentoo-commits
commit: fdfe768a0d592e20423e9e0c66e00c366034007a
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 3 16:16:34 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 3 16:16:34 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdfe768a
app-arch/wimlib: Stabilize 1.14.1 amd64, #907767
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-arch/wimlib/wimlib-1.14.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.14.1.ebuild b/app-arch/wimlib/wimlib-1.14.1.ebuild
index d00b7259b7d8..14ba614885b5 100644
--- a/app-arch/wimlib/wimlib-1.14.1.ebuild
+++ b/app-arch/wimlib/wimlib-1.14.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE="fuse iso ntfs test yasm"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2024-08-31 14:49 Petr Vaněk
0 siblings, 0 replies; 24+ messages in thread
From: Petr Vaněk @ 2024-08-31 14:49 UTC (permalink / raw
To: gentoo-commits
commit: fbd663f5f1592266bbd1a95e74d1585b6d0293e6
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 14:46:51 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 14:46:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd663f5
app-arch/wimlib: drop 1.13.4-r1
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
app-arch/wimlib/Manifest | 1 -
app-arch/wimlib/wimlib-1.13.4-r1.ebuild | 74 ---------------------------------
2 files changed, 75 deletions(-)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index f36c7aa4dd3c..3f9f417e7189 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1,3 +1,2 @@
-DIST wimlib-1.13.4.tar.gz 1040411 BLAKE2B 4563429d42be39b959a15ef66ac4c173531ff0c0b0f1a341812a4f870c9f189478f3ce78bf6240544f71b1746d98c9eae3f7182d646355343e26526559384f07 SHA512 480fe6fa6c6e8f1bf9c3960f5e1671f3266535b18dc72e9d7c4c05c7fb833d9b00db5ae9fb49154da6e71e536cae8b562cbf81ab5a124e2a79326927e2cf7344
DIST wimlib-1.14.1.tar.gz 1046078 BLAKE2B 56e44928229c9c4fda662fa64fc4021bd361c2c959f0786764b84fa4cc9d7f7b0d5440edb4d4079657cc7bf450ac9c755f554c7da7a8b2b7e96d69ddbeb4f22f SHA512 9f92a8ce2d386918d66a1a3e52d4fbffeeb9f8b9345b25012fd0bd07039a00be84fd83d83a9bb25bcefab09597a81e9392522be835dd6693dd00050f8624af00
DIST wimlib-1.14.4.tar.gz 1045888 BLAKE2B fa3d8568e777783034d426ff97d542e9db9679486e282667b6f44137a00c658697c0cff2ff065b86e782e9720f36ed050f75bd60aea9ae0bedf71355997b6b27 SHA512 f3c25ee14fe849f452f004ce8137ef040410ea048555ae71180086f010858b6ed593c8881b805bac65f9ee878bf11661a7f17677c6c24e2c77149c35ee0cd853
diff --git a/app-arch/wimlib/wimlib-1.13.4-r1.ebuild b/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
deleted file mode 100644
index 13d1b0f2922b..000000000000
--- a/app-arch/wimlib/wimlib-1.13.4-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools pax-utils
-
-DESCRIPTION="The open source Windows Imaging (WIM) library"
-HOMEPAGE="https://wimlib.net"
-SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
-SLOT="0"
-IUSE="cpu_flags_x86_ssse3 fuse iso ntfs ssl test threads yasm"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- virtual/pkgconfig
- cpu_flags_x86_ssse3? (
- yasm? ( dev-lang/yasm )
- !yasm? ( dev-lang/nasm )
- )
-"
-RDEPEND="
- dev-libs/libxml2:2
- fuse? ( sys-fs/fuse:0 )
- iso? (
- app-arch/cabextract
- app-cdr/cdrtools
- )
- ntfs? ( sys-fs/ntfs3g:= )
- ssl? ( dev-libs/openssl:= )
-"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with ntfs ntfs-3g)
- $(use_with fuse)
- $(use_with ssl libcrypto)
- $(use_enable threads multithreaded-compression)
- $(use_enable test test-support)
- --disable-static
- )
-
- if use cpu_flags_x86_ssse3; then
- if ! use ssl; then
- myeconfargs+=( --enable-ssse3-sha1 )
- else
- elog "cpu_flags_x86_ssse3 and ssl can't be enabled together, "
- elog "enabling ssl and disabling cpu_flags_x86_ssse3 for you."
- myeconfargs+=( --disable-ssse3-sha1 )
- fi
- fi
-
- ac_cv_prog_NASM="$(usex yasm yasm nasm)" \
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- default
- pax-mark m "${S}"/.libs/wimlib-imagex
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2024-08-31 20:26 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2024-08-31 20:26 UTC (permalink / raw
To: gentoo-commits
commit: 8f27e0badf08926fb2babda772b6a65e550b84ef
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 20:25:54 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 20:25:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f27e0ba
app-arch/wimlib: Stabilize 1.14.4 amd64, #938840
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/wimlib-1.14.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.14.4.ebuild b/app-arch/wimlib/wimlib-1.14.4.ebuild
index a1cfeeaa73b3..936544e92243 100644
--- a/app-arch/wimlib/wimlib-1.14.4.ebuild
+++ b/app-arch/wimlib/wimlib-1.14.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="fuse iso ntfs test yasm"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2024-08-31 20:26 Sam James
0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2024-08-31 20:26 UTC (permalink / raw
To: gentoo-commits
commit: 25dc40dc87acde17aef679854b725e51dd74d561
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 20:25:55 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 20:25:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25dc40dc
app-arch/wimlib: Stabilize 1.14.4 x86, #938840
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-arch/wimlib/wimlib-1.14.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-arch/wimlib/wimlib-1.14.4.ebuild b/app-arch/wimlib/wimlib-1.14.4.ebuild
index 936544e92243..f5594c125796 100644
--- a/app-arch/wimlib/wimlib-1.14.4.ebuild
+++ b/app-arch/wimlib/wimlib-1.14.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="fuse iso ntfs test yasm"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 24+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/
@ 2024-09-05 19:54 Petr Vaněk
0 siblings, 0 replies; 24+ messages in thread
From: Petr Vaněk @ 2024-09-05 19:54 UTC (permalink / raw
To: gentoo-commits
commit: c16b7254d6c1fecb2ec4ad7110ab476cb045dbc3
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 5 18:46:15 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Thu Sep 5 19:53:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c16b7254
app-arch/wimlib: drop 1.14.1
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
app-arch/wimlib/Manifest | 1 -
app-arch/wimlib/wimlib-1.14.1.ebuild | 52 ------------------------------------
2 files changed, 53 deletions(-)
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
index 3f9f417e7189..27bd111626c6 100644
--- a/app-arch/wimlib/Manifest
+++ b/app-arch/wimlib/Manifest
@@ -1,2 +1 @@
-DIST wimlib-1.14.1.tar.gz 1046078 BLAKE2B 56e44928229c9c4fda662fa64fc4021bd361c2c959f0786764b84fa4cc9d7f7b0d5440edb4d4079657cc7bf450ac9c755f554c7da7a8b2b7e96d69ddbeb4f22f SHA512 9f92a8ce2d386918d66a1a3e52d4fbffeeb9f8b9345b25012fd0bd07039a00be84fd83d83a9bb25bcefab09597a81e9392522be835dd6693dd00050f8624af00
DIST wimlib-1.14.4.tar.gz 1045888 BLAKE2B fa3d8568e777783034d426ff97d542e9db9679486e282667b6f44137a00c658697c0cff2ff065b86e782e9720f36ed050f75bd60aea9ae0bedf71355997b6b27 SHA512 f3c25ee14fe849f452f004ce8137ef040410ea048555ae71180086f010858b6ed593c8881b805bac65f9ee878bf11661a7f17677c6c24e2c77149c35ee0cd853
diff --git a/app-arch/wimlib/wimlib-1.14.1.ebuild b/app-arch/wimlib/wimlib-1.14.1.ebuild
deleted file mode 100644
index 14ba614885b5..000000000000
--- a/app-arch/wimlib/wimlib-1.14.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools pax-utils
-
-DESCRIPTION="The open source Windows Imaging (WIM) library"
-HOMEPAGE="https://wimlib.net"
-SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
-
-LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="fuse iso ntfs test yasm"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- fuse? ( sys-fs/fuse:3 )
- iso? (
- app-arch/cabextract
- app-cdr/cdrtools
- )
- ntfs? ( sys-fs/ntfs3g:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with ntfs ntfs-3g)
- $(use_with fuse)
- $(use_enable test test-support)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- default
- pax-mark m "${S}"/.libs/wimlib-imagex
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 24+ messages in thread
end of thread, other threads:[~2024-09-05 19:54 UTC | newest]
Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-19 3:15 [gentoo-commits] repo/gentoo:master commit in: app-arch/wimlib/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-09-05 19:54 Petr Vaněk
2024-08-31 20:26 Sam James
2024-08-31 20:26 Sam James
2024-08-31 14:49 Petr Vaněk
2023-06-03 16:16 Arthur Zamarin
2023-06-03 16:12 Arthur Zamarin
2023-05-03 8:59 Sam James
2022-04-17 20:05 Sam James
2021-12-05 18:31 Sam James
2021-12-05 4:00 Sam James
2021-09-01 9:38 David Seifert
2021-07-16 6:01 Joonas Niilola
2021-07-16 6:01 Joonas Niilola
2021-07-16 6:01 Joonas Niilola
2021-07-13 6:33 Agostino Sarubbo
2021-07-12 6:35 Agostino Sarubbo
2021-01-19 3:15 Sam James
2021-01-19 3:15 Sam James
2019-11-02 11:45 Michał Górny
2019-01-01 18:47 Slawek Lis
2018-01-17 9:50 Slawek Lis
2018-01-17 9:20 Slawek Lis
2018-01-16 6:55 Slawek Lis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox