commit:     791c798075c28274952bc276588a9ce8c79f43a7
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  8 11:04:01 2023 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Oct  8 11:04:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=791c7980

app-admin/fsvs: drop 1.2.5-r2

Closes: https://github.com/gentoo/gentoo/pull/32436
Closes: https://bugs.gentoo.org/439204
Closes: https://bugs.gentoo.org/693650
Closes: https://bugs.gentoo.org/729112
Closes: https://bugs.gentoo.org/830267
Closes: https://bugs.gentoo.org/865267
Closes: https://bugs.gentoo.org/875677
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-admin/fsvs/Manifest                         |  1 -
 app-admin/fsvs/files/fsvs-1.2.5-as-needed.patch | 31 -------------
 app-admin/fsvs/fsvs-1.2.5-r2.ebuild             | 60 -------------------------
 3 files changed, 92 deletions(-)

diff --git a/app-admin/fsvs/Manifest b/app-admin/fsvs/Manifest
index 0b41d5b12256..a72a447762d0 100644
--- a/app-admin/fsvs/Manifest
+++ b/app-admin/fsvs/Manifest
@@ -1,2 +1 @@
 DIST fsvs-1.2.11.tar.gz 498514 BLAKE2B 
8683fe3c22a0ea0d4762d631e520596dc02d69059f4ff5d8719bd44405134e5b5100c594a260d1b55a9dd7c6d240a84a0c5e05a18006a7a5f193ce76178d934c
 SHA512 
72f883dfef85cb8aeb4d3baf3a2de5bfb6b5479273027f86b52edfdd2ea6dac4b2271b83a9879add3d7c9008f80a2fef13671b9e5ed61958c72ff144d9fad086
-DIST fsvs-1.2.5.tar.bz2 427494 BLAKE2B 
ac445bd6572ccdc589ec3d9e21127446a0553d29ac62b1e99e60b767cb1c06d8be13469bcdef03382fa6088bb3fdb740a10a0e39fc5707fbfba749472523bc12
 SHA512 
36ab5d04491d506b2891548f3ad458e7977bbd2e7d4b03e135b13d07adb22aedb261c28d5ddd3df895771806ef54c1bca6a1ef7bc5aa2e50e4b234ddf6cbe19c

diff --git a/app-admin/fsvs/files/fsvs-1.2.5-as-needed.patch 
b/app-admin/fsvs/files/fsvs-1.2.5-as-needed.patch
deleted file mode 100644
index f06070f4beee..000000000000
--- a/app-admin/fsvs/files/fsvs-1.2.5-as-needed.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Fixes --as-needed support(bug #294834)
-Verbose build
-Fixes underlinking(bug #463684) - patch went upstream
-
---- fsvs-1.2.5/src/Makefile.in.orig    2011-11-11 22:19:12.000000000 +0400
-+++ fsvs-1.2.5/src/Makefile.in 2013-08-19 13:30:16.186082295 +0400
-@@ -18,7 +18,7 @@
- CFLAGS        := @CFLAGS@ @NEED_FNESTED_FUNCTIONS@
- CFLAGS        += -Wall -funsigned-char -Os -DFSVS_VERSION='"$(VERSION)"'
- LDFLAGS       := @LDFLAGS@
--FSVS_LDFLAGS = $(LDFLAGS) -lsvn_subr-1 -lsvn_delta-1 -lsvn_ra-1 -lpcre -lgdbm 
-+FSVS_LIBS = -lsvn_subr-1 -lsvn_delta-1 -lsvn_ra-1 -lpcre -lgdbm -ldl
- EXTRALIBS     := @EXTRALIBS@
- WAA_CHARS?= @WAA_WC_MD5_CHARS@
- 
-@@ -146,13 +146,13 @@
- ################################ Rules ######################################
- %.o:  %.c
-       @echo "     CC $<"
--      @$(CC) $(CFLAGS) -c -o $@ $<
-+      $(CC) $(CFLAGS) -c -o $@ $<
- 
- # if the Makefile has changed, the output will (at least sometimes)
- # change, too.
- $(DEST): $(C_FILES:%.c=%.o)
-       @echo "     Link $@"
--      @$(CC) $(FSVS_LDFLAGS) $(LDLIBS) $(LIBS) $(EXTRALIBS) -o $@ $^
-+      $(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(LIBS) $(FSVS_LIBS) $(EXTRALIBS)
- ifeq (@ENABLE_RELEASE@, 1)
-       -strip $@
- endif

diff --git a/app-admin/fsvs/fsvs-1.2.5-r2.ebuild 
b/app-admin/fsvs/fsvs-1.2.5-r2.ebuild
deleted file mode 100644
index 35d79e90877b..000000000000
--- a/app-admin/fsvs/fsvs-1.2.5-r2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit flag-o-matic toolchain-funcs
-
-DESCRIPTION="Backup/restore for subversion backends"
-HOMEPAGE="http://fsvs.tigris.org/";
-SRC_URI="http://download.fsvs-software.org/${P}.tar.bz2";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="dev-vcs/subversion
-       dev-libs/libpcre
-       sys-libs/gdbm
-       dev-libs/apr-util
-       dev-util/ctags"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-       "${FILESDIR}/${P}-as-needed.patch"
-)
-
-src_prepare() {
-       # fix #570596 by restoring pre-GCC5 inline semantics
-       append-cflags -std=gnu89
-       default
-}
-
-src_compile() {
-       # respect compiler
-       emake CC="$(tc-getCC)"
-}
-
-src_install() {
-       dobin src/fsvs
-       dodir /etc/fsvs
-       keepdir /var/spool/fsvs
-       doman doc/*5 doc/*1
-       dodoc doc/{FAQ,IGNORING,PERFORMANCE,USAGE}
-}
-
-pkg_postinst() {
-       elog "Remember, this system works best when you're connecting to a 
remote"
-       elog "svn server."
-       elog
-       elog "Go to the base path for versioning:"
-       elog "    cd /"
-       elog "Tell fsvs which URL it should use:"
-       elog "    fsvs url svn+ssh://username@machine/path/to/repos"
-       elog "Define ignore patterns - all virtual filesystems (/proc, /sys, 
etc.),"
-       elog "and (assuming that you're in / currently) the temporary files in 
/tmp:"
-       elog "    fsvs ignore DEVICE:0 ./tmp/*"
-       elog "And you're ready to play!"
-       elog "Check your data in:"
-       elog "    fsvs commit -m \"First import\""
-}

Reply via email to