public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/etherdfs/
@ 2020-05-25 11:17 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2020-05-25 11:17 UTC (permalink / raw
  To: gentoo-commits

commit:     2cf64cdcbf02230c01c86870583316aeaed1db63
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon May 25 11:17:31 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon May 25 11:17:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf64cdc

net-misc/etherdfs: drop old version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-misc/etherdfs/etherdfs-20180203.ebuild | 53 ------------------------------
 1 file changed, 53 deletions(-)

diff --git a/net-misc/etherdfs/etherdfs-20180203.ebuild b/net-misc/etherdfs/etherdfs-20180203.ebuild
deleted file mode 100644
index 5a35f39a6a7..00000000000
--- a/net-misc/etherdfs/etherdfs-20180203.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="ethersrv-linux"
-MY_PV_TSR="0.8.2"
-MY_P="${MY_PN}-${PV}"
-
-inherit systemd toolchain-funcs
-
-DESCRIPTION="An ethernet-based file system for DOS"
-HOMEPAGE="http://etherdfs.sourceforge.net/"
-SRC_URI="
-	mirror://sourceforge/${PN}/${MY_P}.tar.xz
-	tsr? ( mirror://sourceforge/${PN}/v${MY_PV_TSR}/${PN}.zip -> ${P}.zip )
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="tsr"
-
-BDEPEND="tsr? ( app-arch/unzip )"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
-
-DOCS=( "ethersrv-linux.txt" "history.txt" )
-
-src_compile() {
-	tc-export CC
-
-	default
-}
-
-src_install() {
-	dobin ethersrv-linux
-
-	if use tsr; then
-		insinto /usr/share/etherdfs
-		newins ../ETHERDFS.EXE etherdfs.exe
-
-		DOCS+=( "../ETHERDFS.TXT" "../HISTORY.TXT" )
-	fi
-
-	newinitd "${FILESDIR}"/etherdfs.initd etherdfs
-	newconfd "${FILESDIR}"/etherdfs.confd etherdfs
-	systemd_dounit "${FILESDIR}"/etherdfs.service
-
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/etherdfs/
@ 2020-05-25 11:17 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2020-05-25 11:17 UTC (permalink / raw
  To: gentoo-commits

commit:     80bbda5bfac7dd4b6727f17b1bfbed04bbf773f1
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Mon May 25 11:17:11 2020 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Mon May 25 11:17:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80bbda5b

net-misc/etherdfs: respect users LDFLAGS

Closes: https://bugs.gentoo.org/725236
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-misc/etherdfs/etherdfs-20180203-r1.ebuild | 60 +++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/net-misc/etherdfs/etherdfs-20180203-r1.ebuild b/net-misc/etherdfs/etherdfs-20180203-r1.ebuild
new file mode 100644
index 00000000000..d5a7bfb7698
--- /dev/null
+++ b/net-misc/etherdfs/etherdfs-20180203-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="ethersrv-linux"
+MY_PV_TSR="0.8.2"
+MY_P="${MY_PN}-${PV}"
+
+inherit systemd toolchain-funcs
+
+DESCRIPTION="An ethernet-based file system for DOS"
+HOMEPAGE="http://etherdfs.sourceforge.net/"
+SRC_URI="
+	mirror://sourceforge/${PN}/${MY_P}.tar.xz
+	tsr? ( mirror://sourceforge/${PN}/v${MY_PV_TSR}/${PN}.zip -> ${P}.zip )
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="tsr"
+
+BDEPEND="tsr? ( app-arch/unzip )"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
+
+DOCS=( "ethersrv-linux.txt" "history.txt" )
+
+src_prepare() {
+	default
+
+	# Respect users LDFLAGS
+	sed -e 's/$(CFLAGS)/& $(LDFLAGS)/' -i Makefile || die
+}
+
+src_compile() {
+	tc-export CC
+
+	default
+}
+
+src_install() {
+	dobin ethersrv-linux
+
+	if use tsr; then
+		insinto /usr/share/etherdfs
+		newins ../ETHERDFS.EXE etherdfs.exe
+
+		DOCS+=( "../ETHERDFS.TXT" "../HISTORY.TXT" )
+	fi
+
+	newinitd "${FILESDIR}"/etherdfs.initd etherdfs
+	newconfd "${FILESDIR}"/etherdfs.confd etherdfs
+	systemd_dounit "${FILESDIR}"/etherdfs.service
+
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/etherdfs/
@ 2020-06-29 13:40 Agostino Sarubbo
  0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo @ 2020-06-29 13:40 UTC (permalink / raw
  To: gentoo-commits

commit:     a33a271ab3d9bf1af8b9adaa984a2bed23cc16e6
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 13:39:25 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 13:39:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33a271a

net-misc/etherdfs: x86 stable wrt bug #724116

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 net-misc/etherdfs/etherdfs-20180203-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/etherdfs/etherdfs-20180203-r1.ebuild b/net-misc/etherdfs/etherdfs-20180203-r1.ebuild
index 81bf94e65eb..91c6282c51a 100644
--- a/net-misc/etherdfs/etherdfs-20180203-r1.ebuild
+++ b/net-misc/etherdfs/etherdfs-20180203-r1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="tsr"
 
 BDEPEND="tsr? ( app-arch/unzip )"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/etherdfs/
@ 2023-04-22 23:53 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2023-04-22 23:53 UTC (permalink / raw
  To: gentoo-commits

commit:     10c7da898e0459c383c54c8e88cba0c84b861b71
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 22 22:53:33 2023 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sat Apr 22 23:53:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c7da89

net-misc/etherdfs: don' redefine FORTIFY_SOURCE

Closes: https://bugs.gentoo.org/895798
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 .../{etherdfs-20180203-r2.ebuild => etherdfs-20180203-r3.ebuild}     | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-misc/etherdfs/etherdfs-20180203-r2.ebuild b/net-misc/etherdfs/etherdfs-20180203-r3.ebuild
similarity index 87%
rename from net-misc/etherdfs/etherdfs-20180203-r2.ebuild
rename to net-misc/etherdfs/etherdfs-20180203-r3.ebuild
index 50c020777f6f..9a2e486674b4 100644
--- a/net-misc/etherdfs/etherdfs-20180203-r2.ebuild
+++ b/net-misc/etherdfs/etherdfs-20180203-r3.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
@@ -35,7 +35,8 @@ src_prepare() {
 	default
 
 	# Respect users LDFLAGS
-	sed -e 's/$(CFLAGS)/& $(LDFLAGS)/' -i Makefile || die
+	# Don't redefine FORTIFY_SOURCE
+	sed -e 's/$(CFLAGS)/& $(LDFLAGS)/' -e 's/-D_FORTIFY_SOURCE=1//g' -i Makefile || die
 }
 
 src_compile() {


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/etherdfs/
@ 2024-01-16 23:22 Conrad Kostecki
  0 siblings, 0 replies; 5+ messages in thread
From: Conrad Kostecki @ 2024-01-16 23:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1cfb0d84fc135db0a513d5e676f0d55d81691879
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 16 23:21:16 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Jan 16 23:22:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cfb0d84

net-misc/etherdfs: update tsr to 0.8.3

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 net-misc/etherdfs/Manifest                                          | 2 +-
 .../{etherdfs-20180203-r4.ebuild => etherdfs-20180203-r5.ebuild}    | 6 +++---
 net-misc/etherdfs/metadata.xml                                      | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/etherdfs/Manifest b/net-misc/etherdfs/Manifest
index b4852cf947ee..2560fb8bb15c 100644
--- a/net-misc/etherdfs/Manifest
+++ b/net-misc/etherdfs/Manifest
@@ -1,2 +1,2 @@
-DIST etherdfs-20180203.zip 13081 BLAKE2B 53b0d12c272aa8a64a1980b6c4aae8c6789647026590ee948bc4d84be265479a816d8ae4df033a9a8be4038eb10b934b6ee8d188bf88e47c21f2e81123a572f0 SHA512 c254647fb35b7456b08eb27e6bc6b339d65c55ffd28fdc658f54bb1346a94a7056959a6e3e0b1a97add9e7919a224a0cef831ee14fc19219885274c9649a3439
+DIST etherdfs-tsr-0.8.3.zip 13139 BLAKE2B 5907974d9c4c2f97f737ead66ab5a3f0934d5086a07cfdc2483e7ef236d993d784a3686811bdf615f85a6112647e9d538de463d6453536e13c04a5ae7c082393 SHA512 489d61f13a1233ce94ce8ce4b0ad7400cceab3fd4b864efff94fe142f0703b6d76713a66ebd941b979af2d515192ed196ba1b33ae283647b5181dfbed27a8d97
 DIST ethersrv-linux-20180203.tar.xz 18160 BLAKE2B 45293b596489a290146bfb5ec5ca89c06a01bd0377cb29f33f604ac84c3d1d8f18f09058dded28e38f611a19d690c0a190ec38d45498cacd90a4cbff841115e1 SHA512 522f5ce5353c6eabaac2106d43d09cf341a2da96e56ffb06c5b2d705a997986117246cf3cb2b4a4e5b2c6f1caf96dfd68d1ddc56bb6db8140aa3761c7e6e6f7e

diff --git a/net-misc/etherdfs/etherdfs-20180203-r4.ebuild b/net-misc/etherdfs/etherdfs-20180203-r5.ebuild
similarity index 93%
rename from net-misc/etherdfs/etherdfs-20180203-r4.ebuild
rename to net-misc/etherdfs/etherdfs-20180203-r5.ebuild
index 9a85cc57a896..6dae1d2c447e 100644
--- a/net-misc/etherdfs/etherdfs-20180203-r4.ebuild
+++ b/net-misc/etherdfs/etherdfs-20180203-r5.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 MY_PN="ethersrv-linux"
-MY_PV_TSR="0.8.2"
+MY_PV_TSR="0.8.3"
 MY_P="${MY_PN}-${PV}"
 
 inherit systemd toolchain-funcs
@@ -13,7 +13,7 @@ DESCRIPTION="An ethernet-based file system for DOS"
 HOMEPAGE="http://etherdfs.sourceforge.net/"
 SRC_URI="
 	mirror://sourceforge/${PN}/${MY_P}.tar.xz
-	tsr? ( mirror://sourceforge/${PN}/v${MY_PV_TSR}/${PN}.zip -> ${P}.zip )
+	tsr? ( mirror://sourceforge/${PN}/v${MY_PV_TSR}/${PN}.zip -> ${PN}-tsr-${MY_PV_TSR}.zip )
 "
 S="${WORKDIR}/${MY_P}"
 

diff --git a/net-misc/etherdfs/metadata.xml b/net-misc/etherdfs/metadata.xml
index d9337e277c43..24fb39b58029 100644
--- a/net-misc/etherdfs/metadata.xml
+++ b/net-misc/etherdfs/metadata.xml
@@ -11,7 +11,7 @@
 		to a local drive letter, using raw ethernet frames to communicate.
 	</longdescription>
 	<use>
-		<flag name="tsr">Build the TSR program for DOS, which acts as a client.</flag>
+		<flag name="tsr">Install the precompiled TSR program for DOS, which acts as a client.</flag>
 	</use>
 	<upstream>
 		<remote-id type="sourceforge">etherdfs</remote-id>


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-01-16 23:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-25 11:17 [gentoo-commits] repo/gentoo:master commit in: net-misc/etherdfs/ Conrad Kostecki
  -- strict thread matches above, loose matches on Subject: below --
2020-05-25 11:17 Conrad Kostecki
2020-06-29 13:40 Agostino Sarubbo
2023-04-22 23:53 Conrad Kostecki
2024-01-16 23:22 Conrad Kostecki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox