[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-09-29 Thread Arthur Zamarin
commit: 946608f9642649930a98cb25593ab460a8b3c8a6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep 29 16:08:19 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep 29 16:23:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946608f9

app-misc/fdupes: sync live

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

 app-misc/fdupes/fdupes-.ebuild | 15 +--
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index 2e3d8e6c3b57..c735e2285b46 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -1,10 +1,8 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit toolchain-funcs
-
 DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
 HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
 if [[ ${PV} == * ]] ; then
@@ -17,11 +15,12 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="+ncurses"
+IUSE="+ncurses sqlite"
 
 RDEPEND="
-   dev-libs/libpcre2[pcre32]
+   dev-libs/libpcre2:=[pcre32]
ncurses? ( sys-libs/ncurses:= )
+   sqlite? ( dev-db/sqlite:3 )
 "
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
@@ -35,9 +34,5 @@ src_prepare() {
 }
 
 src_configure() {
-   econf $(use_with ncurses)
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)"
+   econf $(use_with ncurses) $(use_with sqlite)
 }



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-09-29 Thread Arthur Zamarin
commit: 7b21deab18ca85fd2ce3f86fcae7fbc6e8d665f2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep 29 16:06:40 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep 29 16:23:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b21deab

app-misc/fdupes: add 2.3.2

Bug: https://bugs.gentoo.org/940491
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-misc/fdupes/Manifest|  1 +
 app-misc/fdupes/fdupes-2.3.2.ebuild | 38 +
 2 files changed, 39 insertions(+)

diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
index 115b8413452a..c3c849464dca 100644
--- a/app-misc/fdupes/Manifest
+++ b/app-misc/fdupes/Manifest
@@ -1,2 +1,3 @@
 DIST fdupes-2.2.1.tar.gz 144719 BLAKE2B 
904fd70650847e48e135e47ef77e244ee847151f6ff88ccda2aeba5158038de8507b2ea23a7172e9c1fcd634ae38601c66da225014b9cfd65fd506ce77e7d408
 SHA512 
4911d2f776480691e7bd7045c181d49159add5b479188b05f0878a7af365cee0e430093e71ff172c04b876c58efc3be0f24c9d25f0cdebf1c869931175bc8608
 DIST fdupes-2.3.0.tar.gz 154700 BLAKE2B 
0266920a124f210955fdcfd3e689db50f4dd8062c68f18f6e7d3bc35d7be7002e8088634253d37ebbb59fda5edb7c9642c5d7f0e8ade9c70cbd3067c3778d676
 SHA512 
7801538b84797af94a5e9300cf5605b775380b7eef05ea1f70a5c6a2521d09c66dc6f310316a062c241fcf2086def52dc24be42a336c4bcc8a450f8578d310fc
+DIST fdupes-2.3.2.tar.gz 155115 BLAKE2B 
3b5d96731636b7ebba84542ef6f5a68d990b80597599cd401cd3359da1622b444c3870b371e54c2379a92cb39490bb8a1e16ce33c81c91ca536ec8d66adf37d1
 SHA512 
50a3e046a1261566aa325a855a65e1f1f2ac040f44751cbf635e36a1dcfc8618da843da05a8f0f48d155617b1d70eef1361fb3b5add429ae369395c91f284aec

diff --git a/app-misc/fdupes/fdupes-2.3.2.ebuild 
b/app-misc/fdupes/fdupes-2.3.2.ebuild
new file mode 100644
index ..c735e2285b46
--- /dev/null
+++ b/app-misc/fdupes/fdupes-2.3.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
+   inherit autotools git-r3
+else
+   
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+ncurses sqlite"
+
+RDEPEND="
+   dev-libs/libpcre2:=[pcre32]
+   ncurses? ( sys-libs/ncurses:= )
+   sqlite? ( dev-db/sqlite:3 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGES CONTRIBUTORS README )
+
+src_prepare() {
+   default
+
+   [[ ${PV} == * ]] && eautoreconf
+}
+
+src_configure() {
+   econf $(use_with ncurses) $(use_with sqlite)
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-04-29 Thread Sam James
commit: cd661cc8ce26bfba737f3bc18511e531ce8fc1ba
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 06:32:53 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 06:32:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd661cc8

app-misc/fdupes: Stabilize 2.3.0 ppc64, #930958

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

 app-misc/fdupes/fdupes-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
index 7aa7d36f2b9c..bbe30a2c963c 100644
--- a/app-misc/fdupes/fdupes-2.3.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-04-29 Thread Sam James
commit: d7ae96fc184573b24db73cbaeed959cf3bc34f66
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 06:25:25 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 06:25:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7ae96fc

app-misc/fdupes: Stabilize 2.3.0 ppc, #930958

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

 app-misc/fdupes/fdupes-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
index 8ea6d0510aca..7aa7d36f2b9c 100644
--- a/app-misc/fdupes/fdupes-2.3.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-04-29 Thread Sam James
commit: 28e0317f6c544ce16f59192d75598d2190702dda
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 06:19:59 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 06:19:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28e0317f

app-misc/fdupes: Stabilize 2.3.0 amd64, #930958

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

 app-misc/fdupes/fdupes-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
index 7791f6a26d9f..8dd2b266ceb0 100644
--- a/app-misc/fdupes/fdupes-2.3.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-04-29 Thread Sam James
commit: eb76058b1677876b7432321abbfddd59b9786518
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 06:19:54 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 06:19:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb76058b

app-misc/fdupes: Stabilize 2.3.0 sparc, #930958

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

 app-misc/fdupes/fdupes-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
index 92cf02df2ef4..2b9899370d50 100644
--- a/app-misc/fdupes/fdupes-2.3.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-04-29 Thread Sam James
commit: 4c9be73c7bcda127483baad5e474b089ab8dde59
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 06:20:01 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 06:20:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c9be73c

app-misc/fdupes: Stabilize 2.3.0 arm64, #930958

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

 app-misc/fdupes/fdupes-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
index 8dd2b266ceb0..8ea6d0510aca 100644
--- a/app-misc/fdupes/fdupes-2.3.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-04-29 Thread Sam James
commit: af184e9d305f0fb4205c853d339f524b41090d36
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 06:19:58 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 06:19:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af184e9d

app-misc/fdupes: Stabilize 2.3.0 x86, #930958

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

 app-misc/fdupes/fdupes-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
index 6522bb32706e..7791f6a26d9f 100644
--- a/app-misc/fdupes/fdupes-2.3.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-04-29 Thread Sam James
commit: 60f2d0c7fdea37ca7fdb80c23109d9514bb868d8
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr 30 06:19:56 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr 30 06:19:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60f2d0c7

app-misc/fdupes: Stabilize 2.3.0 arm, #930958

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

 app-misc/fdupes/fdupes-2.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
index 2b9899370d50..6522bb32706e 100644
--- a/app-misc/fdupes/fdupes-2.3.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2024-03-01 Thread Arthur Zamarin
commit: e29cb4db6b0995ba9bb6aabd58c1dfb734d36286
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar  1 13:23:15 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar  1 13:24:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e29cb4db

app-misc/fdupes: add 2.3.0

Closes: https://bugs.gentoo.org/722380
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-misc/fdupes/Manifest|  1 +
 app-misc/fdupes/fdupes-2.3.0.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
index f9466848f081..115b8413452a 100644
--- a/app-misc/fdupes/Manifest
+++ b/app-misc/fdupes/Manifest
@@ -1 +1,2 @@
 DIST fdupes-2.2.1.tar.gz 144719 BLAKE2B 
904fd70650847e48e135e47ef77e244ee847151f6ff88ccda2aeba5158038de8507b2ea23a7172e9c1fcd634ae38601c66da225014b9cfd65fd506ce77e7d408
 SHA512 
4911d2f776480691e7bd7045c181d49159add5b479188b05f0878a7af365cee0e430093e71ff172c04b876c58efc3be0f24c9d25f0cdebf1c869931175bc8608
+DIST fdupes-2.3.0.tar.gz 154700 BLAKE2B 
0266920a124f210955fdcfd3e689db50f4dd8062c68f18f6e7d3bc35d7be7002e8088634253d37ebbb59fda5edb7c9642c5d7f0e8ade9c70cbd3067c3778d676
 SHA512 
7801538b84797af94a5e9300cf5605b775380b7eef05ea1f70a5c6a2521d09c66dc6f310316a062c241fcf2086def52dc24be42a336c4bcc8a450f8578d310fc

diff --git a/app-misc/fdupes/fdupes-2.3.0.ebuild 
b/app-misc/fdupes/fdupes-2.3.0.ebuild
new file mode 100644
index ..92cf02df2ef4
--- /dev/null
+++ b/app-misc/fdupes/fdupes-2.3.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
+   inherit autotools git-r3
+else
+   
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+ncurses sqlite"
+
+RDEPEND="
+   dev-libs/libpcre2:=[pcre32]
+   ncurses? ( sys-libs/ncurses:= )
+   sqlite? ( dev-db/sqlite:3 )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGES CONTRIBUTORS README )
+
+src_prepare() {
+   default
+
+   [[ ${PV} == * ]] && eautoreconf
+}
+
+src_configure() {
+   econf $(use_with ncurses) $(use_with sqlite)
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)"
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-12-18 Thread Sam James
commit: e0881e0476b8906d61caec4048938807cd1a3f53
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 18 12:19:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 18 12:19:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0881e04

app-misc/fdupes: Stabilize 2.2.1 arm64, #886961

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

 app-misc/fdupes/fdupes-2.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.2.1.ebuild 
b/app-misc/fdupes/fdupes-2.2.1.ebuild
index 305e60ada8bf..ed9b1cb72ae8 100644
--- a/app-misc/fdupes/fdupes-2.2.1.ebuild
+++ b/app-misc/fdupes/fdupes-2.2.1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-12-18 Thread Sam James
commit: 164353b3f98dd9ac4f63517f6631226dddaab3ae
Author: Sam James  gentoo  org>
AuthorDate: Sun Dec 18 12:19:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Dec 18 12:19:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164353b3

app-misc/fdupes: Stabilize 2.2.1 arm, #886961

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

 app-misc/fdupes/fdupes-2.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.2.1.ebuild 
b/app-misc/fdupes/fdupes-2.2.1.ebuild
index 3578fdc09788..305e60ada8bf 100644
--- a/app-misc/fdupes/fdupes-2.2.1.ebuild
+++ b/app-misc/fdupes/fdupes-2.2.1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-09-09 Thread Sam James
commit: 11a7378f0ce419a1fe5495c534a54e87b42fabcc
Author: Sam James  gentoo  org>
AuthorDate: Sat Sep 10 00:10:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Sep 10 00:22:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11a7378f

app-misc/fdupes: add 2.2.1

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

 app-misc/fdupes/Manifest|  1 +
 app-misc/fdupes/fdupes-2.2.1.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
index 9deb6e1a8c25..15eaaa82b7c3 100644
--- a/app-misc/fdupes/Manifest
+++ b/app-misc/fdupes/Manifest
@@ -1,2 +1,3 @@
 DIST fdupes-2.1.2.tar.gz 142266 BLAKE2B 
caf949b87baf0fecc87fef58f512d0a99e1219b57bc167992b0e40841ce67e5ddcf5307de7fc9c70f173e75aab4a12eb86abef0084084b5119f95326509ea665
 SHA512 
9c3761e7ce34f2d9d1b5ee49ebc3bf665e3d45e4146231bc77d7416801fbfa70415e80c81c64962897766ee068d1a103609895d783f20a765c351d4cd433323d
 DIST fdupes-2.2.0.tar.gz 144763 BLAKE2B 
26a6f003b6e1b536d02da1f4b5e9051c3da19ae67c6cbdfb3cf2060ae68288b9ebdf64ca911e60126a6646895f6a6d7158c23b28c20b415ee341a8dd29820aaf
 SHA512 
83f7bb9c3dc44ef5356c02b1db7f7f0e5698f2b73dfbb8ea1176e9a7399167a7ffd8d416036792ede1ba106dfb221d72708f7e483ce96fb7faf6c23a4f43128b
+DIST fdupes-2.2.1.tar.gz 144719 BLAKE2B 
904fd70650847e48e135e47ef77e244ee847151f6ff88ccda2aeba5158038de8507b2ea23a7172e9c1fcd634ae38601c66da225014b9cfd65fd506ce77e7d408
 SHA512 
4911d2f776480691e7bd7045c181d49159add5b479188b05f0878a7af365cee0e430093e71ff172c04b876c58efc3be0f24c9d25f0cdebf1c869931175bc8608

diff --git a/app-misc/fdupes/fdupes-2.2.1.ebuild 
b/app-misc/fdupes/fdupes-2.2.1.ebuild
new file mode 100644
index ..3578fdc09788
--- /dev/null
+++ b/app-misc/fdupes/fdupes-2.2.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
+   inherit autotools git-r3
+else
+   
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+ncurses"
+
+RDEPEND="
+   dev-libs/libpcre2[pcre32]
+   ncurses? ( sys-libs/ncurses:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGES CONTRIBUTORS README )
+
+src_prepare() {
+   default
+
+   [[ ${PV} == * ]] && eautoreconf
+}
+
+src_configure() {
+   econf $(use_with ncurses)
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)"
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-08-31 Thread Sam James
commit: d78f1f0746c4ffeb06e1440c97817154818ae709
Author: Sam James  gentoo  org>
AuthorDate: Thu Sep  1 00:29:03 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Sep  1 00:36:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d78f1f07

app-misc/fdupes: forward ~loong, ~riscv

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

 app-misc/fdupes/fdupes-2.2.0.ebuild | 2 +-
 app-misc/fdupes/fdupes-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/fdupes/fdupes-2.2.0.ebuild 
b/app-misc/fdupes/fdupes-2.2.0.ebuild
index 5cf8c66e6420..3578fdc09788 100644
--- a/app-misc/fdupes/fdupes-2.2.0.ebuild
+++ b/app-misc/fdupes/fdupes-2.2.0.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index 5cf8c66e6420..3578fdc09788 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]] ; then
inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-08-26 Thread Sam James
commit: 1b2cdb17237fd8109a45b8ef28e0d22e500b6fa8
Author: Sam James  gentoo  org>
AuthorDate: Fri Aug 26 11:52:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Aug 26 12:04:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b2cdb17

app-misc/fdupes: add 2.2.0

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

 app-misc/fdupes/Manifest|  1 +
 app-misc/fdupes/{fdupes-.ebuild => fdupes-2.2.0.ebuild} | 12 +++-
 app-misc/fdupes/fdupes-.ebuild  | 12 +++-
 3 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
index 0288ee4dd113..9deb6e1a8c25 100644
--- a/app-misc/fdupes/Manifest
+++ b/app-misc/fdupes/Manifest
@@ -1 +1,2 @@
 DIST fdupes-2.1.2.tar.gz 142266 BLAKE2B 
caf949b87baf0fecc87fef58f512d0a99e1219b57bc167992b0e40841ce67e5ddcf5307de7fc9c70f173e75aab4a12eb86abef0084084b5119f95326509ea665
 SHA512 
9c3761e7ce34f2d9d1b5ee49ebc3bf665e3d45e4146231bc77d7416801fbfa70415e80c81c64962897766ee068d1a103609895d783f20a765c351d4cd433323d
+DIST fdupes-2.2.0.tar.gz 144763 BLAKE2B 
26a6f003b6e1b536d02da1f4b5e9051c3da19ae67c6cbdfb3cf2060ae68288b9ebdf64ca911e60126a6646895f6a6d7158c23b28c20b415ee341a8dd29820aaf
 SHA512 
83f7bb9c3dc44ef5356c02b1db7f7f0e5698f2b73dfbb8ea1176e9a7399167a7ffd8d416036792ede1ba106dfb221d72708f7e483ce96fb7faf6c23a4f43128b

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-2.2.0.ebuild
similarity index 88%
copy from app-misc/fdupes/fdupes-.ebuild
copy to app-misc/fdupes/fdupes-2.2.0.ebuild
index 33ac17e5539a..5cf8c66e6420 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-2.2.0.ebuild
@@ -1,26 +1,27 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit toolchain-funcs
 
 DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
 HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
-if [[ "${PV}" == * ]] ; then
-   inherit autotools git-r3
+if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
+   inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
+
 LICENSE="MIT"
 SLOT="0"
 IUSE="+ncurses"
 
 RDEPEND="
dev-libs/libpcre2[pcre32]
-   ncurses? ( sys-libs/ncurses:0= )
+   ncurses? ( sys-libs/ncurses:= )
 "
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
@@ -29,7 +30,8 @@ DOCS=( CHANGES CONTRIBUTORS README )
 
 src_prepare() {
default
-   [[ "${PV}" == * ]] && eautoreconf
+
+   [[ ${PV} == * ]] && eautoreconf
 }
 
 src_configure() {

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index 33ac17e5539a..5cf8c66e6420 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -1,26 +1,27 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit toolchain-funcs
 
 DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
 HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
-if [[ "${PV}" == * ]] ; then
-   inherit autotools git-r3
+if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
+   inherit autotools git-r3
 else

SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 fi
+
 LICENSE="MIT"
 SLOT="0"
 IUSE="+ncurses"
 
 RDEPEND="
dev-libs/libpcre2[pcre32]
-   ncurses? ( sys-libs/ncurses:0= )
+   ncurses? ( sys-libs/ncurses:= )
 "
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
@@ -29,7 +30,8 @@ DOCS=( CHANGES CONTRIBUTORS README )
 
 src_prepare() {
default
-   [[ "${PV}" == * ]] && eautoreconf
+
+   [[ ${PV} == * ]] && eautoreconf
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-06-27 Thread WANG Xuerui
commit: 689bc414a57cf56e84560537c2ab51e54fe73e19
Author: WANG Xuerui  gentoo  org>
AuthorDate: Tue Jun 28 04:17:35 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Tue Jun 28 04:18:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=689bc414

app-misc/fdupes: keyword 2.1.2 for ~loong

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

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 8524e37a9eef..e21038f7eeb8 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2022-03-19 Thread David Seifert
commit: bef9cdc5787c3ade216a762c8b7283c9f02f6528
Author: David Seifert  gentoo  org>
AuthorDate: Sat Mar 19 23:16:48 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Mar 19 23:16:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bef9cdc5

app-misc/fdupes: quote $(tc-*) calls

Signed-off-by: David Seifert  gentoo.org>

 app-misc/fdupes/fdupes-2.1.2.ebuild | 4 ++--
 app-misc/fdupes/fdupes-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 10f71ab708d5..8524e37a9eef 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -28,5 +28,5 @@ src_configure() {
 }
 
 src_compile() {
-   emake CC=$(tc-getCC)
+   emake CC="$(tc-getCC)"
 }

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index 9fc8d0597860..33ac17e5539a 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -37,5 +37,5 @@ src_configure() {
 }
 
 src_compile() {
-   emake CC=$(tc-getCC)
+   emake CC="$(tc-getCC)"
 }



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/, app-misc/fdupes/files/

2021-02-27 Thread Sam James
commit: c6faf970259f070f04f188639ae2354ec3f99a91
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 27 16:18:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 27 16:18:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6faf970

app-misc/fdupes: cleanup old

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

 app-misc/fdupes/Manifest   |  2 -
 app-misc/fdupes/fdupes-1.5.1.ebuild| 40 ---
 app-misc/fdupes/fdupes-1.6.1-r1.ebuild | 31 
 .../files/fdupes-1.50_pre2-compare-file.patch  | 58 --
 app-misc/fdupes/files/fdupes-1.50_pre2-typo.patch  | 12 -
 .../files/fdupes-1.51-fix-stdin-lvalue.patch   | 20 
 app-misc/fdupes/files/fdupes-1.51-makefile.patch   | 23 -
 7 files changed, 186 deletions(-)

diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
index ad561a85095..0288ee4dd11 100644
--- a/app-misc/fdupes/Manifest
+++ b/app-misc/fdupes/Manifest
@@ -1,3 +1 @@
-DIST fdupes-1.51.tar.gz 48942 BLAKE2B 
b2673a5601d0bc1d7bb0d312c3d4fbf67494916e9445fba6c46bccbeaa471ebc776b9deb18b323c6eebea4f231bdf1503af9010cbe83b6aae2a3efe479c3a49c
 SHA512 
7cbc414f25427793317667b8d5494f7247a08ba402855929de77d1db01eb3dce41ea608f8dcca047c4a7856e02b10261982cf2acd7f6a79ab726b3009c710a8d
-DIST fdupes-1.6.1.tar.gz 20869 BLAKE2B 
683b75b44ea4662e555a81405d6c9c291c7980b579c866ad953e18ad8c92beb37c2b6f7ca29ea4e40269ef751851dd8afbb77b0bffb5139bbfbcc0d41ab23a5a
 SHA512 
6c6662b70068c2f48f4be64a6830c81a66852d650391d0756f20b9ac0df7d70c1a32918bd7cbd50e19de524d9ebc09ea338c19636e1807b071eb96b325e641db
 DIST fdupes-2.1.2.tar.gz 142266 BLAKE2B 
caf949b87baf0fecc87fef58f512d0a99e1219b57bc167992b0e40841ce67e5ddcf5307de7fc9c70f173e75aab4a12eb86abef0084084b5119f95326509ea665
 SHA512 
9c3761e7ce34f2d9d1b5ee49ebc3bf665e3d45e4146231bc77d7416801fbfa70415e80c81c64962897766ee068d1a103609895d783f20a765c351d4cd433323d

diff --git a/app-misc/fdupes/fdupes-1.5.1.ebuild 
b/app-misc/fdupes/fdupes-1.5.1.ebuild
deleted file mode 100644
index 8202ea8e478..000
--- a/app-misc/fdupes/fdupes-1.5.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils flag-o-matic toolchain-funcs
-
-MY_P="${PN}-${PV/_pre/-PR}"
-MY_P="${MY_P/5\.1/51}"
-
-DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
-HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
-SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/${P/5\.1/51}.tar.gz";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PN}-1.51-makefile.patch \
-   "${FILESDIR}"/${PN}-1.50_pre2-compare-file.patch \
-   "${FILESDIR}"/${PN}-1.50_pre2-typo.patch \
-   "${FILESDIR}"/${PN}-1.51-fix-stdin-lvalue.patch
-
-   append-lfs-flags
-}
-
-src_compile() {
-   emake CC=$(tc-getCC)
-}
-
-src_install() {
-   dobin fdupes
-   doman fdupes.1
-   dodoc CHANGES CONTRIBUTORS README TODO
-}

diff --git a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild 
b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
deleted file mode 100644
index a1e3cc6080c..000
--- a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
-HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
-SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-src_prepare() {
-   default
-   append-lfs-flags
-   sed -e "s#^CFLAGS= \(.*\)#CFLAGS= \1 ${CFLAGS}#g;" \
-   -i "Makefile" || die "can't patch Makefile"
-}
-
-src_compile() {
-   emake CC=$(tc-getCC)
-}
-
-src_install() {
-   dobin "${PN}"
-   doman "${PN}.1"
-   einstalldocs
-}

diff --git a/app-misc/fdupes/files/fdupes-1.50_pre2-compare-file.patch 
b/app-misc/fdupes/files/fdupes-1.50_pre2-compare-file.patch
deleted file mode 100644
index fa9e2a34a89..000
--- a/app-misc/fdupes/files/fdupes-1.50_pre2-compare-file.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-diff -urNp fdupes-1.50-PR2.orig/fdupes.c fdupes-1.50-PR2/fdupes.c
 fdupes-1.50-PR2.orig/fdupes.c  2009-01-31 20:11:49.577968848 +0530
-+++ fdupes-1.50-PR2/fdupes.c   2009-01-31 22:01:11.872219443 +0530
-@@ -492,7 +492,10 @@ file_t **checkmatch(filetree_t **root, f
-   else {
- i

[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-02-27 Thread Sam James
commit: 5b16f08e15aa71888307eecd6fe3ef5b8ace1aee
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 27 16:15:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 27 16:15:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b16f08e

app-misc/fdupes: Stabilize 2.1.2 amd64, #770316

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

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 1423200509f..8f97be90f13 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-02-26 Thread Sam James
commit: 8804122d8392a89c1c18fb3b1b127a1f9f3ea56e
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 26 13:54:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 26 13:54:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8804122d

app-misc/fdupes: Stabilize 2.1.2 arm64, #770316

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

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 67d7bb46c98..1423200509f 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-02-25 Thread Sam James
commit: 0b21dee4875ac2f13e72f796b6feeefeffddc00c
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 25 13:07:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 25 13:07:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b21dee4

app-misc/fdupes: Stabilize 2.1.2 x86, #770316

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

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index d185f45be19..67d7bb46c98 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-02-24 Thread Sam James
commit: 5c9c350cc3dc3aadec0d51756a0383b56dc20d83
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 25 03:55:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 25 03:55:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c9c350c

app-misc/fdupes: Stabilize 2.1.2 arm, #770316

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

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 01078a8e711..d185f45be19 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-02-24 Thread Sam James
commit: 2a9116de6d09eb097fb6e46332bc23b2c072d09f
Author: Sam James  gentoo  org>
AuthorDate: Wed Feb 24 20:25:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Feb 24 20:25:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a9116de

app-misc/fdupes: Stabilize 2.1.2 ppc64, #770316

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

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 79998753f52..01078a8e711 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-02-24 Thread Sam James
commit: bcbb484faf544ce3e8dd9ea71c9a73230cb3ca8e
Author: Sam James  gentoo  org>
AuthorDate: Wed Feb 24 20:23:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Feb 24 20:24:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbb484f

app-misc/fdupes: Stabilize 2.1.2 ppc, #770316

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

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 4c010453e09..79998753f52 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-02-23 Thread Sergei Trofimovich
commit: 25b811b92bdb96c1af142dd9514cb0d8bad71044
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Feb 23 14:42:59 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Feb 23 18:12:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25b811b9

app-misc/fdupes: stable 2.1.2 for sparc, bug #770316

Package-Manager: Portage-3.0.13, 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>

 app-misc/fdupes/fdupes-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
index 78acd8f3a92..4c010453e09 100644
--- a/app-misc/fdupes/fdupes-2.1.2.ebuild
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="+ncurses"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2021-01-13 Thread Lars Wendler
commit: b8ed0369ea828c98c2a2daad53879ddb7f6e3621
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan 13 10:38:00 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan 13 10:47:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8ed0369

app-misc/fdupes: Bump to version 2.1.2

Closes: https://github.com/gentoo/gentoo/pull/16441
Closes: https://bugs.gentoo.org/720920
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Lars Wendler  gentoo.org>

 app-misc/fdupes/Manifest|  1 +
 app-misc/fdupes/fdupes-2.1.2.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
index 83286cc270b..ad561a85095 100644
--- a/app-misc/fdupes/Manifest
+++ b/app-misc/fdupes/Manifest
@@ -1,2 +1,3 @@
 DIST fdupes-1.51.tar.gz 48942 BLAKE2B 
b2673a5601d0bc1d7bb0d312c3d4fbf67494916e9445fba6c46bccbeaa471ebc776b9deb18b323c6eebea4f231bdf1503af9010cbe83b6aae2a3efe479c3a49c
 SHA512 
7cbc414f25427793317667b8d5494f7247a08ba402855929de77d1db01eb3dce41ea608f8dcca047c4a7856e02b10261982cf2acd7f6a79ab726b3009c710a8d
 DIST fdupes-1.6.1.tar.gz 20869 BLAKE2B 
683b75b44ea4662e555a81405d6c9c291c7980b579c866ad953e18ad8c92beb37c2b6f7ca29ea4e40269ef751851dd8afbb77b0bffb5139bbfbcc0d41ab23a5a
 SHA512 
6c6662b70068c2f48f4be64a6830c81a66852d650391d0756f20b9ac0df7d70c1a32918bd7cbd50e19de524d9ebc09ea338c19636e1807b071eb96b325e641db
+DIST fdupes-2.1.2.tar.gz 142266 BLAKE2B 
caf949b87baf0fecc87fef58f512d0a99e1219b57bc167992b0e40841ce67e5ddcf5307de7fc9c70f173e75aab4a12eb86abef0084084b5119f95326509ea665
 SHA512 
9c3761e7ce34f2d9d1b5ee49ebc3bf665e3d45e4146231bc77d7416801fbfa70415e80c81c64962897766ee068d1a103609895d783f20a765c351d4cd433323d

diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild 
b/app-misc/fdupes/fdupes-2.1.2.ebuild
new file mode 100644
index 000..78acd8f3a92
--- /dev/null
+++ b/app-misc/fdupes/fdupes-2.1.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
+SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="+ncurses"
+
+RDEPEND="
+   dev-libs/libpcre2[pcre32]
+   ncurses? ( sys-libs/ncurses:0= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGES CONTRIBUTORS README )
+
+src_configure() {
+   econf $(use_with ncurses)
+}
+
+src_compile() {
+   emake CC=$(tc-getCC)
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/files/, app-misc/fdupes/

2021-01-13 Thread Lars Wendler
commit: e88d55503a8be636da6b28329821dc4f186abff7
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jan 13 10:50:06 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jan 13 10:50:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88d5550

app-misc/fdupes: Synced live ebuild

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Lars Wendler  gentoo.org>

 app-misc/fdupes/fdupes-.ebuild | 43 +++---
 app-misc/fdupes/files/fdupes--gentoo.patch | 14 -
 2 files changed, 25 insertions(+), 32 deletions(-)

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index f27d34c2d82..9fc8d059786 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -1,34 +1,41 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit flag-o-matic git-r3 toolchain-funcs
-
-MY_P="${PN}-${PV/_pre/-PR}"
+inherit toolchain-funcs
 
 DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
 HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
-EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
-
+if [[ "${PV}" == * ]] ; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
+else
+   
SRC_URI="https://github.com/adrianlopezroche/${PN}/releases/download/v${PV}/${P}.tar.gz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+fi
 LICENSE="MIT"
 SLOT="0"
+IUSE="+ncurses"
 
-KEYWORDS=""
-SRC_URI=""
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+RDEPEND="
+   dev-libs/libpcre2[pcre32]
+   ncurses? ( sys-libs/ncurses:0= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 DOCS=( CHANGES CONTRIBUTORS README )
 
+src_prepare() {
+   default
+   [[ "${PV}" == * ]] && eautoreconf
+}
+
 src_configure() {
-   append-lfs-flags
-   tc-export CC
+   econf $(use_with ncurses)
 }
 
-src_install() {
-   emake PREFIX="/usr" DESTDIR="${D}" install
-   einstalldocs
+src_compile() {
+   emake CC=$(tc-getCC)
 }

diff --git a/app-misc/fdupes/files/fdupes--gentoo.patch 
b/app-misc/fdupes/files/fdupes--gentoo.patch
deleted file mode 100644
index 4c6edda50e0..000
--- a/app-misc/fdupes/files/fdupes--gentoo.patch
+++ /dev/null
@@ -1,14 +0,0 @@
 a/Makefile
-+++ b/Makefile
-@@ -71,9 +71,9 @@
- # Make Configuration
- #
- CC ?= gcc
--COMPILER_OPTIONS = -Wall -O -g
-+COMPILER_OPTIONS = -Wall
- 
--CFLAGS= $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" $(OMIT_GETOPT_LONG) 
$(FILEOFFSET_64BIT)
-+CFLAGS += $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" 
$(OMIT_GETOPT_LONG) $(FILEOFFSET_64BIT)
- 
- INSTALL_PROGRAM = $(INSTALL) -c -m 0755
- INSTALL_DATA= $(INSTALL) -c -m 0644



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2020-09-26 Thread Aaron Bauman
commit: bd9de21bbc3f79e7987b87d27d56e30775de1a63
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Sep 26 19:11:24 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Sep 26 19:40:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd9de21b

app-misc/fdupes: drop old EAPI=5

Signed-off-by: Aaron Bauman  gentoo.org>

 app-misc/fdupes/fdupes-1.6.1.ebuild | 29 -
 1 file changed, 29 deletions(-)

diff --git a/app-misc/fdupes/fdupes-1.6.1.ebuild 
b/app-misc/fdupes/fdupes-1.6.1.ebuild
deleted file mode 100644
index 2858047c4d5..000
--- a/app-misc/fdupes/fdupes-1.6.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
-HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
-SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE=""
-
-src_prepare() {
-   append-lfs-flags
-}
-
-src_compile() {
-   emake CC=$(tc-getCC)
-}
-
-src_install() {
-   dobin fdupes
-   doman fdupes.1
-   dodoc CHANGES CONTRIBUTORS README TODO
-}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2020-06-21 Thread Patrice Clement
commit: 8fab97203d96628afa6354762538021281452a92
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jun 21 07:39:53 2020 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jun 21 07:54:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fab9720

app-misc/fdupes: remove comment.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Patrice Clement  gentoo.org>

 app-misc/fdupes/fdupes-1.6.1-r1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild 
b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
index b016e903738..a1e3cc6080c 100644
--- a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
+++ b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
@@ -22,7 +22,6 @@ src_prepare() {
 
 src_compile() {
emake CC=$(tc-getCC)
-   #emake CC=$(tc-getCC) CFLAGS="${CFLAGS} -DVERSION=\"1.6.1\" 
-D_FILE_OFFSET_BITS=64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE 
-D_LARGEFILE64_SOURCE"
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2020-06-21 Thread Patrice Clement
commit: 789193af5fdab1cb39ed3fdc06efe7db3e3d33b2
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jun 21 07:24:37 2020 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jun 21 07:24:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789193af

app-misc/fdupes: honour CFLAGS.

Closes: https://bugs.gentoo.org/726632
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Patrice Clement  gentoo.org>

 app-misc/fdupes/fdupes-1.6.1-r1.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild 
b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
index b127dfcbd85..b016e903738 100644
--- a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
+++ b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,10 +16,13 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 
~ppc64 ~s390 ~sparc ~
 src_prepare() {
default
append-lfs-flags
+   sed -e "s#^CFLAGS= \(.*\)#CFLAGS= \1 ${CFLAGS}#g;" \
+   -i "Makefile" || die "can't patch Makefile"
 }
 
 src_compile() {
emake CC=$(tc-getCC)
+   #emake CC=$(tc-getCC) CFLAGS="${CFLAGS} -DVERSION=\"1.6.1\" 
-D_FILE_OFFSET_BITS=64 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE 
-D_LARGEFILE64_SOURCE"
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2017-09-22 Thread Patrice Clement
commit: b950e7f8e85f26c1cf30a6b3dcd06b7e45de1902
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Sep 22 12:38:20 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Sep 22 12:38:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b950e7f8

app-misc/fdupes: rely on Makefile to install files.

... instead of Portage helper functions.

Package-Manager: Portage-2.3.8, Repoman-2.3.1

 app-misc/fdupes/fdupes-.ebuild | 15 ---
 app-misc/fdupes/metadata.xml   | 14 +++---
 2 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index c9a2c595d3c..f27d34c2d82 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -9,17 +9,19 @@ MY_P="${PN}-${PV/_pre/-PR}"
 
 DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
 HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
-SRC_URI=""
 EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
 
 LICENSE="MIT"
 SLOT="0"
+
 KEYWORDS=""
+SRC_URI=""
 
 S="${WORKDIR}/${MY_P}"
-PATCHES=(
-   "${FILESDIR}"/${P}-gentoo.patch
-)
+
+PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
+
+DOCS=( CHANGES CONTRIBUTORS README )
 
 src_configure() {
append-lfs-flags
@@ -27,7 +29,6 @@ src_configure() {
 }
 
 src_install() {
-   dobin fdupes
-   dodoc CHANGES CONTRIBUTORS README
-   doman fdupes.1
+   emake PREFIX="/usr" DESTDIR="${D}" install
+   einstalldocs
 }

diff --git a/app-misc/fdupes/metadata.xml b/app-misc/fdupes/metadata.xml
index 71d25d673c1..4a5652d5b09 100644
--- a/app-misc/fdupes/metadata.xml
+++ b/app-misc/fdupes/metadata.xml
@@ -1,11 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-  
-shell-to...@gentoo.org
-Gentoo Shell Tools Project
-  
-  
-adrianlopezroche/fdupes
-  
+   
+   shell-to...@gentoo.org
+   Gentoo Shell Tools Project
+   
+   
+   adrianlopezroche/fdupes
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/files/, app-misc/fdupes/

2017-09-22 Thread Jeroen Roovers
commit: da52953483c1a26ceba770e369bba8eefa411898
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Sep 22 10:53:28 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Sep 22 10:54:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da529534

app-misc/fdupes: Fix live ebuild patch.

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 app-misc/fdupes/fdupes-.ebuild   | 15 ++---
 app-misc/fdupes/files/fdupes--gentoo.patch   | 14 
 app-misc/fdupes/files/fdupes--makefile.patch | 28 
 3 files changed, 21 insertions(+), 36 deletions(-)

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index 21737cbeea0..c9a2c595d3c 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-inherit eutils flag-o-matic git-r3 toolchain-funcs
+inherit flag-o-matic git-r3 toolchain-funcs
 
 MY_P="${PN}-${PV/_pre/-PR}"
 
@@ -15,20 +15,19 @@ 
EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
-IUSE=""
 
 S="${WORKDIR}/${MY_P}"
+PATCHES=(
+   "${FILESDIR}"/${P}-gentoo.patch
+)
 
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${P}-makefile.patch
-
+src_configure() {
append-lfs-flags
tc-export CC
 }
 
 src_install() {
dobin fdupes
+   dodoc CHANGES CONTRIBUTORS README
doman fdupes.1
-   dodoc CHANGES CONTRIBUTORS README TODO
 }

diff --git a/app-misc/fdupes/files/fdupes--gentoo.patch 
b/app-misc/fdupes/files/fdupes--gentoo.patch
new file mode 100644
index 000..4c6edda50e0
--- /dev/null
+++ b/app-misc/fdupes/files/fdupes--gentoo.patch
@@ -0,0 +1,14 @@
+--- a/Makefile
 b/Makefile
+@@ -71,9 +71,9 @@
+ # Make Configuration
+ #
+ CC ?= gcc
+-COMPILER_OPTIONS = -Wall -O -g
++COMPILER_OPTIONS = -Wall
+ 
+-CFLAGS= $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" $(OMIT_GETOPT_LONG) 
$(FILEOFFSET_64BIT)
++CFLAGS += $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" 
$(OMIT_GETOPT_LONG) $(FILEOFFSET_64BIT)
+ 
+ INSTALL_PROGRAM = $(INSTALL) -c -m 0755
+ INSTALL_DATA= $(INSTALL) -c -m 0644

diff --git a/app-misc/fdupes/files/fdupes--makefile.patch 
b/app-misc/fdupes/files/fdupes--makefile.patch
deleted file mode 100644
index b534c648857..000
--- a/app-misc/fdupes/files/fdupes--makefile.patch
+++ /dev/null
@@ -1,28 +0,0 @@
- Makefile | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 921d910..67576f9 100644
 a/Makefile
-+++ b/Makefile
-@@ -78,9 +78,9 @@ MKDIR   = mkdir -p
- # Make Configuration
- #
- CC ?= gcc
--COMPILER_OPTIONS = -Wall -O -g
-+CFLAGS ?= -Wall -O -g
- 
--CFLAGS= $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" $(EXTERNAL_MD5) 
$(OMIT_GETOPT_LONG) $(FILEOFFSET_64BIT)
-+CFLAGS += -I. -DVERSION=\"$(VERSION)\" $(EXTERNAL_MD5) $(OMIT_GETOPT_LONG) 
$(FILEOFFSET_64BIT)
- 
- INSTALL_PROGRAM = $(INSTALL) -c -m 0755
- INSTALL_DATA= $(INSTALL) -c -m 0644
-@@ -100,7 +100,7 @@ OBJECT_FILES = fdupes.o md5/md5.o $(ADDITIONAL_OBJECTS)
- all: fdupes
- 
- fdupes: $(OBJECT_FILES)
--  $(CC) $(CFLAGS) -o fdupes $(OBJECT_FILES)
-+  $(CC) $(CFLAGS) $(LDFLAGS) -o fdupes $(OBJECT_FILES)
- 
- installdirs:
-   test -d $(DESTDIR)$(BIN_DIR) || $(MKDIR) $(DESTDIR)$(BIN_DIR)



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2017-09-19 Thread Daniel Campbell
commit: 1cc26da9bad0de32c438110f2b3ef0ea3483a333
Author: Daniel Campbell  gentoo  org>
AuthorDate: Tue Sep 19 20:48:40 2017 +
Commit: Daniel Campbell  gentoo  org>
CommitDate: Tue Sep 19 20:48:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cc26da9

app-misc/fdupes: Remove Google Code from HOMEPAGE

Bug: https://bugs.gentoo.org/631444
Package-Manager: Portage-2.3.8, Repoman-2.3.3

 app-misc/fdupes/fdupes-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
index 61afb93cb8b..21737cbeea0 100644
--- a/app-misc/fdupes/fdupes-.ebuild
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -8,7 +8,7 @@ inherit eutils flag-o-matic git-r3 toolchain-funcs
 MY_P="${PN}-${PV/_pre/-PR}"
 
 DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
-HOMEPAGE="https://github.com/adrianlopezroche/fdupes 
https://code.google.com/p/fdupes/";
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
 SRC_URI=""
 EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
 



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2017-08-01 Thread Patrice Clement
commit: 2ca53b27dfc551d66895c96bdfc0bad3cbacd596
Author: Patrice Clement  gentoo  org>
AuthorDate: Tue Aug  1 21:36:39 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Tue Aug  1 21:38:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ca53b27

app-misc/fdupes: EAPI 6 bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-misc/fdupes/fdupes-1.6.1-r1.ebuild | 29 +
 1 file changed, 29 insertions(+)

diff --git a/app-misc/fdupes/fdupes-1.6.1-r1.ebuild 
b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
new file mode 100644
index 000..b127dfcbd85
--- /dev/null
+++ b/app-misc/fdupes/fdupes-1.6.1-r1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
+SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+src_prepare() {
+   default
+   append-lfs-flags
+}
+
+src_compile() {
+   emake CC=$(tc-getCC)
+}
+
+src_install() {
+   dobin "${PN}"
+   doman "${PN}.1"
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2017-07-15 Thread Alexis Ballier
commit: 4cf3b24f1e459baf96051c33ffa6b6aa39384852
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 09:38:03 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Jul 15 09:39:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf3b24f

app-misc/fdupes: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-misc/fdupes/fdupes-1.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/fdupes/fdupes-1.6.1.ebuild 
b/app-misc/fdupes/fdupes-1.6.1.ebuild
index d122763ce81..2858047c4d5 100644
--- a/app-misc/fdupes/fdupes-1.6.1.ebuild
+++ b/app-misc/fdupes/fdupes-1.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE=""
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2016-11-23 Thread Jason Donenfeld
commit: 13b2c0abe664004fa2a1e2aa8ea709997bd64a76
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Thu Nov 24 02:37:24 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Thu Nov 24 02:37:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13b2c0ab

app-misc/fdupes: bump

We also rename stable from 1.51 to 1.5.1 so that versioning can work. But, no 
other changes to the stable package, and hopefully it will be going away soon 
anyway.

Package-Manager: portage-2.3.2
RepoMan-Options: --force

 app-misc/fdupes/Manifest   |  1 +
 .../{fdupes-1.51.ebuild => fdupes-1.5.1.ebuild}| 12 -
 app-misc/fdupes/fdupes-1.6.1.ebuild| 30 ++
 3 files changed, 36 insertions(+), 7 deletions(-)

diff --git a/app-misc/fdupes/Manifest b/app-misc/fdupes/Manifest
index db0a598..c364ab0 100644
--- a/app-misc/fdupes/Manifest
+++ b/app-misc/fdupes/Manifest
@@ -1 +1,2 @@
 DIST fdupes-1.51.tar.gz 48942 SHA256 
87dbc85b7b9cdb9626e713dd8078bd7487bceb58d47ceaff5404a9e6fd062881 SHA512 
7cbc414f25427793317667b8d5494f7247a08ba402855929de77d1db01eb3dce41ea608f8dcca047c4a7856e02b10261982cf2acd7f6a79ab726b3009c710a8d
 WHIRLPOOL 
49c4ac195270972246e54f1249749afde889926067e6a3c88f14dbe738b1ba40c085c4b6c9fc0bcbb3fa83de0bf21c54a24eea91307143083648b333c50d7305
+DIST fdupes-1.6.1.tar.gz 20869 SHA256 
9d6b6fdb0b8419815b4df3bdfd0aebc135b8276c90bbbe78ebe6af0b88ba49ea SHA512 
6c6662b70068c2f48f4be64a6830c81a66852d650391d0756f20b9ac0df7d70c1a32918bd7cbd50e19de524d9ebc09ea338c19636e1807b071eb96b325e641db
 WHIRLPOOL 
811daccb06f2061b9ad2b6c86a2126c0ea1a496f1fd712dbebb1be0427c8cf35d03f001f810af92ecc57f4c5af98a32df8ce26231fbd0b7b8cb203e5f5662e4f

diff --git a/app-misc/fdupes/fdupes-1.51.ebuild 
b/app-misc/fdupes/fdupes-1.5.1.ebuild
similarity index 70%
rename from app-misc/fdupes/fdupes-1.51.ebuild
rename to app-misc/fdupes/fdupes-1.5.1.ebuild
index 3a43ae9..4225cb9 100644
--- a/app-misc/fdupes/fdupes-1.51.ebuild
+++ b/app-misc/fdupes/fdupes-1.5.1.ebuild
@@ -7,13 +7,11 @@ EAPI=5
 inherit eutils flag-o-matic toolchain-funcs
 
 MY_P="${PN}-${PV/_pre/-PR}"
+MY_P="${MY_P/5\.1/51}"
 
 DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
-HOMEPAGE="https://github.com/adrianlopezroche/fdupes 
https://code.google.com/p/fdupes/";
-SRC_URI="
-   https://fdupes.googlecode.com/files/${P}.tar.gz
-   https://github.com/adrianlopezroche/${PN}/archive/${P}.tar.gz
-   "
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
+SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/${P/5\.1/51}.tar.gz";
 
 LICENSE="MIT"
 SLOT="0"
@@ -24,10 +22,10 @@ S="${WORKDIR}/${MY_P}"
 
 src_prepare() {
epatch \
-   "${FILESDIR}"/${P}-makefile.patch \
+   "${FILESDIR}"/${PN}-1.51-makefile.patch \
"${FILESDIR}"/${PN}-1.50_pre2-compare-file.patch \
"${FILESDIR}"/${PN}-1.50_pre2-typo.patch \
-   "${FILESDIR}"/${P}-fix-stdin-lvalue.patch
+   "${FILESDIR}"/${PN}-1.51-fix-stdin-lvalue.patch
 
append-lfs-flags
 }

diff --git a/app-misc/fdupes/fdupes-1.6.1.ebuild 
b/app-misc/fdupes/fdupes-1.6.1.ebuild
new file mode 100644
index ..7d51f84
--- /dev/null
+++ b/app-misc/fdupes/fdupes-1.6.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes";
+SRC_URI="https://github.com/adrianlopezroche/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+IUSE=""
+
+src_prepare() {
+   append-lfs-flags
+}
+
+src_compile() {
+   emake CC=$(tc-getCC)
+}
+
+src_install() {
+   dobin fdupes
+   doman fdupes.1
+   dodoc CHANGES CONTRIBUTORS README TODO
+}



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/

2016-04-14 Thread Fabian Groffen
commit: cb1f9500de80c25c1e65bb7c9837362532579428
Author: Fabian Groffen  gentoo  org>
AuthorDate: Thu Apr 14 13:24:23 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Thu Apr 14 13:24:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb1f9500

app-misc/fdupes: marked ~x64-macos, bug #579902

Package-Manager: portage-2.2.26

 app-misc/fdupes/fdupes-1.51.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/fdupes/fdupes-1.51.ebuild 
b/app-misc/fdupes/fdupes-1.51.ebuild
index 8037f87..3a43ae9 100644
--- a/app-misc/fdupes/fdupes-1.51.ebuild
+++ b/app-misc/fdupes/fdupes-1.51.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE=""
 
 S="${WORKDIR}/${MY_P}"



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/files/, app-misc/fdupes/

2016-02-28 Thread Anthony G. Basile
commit: 270f6af778bcf8f5c6bb68bf9aac10593b20de4d
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Feb 29 07:53:08 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Feb 29 07:53:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=270f6af7

app-misc/fdupes: remove stdin as lvalue, bug #574610

Package-Manager: portage-2.2.26

 app-misc/fdupes/fdupes-1.51.ebuild   |  5 +++--
 .../fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch  | 20 
 2 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/app-misc/fdupes/fdupes-1.51.ebuild 
b/app-misc/fdupes/fdupes-1.51.ebuild
index 6bff666..8037f87 100644
--- a/app-misc/fdupes/fdupes-1.51.ebuild
+++ b/app-misc/fdupes/fdupes-1.51.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -26,7 +26,8 @@ src_prepare() {
epatch \
"${FILESDIR}"/${P}-makefile.patch \
"${FILESDIR}"/${PN}-1.50_pre2-compare-file.patch \
-   "${FILESDIR}"/${PN}-1.50_pre2-typo.patch
+   "${FILESDIR}"/${PN}-1.50_pre2-typo.patch \
+   "${FILESDIR}"/${P}-fix-stdin-lvalue.patch
 
append-lfs-flags
 }

diff --git a/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch 
b/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch
new file mode 100644
index 000..65c06e3
--- /dev/null
+++ b/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch
@@ -0,0 +1,20 @@
+This is a combination of upstream's fe2d8334 and 03abad.  See
+https://bugs.gentoo.org/show_bug.cgi?id=574610.
+
+diff -Naur fdupes-1.51.orig/fdupes.c fdupes-1.51/fdupes.c
+--- fdupes-1.51.orig/fdupes.c  2013-04-20 14:02:18.0 -0400
 fdupes-1.51/fdupes.c   2016-02-29 02:45:36.360804360 -0500
+@@ -1164,7 +1164,12 @@
+ }
+ else
+ {
+-  stdin = freopen("/dev/tty", "r", stdin);
++  if (freopen("/dev/tty", "r", stdin) == 0)
++  {
++errormsg("could not open terminal for input\n");
++exit(1);
++  }
++
+   deletefiles(files, 1, stdin);
+ }
+   }



[gentoo-commits] repo/gentoo:master commit in: app-misc/fdupes/, app-misc/fdupes/files/

2015-08-10 Thread Justin Lecher
commit: 233842f07c64898928e9ebb9df7ea4e66bfc9144
Author: Justin Lecher  gentoo  org>
AuthorDate: Tue Aug 11 06:28:21 2015 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Tue Aug 11 06:30:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233842f0

app-misc/fdupes: Drop obsolete patch; add live version

Package-Manager: portage-2.2.20
Signed-off-by: Justin Lecher  gentoo.org>

 app-misc/fdupes/fdupes-.ebuild | 35 ++
 app-misc/fdupes/files/fdupes-1.50_pre2-lfs.patch   | 21 -
 .../fdupes/files/fdupes-1.50_pre2-makefile.patch   | 23 --
 app-misc/fdupes/files/fdupes--makefile.patch   | 28 +
 4 files changed, 63 insertions(+), 44 deletions(-)

diff --git a/app-misc/fdupes/fdupes-.ebuild 
b/app-misc/fdupes/fdupes-.ebuild
new file mode 100644
index 000..9d51929
--- /dev/null
+++ b/app-misc/fdupes/fdupes-.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils flag-o-matic git-r3 toolchain-funcs
+
+MY_P="${PN}-${PV/_pre/-PR}"
+
+DESCRIPTION="Identify/delete duplicate files residing within specified 
directories"
+HOMEPAGE="https://github.com/adrianlopezroche/fdupes 
https://code.google.com/p/fdupes/";
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/adrianlopezroche/fdupes.git";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   epatch \
+   "${FILESDIR}"/${P}-makefile.patch
+
+   append-lfs-flags
+   tc-export CC
+}
+
+src_install() {
+   dobin fdupes
+   doman fdupes.1
+   dodoc CHANGES CONTRIBUTORS README TODO
+}

diff --git a/app-misc/fdupes/files/fdupes-1.50_pre2-lfs.patch 
b/app-misc/fdupes/files/fdupes-1.50_pre2-lfs.patch
deleted file mode 100644
index bd63f83..000
--- a/app-misc/fdupes/files/fdupes-1.50_pre2-lfs.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -urNp fdupes-1.50-PR2.orig/fdupes.c fdupes-1.50-PR2/fdupes.c
 fdupes-1.50-PR2.orig/fdupes.c  2009-01-31 20:11:49.577968848 +0530
-+++ fdupes-1.50-PR2/fdupes.c   2009-01-31 20:29:17.103220311 +0530
-@@ -643,7 +643,7 @@ void printmatches(file_t *files)
-   while (files != NULL) {
- if (files->hasdupes) {
-   if (!ISFLAG(flags, F_OMITFIRST)) {
--  if (ISFLAG(flags, F_SHOWSIZE)) printf("%ld byte%seach:\n", files->size,
-+  if (ISFLAG(flags, F_SHOWSIZE)) printf("%lld byte%seach:\n", files->size,
-(files->size != 1) ? "s " : " ");
-   if (ISFLAG(flags, F_DSAMELINE)) escapefilename("\\ ", &files->d_name);
-   printf("%s%c", files->d_name, ISFLAG(flags, F_DSAMELINE)?' ':'\n');
-@@ -796,7 +796,7 @@ void deletefiles(file_t *files, int prom
-   do {
-   printf("Set %d of %d, preserve files [1 - %d, all]", 
-   curgroup, groups, counter);
--  if (ISFLAG(flags, F_SHOWSIZE)) printf(" (%ld byte%seach)", files->size,
-+  if (ISFLAG(flags, F_SHOWSIZE)) printf(" (%lld byte%seach)", files->size,
- (files->size != 1) ? "s " : " ");
-   printf(": ");
-   fflush(stdout);

diff --git a/app-misc/fdupes/files/fdupes-1.50_pre2-makefile.patch 
b/app-misc/fdupes/files/fdupes-1.50_pre2-makefile.patch
deleted file mode 100644
index ed2e987..000
--- a/app-misc/fdupes/files/fdupes-1.50_pre2-makefile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
 fdupes-1.50-PR2/Makefile.orig  2010-11-19 19:05:18.152330536 -0800
-+++ fdupes-1.50-PR2/Makefile   2010-11-19 19:06:00.998659992 -0800
-@@ -72,9 +72,9 @@
- # Make Configuration
- #
- CC = gcc
--COMPILER_OPTIONS = -Wall -O -g
-+COMPILER_OPTIONS = -Wall
- 
--CFLAGS= $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" $(EXTERNAL_MD5) 
$(EXPERIMENTAL_RBTREE) $(OMIT_GETOPT_LONG)
-+CFLAGS += $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" $(EXTERNAL_MD5) 
$(EXPERIMENTAL_RBTREE) $(OMIT_GETOPT_LONG)
- 
- INSTALL_PROGRAM = $(INSTALL) -c -m 0755
- INSTALL_DATA= $(INSTALL) -c -m 0644
-@@ -94,7 +94,7 @@
- all: fdupes
- 
- fdupes: $(OBJECT_FILES)
--  $(CC) $(CFLAGS) -o fdupes $(OBJECT_FILES)
-+  $(CC) $(CFLAGS) $(LDFLAGS) -o fdupes $(OBJECT_FILES)
- 
- installdirs:
-   test -d $(BIN_DIR) || -$(MKDIR) $(BIN_DIR)

diff --git a/app-misc/fdupes/files/fdupes--makefile.patch 
b/app-misc/fdupes/files/fdupes--makefile.patch
new file mode 100644
index 000..b534c64
--- /dev/null
+++ b/app-misc/fdupes/files/fdupes--makefile.patch
@@ -0,0 +1,28 @@
+ Makefile | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/Makefile b/Makefile
+index 921d910..67576f9 100644
+--- a/Makefile
 b/Makefile
+@@ -78,9 +78,9 @@ MKDIR   = mkdir -p
+ # Make Configuration
+ #
+ CC ?= gcc
+-COMPILER_OPTIONS = -Wall -O -g
++CFLAGS ?= -Wall -O -g
+ 
+-CFLAGS= $(COMPILER_OPTIONS) -I. -DVERSION=\"$(VERSION)\" $(EXTERNAL_MD5) 
$(OMIT_GETOPT_LONG) $(FILEOFFSET_64BIT)
++CFLAGS += -I. -DVERSION=\"$(VERSION)\" $(EXTERNAL_MD5) $(OM