public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/patchbin/
@ 2017-09-30  3:30 NP Hardass
  0 siblings, 0 replies; 6+ messages in thread
From: NP Hardass @ 2017-09-30  3:30 UTC (permalink / raw
  To: gentoo-commits

commit:     b0a28c6300661cc69de50b83566307fd493134cd
Author:     NP-Hardass <NP-Hardass <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 30 03:28:54 2017 +0000
Commit:     NP Hardass <np-hardass <AT> gentoo <DOT> org>
CommitDate: Sat Sep 30 03:30:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0a28c63

dev-util/patchbin: Initial commit: Can apply bin patches without git

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-util/patchbin/Manifest                 |  1 +
 dev-util/patchbin/metadata.xml             | 18 ++++++++++
 dev-util/patchbin/patchbin-20160208.ebuild | 54 ++++++++++++++++++++++++++++++
 dev-util/patchbin/patchbin-99999999.ebuild | 54 ++++++++++++++++++++++++++++++
 4 files changed, 127 insertions(+)

diff --git a/dev-util/patchbin/Manifest b/dev-util/patchbin/Manifest
new file mode 100644
index 00000000000..3ef02ba7088
--- /dev/null
+++ b/dev-util/patchbin/Manifest
@@ -0,0 +1 @@
+DIST patchbin-20160208.tar.gz 9713001 SHA256 40bb69a6c7c46e59082b22224195dd5f8dedcb67fb5220eb646c06fa5dc60e6a SHA512 eeb5c4bc708cfc3a065568ef233297586c3bb3d497c6bf3ace52b8337b5a5d127e607f668a6f74e3be892e8cfac96a046dea3646735c4404efedd8760572353a WHIRLPOOL 384b44d127adcf4674f2e237fd502d55e8829535397789c31d1ef119a4bdaa1d2f33e3377bbf80077539f8bbd7664c9679658b673edc73ece043c8eba0f7e941

diff --git a/dev-util/patchbin/metadata.xml b/dev-util/patchbin/metadata.xml
new file mode 100644
index 00000000000..1f33891b267
--- /dev/null
+++ b/dev-util/patchbin/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>NP-Hardass@gentoo.org</email>
+		<name>NP-Hardass</name>
+	</maintainer>
+	<longdescription lang="en">
+		Apply binary patches without git
+	</longdescription>
+	<upstream>
+		<remote-id type="github">wine-compholio/wine-staging</remote-id>
+		<maintainer>
+			<name>Sebastian Lackner</name>
+			<email>sebastian@fds-team.de</email>
+		</maintainer>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-util/patchbin/patchbin-20160208.ebuild b/dev-util/patchbin/patchbin-20160208.ebuild
new file mode 100644
index 00000000000..8da830cccac
--- /dev/null
+++ b/dev-util/patchbin/patchbin-20160208.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} == 99999999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/wine-compholio/wine-staging"
+	KEYWORDS=""
+	S="${WORKDIR}/wine-staging"
+else
+	SHA="4ffcf184bb71c6c3512b3a8c144dcf4a3a76d23c"
+	SRC_URI="https://github.com/wine-compholio/wine-staging/archive/${SHA}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+	S="${WORKDIR}/wine-staging-${SHA}"
+fi
+
+DESCRIPTION="Apply binary patches without git"
+HOMEPAGE="https://github.com/wine-compholio/wine-staging"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="userland_BSD userland_GNU"
+
+RDEPEND="
+	app-shells/bash
+	sys-apps/coreutils
+	sys-apps/gawk
+	sys-apps/grep
+	userland_BSD? (
+		sys-freebsd/freebsd-bin
+		sys-freebsd/freebsd-ubin
+	)
+	userland_GNU? (
+		sys-apps/util-linux
+		sys-devel/patch
+	)
+"
+
+src_prepare(){
+	mv patches/gitapply.sh ${PN} || die
+	sed -E -i "s/(\.\/)?gitapply(\.sh)?/${PN}/g" ${PN} || die
+
+	default
+}
+
+src_install(){
+	exeinto /usr/bin/
+	doexe ${PN}
+}
+
+pkg_postinst(){
+	einfo "${PN} can optionally use dev-util/git to apply patches if installed."
+}

diff --git a/dev-util/patchbin/patchbin-99999999.ebuild b/dev-util/patchbin/patchbin-99999999.ebuild
new file mode 100644
index 00000000000..8da830cccac
--- /dev/null
+++ b/dev-util/patchbin/patchbin-99999999.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} == 99999999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/wine-compholio/wine-staging"
+	KEYWORDS=""
+	S="${WORKDIR}/wine-staging"
+else
+	SHA="4ffcf184bb71c6c3512b3a8c144dcf4a3a76d23c"
+	SRC_URI="https://github.com/wine-compholio/wine-staging/archive/${SHA}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+	S="${WORKDIR}/wine-staging-${SHA}"
+fi
+
+DESCRIPTION="Apply binary patches without git"
+HOMEPAGE="https://github.com/wine-compholio/wine-staging"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="userland_BSD userland_GNU"
+
+RDEPEND="
+	app-shells/bash
+	sys-apps/coreutils
+	sys-apps/gawk
+	sys-apps/grep
+	userland_BSD? (
+		sys-freebsd/freebsd-bin
+		sys-freebsd/freebsd-ubin
+	)
+	userland_GNU? (
+		sys-apps/util-linux
+		sys-devel/patch
+	)
+"
+
+src_prepare(){
+	mv patches/gitapply.sh ${PN} || die
+	sed -E -i "s/(\.\/)?gitapply(\.sh)?/${PN}/g" ${PN} || die
+
+	default
+}
+
+src_install(){
+	exeinto /usr/bin/
+	doexe ${PN}
+}
+
+pkg_postinst(){
+	einfo "${PN} can optionally use dev-util/git to apply patches if installed."
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/patchbin/
@ 2017-12-04  6:54 NP Hardass
  0 siblings, 0 replies; 6+ messages in thread
From: NP Hardass @ 2017-12-04  6:54 UTC (permalink / raw
  To: gentoo-commits

commit:     b4182bdbb96ca6b94ad93284726335dd1ab9f5f2
Author:     NP-Hardass <NP-Hardass <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  4 06:49:28 2017 +0000
Commit:     NP Hardass <np-hardass <AT> gentoo <DOT> org>
CommitDate: Mon Dec  4 06:49:28 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4182bdb

dev-util/patchbin: Stable for amd64, x86

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 dev-util/patchbin/Manifest                 | 2 +-
 dev-util/patchbin/patchbin-20160208.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/patchbin/Manifest b/dev-util/patchbin/Manifest
index 3ef02ba7088..b2fa5b7db37 100644
--- a/dev-util/patchbin/Manifest
+++ b/dev-util/patchbin/Manifest
@@ -1 +1 @@
-DIST patchbin-20160208.tar.gz 9713001 SHA256 40bb69a6c7c46e59082b22224195dd5f8dedcb67fb5220eb646c06fa5dc60e6a SHA512 eeb5c4bc708cfc3a065568ef233297586c3bb3d497c6bf3ace52b8337b5a5d127e607f668a6f74e3be892e8cfac96a046dea3646735c4404efedd8760572353a WHIRLPOOL 384b44d127adcf4674f2e237fd502d55e8829535397789c31d1ef119a4bdaa1d2f33e3377bbf80077539f8bbd7664c9679658b673edc73ece043c8eba0f7e941
+DIST patchbin-20160208.tar.gz 9713001 BLAKE2B 4ce3c5d43f7b0a909b5058b3877cecef68f703d803bcb6a4e4b7e907dedaab98cbe87f33a5211a318f8146e9ef4753da18d58b3cbc8e4ff715b58d82227ad7b6 SHA512 eeb5c4bc708cfc3a065568ef233297586c3bb3d497c6bf3ace52b8337b5a5d127e607f668a6f74e3be892e8cfac96a046dea3646735c4404efedd8760572353a

diff --git a/dev-util/patchbin/patchbin-20160208.ebuild b/dev-util/patchbin/patchbin-20160208.ebuild
index 8da830cccac..8fa59483c5c 100644
--- a/dev-util/patchbin/patchbin-20160208.ebuild
+++ b/dev-util/patchbin/patchbin-20160208.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == 99999999 ]]; then
 else
 	SHA="4ffcf184bb71c6c3512b3a8c144dcf4a3a76d23c"
 	SRC_URI="https://github.com/wine-compholio/wine-staging/archive/${SHA}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+	KEYWORDS="amd64 x86 ~x86-fbsd"
 	S="${WORKDIR}/wine-staging-${SHA}"
 fi
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/patchbin/
@ 2018-02-07 19:26 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2018-02-07 19:26 UTC (permalink / raw
  To: gentoo-commits

commit:     9362eafe12aa7f513ac8ee2073fc90dde8af0b67
Author:     Lucian Poston <lucian.poston <AT> gmail <DOT> com>
AuthorDate: Fri Feb  2 22:21:49 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  7 19:26:18 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9362eafe

dev-util/patchbin: Use correct ${S} with git-r3.eclass

Closes: https://github.com/gentoo/gentoo/pull/7027
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-util/patchbin/patchbin-20160208.ebuild | 3 +--
 dev-util/patchbin/patchbin-99999999.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-util/patchbin/patchbin-20160208.ebuild b/dev-util/patchbin/patchbin-20160208.ebuild
index 8fa59483c5c..1f883b3bfbc 100644
--- a/dev-util/patchbin/patchbin-20160208.ebuild
+++ b/dev-util/patchbin/patchbin-20160208.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,6 @@ if [[ ${PV} == 99999999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/wine-compholio/wine-staging"
 	KEYWORDS=""
-	S="${WORKDIR}/wine-staging"
 else
 	SHA="4ffcf184bb71c6c3512b3a8c144dcf4a3a76d23c"
 	SRC_URI="https://github.com/wine-compholio/wine-staging/archive/${SHA}.tar.gz -> ${P}.tar.gz"

diff --git a/dev-util/patchbin/patchbin-99999999.ebuild b/dev-util/patchbin/patchbin-99999999.ebuild
index 8da830cccac..3f22e8921aa 100644
--- a/dev-util/patchbin/patchbin-99999999.ebuild
+++ b/dev-util/patchbin/patchbin-99999999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -7,7 +7,6 @@ if [[ ${PV} == 99999999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/wine-compholio/wine-staging"
 	KEYWORDS=""
-	S="${WORKDIR}/wine-staging"
 else
 	SHA="4ffcf184bb71c6c3512b3a8c144dcf4a3a76d23c"
 	SRC_URI="https://github.com/wine-compholio/wine-staging/archive/${SHA}.tar.gz -> ${P}.tar.gz"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/patchbin/
@ 2020-02-09 13:14 David Seifert
  0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2020-02-09 13:14 UTC (permalink / raw
  To: gentoo-commits

commit:     fec7aad3c2eac533e51f5aeac8fc4360120e2021
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  9 13:13:34 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Feb  9 13:13:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec7aad3

dev-util/patchbin: [QA] Fix NonexistentDeps

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-util/patchbin/patchbin-20160208.ebuild | 12 +++---------
 dev-util/patchbin/patchbin-99999999.ebuild | 12 +++---------
 2 files changed, 6 insertions(+), 18 deletions(-)

diff --git a/dev-util/patchbin/patchbin-20160208.ebuild b/dev-util/patchbin/patchbin-20160208.ebuild
index 314b06b51f6..37723059a04 100644
--- a/dev-util/patchbin/patchbin-20160208.ebuild
+++ b/dev-util/patchbin/patchbin-20160208.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -26,14 +26,8 @@ RDEPEND="
 	sys-apps/coreutils
 	sys-apps/gawk
 	sys-apps/grep
-	userland_BSD? (
-		sys-freebsd/freebsd-bin
-		sys-freebsd/freebsd-ubin
-	)
-	userland_GNU? (
-		sys-apps/util-linux
-		sys-devel/patch
-	)
+	sys-apps/util-linux
+	sys-devel/patch
 "
 
 src_prepare(){

diff --git a/dev-util/patchbin/patchbin-99999999.ebuild b/dev-util/patchbin/patchbin-99999999.ebuild
index c937a002e2f..69d98763e9f 100644
--- a/dev-util/patchbin/patchbin-99999999.ebuild
+++ b/dev-util/patchbin/patchbin-99999999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -26,14 +26,8 @@ RDEPEND="
 	sys-apps/coreutils
 	sys-apps/gawk
 	sys-apps/grep
-	userland_BSD? (
-		sys-freebsd/freebsd-bin
-		sys-freebsd/freebsd-ubin
-	)
-	userland_GNU? (
-		sys-apps/util-linux
-		sys-devel/patch
-	)
+	sys-apps/util-linux
+	sys-devel/patch
 "
 
 src_prepare(){


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/patchbin/
@ 2022-01-06  9:07 David Seifert
  0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2022-01-06  9:07 UTC (permalink / raw
  To: gentoo-commits

commit:     035821286edcda874f794ca48ebe0f5028a533fd
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  6 09:07:01 2022 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan  6 09:07:01 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03582128

dev-util/patchbin: remove userland_BSD/userland_GNU

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-util/patchbin/patchbin-20160208.ebuild | 3 +--
 dev-util/patchbin/patchbin-99999999.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-util/patchbin/patchbin-20160208.ebuild b/dev-util/patchbin/patchbin-20160208.ebuild
index 4986103bdca5..b28b64c40823 100644
--- a/dev-util/patchbin/patchbin-20160208.ebuild
+++ b/dev-util/patchbin/patchbin-20160208.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=6
@@ -18,7 +18,6 @@ HOMEPAGE="https://github.com/wine-compholio/wine-staging"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-IUSE="userland_BSD userland_GNU"
 
 RDEPEND="
 	app-shells/bash

diff --git a/dev-util/patchbin/patchbin-99999999.ebuild b/dev-util/patchbin/patchbin-99999999.ebuild
index e624022cb841..90587e649d76 100644
--- a/dev-util/patchbin/patchbin-99999999.ebuild
+++ b/dev-util/patchbin/patchbin-99999999.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=6
@@ -18,7 +18,6 @@ HOMEPAGE="https://github.com/wine-compholio/wine-staging"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-IUSE="userland_BSD userland_GNU"
 
 RDEPEND="
 	app-shells/bash


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

* [gentoo-commits] repo/gentoo:master commit in: dev-util/patchbin/
@ 2023-01-08 12:32 Jakov Smolić
  0 siblings, 0 replies; 6+ messages in thread
From: Jakov Smolić @ 2023-01-08 12:32 UTC (permalink / raw
  To: gentoo-commits

commit:     3a5d1a8111ba149d9bbc6df4d764ccb322eb9641
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  8 12:28:59 2023 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Jan  8 12:28:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a5d1a81

dev-util/patchbin: treeclean

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

 dev-util/patchbin/Manifest                 |  1 -
 dev-util/patchbin/metadata.xml             | 12 --------
 dev-util/patchbin/patchbin-20160208.ebuild | 45 ------------------------------
 dev-util/patchbin/patchbin-99999999.ebuild | 45 ------------------------------
 4 files changed, 103 deletions(-)

diff --git a/dev-util/patchbin/Manifest b/dev-util/patchbin/Manifest
deleted file mode 100644
index b2fa5b7db37b..000000000000
--- a/dev-util/patchbin/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST patchbin-20160208.tar.gz 9713001 BLAKE2B 4ce3c5d43f7b0a909b5058b3877cecef68f703d803bcb6a4e4b7e907dedaab98cbe87f33a5211a318f8146e9ef4753da18d58b3cbc8e4ff715b58d82227ad7b6 SHA512 eeb5c4bc708cfc3a065568ef233297586c3bb3d497c6bf3ace52b8337b5a5d127e607f668a6f74e3be892e8cfac96a046dea3646735c4404efedd8760572353a

diff --git a/dev-util/patchbin/metadata.xml b/dev-util/patchbin/metadata.xml
deleted file mode 100644
index 9ee474bf7c50..000000000000
--- a/dev-util/patchbin/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<!-- maintainer-needed -->
-	<upstream>
-		<remote-id type="github">wine-compholio/wine-staging</remote-id>
-		<maintainer>
-			<name>Sebastian Lackner</name>
-			<email>sebastian@fds-team.de</email>
-		</maintainer>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-util/patchbin/patchbin-20160208.ebuild b/dev-util/patchbin/patchbin-20160208.ebuild
deleted file mode 100644
index b28b64c40823..000000000000
--- a/dev-util/patchbin/patchbin-20160208.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} == 99999999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/wine-compholio/wine-staging"
-else
-	SHA="4ffcf184bb71c6c3512b3a8c144dcf4a3a76d23c"
-	SRC_URI="https://github.com/wine-compholio/wine-staging/archive/${SHA}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="amd64 x86"
-	S="${WORKDIR}/wine-staging-${SHA}"
-fi
-
-DESCRIPTION="Apply binary patches without git"
-HOMEPAGE="https://github.com/wine-compholio/wine-staging"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-
-RDEPEND="
-	app-shells/bash
-	sys-apps/coreutils
-	sys-apps/gawk
-	sys-apps/grep
-	sys-apps/util-linux
-	sys-devel/patch
-"
-
-src_prepare() {
-	mv patches/gitapply.sh ${PN} || die
-	sed -E -i "s/(\.\/)?gitapply(\.sh)?/${PN}/g" ${PN} || die
-
-	default
-}
-
-src_install() {
-	exeinto /usr/bin/
-	doexe ${PN}
-}
-
-pkg_postinst() {
-	einfo "${PN} can optionally use dev-util/git to apply patches if installed."
-}

diff --git a/dev-util/patchbin/patchbin-99999999.ebuild b/dev-util/patchbin/patchbin-99999999.ebuild
deleted file mode 100644
index 90587e649d76..000000000000
--- a/dev-util/patchbin/patchbin-99999999.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} == 99999999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/wine-compholio/wine-staging"
-else
-	SHA="4ffcf184bb71c6c3512b3a8c144dcf4a3a76d23c"
-	SRC_URI="https://github.com/wine-compholio/wine-staging/archive/${SHA}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/wine-staging-${SHA}"
-fi
-
-DESCRIPTION="Apply binary patches without git"
-HOMEPAGE="https://github.com/wine-compholio/wine-staging"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-
-RDEPEND="
-	app-shells/bash
-	sys-apps/coreutils
-	sys-apps/gawk
-	sys-apps/grep
-	sys-apps/util-linux
-	sys-devel/patch
-"
-
-src_prepare() {
-	mv patches/gitapply.sh ${PN} || die
-	sed -E -i "s/(\.\/)?gitapply(\.sh)?/${PN}/g" ${PN} || die
-
-	default
-}
-
-src_install() {
-	exeinto /usr/bin/
-	doexe ${PN}
-}
-
-pkg_postinst() {
-	einfo "${PN} can optionally use dev-util/git to apply patches if installed."
-}


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

end of thread, other threads:[~2023-01-08 12:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-06  9:07 [gentoo-commits] repo/gentoo:master commit in: dev-util/patchbin/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2023-01-08 12:32 Jakov Smolić
2020-02-09 13:14 David Seifert
2018-02-07 19:26 Michał Górny
2017-12-04  6:54 NP Hardass
2017-09-30  3:30 NP Hardass

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