[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2024-05-03 Thread Matt Turner
commit: 3dbcf70db49c8acd0bdf74543731a8b3b5d2dee9
Author: Matt Turner  gentoo  org>
AuthorDate: Fri May  3 15:31:28 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri May  3 15:31:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dbcf70d

sys-fs/squashfs-tools-ng: Version bump to 1.3.1

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.3.1.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index ef74757014f2..8d3866f67ac8 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-1.2.0.tar.xz 586992 BLAKE2B 
ca20e4e01033b4dfa3ada2abd0f618305cb3f49f683863d36ea93679c2cfc0c396ee209c3254fa318d30cb2c4c000c3634d4b625212842cabae0a5e53b4a2bdc
 SHA512 
0c52890a92e2aee928db3e2407c087703d331e9dd8cba1b58ef44fe78cdd7ed1523e9b0485f7da83ad77423ffdccaf392a2b752ad948d62a5f1b5e600b523070
 DIST squashfs-tools-ng-1.3.0.tar.xz 585800 BLAKE2B 
658ff825b2cda63116c29d8c582f54df5bd511a6da98e737527d54720ed95a541edc39b94f61195f4c99d125cbcc8db824ea9d1e2a7a7a557fb647f5e795d623
 SHA512 
10ddff837464227d97c3c2dabeefa408a63fbab4ddc8ca184f4ecce7288ac47c0c6baf6d10146f7e29e4a845592720e39281f779420f5ba0b1e7736c0dea73d7
+DIST squashfs-tools-ng-1.3.1.tar.xz 585916 BLAKE2B 
697131ddb9959bed388534f90c93e2e7495ef5aec9facf97e7d17475cff64d7a4badb709a16ae5e6da3ee89b1a1e3a49833bd15b9a0b4b364e15a565bd18e480
 SHA512 
0a433f7c3633cd5d8646d990744e31ed59c7012d5f8bb4fdb7892b892631f22a8fd0969f7d81de68f53e44670e71cb8e29729cd925a93b98ab3b6942bbc30662

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.1.ebuild
new file mode 100644
index ..f936c78e267e
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   inherit libtool
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ BSD-2 MIT tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 +lzma lzo selinux +tools zstd"
+
+DEPEND="
+   app-arch/bzip2:=
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzma?( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo:2 )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   if [[ ${PV} = "" ]]; then
+   eautoreconf
+   else
+   elibtoolize
+   fi
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with lzma xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2024-05-03 Thread Matt Turner
commit: 2951814f74c10eae360c9ec695f0eb76ed7b10a6
Author: Matt Turner  gentoo  org>
AuthorDate: Fri May  3 15:31:39 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri May  3 15:31:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2951814f

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 -
 .../squashfs-tools-ng-1.2.0.ebuild | 57 --
 2 files changed, 58 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 8d3866f67ac8..26e21fcfc544 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1,2 @@
-DIST squashfs-tools-ng-1.2.0.tar.xz 586992 BLAKE2B 
ca20e4e01033b4dfa3ada2abd0f618305cb3f49f683863d36ea93679c2cfc0c396ee209c3254fa318d30cb2c4c000c3634d4b625212842cabae0a5e53b4a2bdc
 SHA512 
0c52890a92e2aee928db3e2407c087703d331e9dd8cba1b58ef44fe78cdd7ed1523e9b0485f7da83ad77423ffdccaf392a2b752ad948d62a5f1b5e600b523070
 DIST squashfs-tools-ng-1.3.0.tar.xz 585800 BLAKE2B 
658ff825b2cda63116c29d8c582f54df5bd511a6da98e737527d54720ed95a541edc39b94f61195f4c99d125cbcc8db824ea9d1e2a7a7a557fb647f5e795d623
 SHA512 
10ddff837464227d97c3c2dabeefa408a63fbab4ddc8ca184f4ecce7288ac47c0c6baf6d10146f7e29e4a845592720e39281f779420f5ba0b1e7736c0dea73d7
 DIST squashfs-tools-ng-1.3.1.tar.xz 585916 BLAKE2B 
697131ddb9959bed388534f90c93e2e7495ef5aec9facf97e7d17475cff64d7a4badb709a16ae5e6da3ee89b1a1e3a49833bd15b9a0b4b364e15a565bd18e480
 SHA512 
0a433f7c3633cd5d8646d990744e31ed59c7012d5f8bb4fdb7892b892631f22a8fd0969f7d81de68f53e44670e71cb8e29729cd925a93b98ab3b6942bbc30662

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
deleted file mode 100644
index a4168be5e3b8..
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2019-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   inherit libtool
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ BSD-2 MIT tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 +lzma lzo selinux +tools zstd"
-
-DEPEND="
-   app-arch/bzip2:=
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzma?( app-arch/xz-utils )
-   lzo? ( dev-libs/lzo:2 )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   if [[ ${PV} = "" ]]; then
-   eautoreconf
-   else
-   elibtoolize
-   fi
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with lzma xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2024-04-29 Thread Sam James
commit: 7579afbd4aa1f2356b8de3c2870df2c49ab68d5f
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 29 19:41:29 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 29 19:42:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7579afbd

sys-fs/squashfs-tools-ng: stabilize 1.3.0 for amd64

Note that I merged 84e655a1f462a58154b701b9b8077ebf3071e82f badly
as I hit a merge conflict with my earlier 
2c5cd6c4e004dc5037761c4a7a64fe956cac4bc4
when rebasing a branch.

I should figure out why merge-driver-ekeyword didn't handle the conflict.

Thanks to Matt for noticing.

Fixes: 84e655a1f462a58154b701b9b8077ebf3071e82f
Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
index f936c78e267e..a4168be5e3b8 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} = * ]]; then
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
inherit libtool
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2024-04-28 Thread Sam James
commit: 84e655a1f462a58154b701b9b8077ebf3071e82f
Author: Eli Schwartz  gmail  com>
AuthorDate: Sun Apr 28 04:42:54 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Apr 28 06:54:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e655a1

sys-fs/squashfs-tools-ng: run elibtoolize in non-live ebuild

When building live, we always run eautoreconf. However, even in release
mode we should still run elibtoolize to get important fixes -- such as
the ones that pass through LTO sanity flags to the link phase.

Signed-off-by: Eli Schwartz  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild | 9 +++--
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild | 9 +++--
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild  | 7 ++-
 3 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
index dc4fd0581812..a4168be5e3b8 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,6 +9,7 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
+   inherit libtool
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
@@ -30,7 +31,11 @@ RDEPEND="${DEPEND}"
 
 src_prepare() {
default
-   [[ ${PV} == "" ]] && eautoreconf
+   if [[ ${PV} = "" ]]; then
+   eautoreconf
+   else
+   elibtoolize
+   fi
 }
 
 src_configure() {

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
index c143cfb54ab2..f936c78e267e 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
@@ -9,7 +9,8 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   inherit libtool
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 
@@ -30,7 +31,11 @@ RDEPEND="${DEPEND}"
 
 src_prepare() {
default
-   [[ ${PV} == "" ]] && eautoreconf
+   if [[ ${PV} = "" ]]; then
+   eautoreconf
+   else
+   elibtoolize
+   fi
 }
 
 src_configure() {

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
index 161eca8ce48e..f936c78e267e 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
@@ -9,6 +9,7 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
+   inherit libtool
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
@@ -30,7 +31,11 @@ RDEPEND="${DEPEND}"
 
 src_prepare() {
default
-   [[ ${PV} == "" ]] && eautoreconf
+   if [[ ${PV} = "" ]]; then
+   eautoreconf
+   else
+   elibtoolize
+   fi
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2024-04-26 Thread Sam James
commit: 2c5cd6c4e004dc5037761c4a7a64fe956cac4bc4
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr 26 12:49:22 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr 26 12:49:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c5cd6c4

sys-fs/squashfs-tools-ng: Stabilize 1.3.0 amd64, #930693

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
index 161eca8ce48e..c143cfb54ab2 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2024-03-18 Thread Matt Turner
commit: 128496a4717fb4085ea09066b92f53ae47e0341a
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 19 04:43:14 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 19 05:06:16 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=128496a4

sys-fs/squashfs-tools-ng: Version bump to 1.3.0

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest   | 1 +
 .../{squashfs-tools-ng-.ebuild => squashfs-tools-ng-1.3.0.ebuild}   | 2 +-
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 697696ca16bf..ef74757014f2 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-1.2.0.tar.xz 586992 BLAKE2B 
ca20e4e01033b4dfa3ada2abd0f618305cb3f49f683863d36ea93679c2cfc0c396ee209c3254fa318d30cb2c4c000c3634d4b625212842cabae0a5e53b4a2bdc
 SHA512 
0c52890a92e2aee928db3e2407c087703d331e9dd8cba1b58ef44fe78cdd7ed1523e9b0485f7da83ad77423ffdccaf392a2b752ad948d62a5f1b5e600b523070
+DIST squashfs-tools-ng-1.3.0.tar.xz 585800 BLAKE2B 
658ff825b2cda63116c29d8c582f54df5bd511a6da98e737527d54720ed95a541edc39b94f61195f4c99d125cbcc8db824ea9d1e2a7a7a557fb647f5e795d623
 SHA512 
10ddff837464227d97c3c2dabeefa408a63fbab4ddc8ca184f4ecce7288ac47c0c6baf6d10146f7e29e4a845592720e39281f779420f5ba0b1e7736c0dea73d7

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
similarity index 96%
copy from sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
copy to sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
index 76778f0ce58b..161eca8ce48e 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
index 76778f0ce58b..161eca8ce48e 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2023-09-13 Thread WANG Xuerui
commit: 70ec41c05895e99d2c645d747b9a86add40d4c21
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu Sep 14 04:50:18 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Sep 14 05:15:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70ec41c0

sys-fs/squashfs-tools-ng: forward ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
index d5956518b2df..76778f0ce58b 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2022 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,7 +9,7 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2023-09-13 Thread WANG Xuerui
commit: fdd8dc839f1ed3fa85c5e7a2c7bb2fec4688a599
Author: WANG Xuerui  gentoo  org>
AuthorDate: Thu Sep 14 04:50:14 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Sep 14 05:15:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdd8dc83

sys-fs/squashfs-tools-ng: keyword 1.2.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
index 74fd9371c24f..dc4fd0581812 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2023-06-01 Thread Sam James
commit: 273a4232a104e4d6999e98691aeb29a03620d5f2
Author: Sam James  gentoo  org>
AuthorDate: Thu Jun  1 20:04:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jun  1 20:04:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=273a4232

sys-fs/squashfs-tools: Stabilize 4.6.1 arm64, #906749

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
index 07164d8a78de..49fe4ce47f98 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2023-06-01 Thread Sam James
commit: 00d4d3c57741f4a13c8566b3b09da8eff9dff6ae
Author: Sam James  gentoo  org>
AuthorDate: Thu Jun  1 20:04:53 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jun  1 20:04:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00d4d3c5

sys-fs/squashfs-tools: Stabilize 4.6.1 amd64, #906749

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
index 49fe4ce47f98..2134b478f8db 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2023-06-01 Thread Jakov Smolić
commit: 2de780f3169e74260558ef50b50ae272a5fde66d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Jun  1 18:35:12 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Jun  1 18:35:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2de780f3

sys-fs/squashfs-tools: Stabilize 4.6.1 x86, #906749

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
index 1f522767d441..3c7002b0f0d1 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2023-06-01 Thread Arthur Zamarin
commit: 3ceb8549fe9f7fb772ce6ae7b7451caf805ab503
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jun  1 17:19:26 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jun  1 17:19:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ceb8549

sys-fs/squashfs-tools: Stabilize 4.6.1 arm, #906749

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
index 896db57a6f33..1f522767d441 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2023-03-25 Thread Michał Górny
commit: 026789ddbfb8ccf82c28da8a061873e717071812
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Mar 26 02:44:27 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Mar 26 03:01:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=026789dd

sys-fs/squashfs-tools: Bump to 4.6.1

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest|  1 +
 sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild | 57 +++
 2 files changed, 58 insertions(+)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index f23877e9773e..d945ad94f2db 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-4.5.1.tar.gz 270112 BLAKE2B 
cbd35daf582d284b021911bb754ed548763f2773e1bc02516ca18bab7034e352780c11eb7dfed1f047b70974dcfb716bb1a1d3729e5b25662203cfbf93553b73
 SHA512 
b3934ea1e26c7508110312711465644a6d9674b6b5332a7d011e191fa3c1d4b8be694214794a0f6005263d0f4e18bab96af2f7ed66a178f8e3bb3a781cd44896
+DIST squashfs-tools-4.6.1.tar.gz 286848 BLAKE2B 
05e38681de219413573e8b1a7f36d2f7e87734f68a929ecdeb5ae6017076fbfd67b897448980e047689ef4b154d2dcd1a90162367a6a5babab45f1ef36f09325
 SHA512 
10e8a4b1e2327e062aef4f85860e76ebcd7a29e4c19e152ff7edec4a38316982b5bcfde4ab69da6bcb931258d264c2b6cb40cb5f635f9e6f6eba1ed5976267cb
 DIST squashfs-tools-4.6.tar.gz 286409 BLAKE2B 
1c04a8f6149863667151e76b3c1ecfdd5e9a181b305bea694af1d4968ac361114c9e926b351dcee2647796a21bc8cfc55b3d95f020ad88c3388007460de26053
 SHA512 
3a9effb9a5cf46fbb9f393e58bd938874dc4121828b77c67d659117ee84643917998a8503d629f46f1eff1826f6d7ae59ac2d803a5cdc3cfb1006ef2b3abf8c8

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
new file mode 100644
index ..896db57a6f33
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.6.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools/;
+SRC_URI="
+   https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz
+   -> ${P}.tar.gz
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+DEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+RDEPEND=${DEPEND}
+
+use10() {
+   usex "${1}" 1 0
+}
+
+src_compile() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   local opts=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+   emake "${opts[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   doman manpages/*.1
+
+   dosym unsquashfs /usr/bin/sqfscat
+   dosym mksquashfs /usr/bin/sqfstar
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2023-03-18 Thread Michał Górny
commit: f95bef0949e859f4a4b01242b07343fa79374fba
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 18 05:48:44 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 18 05:53:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f95bef09

sys-fs/squashfs-tools: Bump to 4.6

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest  |  1 +
 sys-fs/squashfs-tools/squashfs-tools-4.6.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 74ac243af627..f23877e9773e 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-4.5.1.tar.gz 270112 BLAKE2B 
cbd35daf582d284b021911bb754ed548763f2773e1bc02516ca18bab7034e352780c11eb7dfed1f047b70974dcfb716bb1a1d3729e5b25662203cfbf93553b73
 SHA512 
b3934ea1e26c7508110312711465644a6d9674b6b5332a7d011e191fa3c1d4b8be694214794a0f6005263d0f4e18bab96af2f7ed66a178f8e3bb3a781cd44896
+DIST squashfs-tools-4.6.tar.gz 286409 BLAKE2B 
1c04a8f6149863667151e76b3c1ecfdd5e9a181b305bea694af1d4968ac361114c9e926b351dcee2647796a21bc8cfc55b3d95f020ad88c3388007460de26053
 SHA512 
3a9effb9a5cf46fbb9f393e58bd938874dc4121828b77c67d659117ee84643917998a8503d629f46f1eff1826f6d7ae59ac2d803a5cdc3cfb1006ef2b3abf8c8

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.6.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.6.ebuild
new file mode 100644
index ..896db57a6f33
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.6.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools/;
+SRC_URI="
+   https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz
+   -> ${P}.tar.gz
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+DEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+RDEPEND=${DEPEND}
+
+use10() {
+   usex "${1}" 1 0
+}
+
+src_compile() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   local opts=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+   emake "${opts[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   doman manpages/*.1
+
+   dosym unsquashfs /usr/bin/sqfscat
+   dosym mksquashfs /usr/bin/sqfstar
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2023-03-18 Thread Michał Górny
commit: 6464504099ed26f73eb32d676d1787ac0dbc60c6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 18 06:00:09 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 18 06:00:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64645040

sys-fs/squashfs-tools: Add GH remote-id

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-fs/squashfs-tools/metadata.xml 
b/sys-fs/squashfs-tools/metadata.xml
index 2c922ee2c5c8..dd7ab2781e15 100644
--- a/sys-fs/squashfs-tools/metadata.xml
+++ b/sys-fs/squashfs-tools/metadata.xml
@@ -7,6 +7,7 @@


cpe:/a:squashfs-tools_project:squashfs-tools
+   plougher/squashfs-tools
squashfs

 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2023-03-01 Thread Matt Turner
commit: a5a837c200dcb9a9e4984ea6bef80195c4d0434f
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  2 01:18:51 2023 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  2 01:29:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a837c2

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 -
 .../squashfs-tools-ng-1.1.4.ebuild | 51 --
 2 files changed, 52 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 5dd981d9a165..697696ca16bf 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1 @@
-DIST squashfs-tools-ng-1.1.4.tar.xz 1311684 BLAKE2B 
b976ac223d57919958e0ad04c989e0a9cf2837e1c7ef1e1962069b4796b492fe2fc99c59d1e38b11e380226dc2fc4b2e25e29244635a32d03d0667f2b3ef1d7f
 SHA512 
10e0bebd70de686862f1473588cdbf922ad766c86b64ebd4d6338fd863f862fe0c9374950fa54a197c0f02021c63943cf1ba57ebb7f93a4188e68e2b25b4a800
 DIST squashfs-tools-ng-1.2.0.tar.xz 586992 BLAKE2B 
ca20e4e01033b4dfa3ada2abd0f618305cb3f49f683863d36ea93679c2cfc0c396ee209c3254fa318d30cb2c4c000c3634d4b625212842cabae0a5e53b4a2bdc
 SHA512 
0c52890a92e2aee928db3e2407c087703d331e9dd8cba1b58ef44fe78cdd7ed1523e9b0485f7da83ad77423ffdccaf392a2b752ad948d62a5f1b5e600b523070

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild
deleted file mode 100644
index e8a838da86a8..
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 +lzma lzo selinux +tools zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzma?( app-arch/xz-utils:= )
-   lzo? ( dev-libs/lzo:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with lzma xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2023-02-24 Thread Sam James
commit: fce670f0ed739e648d3bd382d9e6f9650623c127
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 24 09:21:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 24 09:21:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce670f0

sys-fs/squashfs-tools-ng: Stabilize 1.2.0 amd64, #896154

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
index d5956518b2df..74fd9371c24f 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2022 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -9,7 +9,7 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2022-12-03 Thread Matt Turner
commit: 990047cd89225b0ce59fb2d3fe375a2ccd80a668
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Dec  3 14:53:09 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Dec  3 14:55:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=990047cd

sys-fs/squashfs-tools-ng: Version bump to 1.2.0

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest |  1 +
 ...fs-tools-ng-.ebuild => squashfs-tools-ng-1.2.0.ebuild} | 11 ++-
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild| 11 ++-
 3 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 4cf22da07222..5dd981d9a165 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-1.1.4.tar.xz 1311684 BLAKE2B 
b976ac223d57919958e0ad04c989e0a9cf2837e1c7ef1e1962069b4796b492fe2fc99c59d1e38b11e380226dc2fc4b2e25e29244635a32d03d0667f2b3ef1d7f
 SHA512 
10e0bebd70de686862f1473588cdbf922ad766c86b64ebd4d6338fd863f862fe0c9374950fa54a197c0f02021c63943cf1ba57ebb7f93a4188e68e2b25b4a800
+DIST squashfs-tools-ng-1.2.0.tar.xz 586992 BLAKE2B 
ca20e4e01033b4dfa3ada2abd0f618305cb3f49f683863d36ea93679c2cfc0c396ee209c3254fa318d30cb2c4c000c3634d4b625212842cabae0a5e53b4a2bdc
 SHA512 
0c52890a92e2aee928db3e2407c087703d331e9dd8cba1b58ef44fe78cdd7ed1523e9b0485f7da83ad77423ffdccaf392a2b752ad948d62a5f1b5e600b523070

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
similarity index 85%
copy from sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
copy to sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
index a9e2e335faeb..d5956518b2df 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.2.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DESCRIPTION="A new set of tools for working with SquashFS images"
 HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
@@ -13,15 +13,16 @@ else
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+LICENSE="LGPL-3+ BSD-2 MIT tools? ( GPL-3+ )"
 SLOT="0"
 IUSE="lz4 +lzma lzo selinux +tools zstd"
 
 DEPEND="
+   app-arch/bzip2:=
sys-libs/zlib:=
lz4? ( app-arch/lz4:= )
-   lzma?( app-arch/xz-utils:= )
-   lzo? ( dev-libs/lzo:= )
+   lzma?( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo:2 )
selinux? ( sys-libs/libselinux:= )
zstd?( app-arch/zstd:= )
 "

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
index a9e2e335faeb..d5956518b2df 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DESCRIPTION="A new set of tools for working with SquashFS images"
 HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
@@ -13,15 +13,16 @@ else
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+LICENSE="LGPL-3+ BSD-2 MIT tools? ( GPL-3+ )"
 SLOT="0"
 IUSE="lz4 +lzma lzo selinux +tools zstd"
 
 DEPEND="
+   app-arch/bzip2:=
sys-libs/zlib:=
lz4? ( app-arch/lz4:= )
-   lzma?( app-arch/xz-utils:= )
-   lzo? ( dev-libs/lzo:= )
+   lzma?( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo:2 )
selinux? ( sys-libs/libselinux:= )
zstd?( app-arch/zstd:= )
 "



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2022-10-31 Thread Matt Turner
commit: 1322ac0bf900b6aebf5b511906587fbfb1b966e4
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 31 15:30:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 31 15:31:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1322ac0b

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 -
 .../squashfs-tools-ng-1.1.3.ebuild | 51 --
 2 files changed, 52 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 1992a8f0a8b8..4cf22da07222 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1 @@
-DIST squashfs-tools-ng-1.1.3.tar.xz 1181268 BLAKE2B 
0d72cc82d937f7403fb67030d799cce37062496bb5dddf68f2151243b99934104e4e576e45bc6bcb2229b1f9eca134482de3180f0035229d829e785fdf0d5d03
 SHA512 
7a42a540622c324f500e21d64bc57bc203069c6e1deb2624597a767d8267b719bd8f76fbfa0166b7e2d4a6f9acd3d2a46514a45fcb4760052d45c7e1861da94e
 DIST squashfs-tools-ng-1.1.4.tar.xz 1311684 BLAKE2B 
b976ac223d57919958e0ad04c989e0a9cf2837e1c7ef1e1962069b4796b492fe2fc99c59d1e38b11e380226dc2fc4b2e25e29244635a32d03d0667f2b3ef1d7f
 SHA512 
10e0bebd70de686862f1473588cdbf922ad766c86b64ebd4d6338fd863f862fe0c9374950fa54a197c0f02021c63943cf1ba57ebb7f93a4188e68e2b25b4a800

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.3.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.3.ebuild
deleted file mode 100644
index a9e2e335faeb..
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 +lzma lzo selinux +tools zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzma?( app-arch/xz-utils:= )
-   lzo? ( dev-libs/lzo:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with lzma xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-10-28 Thread Sam James
commit: 76ff400565e6e3a04c8c2936b7170ac1ae4a
Author: kochera  google  com>
AuthorDate: Fri Oct 28 19:05:03 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 28 20:58:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ff4005

sys-fs/squashfs-tools: Add cpe_uri for squashfs-tools package.

Signed-off-by: Michael Kochera  google.com>
Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-fs/squashfs-tools/metadata.xml 
b/sys-fs/squashfs-tools/metadata.xml
index b772b072f223..2c922ee2c5c8 100644
--- a/sys-fs/squashfs-tools/metadata.xml
+++ b/sys-fs/squashfs-tools/metadata.xml
@@ -6,6 +6,7 @@
Michał Górny


+   cpe:/a:squashfs-tools_project:squashfs-tools
squashfs

 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2022-10-20 Thread Jakov Smolić
commit: 9cb516e0803dbb0a9ad36947321269c4d742691d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Oct 20 10:51:36 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Oct 20 10:51:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb516e0

sys-fs/squashfs-tools-ng: Stabilize 1.1.4 amd64, #877525

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild
index 46990a47a6dc..e8a838da86a8 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} = * ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
 fi
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-05 Thread Michał Górny
commit: bb2501af4e5ac01b9c2aa23aad1778473ef78faf
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  5 14:15:49 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  5 17:43:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb2501af

sys-fs/squashfs-tools: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 53 ---
 1 file changed, 53 deletions(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
deleted file mode 100644
index c8e5c9198e74..
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="tools to create and extract Squashfs filesystems"
-HOMEPAGE="https://github.com/plougher/squashfs-tools/;
-SRC_URI="
-   https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz
-   -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
-IUSE="debug lz4 lzma lzo xattr zstd"
-
-RDEPEND="
-   sys-libs/zlib
-   lz4? ( app-arch/lz4 )
-   lzma? ( app-arch/xz-utils )
-   lzo? ( dev-libs/lzo )
-   xattr? ( sys-apps/attr )
-   zstd? ( app-arch/zstd )
-"
-DEPEND=${RDEPEND}
-
-use10() { usex "${1}" 1 0; }
-
-src_configure() {
-   # set up make command line variables in EMAKE_SQUASHFS_CONF
-   EMAKE_SQUASHFS_CONF=(
-   LZMA_XZ_SUPPORT=$(use10 lzma)
-   LZO_SUPPORT=$(use10 lzo)
-   LZ4_SUPPORT=$(use10 lz4)
-   XATTR_SUPPORT=$(use10 xattr)
-   XZ_SUPPORT=$(use10 lzma)
-   ZSTD_SUPPORT=$(use10 zstd)
-   )
-
-   tc-export CC
-   use debug && append-cppflags -DSQUASHFS_TRACE
-}
-
-src_compile() {
-   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
-}
-
-src_install() {
-   dobin squashfs-tools/{mksquashfs,unsquashfs}
-   dodoc ACKNOWLEDGEMENTS CHANGES README*
-   dodoc -r RELEASE-READMEs
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-05 Thread Agostino Sarubbo
commit: 32269d8d2c8ea901b16ccd433925c34d8cc3e6f0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Sep  5 14:03:39 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Sep  5 14:03:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32269d8d

sys-fs/squashfs-tools: sparc stable wrt bug #868456

Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index b1d673cf6749..9badfed2 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-04 Thread Sam James
commit: af023091b4dca4b8f6f9c949301389eec0e7f479
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 20:22:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 20:22:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af023091

sys-fs/squashfs-tools: Stabilize 4.5.1-r1 arm64, #868456

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index e04b1f4d4d12..b1d673cf6749 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-04 Thread Arthur Zamarin
commit: d262223a432fe371a9081f19c003690c53d01f9c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep  4 18:43:11 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep  4 18:43:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d262223a

sys-fs/squashfs-tools: Stabilize 4.5.1-r1 ppc64, #868456

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index 91634ed52944..e04b1f4d4d12 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-04 Thread Arthur Zamarin
commit: fab6b2de9280ddeec986b03c13572df2da2a4fe6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep  4 18:19:06 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep  4 18:21:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fab6b2de

sys-fs/squashfs-tools: Stabilize 4.5.1-r1 ppc, #868456

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index 21b74aac260b..91634ed52944 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-04 Thread Sam James
commit: 6f1bd94b054dda90d608c3ba4b0b36675e8c57dd
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 17:48:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 17:48:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f1bd94b

sys-fs/squashfs-tools: Stabilize 4.5.1-r1 arm, #868456

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index a38901ead521..21b74aac260b 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-04 Thread Sam James
commit: ee95411b040da655a49e60ec2d7fd6fae14fefa5
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 17:44:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 17:44:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee95411b

sys-fs/squashfs-tools: Stabilize 4.5.1-r1 x86, #868456

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index c34a9f65f55b..a38901ead521 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-09-04 Thread Sam James
commit: cd46f134b167fc50f8cd5f032797b362be07c272
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 17:44:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 17:44:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd46f134

sys-fs/squashfs-tools: Stabilize 4.5.1-r1 amd64, #868456

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index 6f515be00769..c34a9f65f55b 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-08-27 Thread WANG Xuerui
commit: f51b27d180ec131ce7ede116ab8b0205b190c82c
Author: WANG Xuerui  gentoo  org>
AuthorDate: Sat Aug 27 09:42:19 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Sat Aug 27 10:05:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51b27d1

sys-fs/squashfs-tools: keyword 4.5.1-r1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
index ad3c805c18a3..6f515be00769 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-07-26 Thread Matt Turner
commit: f3dd7fcabbf96284a41bc457559b9ed1fafed217
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jul 27 02:46:59 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Jul 27 02:51:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3dd7fca

sys-fs/squashfs-tools: Install man pages, sqfscat, and sqfstar

Thanks-to: Paul Preney
Closes: https://bugs.gentoo.org/861278
Signed-off-by: Matt Turner  gentoo.org>

 .../squashfs-tools/squashfs-tools-4.5.1-r1.ebuild  | 57 ++
 1 file changed, 57 insertions(+)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
new file mode 100644
index ..ad3c805c18a3
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1-r1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools/;
+SRC_URI="
+   https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+RDEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+DEPEND=${RDEPEND}
+
+use10() { usex "${1}" 1 0; }
+
+src_configure() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   EMAKE_SQUASHFS_CONF=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+}
+
+src_compile() {
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   dodoc -r RELEASE-READMEs
+   doman manpages/*.1
+
+   dosym unsquashfs /usr/bin/sqfscat
+   dosym mksquashfs /usr/bin/sqfstar
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Michał Górny
commit: bd4394c29c6f6ddb7a2672db273f30ba7ff89b41
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Apr 27 20:13:22 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Apr 27 20:17:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd4394c2

sys-fs/squashfs-tools: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest |  1 -
 .../squashfs-tools-4.5_p20210914.ebuild| 59 --
 2 files changed, 60 deletions(-)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 9513ee9b9c21..74ac243af627 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,2 +1 @@
 DIST squashfs-tools-4.5.1.tar.gz 270112 BLAKE2B 
cbd35daf582d284b021911bb754ed548763f2773e1bc02516ca18bab7034e352780c11eb7dfed1f047b70974dcfb716bb1a1d3729e5b25662203cfbf93553b73
 SHA512 
b3934ea1e26c7508110312711465644a6d9674b6b5332a7d011e191fa3c1d4b8be694214794a0f6005263d0f4e18bab96af2f7ed66a178f8e3bb3a781cd44896
-DIST squashfs-tools-4.5_p20210914.tar.gz 252104 BLAKE2B 
f3e2e281c30464b3c2e9b2a3520979f90ccb83665ac61a2f68513b402d8ef658621fc75c782c2f42da20ddf51f884e2ccc6217df941790fd45b41f3f4e3ec970
 SHA512 
a814092be787bbcbd4115f87493a63b67caa364ad88fe5a3c82808083343cbcbc22b4617bd5c72d65d8abe2b11eb77853bcc55c11f5cd5dc3edf24bd27cbd135

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
deleted file mode 100644
index fdbb67149677..
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit flag-o-matic toolchain-funcs
-
-MY_COMMIT="19fcc9365dcdb2c22d232d42d11012940df64b7c"
-MY_P=${P/_p/-git.}
-DESCRIPTION="tools to create and extract Squashfs filesystems"
-HOMEPAGE="https://github.com/plougher/squashfs-tools/;
-SRC_URI="https://github.com/plougher/squashfs-tools/archive/${MY_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-S=${WORKDIR}/${PN}-${MY_COMMIT}
-
-#SRC_URI="
-#  https://github.com/plougher/squashfs-tools/archive/${PV/_p/-git.}.tar.gz
-#  -> ${MY_P}.tar.gz"
-#S=${WORKDIR}/${MY_P}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
-IUSE="debug lz4 lzma lzo xattr zstd"
-
-RDEPEND="
-   sys-libs/zlib
-   lz4? ( app-arch/lz4 )
-   lzma? ( app-arch/xz-utils )
-   lzo? ( dev-libs/lzo )
-   xattr? ( sys-apps/attr )
-   zstd? ( app-arch/zstd )
-"
-DEPEND=${RDEPEND}
-
-use10() { usex "${1}" 1 0; }
-
-src_configure() {
-   # set up make command line variables in EMAKE_SQUASHFS_CONF
-   EMAKE_SQUASHFS_CONF=(
-   LZMA_XZ_SUPPORT=$(use10 lzma)
-   LZO_SUPPORT=$(use10 lzo)
-   LZ4_SUPPORT=$(use10 lz4)
-   XATTR_SUPPORT=$(use10 xattr)
-   XZ_SUPPORT=$(use10 lzma)
-   ZSTD_SUPPORT=$(use10 zstd)
-   )
-
-   tc-export CC
-   use debug && append-cppflags -DSQUASHFS_TRACE
-}
-
-src_compile() {
-   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
-}
-
-src_install() {
-   dobin squashfs-tools/{mksquashfs,unsquashfs}
-   dodoc ACKNOWLEDGEMENTS CHANGES README*
-   dodoc -r RELEASE-READMEs
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Arthur Zamarin
commit: d46e7ecc6959f310cad68ecb9d8113769bd807ff
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr 27 19:30:19 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr 27 19:30:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d46e7ecc

sys-fs/squashfs-tools: Stabilize 4.5.1 ppc64, #841293

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
index 7a0dc8bcbddd..c8e5c9198e74 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Arthur Zamarin
commit: 050d2c5719ee39a22ce157d9050a35f49ef4a8a8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr 27 19:07:01 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr 27 19:07:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=050d2c57

sys-fs/squashfs-tools: Stabilize 4.5.1 ppc, #841293

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
index e6bbc6436ba3..7a0dc8bcbddd 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Arthur Zamarin
commit: 30d720e2fb3148a5e22f255fac6a2dde79586e9b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr 27 18:48:49 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr 27 18:48:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30d720e2

sys-fs/squashfs-tools: Stabilize 4.5.1 arm64, #841293

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
index 71530e032432..e6bbc6436ba3 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Arthur Zamarin
commit: d04ce606f99b5a47ed6bf6b8f4f6675615e503e7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr 27 18:33:54 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr 27 18:33:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04ce606

sys-fs/squashfs-tools: Stabilize 4.5.1 arm, #841293

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
index 88ed40300769..71530e032432 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Arthur Zamarin
commit: 92f08c8aeb3459d44e614dedb1aab2a78e1346ed
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Apr 27 18:21:21 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Apr 27 18:21:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92f08c8a

sys-fs/squashfs-tools: Stabilize 4.5.1 sparc, #841293

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
index 66ae2ebb136a..88ed40300769 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Sam James
commit: 214a80b4d5c2ce63f02eba349a5ea0b2c176e6f6
Author: Sam James  gentoo  org>
AuthorDate: Wed Apr 27 18:19:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Apr 27 18:20:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214a80b4

sys-fs/squashfs-tools: Stabilize 4.5.1 x86, #841293

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
index 27d1c3f642c7..ecd426281822 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-04-27 Thread Sam James
commit: 8af7c1c36c4de76ee83aa45de7d1aff95bf2e5d6
Author: Sam James  gentoo  org>
AuthorDate: Wed Apr 27 18:20:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Apr 27 18:20:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af7c1c3

sys-fs/squashfs-tools: Stabilize 4.5.1 amd64, #841293

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
index ecd426281822..66ae2ebb136a 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2022-04-02 Thread Matt Turner
commit: 1253d6279bafdea70a18c3e506e05c151026fbf7
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Apr  3 00:06:11 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Apr  3 00:06:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1253d627

sys-fs/squashfs-tools-ng: Version bump to 1.1.4

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.1.4.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index cd99c985f901..1992a8f0a8b8 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-1.1.3.tar.xz 1181268 BLAKE2B 
0d72cc82d937f7403fb67030d799cce37062496bb5dddf68f2151243b99934104e4e576e45bc6bcb2229b1f9eca134482de3180f0035229d829e785fdf0d5d03
 SHA512 
7a42a540622c324f500e21d64bc57bc203069c6e1deb2624597a767d8267b719bd8f76fbfa0166b7e2d4a6f9acd3d2a46514a45fcb4760052d45c7e1861da94e
+DIST squashfs-tools-ng-1.1.4.tar.xz 1311684 BLAKE2B 
b976ac223d57919958e0ad04c989e0a9cf2837e1c7ef1e1962069b4796b492fe2fc99c59d1e38b11e380226dc2fc4b2e25e29244635a32d03d0667f2b3ef1d7f
 SHA512 
10e0bebd70de686862f1473588cdbf922ad766c86b64ebd4d6338fd863f862fe0c9374950fa54a197c0f02021c63943cf1ba57ebb7f93a4188e68e2b25b4a800

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild
new file mode 100644
index ..46990a47a6dc
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.4.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 +lzma lzo selinux +tools zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzma?( app-arch/xz-utils:= )
+   lzo? ( dev-libs/lzo:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with lzma xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2022-03-18 Thread Michał Górny
commit: 690cc56366917907c0a52d74d12f181591893557
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 18 08:49:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 18 10:08:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=690cc563

sys-fs/squashfs-tools: Bump to 4.5.1

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest|  1 +
 sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index d5e16c1f8c5d..9513ee9b9c21 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1 +1,2 @@
+DIST squashfs-tools-4.5.1.tar.gz 270112 BLAKE2B 
cbd35daf582d284b021911bb754ed548763f2773e1bc02516ca18bab7034e352780c11eb7dfed1f047b70974dcfb716bb1a1d3729e5b25662203cfbf93553b73
 SHA512 
b3934ea1e26c7508110312711465644a6d9674b6b5332a7d011e191fa3c1d4b8be694214794a0f6005263d0f4e18bab96af2f7ed66a178f8e3bb3a781cd44896
 DIST squashfs-tools-4.5_p20210914.tar.gz 252104 BLAKE2B 
f3e2e281c30464b3c2e9b2a3520979f90ccb83665ac61a2f68513b402d8ef658621fc75c782c2f42da20ddf51f884e2ccc6217df941790fd45b41f3f4e3ec970
 SHA512 
a814092be787bbcbd4115f87493a63b67caa364ad88fe5a3c82808083343cbcbc22b4617bd5c72d65d8abe2b11eb77853bcc55c11f5cd5dc3edf24bd27cbd135

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
new file mode 100644
index ..27d1c3f642c7
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools/;
+SRC_URI="
+   https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+RDEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+DEPEND=${RDEPEND}
+
+use10() { usex "${1}" 1 0; }
+
+src_configure() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   EMAKE_SQUASHFS_CONF=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+}
+
+src_compile() {
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   dodoc -r RELEASE-READMEs
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-03 Thread Michał Górny
commit: a490d883ddb2eb4f0e0f366e103063e3385a751a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec  3 08:41:15 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec  3 08:41:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a490d883

sys-fs/squashfs-tools: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest  |  1 -
 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 2f241ef9a54b..d5e16c1f8c5d 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,2 +1 @@
-DIST squashfs-tools-4.5.tar.gz 250471 BLAKE2B 
2fc8ab9bb6565b97656afd63b76bfd7449d96b83697286e88b55a8cd82957b395df17a707ee93e8a99ed19dc5ba73966ce33530ef6c35797924dad4e3f16ed3b
 SHA512 
e00610487d24eed9e5dadcf84014a3d7faa9815d8ce00fd4660e6c8ce394dccf185ed9f387f4fa1313b9812fe770f802bdcbaef87887f2bcefacf234594a72e0
 DIST squashfs-tools-4.5_p20210914.tar.gz 252104 BLAKE2B 
f3e2e281c30464b3c2e9b2a3520979f90ccb83665ac61a2f68513b402d8ef658621fc75c782c2f42da20ddf51f884e2ccc6217df941790fd45b41f3f4e3ec970
 SHA512 
a814092be787bbcbd4115f87493a63b67caa364ad88fe5a3c82808083343cbcbc22b4617bd5c72d65d8abe2b11eb77853bcc55c11f5cd5dc3edf24bd27cbd135

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
deleted file mode 100644
index c9155aa5e18b..
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit flag-o-matic toolchain-funcs
-
-MY_P=${P/_p/-git.}
-DESCRIPTION="tools to create and extract Squashfs filesystems"
-HOMEPAGE="https://github.com/plougher/squashfs-tools/;
-SRC_URI="
-   https://github.com/plougher/squashfs-tools/archive/${PV/_p/-git.}.tar.gz
-   -> ${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
-IUSE="debug lz4 lzma lzo xattr zstd"
-
-RDEPEND="
-   sys-libs/zlib
-   lz4? ( app-arch/lz4 )
-   lzma? ( app-arch/xz-utils )
-   lzo? ( dev-libs/lzo )
-   xattr? ( sys-apps/attr )
-   zstd? ( app-arch/zstd )
-"
-DEPEND=${RDEPEND}
-
-use10() { usex "${1}" 1 0; }
-
-src_configure() {
-   # set up make command line variables in EMAKE_SQUASHFS_CONF
-   EMAKE_SQUASHFS_CONF=(
-   LZMA_XZ_SUPPORT=$(use10 lzma)
-   LZO_SUPPORT=$(use10 lzo)
-   LZ4_SUPPORT=$(use10 lz4)
-   XATTR_SUPPORT=$(use10 xattr)
-   XZ_SUPPORT=$(use10 lzma)
-   ZSTD_SUPPORT=$(use10 zstd)
-   )
-
-   tc-export CC
-   use debug && append-cppflags -DSQUASHFS_TRACE
-}
-
-src_compile() {
-   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
-}
-
-src_install() {
-   dobin squashfs-tools/{mksquashfs,unsquashfs}
-   dodoc ACKNOWLEDGEMENTS CHANGES README*
-   dodoc -r RELEASE-READMEs
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-02 Thread Arthur Zamarin
commit: 25cea3c8da8c8a74b120118cc7ee4867523eb437
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  3 07:52:27 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  3 07:52:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25cea3c8

sys-fs/squashfs-tools: Stabilize 4.5_p20210914 x86, #828028

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
index bcf83a4ccf6b..eea05102d036 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${PN}-${MY_COMMIT}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-02 Thread Arthur Zamarin
commit: 0183aad3e76ab4c7e53b6b4cd3b56164da6952b1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Dec  3 07:52:30 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Dec  3 07:52:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0183aad3

sys-fs/squashfs-tools: Stabilize 4.5_p20210914 sparc, #828028

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
index eea05102d036..fdbb67149677 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${PN}-${MY_COMMIT}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-02 Thread Sam James
commit: 1b296b709ea7b9991f65379da4ae3d4addda23b0
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  2 23:38:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  2 23:38:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b296b70

sys-fs/squashfs-tools: Stabilize 4.5_p20210914 arm64, #828028

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
index b2bfb027a3a4..bcf83a4ccf6b 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${PN}-${MY_COMMIT}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-02 Thread Sam James
commit: f2b688d022c64b9d0f0c7e32ae7a6d20b0537de2
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  2 23:38:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  2 23:38:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2b688d0

sys-fs/squashfs-tools: Stabilize 4.5_p20210914 arm, #828028

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
index b32c87e3f7ac..b2bfb027a3a4 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${PN}-${MY_COMMIT}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-02 Thread Sam James
commit: c5c932959096ff9d07d50fb61c1ccae34a28312f
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  2 19:51:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  2 19:52:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5c93295

sys-fs/squashfs-tools: Stabilize 4.5_p20210914 ppc, #828028

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
index 8cbcf313054c..b32c87e3f7ac 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${PN}-${MY_COMMIT}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-02 Thread Sam James
commit: 45fc10ccfb8cde0865e96425d3278f24656d9549
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  2 19:50:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  2 19:51:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45fc10cc

sys-fs/squashfs-tools: Stabilize 4.5_p20210914 ppc64, #828028

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
index 113fe8a69060..8cbcf313054c 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${PN}-${MY_COMMIT}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-12-02 Thread Sam James
commit: 6c4a8566bd549d035da132d60e0590e90ecad046
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  2 19:48:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  2 19:48:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c4a8566

sys-fs/squashfs-tools: Stabilize 4.5_p20210914 amd64, #828028

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
index 66c6618def05..113fe8a69060 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -18,7 +18,7 @@ S=${WORKDIR}/${PN}-${MY_COMMIT}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-10-14 Thread Sam James
commit: b99b21377e23907dcb9986ef1ebfdc30b931c235
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct 15 03:19:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct 15 03:20:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b99b2137

sys-fs/squashfs-tools: add 4.5_p20210914

Contains a fix for a CVE (CVE-2021-41072) but
also a few regressions and follow up fixes.

Upstream say there's a new version coming
soon but best not to wait.

Closes: https://bugs.gentoo.org/811474
Bug: https://bugs.gentoo.org/811474
Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/Manifest |  1 +
 .../squashfs-tools-4.5_p20210914.ebuild| 59 ++
 2 files changed, 60 insertions(+)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 30d14da8e10..2f241ef9a54 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-4.5.tar.gz 250471 BLAKE2B 
2fc8ab9bb6565b97656afd63b76bfd7449d96b83697286e88b55a8cd82957b395df17a707ee93e8a99ed19dc5ba73966ce33530ef6c35797924dad4e3f16ed3b
 SHA512 
e00610487d24eed9e5dadcf84014a3d7faa9815d8ce00fd4660e6c8ce394dccf185ed9f387f4fa1313b9812fe770f802bdcbaef87887f2bcefacf234594a72e0
+DIST squashfs-tools-4.5_p20210914.tar.gz 252104 BLAKE2B 
f3e2e281c30464b3c2e9b2a3520979f90ccb83665ac61a2f68513b402d8ef658621fc75c782c2f42da20ddf51f884e2ccc6217df941790fd45b41f3f4e3ec970
 SHA512 
a814092be787bbcbd4115f87493a63b67caa364ad88fe5a3c82808083343cbcbc22b4617bd5c72d65d8abe2b11eb77853bcc55c11f5cd5dc3edf24bd27cbd135

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
new file mode 100644
index 000..66c6618def0
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5_p20210914.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit flag-o-matic toolchain-funcs
+
+MY_COMMIT="19fcc9365dcdb2c22d232d42d11012940df64b7c"
+MY_P=${P/_p/-git.}
+DESCRIPTION="tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools/;
+SRC_URI="https://github.com/plougher/squashfs-tools/archive/${MY_COMMIT}.tar.gz
 -> ${P}.tar.gz"
+S=${WORKDIR}/${PN}-${MY_COMMIT}
+
+#SRC_URI="
+#  https://github.com/plougher/squashfs-tools/archive/${PV/_p/-git.}.tar.gz
+#  -> ${MY_P}.tar.gz"
+#S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+RDEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+DEPEND=${RDEPEND}
+
+use10() { usex "${1}" 1 0; }
+
+src_configure() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   EMAKE_SQUASHFS_CONF=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+}
+
+src_compile() {
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   dodoc -r RELEASE-READMEs
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-09-04 Thread Michał Górny
commit: 78285ada959a6d24a949c457116f76309cea3ac2
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  4 22:06:19 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  4 22:07:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78285ada

sys-fs/squashfs-tools: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest |  1 -
 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 55 --
 2 files changed, 56 deletions(-)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 1347191f57c..30d14da8e10 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,2 +1 @@
-DIST squashfs-tools-4.4-git.1.tar.gz 241963 BLAKE2B 
7a80c353efbbca851b2eb44e742f20b4cf59e91058b53b77c74d879dc18d882e3bb6de8a010a4469c0a53384ccf2968bba4cd1d6f10cfcede70fe07eebbf2409
 SHA512 
8d8cc3da7cbfc7b94d070021383413f3d1ef1261ba3fd9924dde4453558a8f8f14812c2f5614f87bef719496b0a023897de8d087c32a7344fa2eb9c1624563a0
 DIST squashfs-tools-4.5.tar.gz 250471 BLAKE2B 
2fc8ab9bb6565b97656afd63b76bfd7449d96b83697286e88b55a8cd82957b395df17a707ee93e8a99ed19dc5ba73966ce33530ef6c35797924dad4e3f16ed3b
 SHA512 
e00610487d24eed9e5dadcf84014a3d7faa9815d8ce00fd4660e6c8ce394dccf185ed9f387f4fa1313b9812fe770f802bdcbaef87887f2bcefacf234594a72e0

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
deleted file mode 100644
index f3ca8774fca..000
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic toolchain-funcs
-
-MY_P=${P/_p/-git.}
-DESCRIPTION="tools to create and extract Squashfs filesystems"
-HOMEPAGE="https://github.com/plougher/squashfs-tools/;
-SRC_URI="
-   https://github.com/plougher/squashfs-tools/archive/${PV/_p/-git.}.tar.gz
-   -> ${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
-IUSE="debug lz4 lzma lzo xattr zstd"
-
-RDEPEND="
-   sys-libs/zlib
-   lz4? ( app-arch/lz4 )
-   lzma? ( app-arch/xz-utils )
-   lzo? ( dev-libs/lzo )
-   xattr? ( sys-apps/attr )
-   zstd? ( app-arch/zstd )
-"
-DEPEND=${RDEPEND}
-
-use10() { usex "${1}" 1 0; }
-
-src_configure() {
-   # set up make command line variables in EMAKE_SQUASHFS_CONF
-   EMAKE_SQUASHFS_CONF=(
-   LZMA_XZ_SUPPORT=$(use10 lzma)
-   LZO_SUPPORT=$(use10 lzo)
-   LZ4_SUPPORT=$(use10 lz4)
-   XATTR_SUPPORT=$(use10 xattr)
-   XZ_SUPPORT=$(use10 lzma)
-   ZSTD_SUPPORT=$(use10 zstd)
-   )
-
-   tc-export CC
-   use debug && append-cppflags -DSQUASHFS_TRACE
-}
-
-src_compile() {
-   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
-}
-
-src_install() {
-   dobin squashfs-tools/{mksquashfs,unsquashfs}
-   dodoc ACKNOWLEDGEMENTS CHANGES README*
-   dodoc -r RELEASE-READMEs
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-09-04 Thread Sam James
commit: 5c8f72c2fe8de0b990ecc73cf096851f5854a1d7
Author: Sam James  gentoo  org>
AuthorDate: Sat Sep  4 21:34:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep  4 21:39:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c8f72c2

sys-fs/squashfs-tools: Stabilize 4.5 arm64, #810709

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
index e623dd7063c..c9155aa5e18 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-09-01 Thread Sam James
commit: cfeb574edd20e8bfd405c31c709bf008a89b69af
Author: Sam James  gentoo  org>
AuthorDate: Wed Sep  1 18:29:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Sep  1 18:31:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfeb574e

sys-fs/squashfs-tools: Stabilize 4.5 arm, #810709

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
index be14232a82f..e623dd7063c 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-08-29 Thread Sam James
commit: 68b441ae1c13f2051bd6a76e3d4612598a3ac2bb
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Aug 28 12:08:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug 29 17:52:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b441ae

sys-fs/squashfs-tools: stable 4.5 for sparc, bug #810709

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
index 6f92e97bfec..be14232a82f 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-08-29 Thread Agostino Sarubbo
commit: 31f5c3798d5636b3cb586af445297a23b9b52ac8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Aug 29 10:02:35 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Aug 29 10:02:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31f5c379

sys-fs/squashfs-tools: x86 stable wrt bug #810709

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
index ecc2fa9ae1d..6f92e97bfec 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-08-27 Thread Agostino Sarubbo
commit: 6574913199a5d1a0dd908c1418dfec3a43549d0c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Aug 28 05:36:56 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Aug 28 05:36:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65749131

sys-fs/squashfs-tools: amd64 stable wrt bug #810709

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
index e959deb8255..ecc2fa9ae1d 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-08-27 Thread Sam James
commit: 252f2c9db58e266772c7cccd1d700f43e3a4b7d3
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 27 20:04:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 27 20:04:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=252f2c9d

sys-fs/squashfs-tools: Stabilize 4.5 ppc, #810709

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
index 91374f67ac3..e959deb8255 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-08-27 Thread Sam James
commit: bec05b0a01bd165a7a97d8f6119f83309ff1f60c
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 27 20:03:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 27 20:03:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bec05b0a

sys-fs/squashfs-tools: Stabilize 4.5 ppc64, #810709

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
index da568d9d59e..91374f67ac3 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-08-19 Thread Matt Turner
commit: b639650be7c55b073660b08d58e1080a990e275f
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 19:45:35 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 19:47:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b639650b

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  2 -
 .../squashfs-tools-ng-1.1.1.ebuild | 51 --
 .../squashfs-tools-ng-1.1.2.ebuild | 51 --
 3 files changed, 104 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 906a2e5bed6..cd99c985f90 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1 @@
-DIST squashfs-tools-ng-1.1.1.tar.xz 1170232 BLAKE2B 
8224b59f70c3c02df3762024510c75a038f8d9f1853575ccfa527173a528f17bd68ae4ec1d2448563aa504f683f5d9152cb07545db6b965f36a224dc95841f17
 SHA512 
2a7aa689b49fe06ec77e9b9c3bdcf264d05a478aa08543d8e8bc22ef45f10f351b49706485ed93cbd5adc537cd066f94e70952867838ec51859e8f6ce34607f4
-DIST squashfs-tools-ng-1.1.2.tar.xz 1178028 BLAKE2B 
f54419cdb57ace39a85dfa3a691adcdb637939ef7cc0419e596fb7a7b1fe24d469d2f2104c745303159c64f0692d45562562b6acf4cce3bfa49ef7a59a892cde
 SHA512 
3f66cd9034997104e2d3281e271e8ccfbdd6ecaa98313636dcfd5251717e173ceede27b4a94342b011707fc1e96884ec733423f978697c6420915d96c153cf3e
 DIST squashfs-tools-ng-1.1.3.tar.xz 1181268 BLAKE2B 
0d72cc82d937f7403fb67030d799cce37062496bb5dddf68f2151243b99934104e4e576e45bc6bcb2229b1f9eca134482de3180f0035229d829e785fdf0d5d03
 SHA512 
7a42a540622c324f500e21d64bc57bc203069c6e1deb2624597a767d8267b719bd8f76fbfa0166b7e2d4a6f9acd3d2a46514a45fcb4760052d45c7e1861da94e

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
deleted file mode 100644
index a9e2e335fae..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 +lzma lzo selinux +tools zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzma?( app-arch/xz-utils:= )
-   lzo? ( dev-libs/lzo:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with lzma xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
deleted file mode 100644
index a9e2e335fae..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 +lzma lzo selinux +tools zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzma?( app-arch/xz-utils:= )
-   lzo? ( dev-libs/lzo:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with lzma xz)
-   $(use_with zstd)
-   )
-  

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-08-19 Thread Matt Turner
commit: 5cbc0e54abb7ab20648d3b1c1eb2d862c90b0b32
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 19:44:31 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 19:47:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cbc0e54

sys-fs/squashfs-tools-ng: Version bump to 1.1.3

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.1.3.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 7089e17eb6a..906a2e5bed6 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-1.1.1.tar.xz 1170232 BLAKE2B 
8224b59f70c3c02df3762024510c75a038f8d9f1853575ccfa527173a528f17bd68ae4ec1d2448563aa504f683f5d9152cb07545db6b965f36a224dc95841f17
 SHA512 
2a7aa689b49fe06ec77e9b9c3bdcf264d05a478aa08543d8e8bc22ef45f10f351b49706485ed93cbd5adc537cd066f94e70952867838ec51859e8f6ce34607f4
 DIST squashfs-tools-ng-1.1.2.tar.xz 1178028 BLAKE2B 
f54419cdb57ace39a85dfa3a691adcdb637939ef7cc0419e596fb7a7b1fe24d469d2f2104c745303159c64f0692d45562562b6acf4cce3bfa49ef7a59a892cde
 SHA512 
3f66cd9034997104e2d3281e271e8ccfbdd6ecaa98313636dcfd5251717e173ceede27b4a94342b011707fc1e96884ec733423f978697c6420915d96c153cf3e
+DIST squashfs-tools-ng-1.1.3.tar.xz 1181268 BLAKE2B 
0d72cc82d937f7403fb67030d799cce37062496bb5dddf68f2151243b99934104e4e576e45bc6bcb2229b1f9eca134482de3180f0035229d829e785fdf0d5d03
 SHA512 
7a42a540622c324f500e21d64bc57bc203069c6e1deb2624597a767d8267b719bd8f76fbfa0166b7e2d4a6f9acd3d2a46514a45fcb4760052d45c7e1861da94e

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.3.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.3.ebuild
new file mode 100644
index 000..a9e2e335fae
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.3.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 +lzma lzo selinux +tools zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzma?( app-arch/xz-utils:= )
+   lzo? ( dev-libs/lzo:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with lzma xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2021-07-23 Thread Michał Górny
commit: b6c94854fe148457889470106cd972dc0161583f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 23 07:15:07 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 23 07:15:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6c94854

sys-fs/squashfs-tools: Bump to 4.5

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest  |  1 +
 sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild | 55 +
 2 files changed, 56 insertions(+)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 5df865b6a20..1347191f57c 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-4.4-git.1.tar.gz 241963 BLAKE2B 
7a80c353efbbca851b2eb44e742f20b4cf59e91058b53b77c74d879dc18d882e3bb6de8a010a4469c0a53384ccf2968bba4cd1d6f10cfcede70fe07eebbf2409
 SHA512 
8d8cc3da7cbfc7b94d070021383413f3d1ef1261ba3fd9924dde4453558a8f8f14812c2f5614f87bef719496b0a023897de8d087c32a7344fa2eb9c1624563a0
+DIST squashfs-tools-4.5.tar.gz 250471 BLAKE2B 
2fc8ab9bb6565b97656afd63b76bfd7449d96b83697286e88b55a8cd82957b395df17a707ee93e8a99ed19dc5ba73966ce33530ef6c35797924dad4e3f16ed3b
 SHA512 
e00610487d24eed9e5dadcf84014a3d7faa9815d8ce00fd4660e6c8ce394dccf185ed9f387f4fa1313b9812fe770f802bdcbaef87887f2bcefacf234594a72e0

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
new file mode 100644
index 000..da568d9d59e
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.5.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit flag-o-matic toolchain-funcs
+
+MY_P=${P/_p/-git.}
+DESCRIPTION="tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools/;
+SRC_URI="
+   https://github.com/plougher/squashfs-tools/archive/${PV/_p/-git.}.tar.gz
+   -> ${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+RDEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+DEPEND=${RDEPEND}
+
+use10() { usex "${1}" 1 0; }
+
+src_configure() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   EMAKE_SQUASHFS_CONF=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+}
+
+src_compile() {
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   dodoc -r RELEASE-READMEs
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-07-20 Thread Matt Turner
commit: 48fdd4f31564262999ac9268c9e21de290cabbd6
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Jul 20 17:18:44 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jul 20 17:19:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48fdd4f3

sys-fs/squashfs-tools-ng: Fix mistake from previous commit

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild | 2 +-
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild | 2 +-
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
index 26bca0bda38..a9e2e335fae 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
@@ -39,7 +39,7 @@ src_configure() {
$(use_with lzo)
$(use_with selinux)
$(use_with tools)
-   $(use_with xz)
+   $(use_with lzma xz)
$(use_with zstd)
)
econf "${myconf[@]}"

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
index 26bca0bda38..a9e2e335fae 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
@@ -39,7 +39,7 @@ src_configure() {
$(use_with lzo)
$(use_with selinux)
$(use_with tools)
-   $(use_with xz)
+   $(use_with lzma xz)
$(use_with zstd)
)
econf "${myconf[@]}"

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
index 26bca0bda38..a9e2e335fae 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
@@ -39,7 +39,7 @@ src_configure() {
$(use_with lzo)
$(use_with selinux)
$(use_with tools)
-   $(use_with xz)
+   $(use_with lzma xz)
$(use_with zstd)
)
econf "${myconf[@]}"



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-07-20 Thread Matt Turner
commit: 948123ac1484eb76e20e13d38b8bbd9138880b2d
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul  8 05:10:25 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jul 20 16:42:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=948123ac

sys-fs/squashfs-tools-ng: Rename IUSE=xz->lzma

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/metadata.xml   | 1 -
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild | 6 +++---
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild | 4 ++--
 sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild  | 6 +++---
 4 files changed, 8 insertions(+), 9 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/metadata.xml 
b/sys-fs/squashfs-tools-ng/metadata.xml
index 9d251701516..024d650b54f 100644
--- a/sys-fs/squashfs-tools-ng/metadata.xml
+++ b/sys-fs/squashfs-tools-ng/metadata.xml
@@ -7,7 +7,6 @@


Build the gensquashfs, rdsquashfs, sqfs2tar, 
sqfsdiff, and tar2sqfs tools
-   Enable support for XZ ("LZMA2") compression 
using app-arch/xz-utils


AgentD/squashfs-tools-ng

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
index 22a2dbc93b6..26bca0bda38 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,13 +15,13 @@ fi
 
 LICENSE="LGPL-3+ tools? ( GPL-3+ )"
 SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
+IUSE="lz4 +lzma lzo selinux +tools zstd"
 
 DEPEND="
sys-libs/zlib:=
lz4? ( app-arch/lz4:= )
+   lzma?( app-arch/xz-utils:= )
lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
selinux? ( sys-libs/libselinux:= )
zstd?( app-arch/zstd:= )
 "

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
index 3e96fd1fdfe..26bca0bda38 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
@@ -15,13 +15,13 @@ fi
 
 LICENSE="LGPL-3+ tools? ( GPL-3+ )"
 SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
+IUSE="lz4 +lzma lzo selinux +tools zstd"
 
 DEPEND="
sys-libs/zlib:=
lz4? ( app-arch/lz4:= )
+   lzma?( app-arch/xz-utils:= )
lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
selinux? ( sys-libs/libselinux:= )
zstd?( app-arch/zstd:= )
 "

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
index 22a2dbc93b6..26bca0bda38 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,13 +15,13 @@ fi
 
 LICENSE="LGPL-3+ tools? ( GPL-3+ )"
 SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
+IUSE="lz4 +lzma lzo selinux +tools zstd"
 
 DEPEND="
sys-libs/zlib:=
lz4? ( app-arch/lz4:= )
+   lzma?( app-arch/xz-utils:= )
lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
selinux? ( sys-libs/libselinux:= )
zstd?( app-arch/zstd:= )
 "



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-06-25 Thread Matt Turner
commit: 59b4d8d84905decd687b44163b8a3cad8b0aa3fb
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 25 23:47:42 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 25 23:57:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b4d8d8

sys-fs/squashfs-tools-ng: Version bump to 1.1.2

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.1.2.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index e4baef921d1..019dd67d05d 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-1.1.0.tar.xz 1169556 BLAKE2B 
87222e87176a69aef39130af9e6d9b23d9e2f81e10680eb26236260ebe50dedcfbba33785d739a98a152825e535d0d166f7ce08262157341a6ef48d1d2ef33e0
 SHA512 
06b76fb8bb4295ac451bc98cbe757b272ac831c2ec146803b4813b9792486372691864fcaaa1a3cac6628608ac62cf081f1aa331c0802ea1a9858461fef33923
 DIST squashfs-tools-ng-1.1.1.tar.xz 1170232 BLAKE2B 
8224b59f70c3c02df3762024510c75a038f8d9f1853575ccfa527173a528f17bd68ae4ec1d2448563aa504f683f5d9152cb07545db6b965f36a224dc95841f17
 SHA512 
2a7aa689b49fe06ec77e9b9c3bdcf264d05a478aa08543d8e8bc22ef45f10f351b49706485ed93cbd5adc537cd066f94e70952867838ec51859e8f6ce34607f4
+DIST squashfs-tools-ng-1.1.2.tar.xz 1178028 BLAKE2B 
f54419cdb57ace39a85dfa3a691adcdb637939ef7cc0419e596fb7a7b1fe24d469d2f2104c745303159c64f0692d45562562b6acf4cce3bfa49ef7a59a892cde
 SHA512 
3f66cd9034997104e2d3281e271e8ccfbdd6ecaa98313636dcfd5251717e173ceede27b4a94342b011707fc1e96884ec733423f978697c6420915d96c153cf3e

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
new file mode 100644
index 000..3e96fd1fdfe
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-06-25 Thread Matt Turner
commit: 14c3548b5dcc6a1e347a1f3e3f8eec8949e21081
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 25 23:56:33 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 25 23:57:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c3548b

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 -
 .../squashfs-tools-ng-1.1.0.ebuild | 51 --
 2 files changed, 52 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 019dd67d05d..7089e17eb6a 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1,2 @@
-DIST squashfs-tools-ng-1.1.0.tar.xz 1169556 BLAKE2B 
87222e87176a69aef39130af9e6d9b23d9e2f81e10680eb26236260ebe50dedcfbba33785d739a98a152825e535d0d166f7ce08262157341a6ef48d1d2ef33e0
 SHA512 
06b76fb8bb4295ac451bc98cbe757b272ac831c2ec146803b4813b9792486372691864fcaaa1a3cac6628608ac62cf081f1aa331c0802ea1a9858461fef33923
 DIST squashfs-tools-ng-1.1.1.tar.xz 1170232 BLAKE2B 
8224b59f70c3c02df3762024510c75a038f8d9f1853575ccfa527173a528f17bd68ae4ec1d2448563aa504f683f5d9152cb07545db6b965f36a224dc95841f17
 SHA512 
2a7aa689b49fe06ec77e9b9c3bdcf264d05a478aa08543d8e8bc22ef45f10f351b49706485ed93cbd5adc537cd066f94e70952867838ec51859e8f6ce34607f4
 DIST squashfs-tools-ng-1.1.2.tar.xz 1178028 BLAKE2B 
f54419cdb57ace39a85dfa3a691adcdb637939ef7cc0419e596fb7a7b1fe24d469d2f2104c745303159c64f0692d45562562b6acf4cce3bfa49ef7a59a892cde
 SHA512 
3f66cd9034997104e2d3281e271e8ccfbdd6ecaa98313636dcfd5251717e173ceede27b4a94342b011707fc1e96884ec733423f978697c6420915d96c153cf3e

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild
deleted file mode 100644
index 22a2dbc93b6..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-05-08 Thread Matt Turner
commit: d8295271206a4b8251bcb1f5bb416606eb6891ed
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  9 03:57:35 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  9 04:00:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8295271

sys-fs/squashfs-tools-ng: Version bump to 1.1.1

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.1.1.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 673aee2835a..e4baef921d1 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-1.1.0.tar.xz 1169556 BLAKE2B 
87222e87176a69aef39130af9e6d9b23d9e2f81e10680eb26236260ebe50dedcfbba33785d739a98a152825e535d0d166f7ce08262157341a6ef48d1d2ef33e0
 SHA512 
06b76fb8bb4295ac451bc98cbe757b272ac831c2ec146803b4813b9792486372691864fcaaa1a3cac6628608ac62cf081f1aa331c0802ea1a9858461fef33923
+DIST squashfs-tools-ng-1.1.1.tar.xz 1170232 BLAKE2B 
8224b59f70c3c02df3762024510c75a038f8d9f1853575ccfa527173a528f17bd68ae4ec1d2448563aa504f683f5d9152cb07545db6b965f36a224dc95841f17
 SHA512 
2a7aa689b49fe06ec77e9b9c3bdcf264d05a478aa08543d8e8bc22ef45f10f351b49706485ed93cbd5adc537cd066f94e70952867838ec51859e8f6ce34607f4

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
new file mode 100644
index 000..22a2dbc93b6
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-05-04 Thread Matt Turner
commit: 1f953ddda68972b1fb3b5f24d0e0814c29bb8401
Author: Matt Turner  gentoo  org>
AuthorDate: Tue May  4 20:51:40 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue May  4 20:54:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f953ddd

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  2 -
 .../squashfs-tools-ng-1.0.3.ebuild | 51 --
 .../squashfs-tools-ng-1.0.4.ebuild | 51 --
 3 files changed, 104 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index ac6467197b2..673aee2835a 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1 @@
-DIST squashfs-tools-ng-1.0.3.tar.xz 1101820 BLAKE2B 
f21cef44d5dc3cae01733bb720ba472d02777d2b69a3e428dbf4d0f64ad46a18131dae807a9ef719e29698b06ff04a82de1906876c40aef336aa57a75eb3fde3
 SHA512 
32e0084b1343de07b450e5337398618475a57c91c6f351c73bb7aa3dd6b5dc83aeca924f3d624ce802c9e1d600389a76cbca7b841104259d32f3ef2c7f13db67
-DIST squashfs-tools-ng-1.0.4.tar.xz 1103996 BLAKE2B 
c56b02932cdb4116fcec582f674771f27f67cbec51ca8d31beb1fbccef72fd06a82ee5981fb2dd5f6e7297180d1774d856c24ae447e95687f6f7b970357b807c
 SHA512 
c0a24be6b07739713213fc5936506ea7c1f62fa461f60955986ac4dda6958203e74336418abe615ecc85c62deb085039ca375891538ae01c21672d4911091614
 DIST squashfs-tools-ng-1.1.0.tar.xz 1169556 BLAKE2B 
87222e87176a69aef39130af9e6d9b23d9e2f81e10680eb26236260ebe50dedcfbba33785d739a98a152825e535d0d166f7ce08262157341a6ef48d1d2ef33e0
 SHA512 
06b76fb8bb4295ac451bc98cbe757b272ac831c2ec146803b4813b9792486372691864fcaaa1a3cac6628608ac62cf081f1aa331c0802ea1a9858461fef33923

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.3.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.3.ebuild
deleted file mode 100644
index 79c567828dd..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.3.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.4.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.4.ebuild
deleted file mode 100644
index 22a2dbc93b6..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with xz)
-   $(use_with zstd)
-   )
-   econf 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-03-28 Thread Matt Turner
commit: 0ecfd8f5676b874d1838990a9296a3cf4ef6a8e5
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Mar 29 00:55:13 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Mar 29 00:55:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ecfd8f5

sys-fs/squashfs-tools-ng: Version bump to 1.1.0

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.1.0.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 96953e6a9a4..ac6467197b2 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-1.0.3.tar.xz 1101820 BLAKE2B 
f21cef44d5dc3cae01733bb720ba472d02777d2b69a3e428dbf4d0f64ad46a18131dae807a9ef719e29698b06ff04a82de1906876c40aef336aa57a75eb3fde3
 SHA512 
32e0084b1343de07b450e5337398618475a57c91c6f351c73bb7aa3dd6b5dc83aeca924f3d624ce802c9e1d600389a76cbca7b841104259d32f3ef2c7f13db67
 DIST squashfs-tools-ng-1.0.4.tar.xz 1103996 BLAKE2B 
c56b02932cdb4116fcec582f674771f27f67cbec51ca8d31beb1fbccef72fd06a82ee5981fb2dd5f6e7297180d1774d856c24ae447e95687f6f7b970357b807c
 SHA512 
c0a24be6b07739713213fc5936506ea7c1f62fa461f60955986ac4dda6958203e74336418abe615ecc85c62deb085039ca375891538ae01c21672d4911091614
+DIST squashfs-tools-ng-1.1.0.tar.xz 1169556 BLAKE2B 
87222e87176a69aef39130af9e6d9b23d9e2f81e10680eb26236260ebe50dedcfbba33785d739a98a152825e535d0d166f7ce08262157341a6ef48d1d2ef33e0
 SHA512 
06b76fb8bb4295ac451bc98cbe757b272ac831c2ec146803b4813b9792486372691864fcaaa1a3cac6628608ac62cf081f1aa331c0802ea1a9858461fef33923

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild
new file mode 100644
index 000..22a2dbc93b6
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.1.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2021-01-24 Thread Matt Turner
commit: a1b3c128f663fb24618e45ba28ddd9ebd1fc8723
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Jan 25 03:17:49 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Jan 25 03:22:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b3c128

sys-fs/squashfs-tools-ng: Version bump to 1.0.4

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.0.4.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 95a9c26ffb1..96953e6a9a4 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-1.0.3.tar.xz 1101820 BLAKE2B 
f21cef44d5dc3cae01733bb720ba472d02777d2b69a3e428dbf4d0f64ad46a18131dae807a9ef719e29698b06ff04a82de1906876c40aef336aa57a75eb3fde3
 SHA512 
32e0084b1343de07b450e5337398618475a57c91c6f351c73bb7aa3dd6b5dc83aeca924f3d624ce802c9e1d600389a76cbca7b841104259d32f3ef2c7f13db67
+DIST squashfs-tools-ng-1.0.4.tar.xz 1103996 BLAKE2B 
c56b02932cdb4116fcec582f674771f27f67cbec51ca8d31beb1fbccef72fd06a82ee5981fb2dd5f6e7297180d1774d856c24ae447e95687f6f7b970357b807c
 SHA512 
c0a24be6b07739713213fc5936506ea7c1f62fa461f60955986ac4dda6958203e74336418abe615ecc85c62deb085039ca375891538ae01c21672d4911091614

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.4.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.4.ebuild
new file mode 100644
index 000..22a2dbc93b6
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.4.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/, sys-fs/squashfs-tools/files/

2020-12-20 Thread Michał Górny
commit: 0c7e8acaf9666ca4d2cfe388b635921b2615fb2b
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Dec 20 20:22:38 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Dec 20 20:34:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c7e8aca

sys-fs/squashfs-tools: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest |  1 -
 .../files/squashfs-tools-4.4-fno-common.patch  | 11 
 sys-fs/squashfs-tools/metadata.xml |  6 --
 sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild | 55 --
 sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild| 67 --
 5 files changed, 140 deletions(-)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 952f1f088a0..5df865b6a20 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,2 +1 @@
 DIST squashfs-tools-4.4-git.1.tar.gz 241963 BLAKE2B 
7a80c353efbbca851b2eb44e742f20b4cf59e91058b53b77c74d879dc18d882e3bb6de8a010a4469c0a53384ccf2968bba4cd1d6f10cfcede70fe07eebbf2409
 SHA512 
8d8cc3da7cbfc7b94d070021383413f3d1ef1261ba3fd9924dde4453558a8f8f14812c2f5614f87bef719496b0a023897de8d087c32a7344fa2eb9c1624563a0
-DIST squashfs-tools-4.4.tar.gz 241842 BLAKE2B 
006e2d340bcf6e20873221fb51fa30e0808c4a4d9e1838ca71c11ddbff3bf472dffe730e9edf07c34f535650e6486a8a80a88f82d6c9ef7a7c19aa22098e9197
 SHA512 
133ce437fb8c929933d52cff710b61dd9181f6f8be58250b0d6a59a7bb79a2b350f68f456b06a0e17c469409a71272d586802d570248273ddcd5dad088c00308

diff --git a/sys-fs/squashfs-tools/files/squashfs-tools-4.4-fno-common.patch 
b/sys-fs/squashfs-tools/files/squashfs-tools-4.4-fno-common.patch
deleted file mode 100644
index dfbf42abb34..000
--- a/sys-fs/squashfs-tools/files/squashfs-tools-4.4-fno-common.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/squashfs-tools/mksquashfs.h
-+++ b/squashfs-tools/mksquashfs.h
-@@ -143,7 +143,7 @@ struct append_file {
- #endif
- 
- extern struct cache *reader_buffer, *fragment_buffer, *reserve_cache;
--struct cache *bwriter_buffer, *fwriter_buffer;
-+extern struct cache *bwriter_buffer, *fwriter_buffer;
- extern struct queue *to_reader, *to_deflate, *to_writer, *from_writer,
-   *to_frag, *locked_fragment, *to_process_frag;
- extern struct append_file **file_mapping;

diff --git a/sys-fs/squashfs-tools/metadata.xml 
b/sys-fs/squashfs-tools/metadata.xml
index 9e444d0bdc1..a017cec98ce 100644
--- a/sys-fs/squashfs-tools/metadata.xml
+++ b/sys-fs/squashfs-tools/metadata.xml
@@ -5,12 +5,6 @@
mgo...@gentoo.org
Michał Górny

-   
-   
-   Enable support for XZ ("LZMA2") compression using
-   app-arch/xz-utils
-   
-   

squashfs


diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild
deleted file mode 100644
index f330af3c97a..000
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="tools to create and extract Squashfs filesystems"
-HOMEPAGE="https://github.com/plougher/squashfs-tools;
-SRC_URI="https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-IUSE="debug lz4 lzma lzo xattr zstd"
-
-RDEPEND="
-   sys-libs/zlib
-   lz4? ( app-arch/lz4 )
-   lzma? ( app-arch/xz-utils )
-   lzo? ( dev-libs/lzo )
-   xattr? ( sys-apps/attr )
-   zstd? ( app-arch/zstd )
-"
-DEPEND=${RDEPEND}
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-4.4-fno-common.patch
-)
-
-use10() { usex "${1}" 1 0; }
-
-src_configure() {
-   # set up make command line variables in EMAKE_SQUASHFS_CONF
-   EMAKE_SQUASHFS_CONF=(
-   LZMA_XZ_SUPPORT=$(use10 lzma)
-   LZO_SUPPORT=$(use10 lzo)
-   LZ4_SUPPORT=$(use10 lz4)
-   XATTR_SUPPORT=$(use10 xattr)
-   XZ_SUPPORT=$(use10 lzma)
-   ZSTD_SUPPORT=$(use10 zstd)
-   )
-
-   tc-export CC
-   use debug && append-cppflags -DSQUASHFS_TRACE
-}
-
-src_compile() {
-   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
-}
-
-src_install() {
-   dobin squashfs-tools/{mksquashfs,unsquashfs}
-   dodoc ACKNOWLEDGEMENTS CHANGES README*
-   dodoc -r RELEASE-READMEs
-}

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
deleted file mode 100644
index 26923c4c78e..000
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-20 Thread Thomas Deutschmann
commit: fc7dc36f57a792c037d6e79dfe6a01078195095a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Dec 20 18:56:20 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Dec 20 19:06:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc7dc36f

sys-fs/squashfs-tools: x86 stable (bug #760315)

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index 386fcb9a349..9faef4b6fd9 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-18 Thread Sergei Trofimovich
commit: 663dd12f10a8455e8ec0c30ca35caf876b3f828c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 18 20:23:24 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 18 20:49:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=663dd12f

sys-fs/squashfs-tools: stable 4.4_p1 for hppa, bug #760315

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index 9d87bc7d189..386fcb9a349 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-18 Thread Sam James
commit: 957a3b72b8f9d919a1f3d200c8d0f678ac89a543
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 17 18:51:43 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 17 18:52:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=957a3b72

sys-fs/squashfs-tools: Stabilize 4.4_p1 arm, #760315

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index ff8ad03a564..9d87bc7d189 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-18 Thread Sergei Trofimovich
commit: 2df88e53fb63cf6c91e35b3c242acda927a27baa
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Dec 18 10:19:36 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Dec 18 10:25:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2df88e53

sys-fs/squashfs-tools: stable 4.4_p1 for ppc64

stable wrt bug #760315

Package-Manager: Portage-3.0.12, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index d5952a4ecb3..ff8ad03a564 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
s390 sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-16 Thread Sam James
commit: 5ddfb0f336ce64ee6621138f30bf1019115560dd
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 17 04:54:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 17 04:54:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ddfb0f3

sys-fs/squashfs-tools: Stabilize 4.4_p1 arm64, #760315

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index 18514d9a15f..9e272e6c855 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
s390 sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-16 Thread Sam James
commit: b554329a70befffd463226a2329ea405c4fea25e
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 17 04:54:06 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 17 04:54:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b554329a

sys-fs/squashfs-tools: Stabilize 4.4_p1 s390, #760315

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index 3320992aa8e..18514d9a15f 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
s390 sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-16 Thread Sergei Trofimovich
commit: 0dc48f5cb33a943f4a7993d9aeae01a317ad5877
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Dec 16 20:31:25 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Dec 16 21:24:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc48f5c

sys-fs/squashfs-tools: stable 4.4_p1 for sparc, bug #760315

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index 81c5a2d85a9..3320992aa8e 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-12-16 Thread Sam James
commit: 84c211b52d50b7831d5acaae1db122d2f7b29e5f
Author: Sam James  gentoo  org>
AuthorDate: Wed Dec 16 19:51:02 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Dec 16 19:51:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84c211b5

sys-fs/squashfs-tools: Stabilize 4.4_p1 ppc, #760315

Signed-off-by: Sam James  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
index 01661bc54be..81c5a2d85a9 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -14,7 +14,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 IUSE="debug lz4 lzma lzo xattr zstd"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2020-11-16 Thread Matt Turner
commit: 29a15b0e4291c1296cb7d2b3c61414fc655d28f1
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Nov 17 04:53:27 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Nov 17 04:57:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a15b0e

sys-fs/squashfs-tools-ng: Version bump to 1.0.3

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.0.3.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index ab123a063bc..4b247cbb5c1 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-1.0.1.tar.xz 1079720 BLAKE2B 
efc4d715c65d42876d5ac51364d195267c6bc6c2219fea5746231bc4efbd9adac3fa23ea58f837da8610179f3d96ec9422efebe4ae231f4ab243cf948e64fa9b
 SHA512 
3b597b7bf654c6897e04dc6c18cec6034a8f0c0fe070c8d6eb3c8f4a06f4ab2ea8c970ac18c12f05ccb3015cf911790e945798a34361fdb7d1a442a1ca646a04
 DIST squashfs-tools-ng-1.0.2.tar.xz 1085300 BLAKE2B 
59331a131bda9b9bae9f162f80abaeb99a6a3ea49958c1d2ce84968d3f010cdf803821a6f2230a173fcd1e7f5224f06b82463b84e31419a7a10a5ede2bee1a61
 SHA512 
d23d886c7f13046cae8b0e16c380d0c6e681d8921428357f30da9660200332e3dee8b072449c45ab858b0d9fa388d62eb748fb03d6182da6a8839e5ca806176b
+DIST squashfs-tools-ng-1.0.3.tar.xz 1101820 BLAKE2B 
f21cef44d5dc3cae01733bb720ba472d02777d2b69a3e428dbf4d0f64ad46a18131dae807a9ef719e29698b06ff04a82de1906876c40aef336aa57a75eb3fde3
 SHA512 
32e0084b1343de07b450e5337398618475a57c91c6f351c73bb7aa3dd6b5dc83aeca924f3d624ce802c9e1d600389a76cbca7b841104259d32f3ef2c7f13db67

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.3.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.3.ebuild
new file mode 100644
index 000..79c567828dd
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.3.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2020-11-16 Thread Matt Turner
commit: 064c67a79ab959c0724f607cd864df329f200a24
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Nov 17 04:55:05 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Nov 17 04:57:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=064c67a7

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  2 -
 .../squashfs-tools-ng-1.0.1.ebuild | 51 --
 .../squashfs-tools-ng-1.0.2.ebuild | 51 --
 3 files changed, 104 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 4b247cbb5c1..95a9c26ffb1 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1 @@
-DIST squashfs-tools-ng-1.0.1.tar.xz 1079720 BLAKE2B 
efc4d715c65d42876d5ac51364d195267c6bc6c2219fea5746231bc4efbd9adac3fa23ea58f837da8610179f3d96ec9422efebe4ae231f4ab243cf948e64fa9b
 SHA512 
3b597b7bf654c6897e04dc6c18cec6034a8f0c0fe070c8d6eb3c8f4a06f4ab2ea8c970ac18c12f05ccb3015cf911790e945798a34361fdb7d1a442a1ca646a04
-DIST squashfs-tools-ng-1.0.2.tar.xz 1085300 BLAKE2B 
59331a131bda9b9bae9f162f80abaeb99a6a3ea49958c1d2ce84968d3f010cdf803821a6f2230a173fcd1e7f5224f06b82463b84e31419a7a10a5ede2bee1a61
 SHA512 
d23d886c7f13046cae8b0e16c380d0c6e681d8921428357f30da9660200332e3dee8b072449c45ab858b0d9fa388d62eb748fb03d6182da6a8839e5ca806176b
 DIST squashfs-tools-ng-1.0.3.tar.xz 1101820 BLAKE2B 
f21cef44d5dc3cae01733bb720ba472d02777d2b69a3e428dbf4d0f64ad46a18131dae807a9ef719e29698b06ff04a82de1906876c40aef336aa57a75eb3fde3
 SHA512 
32e0084b1343de07b450e5337398618475a57c91c6f351c73bb7aa3dd6b5dc83aeca924f3d624ce802c9e1d600389a76cbca7b841104259d32f3ef2c7f13db67

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.1.ebuild
deleted file mode 100644
index 79c567828dd..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with xz)
-   $(use_with zstd)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name "*.la" -delete || die
-}

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.2.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.2.ebuild
deleted file mode 100644
index 79c567828dd..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with selinux)
-   $(use_with tools)
-   $(use_with xz)
-   $(use_with zstd)
-   )
-   econf 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-11-07 Thread Michał Górny
commit: 24bbd1a0c079efc58faa81bc9e430d06062c204a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  7 08:24:04 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  7 08:24:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24bbd1a0

sys-fs/squashfs-tools: Take the package

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/metadata.xml | 23 +--
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/sys-fs/squashfs-tools/metadata.xml 
b/sys-fs/squashfs-tools/metadata.xml
index bf36ab7e6bb..9e444d0bdc1 100644
--- a/sys-fs/squashfs-tools/metadata.xml
+++ b/sys-fs/squashfs-tools/metadata.xml
@@ -1,14 +1,17 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-liv...@gentoo.org
-Gentoo LiveCD Project
-
-
-Enable support for XZ ("LZMA2") compression using 
app-arch/xz-utils
-
-
-squashfs
-
+   
+   mgo...@gentoo.org
+   Michał Górny
+   
+   
+   
+   Enable support for XZ ("LZMA2") compression using
+   app-arch/xz-utils
+   
+   
+   
+   squashfs
+   
 



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-11-07 Thread Michał Górny
commit: 9f52de4016a77cff490a7b3631ce95262b3592e5
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  7 08:35:11 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  7 08:38:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f52de40

sys-fs/squashfs-tools: Bump to 4.4-git.1

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/Manifest |  1 +
 sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index 2893f202086..952f1f088a0 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1 +1,2 @@
+DIST squashfs-tools-4.4-git.1.tar.gz 241963 BLAKE2B 
7a80c353efbbca851b2eb44e742f20b4cf59e91058b53b77c74d879dc18d882e3bb6de8a010a4469c0a53384ccf2968bba4cd1d6f10cfcede70fe07eebbf2409
 SHA512 
8d8cc3da7cbfc7b94d070021383413f3d1ef1261ba3fd9924dde4453558a8f8f14812c2f5614f87bef719496b0a023897de8d087c32a7344fa2eb9c1624563a0
 DIST squashfs-tools-4.4.tar.gz 241842 BLAKE2B 
006e2d340bcf6e20873221fb51fa30e0808c4a4d9e1838ca71c11ddbff3bf472dffe730e9edf07c34f535650e6486a8a80a88f82d6c9ef7a7c19aa22098e9197
 SHA512 
133ce437fb8c929933d52cff710b61dd9181f6f8be58250b0d6a59a7bb79a2b350f68f456b06a0e17c469409a71272d586802d570248273ddcd5dad088c00308

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
new file mode 100644
index 000..01661bc54be
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4_p1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit flag-o-matic toolchain-funcs
+
+MY_P=${P/_p/-git.}
+DESCRIPTION="tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools/;
+SRC_URI="
+   https://github.com/plougher/squashfs-tools/archive/${PV/_p/-git.}.tar.gz
+   -> ${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+RDEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+DEPEND=${RDEPEND}
+
+use10() { usex "${1}" 1 0; }
+
+src_configure() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   EMAKE_SQUASHFS_CONF=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+}
+
+src_compile() {
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   dodoc -r RELEASE-READMEs
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-11-07 Thread Michał Górny
commit: 86fdf46ec5d869e6e5c33c662b12d271ba63a1ee
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  7 08:24:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  7 08:24:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86fdf46e

sys-fs/squashfs-tools: Remove the live ebuild

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-.ebuild | 61 
 1 file changed, 61 deletions(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-.ebuild
deleted file mode 100644
index cb91a13dd1e..000
--- a/sys-fs/squashfs-tools/squashfs-tools-.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit flag-o-matic git-r3 toolchain-funcs
-
-DESCRIPTION="tools to create and extract Squashfs filesystems"
-HOMEPAGE="
-   http://squashfs.sourceforge.net
-   https://github.com/plougher/squashfs-tools
-"
-EGIT_REPO_URI="https://github.com/plougher/${PN};
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="debug lz4 lzma lzo static xattr +xz zstd"
-KEYWORDS=""
-
-LIB_DEPEND="
-   !xz? ( !lzo? ( sys-libs/zlib[static-libs(+)] ) )
-   lz4? ( app-arch/lz4[static-libs(+)] )
-   lzma? ( app-arch/xz-utils[static-libs(+)] )
-   lzo? ( dev-libs/lzo[static-libs(+)] )
-   sys-libs/zlib[static-libs(+)]
-   xattr? ( sys-apps/attr[static-libs(+)] )
-   xz? ( app-arch/xz-utils[static-libs(+)] )
-   zstd? ( app-arch/zstd[static-libs(+)] )
-"
-RDEPEND="
-   !static? ( ${LIB_DEPEND//\[static-libs(+)]} )
-"
-DEPEND="
-   ${RDEPEND}
-   static? ( ${LIB_DEPEND} )
-"
-use10() { usex $1 1 0 ; }
-
-src_configure() {
-
-   # set up make command line variables in EMAKE_SQUASHFS_CONF
-   EMAKE_SQUASHFS_CONF=(
-   LZ4_SUPPORT=$(use10 lz4)
-   LZMA_XZ_SUPPORT=$(use10 lzma)
-   LZO_SUPPORT=$(use10 lzo)
-   XATTR_SUPPORT=$(use10 xattr)
-   XZ_SUPPORT=$(use10 xz)
-   ZSTD_SUPPORT=$(use10 zstd)
-   )
-
-   tc-export CC
-   use debug && append-cppflags -DSQUASHFS_TRACE
-   use static && append-ldflags -static
-}
-
-src_compile() {
-   emake "${EMAKE_SQUASHFS_CONF[@]}" -C ${PN}
-}
-
-src_install() {
-   dobin ${PN}/{mksquashfs,unsquashfs}
-   dodoc CHANGES README RELEASE-READMEs/*
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-11-07 Thread Michał Górny
commit: 03590fb6c619d2c5e1c1d27be8afb550d6b9c7b3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov  7 08:29:06 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov  7 08:38:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03590fb6

sys-fs/squashfs-tools: Clean the ebuild up

Remove USE=static.  Remove redundant USE=xz in favor of toggling both
LZMA variants via USE=lzma; they both have the same dependency anyway.
Remove obsolete gcc-5 hack.

Signed-off-by: Michał Górny  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild | 55 ++
 1 file changed, 55 insertions(+)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild
new file mode 100644
index 000..f330af3c97a
--- /dev/null
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4-r1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="tools to create and extract Squashfs filesystems"
+HOMEPAGE="https://github.com/plougher/squashfs-tools;
+SRC_URI="https://github.com/plougher/squashfs-tools/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+IUSE="debug lz4 lzma lzo xattr zstd"
+
+RDEPEND="
+   sys-libs/zlib
+   lz4? ( app-arch/lz4 )
+   lzma? ( app-arch/xz-utils )
+   lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )
+   zstd? ( app-arch/zstd )
+"
+DEPEND=${RDEPEND}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.4-fno-common.patch
+)
+
+use10() { usex "${1}" 1 0; }
+
+src_configure() {
+   # set up make command line variables in EMAKE_SQUASHFS_CONF
+   EMAKE_SQUASHFS_CONF=(
+   LZMA_XZ_SUPPORT=$(use10 lzma)
+   LZO_SUPPORT=$(use10 lzo)
+   LZ4_SUPPORT=$(use10 lz4)
+   XATTR_SUPPORT=$(use10 xattr)
+   XZ_SUPPORT=$(use10 lzma)
+   ZSTD_SUPPORT=$(use10 zstd)
+   )
+
+   tc-export CC
+   use debug && append-cppflags -DSQUASHFS_TRACE
+}
+
+src_compile() {
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C squashfs-tools
+}
+
+src_install() {
+   dobin squashfs-tools/{mksquashfs,unsquashfs}
+   dodoc ACKNOWLEDGEMENTS CHANGES README*
+   dodoc -r RELEASE-READMEs
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2020-09-23 Thread Matt Turner
commit: 78b788382a0d6a4eacaf192e50287fb917b4b779
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Sep 23 18:51:14 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Sep 23 18:51:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78b78838

sys-fs/squashfs-tools-ng: Version bump to 1.0.2

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.0.2.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 3c4ad20a177..ab123a063bc 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-1.0.1.tar.xz 1079720 BLAKE2B 
efc4d715c65d42876d5ac51364d195267c6bc6c2219fea5746231bc4efbd9adac3fa23ea58f837da8610179f3d96ec9422efebe4ae231f4ab243cf948e64fa9b
 SHA512 
3b597b7bf654c6897e04dc6c18cec6034a8f0c0fe070c8d6eb3c8f4a06f4ab2ea8c970ac18c12f05ccb3015cf911790e945798a34361fdb7d1a442a1ca646a04
+DIST squashfs-tools-ng-1.0.2.tar.xz 1085300 BLAKE2B 
59331a131bda9b9bae9f162f80abaeb99a6a3ea49958c1d2ce84968d3f010cdf803821a6f2230a173fcd1e7f5224f06b82463b84e31419a7a10a5ede2bee1a61
 SHA512 
d23d886c7f13046cae8b0e16c380d0c6e681d8921428357f30da9660200332e3dee8b072449c45ab858b0d9fa388d62eb748fb03d6182da6a8839e5ca806176b

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.2.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.2.ebuild
new file mode 100644
index 000..79c567828dd
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2020-08-05 Thread Matt Turner
commit: 59c4a8cf5b971110349931f8589cddc375149923
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Aug  5 16:37:51 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Aug  5 16:44:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c4a8cf

sys-fs/squashfs-tools-ng: Version bump to 1.0.1

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-1.0.1.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 9e06bf6abec..ec198d9b12e 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-0.9.1.tar.xz 1026036 BLAKE2B 
3e0a0acf5b11ea42bad2149a9b97442739f1eceacfc0f5b009403d4616fcd02d69082e2e0721be3a1d6d9ba67ce6287b12ea13fba6409cb751e844f5d48ce7ea
 SHA512 
eb550430917f267ec1ef1d11795167a6893031fc184f914170679cd24c16930a8f73a2b04a349ce1602e80a327957db7935369965a892fbe4904b6e01bb48b5c
 DIST squashfs-tools-ng-1.0.0.tar.xz 1079912 BLAKE2B 
b7a9e4cafc31c0058d73b1a8b69125f92d753214f6e9f0372558271bbd8df163d9b3bf3fea45b96da5044c86e75affc2bfd27826d3725a35fbb417e443cf6ccb
 SHA512 
536f12aa53214f88739cea0d26c55e04434c284935ff1d59ee8f5108acd92fc11e800e42e3a112524d09dbd1fa50c4f15c3211ff5d02ae50b7fa137600d2ae15
+DIST squashfs-tools-ng-1.0.1.tar.xz 1079720 BLAKE2B 
efc4d715c65d42876d5ac51364d195267c6bc6c2219fea5746231bc4efbd9adac3fa23ea58f837da8610179f3d96ec9422efebe4ae231f4ab243cf948e64fa9b
 SHA512 
3b597b7bf654c6897e04dc6c18cec6034a8f0c0fe070c8d6eb3c8f4a06f4ab2ea8c970ac18c12f05ccb3015cf911790e945798a34361fdb7d1a442a1ca646a04

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.1.ebuild
new file mode 100644
index 000..79c567828dd
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/, sys-fs/squashfs-tools-ng/files/

2020-08-05 Thread Matt Turner
commit: e7258ea623a87d533f0860c5d298dc2e74c5fc8a
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Aug  5 16:39:13 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Aug  5 16:44:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7258ea6

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  2 -
 ...0-extras-Pass-flags-argument-to-fix-build.patch | 65 --
 .../squashfs-tools-ng-0.9.1.ebuild | 51 -
 .../squashfs-tools-ng-1.0.0.ebuild | 55 --
 4 files changed, 173 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index ec198d9b12e..3c4ad20a177 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1 @@
-DIST squashfs-tools-ng-0.9.1.tar.xz 1026036 BLAKE2B 
3e0a0acf5b11ea42bad2149a9b97442739f1eceacfc0f5b009403d4616fcd02d69082e2e0721be3a1d6d9ba67ce6287b12ea13fba6409cb751e844f5d48ce7ea
 SHA512 
eb550430917f267ec1ef1d11795167a6893031fc184f914170679cd24c16930a8f73a2b04a349ce1602e80a327957db7935369965a892fbe4904b6e01bb48b5c
-DIST squashfs-tools-ng-1.0.0.tar.xz 1079912 BLAKE2B 
b7a9e4cafc31c0058d73b1a8b69125f92d753214f6e9f0372558271bbd8df163d9b3bf3fea45b96da5044c86e75affc2bfd27826d3725a35fbb417e443cf6ccb
 SHA512 
536f12aa53214f88739cea0d26c55e04434c284935ff1d59ee8f5108acd92fc11e800e42e3a112524d09dbd1fa50c4f15c3211ff5d02ae50b7fa137600d2ae15
 DIST squashfs-tools-ng-1.0.1.tar.xz 1079720 BLAKE2B 
efc4d715c65d42876d5ac51364d195267c6bc6c2219fea5746231bc4efbd9adac3fa23ea58f837da8610179f3d96ec9422efebe4ae231f4ab243cf948e64fa9b
 SHA512 
3b597b7bf654c6897e04dc6c18cec6034a8f0c0fe070c8d6eb3c8f4a06f4ab2ea8c970ac18c12f05ccb3015cf911790e945798a34361fdb7d1a442a1ca646a04

diff --git 
a/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-1.0.0-extras-Pass-flags-argument-to-fix-build.patch
 
b/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-1.0.0-extras-Pass-flags-argument-to-fix-build.patch
deleted file mode 100644
index e61d881c74b..000
--- 
a/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-1.0.0-extras-Pass-flags-argument-to-fix-build.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-From 4c10a491a2ddfcdc3226431a71aefd6ca71135d4 Mon Sep 17 00:00:00 2001
-From: Matt Turner 
-Date: Sat, 13 Jun 2020 11:05:49 -0700
-Subject: [PATCH] extras: Pass flags argument to fix build
-
-Missed in commit 259a98985b4f (Add flags to functions that might
-logically be expanded in the future)
-
-Signed-off-by: Matt Turner 

- extras/browse.c | 10 +-
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/extras/browse.c b/extras/browse.c
-index ef4e223..86ce788 100644
 a/extras/browse.c
-+++ b/extras/browse.c
-@@ -63,7 +63,7 @@ static void list_directory(const char *dirname)
- 
-   /* Get the directory inode we want to dump and open the directory */
-   if (dirname == NULL) {
--  ret = sqfs_dir_reader_open_dir(dr, working_dir);
-+  ret = sqfs_dir_reader_open_dir(dr, working_dir, 0);
-   if (ret)
-   goto fail_open;
-   } else if (*dirname == '/') {
-@@ -74,7 +74,7 @@ static void list_directory(const char *dirname)
-   if (ret)
-   goto fail_resolve;
- 
--  ret = sqfs_dir_reader_open_dir(dr, inode);
-+  ret = sqfs_dir_reader_open_dir(dr, inode, 0);
-   free(inode);
-   if (ret)
-   goto fail_open;
-@@ -84,7 +84,7 @@ static void list_directory(const char *dirname)
-   if (ret)
-   goto fail_resolve;
- 
--  ret = sqfs_dir_reader_open_dir(dr, inode);
-+  ret = sqfs_dir_reader_open_dir(dr, inode, 0);
-   free(inode);
-   if (ret)
-   goto fail_open;
-@@ -526,7 +526,7 @@ int main(int argc, char **argv)
-   }
- 
-   /* create a directory reader and get the root inode */
--  dr = sqfs_dir_reader_create(, cmp, file);
-+  dr = sqfs_dir_reader_create(, cmp, file, 0);
-   if (dr == NULL) {
-   fprintf(stderr, "%s: error creating directory reader.\n",
-   argv[1]);
-@@ -539,7 +539,7 @@ int main(int argc, char **argv)
-   }
- 
-   /* create a data reader */
--  data = sqfs_data_reader_create(file, super.block_size, cmp);
-+  data = sqfs_data_reader_create(file, super.block_size, cmp, 0);
- 
-   if (data == NULL) {
-   fprintf(stderr, "%s: error creating data reader.\n",
--- 
-2.26.2
-

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.1.ebuild
deleted file mode 100644
index 79c567828dd..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/files/, sys-fs/squashfs-tools-ng/

2020-06-14 Thread Matt Turner
commit: daa0e8dab5175a183e702f75ccee64a40a77e0a7
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Jun 14 18:35:50 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jun 14 18:49:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa0e8da

sys-fs/squashfs-tools-ng: Version bump to 1.0.0

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 ...0-extras-Pass-flags-argument-to-fix-build.patch | 65 ++
 .../squashfs-tools-ng-1.0.0.ebuild | 55 ++
 3 files changed, 121 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index a356303181a..9e06bf6abec 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-0.9.1.tar.xz 1026036 BLAKE2B 
3e0a0acf5b11ea42bad2149a9b97442739f1eceacfc0f5b009403d4616fcd02d69082e2e0721be3a1d6d9ba67ce6287b12ea13fba6409cb751e844f5d48ce7ea
 SHA512 
eb550430917f267ec1ef1d11795167a6893031fc184f914170679cd24c16930a8f73a2b04a349ce1602e80a327957db7935369965a892fbe4904b6e01bb48b5c
+DIST squashfs-tools-ng-1.0.0.tar.xz 1079912 BLAKE2B 
b7a9e4cafc31c0058d73b1a8b69125f92d753214f6e9f0372558271bbd8df163d9b3bf3fea45b96da5044c86e75affc2bfd27826d3725a35fbb417e443cf6ccb
 SHA512 
536f12aa53214f88739cea0d26c55e04434c284935ff1d59ee8f5108acd92fc11e800e42e3a112524d09dbd1fa50c4f15c3211ff5d02ae50b7fa137600d2ae15

diff --git 
a/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-1.0.0-extras-Pass-flags-argument-to-fix-build.patch
 
b/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-1.0.0-extras-Pass-flags-argument-to-fix-build.patch
new file mode 100644
index 000..e61d881c74b
--- /dev/null
+++ 
b/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-1.0.0-extras-Pass-flags-argument-to-fix-build.patch
@@ -0,0 +1,65 @@
+From 4c10a491a2ddfcdc3226431a71aefd6ca71135d4 Mon Sep 17 00:00:00 2001
+From: Matt Turner 
+Date: Sat, 13 Jun 2020 11:05:49 -0700
+Subject: [PATCH] extras: Pass flags argument to fix build
+
+Missed in commit 259a98985b4f (Add flags to functions that might
+logically be expanded in the future)
+
+Signed-off-by: Matt Turner 
+---
+ extras/browse.c | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/extras/browse.c b/extras/browse.c
+index ef4e223..86ce788 100644
+--- a/extras/browse.c
 b/extras/browse.c
+@@ -63,7 +63,7 @@ static void list_directory(const char *dirname)
+ 
+   /* Get the directory inode we want to dump and open the directory */
+   if (dirname == NULL) {
+-  ret = sqfs_dir_reader_open_dir(dr, working_dir);
++  ret = sqfs_dir_reader_open_dir(dr, working_dir, 0);
+   if (ret)
+   goto fail_open;
+   } else if (*dirname == '/') {
+@@ -74,7 +74,7 @@ static void list_directory(const char *dirname)
+   if (ret)
+   goto fail_resolve;
+ 
+-  ret = sqfs_dir_reader_open_dir(dr, inode);
++  ret = sqfs_dir_reader_open_dir(dr, inode, 0);
+   free(inode);
+   if (ret)
+   goto fail_open;
+@@ -84,7 +84,7 @@ static void list_directory(const char *dirname)
+   if (ret)
+   goto fail_resolve;
+ 
+-  ret = sqfs_dir_reader_open_dir(dr, inode);
++  ret = sqfs_dir_reader_open_dir(dr, inode, 0);
+   free(inode);
+   if (ret)
+   goto fail_open;
+@@ -526,7 +526,7 @@ int main(int argc, char **argv)
+   }
+ 
+   /* create a directory reader and get the root inode */
+-  dr = sqfs_dir_reader_create(, cmp, file);
++  dr = sqfs_dir_reader_create(, cmp, file, 0);
+   if (dr == NULL) {
+   fprintf(stderr, "%s: error creating directory reader.\n",
+   argv[1]);
+@@ -539,7 +539,7 @@ int main(int argc, char **argv)
+   }
+ 
+   /* create a data reader */
+-  data = sqfs_data_reader_create(file, super.block_size, cmp);
++  data = sqfs_data_reader_create(file, super.block_size, cmp, 0);
+ 
+   if (data == NULL) {
+   fprintf(stderr, "%s: error creating data reader.\n",
+-- 
+2.26.2
+

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.0.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.0.ebuild
new file mode 100644
index 000..e9e3aff7cec
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-1.0.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-05-05 Thread Joonas Niilola
commit: af7cbc1e7f85455b3cbb58b39cd4f83ea8fcc40c
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue May  5 11:51:01 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue May  5 11:51:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af7cbc1e

sys-fs/squashfs-tools: update manifest

Signed-off-by: Joonas Niilola  gentoo.org>

 sys-fs/squashfs-tools/Manifest | 4 
 1 file changed, 4 deletions(-)

diff --git a/sys-fs/squashfs-tools/Manifest b/sys-fs/squashfs-tools/Manifest
index b612ae3571a..2893f202086 100644
--- a/sys-fs/squashfs-tools/Manifest
+++ b/sys-fs/squashfs-tools/Manifest
@@ -1,5 +1 @@
 DIST squashfs-tools-4.4.tar.gz 241842 BLAKE2B 
006e2d340bcf6e20873221fb51fa30e0808c4a4d9e1838ca71c11ddbff3bf472dffe730e9edf07c34f535650e6486a8a80a88f82d6c9ef7a7c19aa22098e9197
 SHA512 
133ce437fb8c929933d52cff710b61dd9181f6f8be58250b0d6a59a7bb79a2b350f68f456b06a0e17c469409a71272d586802d570248273ddcd5dad088c00308
-DIST squashfs-tools_4.3-12.debian.tar.xz 27300 BLAKE2B 
60e127f0ab2fde08c58bf255926b47812b8103793ee187633bf0ee12c9b74ae55faf930f992be3eee87b998da9ed7bb42b1150e58903b2855b159b861b542669
 SHA512 
13b04a85b1237b5a88a0e01f82b992d98e1b29e3a90a29230607c5232e0188d5402de55a08b6cf78b09f7da2eea05ccc6d15ac0de375af8004c468cfac1fe940
-DIST squashfs-tools_4.3-3.debian.tar.xz 15252 BLAKE2B 
5273eb8007192190786513f49be68eded38a7acae80d0c84067e8d239d53304a79be454cc4970af0d1c1eff6e58b75403201497dfd18d175f9d5aae5e0102834
 SHA512 
ab1a707e04e92697549f7e7c667c5da835d39d5e2cb791e47bf549b232e7173e6981c33a87cd373c4a7a4815e4af1b7294fe13e54422a5ccdcff90904bfc51ae
-DIST squashfs-tools_4.3-7.debian.tar.xz 19612 BLAKE2B 
7894b6fa27e7e46aec82b680a1ce521c895436ccb1cafcfd3d95e09f56546e08539a7c152854ee14e9516e217339617d25e68c0cc1a4c41b3bdd689caeefa94a
 SHA512 
88df37e0c13483c5591f925156628b3ae27279f56d2453f7f1f82558da1bc3338e23e9481d704b785a40846c6dedc6b0a0e1dd2ea70fe26ea2f1e855fd6d6fdf
-DIST squashfs4.3.tar.gz 182550 BLAKE2B 
f56ff33a505f7d60cced11224526bfce003bc06184ad7e8cb9cd08b14854164da8d2ecc64694d44085c46bcfa3aaa85939c97820415345053f7956af04066fdb
 SHA512 
854ed7acc99920f24ecf11e0da807e5a2a162eeda55db971aba63a03f0da2c13b20ec0564a906c4b0e415bd8258b273a10208c7abc0704f2ceea773aa6148a79



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/files/, sys-fs/squashfs-tools/

2020-05-05 Thread Matt Turner
commit: 713a51583500ffe09d91c167f7dc82dde50d8b3e
Author: Matt Turner  gentoo  org>
AuthorDate: Tue May  5 09:55:32 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue May  5 09:55:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=713a5158

sys-fs/squashfs-tools: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 .../files/squashfs-tools-4.3-2gb.patch |  30 -
 .../files/squashfs-tools-4.3-aligned-data.patch|  15 ---
 .../files/squashfs-tools-4.3-extmatch.patch| 121 -
 .../files/squashfs-tools-4.3-local-cve-fix.patch   |  19 
 .../files/squashfs-tools-4.3-mem-overflow.patch|  35 --
 .../files/squashfs-tools-4.3-musl.patch|  24 
 .../files/squashfs-tools-4.3-sysmacros.patch   |  25 -
 .../files/squashfs-tools-4.3-xattrs.patch  |  34 --
 sys-fs/squashfs-tools/squashfs-tools-4.3-r2.ebuild |  75 -
 .../squashfs-tools/squashfs-tools-4.3_p12.ebuild   |  84 --
 sys-fs/squashfs-tools/squashfs-tools-4.3_p7.ebuild |  82 --
 sys-fs/squashfs-tools/squashfs-tools-.ebuild   |   4 -
 12 files changed, 548 deletions(-)

diff --git a/sys-fs/squashfs-tools/files/squashfs-tools-4.3-2gb.patch 
b/sys-fs/squashfs-tools/files/squashfs-tools-4.3-2gb.patch
deleted file mode 100644
index 467448f6263..000
--- a/sys-fs/squashfs-tools/files/squashfs-tools-4.3-2gb.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 9c1db6d13a51a2e009f0027ef336ce03624eac0d Mon Sep 17 00:00:00 2001
-From: "Guan, Xin" 
-Date: Sat, 13 Sep 2014 13:15:26 +0200
-Subject: [PATCH] Fix 2GB-limit of the is_fragment(...) function.
-
-Applies to squashfs-tools 4.3.
-
-Reported-by: Bruno Wolff III 
-Signed-off-by: Guan, Xin 
-Signed-off-by: Phillip Lougher 

- squashfs-tools/mksquashfs.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/squashfs-tools/mksquashfs.c b/squashfs-tools/mksquashfs.c
-index f1fcff1cc284..d221c35865a0 100644
 a/squashfs-tools/mksquashfs.c
-+++ b/squashfs-tools/mksquashfs.c
-@@ -2029,7 +2029,7 @@ struct file_info *duplicate(long long file_size, long 
long bytes,
- 
- inline int is_fragment(struct inode_info *inode)
- {
--  int file_size = inode->buf.st_size;
-+  off_t file_size = inode->buf.st_size;
- 
-   /*
-* If this block is to be compressed differently to the
--- 
-2.8.2
-

diff --git a/sys-fs/squashfs-tools/files/squashfs-tools-4.3-aligned-data.patch 
b/sys-fs/squashfs-tools/files/squashfs-tools-4.3-aligned-data.patch
deleted file mode 100644
index 024129ffa95..000
--- a/sys-fs/squashfs-tools/files/squashfs-tools-4.3-aligned-data.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-the mksquashfs code has an all_zeros func that does:
-   long *p = (long *) file_buffer->data;
-
-make sure we force the data field to be aligned so that still works.
-
 a/squashfs-tools/caches-queues-lists.h
-+++ b/squashfs-tools/caches-queues-lists.h
-@@ -123,6 +123,7 @@ struct file_buffer {
-   char locked;
-   char wait_on_unlock;
-   char noD;
-+  long _pad;
-   char data[0];
- };
- 

diff --git a/sys-fs/squashfs-tools/files/squashfs-tools-4.3-extmatch.patch 
b/sys-fs/squashfs-tools/files/squashfs-tools-4.3-extmatch.patch
deleted file mode 100644
index 7ffc062006c..000
--- a/sys-fs/squashfs-tools/files/squashfs-tools-4.3-extmatch.patch
+++ /dev/null
@@ -1,121 +0,0 @@
-From https://github.com/plougher/squashfs-tools/pull/9
-
-From 4280e74de14070869787a9166242f9ce2dafd82e Mon Sep 17 00:00:00 2001
-From: Alexandru Ardelean 
-Date: Wed, 6 Jan 2016 15:33:43 +0200
-Subject: [PATCH] squashfs-tools: with fnmatch.h compatibility with musl
-
-musl does not define FNM_EXTMATCH
-
-Signed-off-by: Alexandru Ardelean 

- squashfs-tools/action.c |  2 +-
- squashfs-tools/fnmatch_compat.h | 32 
- squashfs-tools/mksquashfs.c |  2 +-
- squashfs-tools/unsquashfs.c |  1 +
- squashfs-tools/unsquashfs.h |  1 -
- 5 files changed, 35 insertions(+), 3 deletions(-)
- create mode 100644 squashfs-tools/fnmatch_compat.h
-
-diff --git a/squashfs-tools/action.c b/squashfs-tools/action.c
-index 35889a4..4b06ccb 100644
 a/squashfs-tools/action.c
-+++ b/squashfs-tools/action.c
-@@ -31,7 +31,6 @@
- #include 
- #include 
- #include 
--#include 
- #include 
- #include 
- #include 
-@@ -43,6 +42,7 @@
- #include "mksquashfs.h"
- #include "action.h"
- #include "error.h"
-+#include "fnmatch_compat.h"
- 
- /*
-  * code to parse actions
-diff --git a/squashfs-tools/fnmatch_compat.h b/squashfs-tools/fnmatch_compat.h
-new file mode 100644
-index 000..7b4afd8
 /dev/null
-+++ b/squashfs-tools/fnmatch_compat.h
-@@ -0,0 +1,32 @@
-+#ifndef FNMATCH_COMPAT
-+#define FNMATCH_COMPAT
-+/*
-+ * Squashfs
-+ *
-+ * Copyright (c) 2015
-+ * Phillip Lougher 
-+ *
-+ * This program is free software; you can redistribute it and/or
-+ * modify it under the terms of the GNU General 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/, sys-fs/squashfs-tools-ng/files/

2020-05-03 Thread Matt Turner
commit: 46ed9f22401ebc1fc4558296c5403bc5900d7dac
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  3 21:21:51 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  3 21:22:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46ed9f22

sys-fs/squashfs-tools-ng: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  3 --
 ...ols-ng-0.9-Fix-missing-header-without-LZO.patch | 32 -
 .../squashfs-tools-ng/squashfs-tools-ng-0.7.ebuild | 51 
 .../squashfs-tools-ng/squashfs-tools-ng-0.8.ebuild | 51 
 .../squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild | 55 --
 5 files changed, 192 deletions(-)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index a6bd4287b43..a356303181a 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,4 +1 @@
-DIST squashfs-tools-ng-0.7.tar.xz 372956 BLAKE2B 
5fd0849c8cb0255ea56edc5b5cdc771363f5ca038f4306bb7d816ff26ce23cbd4f4652ef8ae497b8c9fe1ec09f9ebcfcf13aeb6b99b97db80a95018c25d4a3a6
 SHA512 
e53d7b64e68a40b49667b65d9fa8f12e977e8ca923c2fe9ce1e1def2745573f8607f7dee7ae6c06496489ef721c4c500ec40513ea5f6bd3ad4bb3a7796972b8e
-DIST squashfs-tools-ng-0.8.tar.xz 1004616 BLAKE2B 
5d347eef252886e7750da306f038494a15660350aca7b93aaf85a8411882489d8855c771e719a68b025f5c15fdc8b0d30727dde0884c5982460ff85d106fcd37
 SHA512 
7a533c7f9f21f717718a9ce5d775cf297c2e8edb6f121741b14692b52cbb6e3d7fe5cd59525222f7f9617440ea2adb2acec4dda3252abf3bebc689905b9fdc20
 DIST squashfs-tools-ng-0.9.1.tar.xz 1026036 BLAKE2B 
3e0a0acf5b11ea42bad2149a9b97442739f1eceacfc0f5b009403d4616fcd02d69082e2e0721be3a1d6d9ba67ce6287b12ea13fba6409cb751e844f5d48ce7ea
 SHA512 
eb550430917f267ec1ef1d11795167a6893031fc184f914170679cd24c16930a8f73a2b04a349ce1602e80a327957db7935369965a892fbe4904b6e01bb48b5c
-DIST squashfs-tools-ng-0.9.tar.xz 1020728 BLAKE2B 
4f6672aecfa1f664198465154ad1d1ba92f741bcad576f90b58cdc982cc8a20d21dc7cfcb825604e2801ce187d5f984d55131c04859de0d7e67f515cddd781ac
 SHA512 
6394cb851828f110ed6a3ab17923b214b79b8bb5550069407839da62e5316459d7f564cb31211c849508b9664f4f1f9030ce5f64d5c8649b8a73c3a869ab22d0

diff --git 
a/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-0.9-Fix-missing-header-without-LZO.patch
 
b/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-0.9-Fix-missing-header-without-LZO.patch
deleted file mode 100644
index cd32661e009..000
--- 
a/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-0.9-Fix-missing-header-without-LZO.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From b3f2636f44eea1a8b6fbf892d2daa611cff9d4af Mon Sep 17 00:00:00 2001
-From: Alyssa Ross 
-Date: Wed, 1 Apr 2020 14:30:51 +
-Subject: [PATCH] Fix missing header without LZO
-
-lib/common/compress.c: In function 'compressor_get_default':
-lib/common/compress.c:39:2: warning: implicit declaration of function 'assert' 
[-Wimplicit-function-declaration]
-   39 |  assert(0);
-  |  ^~
-lib/common/compress.c:8:1: note: 'assert' is defined in header ''; 
did you forget to '#include '?
-7 | #include "common.h"
-  +++ |+#include 
-8 |

- lib/common/compress.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lib/common/compress.c b/lib/common/compress.c
-index ea7b71f..f16f080 100644
 a/lib/common/compress.c
-+++ b/lib/common/compress.c
-@@ -5,6 +5,7 @@
-  * Copyright (C) 2019 David Oberhollenzer 
-  */
- #include "common.h"
-+#include 
- 
- static int cmp_ids[] = {
-   SQFS_COMP_XZ,
--- 
-2.24.1
-

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.7.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.7.ebuild
deleted file mode 100644
index 22a2dbc93b6..000
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.7.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A new set of tools for working with SquashFS images"
-HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
-if [[ ${PV} = * ]]; then
-   inherit autotools git-r3
-   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
-else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
-fi
-
-LICENSE="LGPL-3+ tools? ( GPL-3+ )"
-SLOT="0"
-IUSE="lz4 lzo selinux +tools +xz zstd"
-
-DEPEND="
-   sys-libs/zlib:=
-   lz4? ( app-arch/lz4:= )
-   lzo? ( dev-libs/lzo:= )
-   xz?  ( app-arch/xz-utils:= )
-   selinux? ( sys-libs/libselinux:= )
-   zstd?( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   [[ ${PV} == "" ]] && eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   $(use_with lz4)
-   $(use_with lzo)
-   $(use_with 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2020-05-03 Thread Matt Turner
commit: e744f79d3ceead209ce2ba64388a001db027ceaf
Author: Matt Turner  gentoo  org>
AuthorDate: Sun May  3 21:20:12 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun May  3 21:22:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e744f79d

sys-fs/squashfs-tools-ng: Version bump to 0.9.1

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng-0.9.1.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 2ad1b501280..a6bd4287b43 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,3 +1,4 @@
 DIST squashfs-tools-ng-0.7.tar.xz 372956 BLAKE2B 
5fd0849c8cb0255ea56edc5b5cdc771363f5ca038f4306bb7d816ff26ce23cbd4f4652ef8ae497b8c9fe1ec09f9ebcfcf13aeb6b99b97db80a95018c25d4a3a6
 SHA512 
e53d7b64e68a40b49667b65d9fa8f12e977e8ca923c2fe9ce1e1def2745573f8607f7dee7ae6c06496489ef721c4c500ec40513ea5f6bd3ad4bb3a7796972b8e
 DIST squashfs-tools-ng-0.8.tar.xz 1004616 BLAKE2B 
5d347eef252886e7750da306f038494a15660350aca7b93aaf85a8411882489d8855c771e719a68b025f5c15fdc8b0d30727dde0884c5982460ff85d106fcd37
 SHA512 
7a533c7f9f21f717718a9ce5d775cf297c2e8edb6f121741b14692b52cbb6e3d7fe5cd59525222f7f9617440ea2adb2acec4dda3252abf3bebc689905b9fdc20
+DIST squashfs-tools-ng-0.9.1.tar.xz 1026036 BLAKE2B 
3e0a0acf5b11ea42bad2149a9b97442739f1eceacfc0f5b009403d4616fcd02d69082e2e0721be3a1d6d9ba67ce6287b12ea13fba6409cb751e844f5d48ce7ea
 SHA512 
eb550430917f267ec1ef1d11795167a6893031fc184f914170679cd24c16930a8f73a2b04a349ce1602e80a327957db7935369965a892fbe4904b6e01bb48b5c
 DIST squashfs-tools-ng-0.9.tar.xz 1020728 BLAKE2B 
4f6672aecfa1f664198465154ad1d1ba92f741bcad576f90b58cdc982cc8a20d21dc7cfcb825604e2801ce187d5f984d55131c04859de0d7e67f515cddd781ac
 SHA512 
6394cb851828f110ed6a3ab17923b214b79b8bb5550069407839da62e5316459d7f564cb31211c849508b9664f4f1f9030ce5f64d5c8649b8a73c3a869ab22d0

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.1.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.1.ebuild
new file mode 100644
index 000..79c567828dd
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/, sys-fs/squashfs-tools-ng/files/

2020-04-03 Thread Matt Turner
commit: ddfed3ec49867b804baa6af98220ec437e8d117a
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Apr  4 03:13:52 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Apr  4 03:14:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddfed3ec

sys-fs/squashfs-tools-ng: Fix build failure

Closes: https://bugs.gentoo.org/715790
Signed-off-by: Matt Turner  gentoo.org>

 ...ols-ng-0.9-Fix-missing-header-without-LZO.patch | 32 ++
 .../squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild |  4 +++
 2 files changed, 36 insertions(+)

diff --git 
a/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-0.9-Fix-missing-header-without-LZO.patch
 
b/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-0.9-Fix-missing-header-without-LZO.patch
new file mode 100644
index 000..cd32661e009
--- /dev/null
+++ 
b/sys-fs/squashfs-tools-ng/files/squashfs-tools-ng-0.9-Fix-missing-header-without-LZO.patch
@@ -0,0 +1,32 @@
+From b3f2636f44eea1a8b6fbf892d2daa611cff9d4af Mon Sep 17 00:00:00 2001
+From: Alyssa Ross 
+Date: Wed, 1 Apr 2020 14:30:51 +
+Subject: [PATCH] Fix missing header without LZO
+
+lib/common/compress.c: In function 'compressor_get_default':
+lib/common/compress.c:39:2: warning: implicit declaration of function 'assert' 
[-Wimplicit-function-declaration]
+   39 |  assert(0);
+  |  ^~
+lib/common/compress.c:8:1: note: 'assert' is defined in header ''; 
did you forget to '#include '?
+7 | #include "common.h"
+  +++ |+#include 
+8 |
+---
+ lib/common/compress.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/lib/common/compress.c b/lib/common/compress.c
+index ea7b71f..f16f080 100644
+--- a/lib/common/compress.c
 b/lib/common/compress.c
+@@ -5,6 +5,7 @@
+  * Copyright (C) 2019 David Oberhollenzer 
+  */
+ #include "common.h"
++#include 
+ 
+ static int cmp_ids[] = {
+   SQFS_COMP_XZ,
+-- 
+2.24.1
+

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild
index 79c567828dd..366d46b0bdb 100644
--- a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild
@@ -27,6 +27,10 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-Fix-missing-header-without-LZO.patch
+)
+
 src_prepare() {
default
[[ ${PV} == "" ]] && eautoreconf



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2020-03-31 Thread Matt Turner
commit: 4ed11e592c4c57a2c5c18159b9dff734df5495e7
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 31 20:36:52 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 31 20:44:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ed11e59

sys-fs/squashfs-tools-ng: Version bump to 0.9

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index 9ec65d75dbf..2ad1b501280 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1,2 +1,3 @@
 DIST squashfs-tools-ng-0.7.tar.xz 372956 BLAKE2B 
5fd0849c8cb0255ea56edc5b5cdc771363f5ca038f4306bb7d816ff26ce23cbd4f4652ef8ae497b8c9fe1ec09f9ebcfcf13aeb6b99b97db80a95018c25d4a3a6
 SHA512 
e53d7b64e68a40b49667b65d9fa8f12e977e8ca923c2fe9ce1e1def2745573f8607f7dee7ae6c06496489ef721c4c500ec40513ea5f6bd3ad4bb3a7796972b8e
 DIST squashfs-tools-ng-0.8.tar.xz 1004616 BLAKE2B 
5d347eef252886e7750da306f038494a15660350aca7b93aaf85a8411882489d8855c771e719a68b025f5c15fdc8b0d30727dde0884c5982460ff85d106fcd37
 SHA512 
7a533c7f9f21f717718a9ce5d775cf297c2e8edb6f121741b14692b52cbb6e3d7fe5cd59525222f7f9617440ea2adb2acec4dda3252abf3bebc689905b9fdc20
+DIST squashfs-tools-ng-0.9.tar.xz 1020728 BLAKE2B 
4f6672aecfa1f664198465154ad1d1ba92f741bcad576f90b58cdc982cc8a20d21dc7cfcb825604e2801ce187d5f984d55131c04859de0d7e67f515cddd781ac
 SHA512 
6394cb851828f110ed6a3ab17923b214b79b8bb5550069407839da62e5316459d7f564cb31211c849508b9664f4f1f9030ce5f64d5c8649b8a73c3a869ab22d0

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild
new file mode 100644
index 000..79c567828dd
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.9.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2020-02-08 Thread Jeroen Roovers
commit: bbfbfa695ae5141083136e0a7b4f1b1f1f7b0699
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Feb  8 10:42:49 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Feb  8 10:57:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbfbfa69

sys-fs/squashfs-tools: Update live ebuild

Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Jeroen Roovers  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-.ebuild
index c5bf886e776..1234cc3f4c5 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-.ebuild
@@ -34,7 +34,6 @@ DEPEND="
 "
 PATCHES=(
"${FILESDIR}"/${PN}-4.3-sysmacros.patch
-   "${FILESDIR}"/${PN}-4.4-fno-common.patch
 )
 
 use10() { usex $1 1 0 ; }



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/, sys-fs/squashfs-tools/files/

2020-01-27 Thread Jeroen Roovers
commit: a9a132b4df2d619e92909da7ce4701c0e227dcd6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Jan 27 11:51:05 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Jan 27 12:00:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9a132b4

sys-fs/squashfs-tools: Fix CFLAGS=-fno-common

Package-Manager: Portage-2.3.85, Repoman-2.3.20
Closes: https://bugs.gentoo.org/706456
Signed-off-by: Jeroen Roovers  gentoo.org>

 .../squashfs-tools/files/squashfs-tools-4.4-fno-common.patch  | 11 +++
 sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild   | 11 ++-
 sys-fs/squashfs-tools/squashfs-tools-.ebuild  |  9 -
 3 files changed, 21 insertions(+), 10 deletions(-)

diff --git a/sys-fs/squashfs-tools/files/squashfs-tools-4.4-fno-common.patch 
b/sys-fs/squashfs-tools/files/squashfs-tools-4.4-fno-common.patch
new file mode 100644
index 000..dfbf42abb34
--- /dev/null
+++ b/sys-fs/squashfs-tools/files/squashfs-tools-4.4-fno-common.patch
@@ -0,0 +1,11 @@
+--- a/squashfs-tools/mksquashfs.h
 b/squashfs-tools/mksquashfs.h
+@@ -143,7 +143,7 @@ struct append_file {
+ #endif
+ 
+ extern struct cache *reader_buffer, *fragment_buffer, *reserve_cache;
+-struct cache *bwriter_buffer, *fwriter_buffer;
++extern struct cache *bwriter_buffer, *fwriter_buffer;
+ extern struct queue *to_reader, *to_deflate, *to_writer, *from_writer,
+   *to_frag, *locked_fragment, *to_process_frag;
+ extern struct append_file **file_mapping;

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
index ae823c3e197..fcc3ce5bf79 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -30,7 +30,9 @@ DEPEND="
${RDEPEND}
static? ( ${LIB_DEPEND} )
 "
-S=${WORKDIR}/${P}/${PN}
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.4-fno-common.patch
+)
 
 use10() { usex $1 1 0 ; }
 
@@ -55,12 +57,11 @@ src_configure() {
 }
 
 src_compile() {
-   emake "${EMAKE_SQUASHFS_CONF[@]}"
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C ${PN}
 }
 
 src_install() {
-   dobin mksquashfs unsquashfs
-   cd ..
+   dobin ${PN}/{mksquashfs,unsquashfs}
dodoc ACKNOWLEDGEMENTS CHANGES README*
dodoc -r RELEASE-READMEs
 }

diff --git a/sys-fs/squashfs-tools/squashfs-tools-.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-.ebuild
index 56e2a3332c0..c5bf886e776 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -34,12 +34,12 @@ DEPEND="
 "
 PATCHES=(
"${FILESDIR}"/${PN}-4.3-sysmacros.patch
+   "${FILESDIR}"/${PN}-4.4-fno-common.patch
 )
 
 use10() { usex $1 1 0 ; }
 
 src_configure() {
-   cd "${WORKDIR}"/${P}/${PN} || die
 
# set up make command line variables in EMAKE_SQUASHFS_CONF
EMAKE_SQUASHFS_CONF=(
@@ -57,11 +57,10 @@ src_configure() {
 }
 
 src_compile() {
-   cd "${WORKDIR}"/${P}/${PN} || die
-   emake "${EMAKE_SQUASHFS_CONF[@]}"
+   emake "${EMAKE_SQUASHFS_CONF[@]}" -C ${PN}
 }
 
 src_install() {
-   dobin "${WORKDIR}"/${P}/${PN}/{mksquashfs,unsquashfs}
+   dobin ${PN}/{mksquashfs,unsquashfs}
dodoc CHANGES README RELEASE-READMEs/*
 }



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools-ng/

2019-12-31 Thread Matt Turner
commit: df9f196b0fbbab7bf742d955f11d9cc87aef138e
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Dec 31 16:12:26 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Dec 31 16:14:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9f196b

sys-fs/squashfs-tools-ng: Version bump to 0.8

Signed-off-by: Matt Turner  gentoo.org>

 sys-fs/squashfs-tools-ng/Manifest  |  1 +
 .../squashfs-tools-ng/squashfs-tools-ng-0.8.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-fs/squashfs-tools-ng/Manifest 
b/sys-fs/squashfs-tools-ng/Manifest
index c38e9de084f..9ec65d75dbf 100644
--- a/sys-fs/squashfs-tools-ng/Manifest
+++ b/sys-fs/squashfs-tools-ng/Manifest
@@ -1 +1,2 @@
 DIST squashfs-tools-ng-0.7.tar.xz 372956 BLAKE2B 
5fd0849c8cb0255ea56edc5b5cdc771363f5ca038f4306bb7d816ff26ce23cbd4f4652ef8ae497b8c9fe1ec09f9ebcfcf13aeb6b99b97db80a95018c25d4a3a6
 SHA512 
e53d7b64e68a40b49667b65d9fa8f12e977e8ca923c2fe9ce1e1def2745573f8607f7dee7ae6c06496489ef721c4c500ec40513ea5f6bd3ad4bb3a7796972b8e
+DIST squashfs-tools-ng-0.8.tar.xz 1004616 BLAKE2B 
5d347eef252886e7750da306f038494a15660350aca7b93aaf85a8411882489d8855c771e719a68b025f5c15fdc8b0d30727dde0884c5982460ff85d106fcd37
 SHA512 
7a533c7f9f21f717718a9ce5d775cf297c2e8edb6f121741b14692b52cbb6e3d7fe5cd59525222f7f9617440ea2adb2acec4dda3252abf3bebc689905b9fdc20

diff --git a/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.8.ebuild 
b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.8.ebuild
new file mode 100644
index 000..22a2dbc93b6
--- /dev/null
+++ b/sys-fs/squashfs-tools-ng/squashfs-tools-ng-0.8.ebuild
@@ -0,0 +1,51 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A new set of tools for working with SquashFS images"
+HOMEPAGE="https://github.com/AgentD/squashfs-tools-ng;
+if [[ ${PV} = * ]]; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/AgentD/${PN}.git;
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+   SRC_URI="https://infraroot.at/pub/squashfs/${P}.tar.xz;
+fi
+
+LICENSE="LGPL-3+ tools? ( GPL-3+ )"
+SLOT="0"
+IUSE="lz4 lzo selinux +tools +xz zstd"
+
+DEPEND="
+   sys-libs/zlib:=
+   lz4? ( app-arch/lz4:= )
+   lzo? ( dev-libs/lzo:= )
+   xz?  ( app-arch/xz-utils:= )
+   selinux? ( sys-libs/libselinux:= )
+   zstd?( app-arch/zstd:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   [[ ${PV} == "" ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_with lz4)
+   $(use_with lzo)
+   $(use_with selinux)
+   $(use_with tools)
+   $(use_with xz)
+   $(use_with zstd)
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name "*.la" -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2019-12-28 Thread Mikle Kolyada
commit: 459c289cc1d459893584b1a1688a18a5ba50589e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Dec 28 15:37:32 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Dec 28 15:39:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=459c289c

sys-fs/squashfs-tools: alpha stable wrt bug #697692

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="alpha"
Signed-off-by: Mikle Kolyada  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
index c6edef2616f..113491166f1 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
 IUSE="debug lz4 lzma lzo static xattr +xz zstd"
 
 LIB_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2019-12-23 Thread Mikle Kolyada
commit: a743cc41566ec18253ab949efa2209758a9d234b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Dec 23 09:29:39 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Dec 23 09:29:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a743cc41

sys-fs/squashfs-tools: arm stable wrt bug #697692

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
index f77af3d1d30..c6edef2616f 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
 IUSE="debug lz4 lzma lzo static xattr +xz zstd"
 
 LIB_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/squashfs-tools/

2019-12-17 Thread Sergei Trofimovich
commit: 13c71e534bb709daf1655e152c967338d27dbc91
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Dec 17 17:03:58 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Dec 17 19:58:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c71e53

sys-fs/squashfs-tools: stable 4.4 for hppa, bug #697692

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild 
b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
index 8fd279d4e1b..f77af3d1d30 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-4.4.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
~sh sparc x86"
 IUSE="debug lz4 lzma lzo static xattr +xz zstd"
 
 LIB_DEPEND="



  1   2   >