public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-embedded/qdl/, dev-embedded/qdl/files/
@ 2023-07-19  8:49 Haelwenn Monnier
  0 siblings, 0 replies; 4+ messages in thread
From: Haelwenn Monnier @ 2023-07-19  8:49 UTC (permalink / raw
  To: gentoo-commits

commit:     390eeecd09107fe1e175cb723d771162ee2e3d1b
Author:     Quincy Fleming <quincyf467 <AT> protonmail <DOT> com>
AuthorDate: Tue Jul 18 17:56:49 2023 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Tue Jul 18 17:56:49 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=390eeecd

dev-embedded/qdl: respect user CFLAGS and LDFLAGS

Signed-off-by: Quincy Fleming <quincyf467 <AT> protonmail.com>

 dev-embedded/qdl/files/qdl-1.0-makefile.patch  | 17 +++++++++++++++++
 dev-embedded/qdl/files/qdl-9999-makefile.patch | 17 +++++++++++++++++
 dev-embedded/qdl/qdl-1.0.ebuild                | 13 ++++++++++---
 dev-embedded/qdl/qdl-9999.ebuild               | 13 +++++++++----
 4 files changed, 53 insertions(+), 7 deletions(-)

diff --git a/dev-embedded/qdl/files/qdl-1.0-makefile.patch b/dev-embedded/qdl/files/qdl-1.0-makefile.patch
new file mode 100755
index 000000000..e6c7ab122
--- /dev/null
+++ b/dev-embedded/qdl/files/qdl-1.0-makefile.patch
@@ -0,0 +1,17 @@
+#Created by Quincy Fleming
+#CFLAGS and LDFLAGS were not being respected
+#Bug links: https://bugs.gentoo.org/910480 https://bugs.gentoo.org/910481
+--- a/Makefile
++++ b/Makefile
+@@ -1,8 +1,8 @@
+ OUT := qdl
+ 
+-CFLAGS := -O2 -Wall -g `xml2-config --cflags`
+-LDFLAGS := `xml2-config --libs`
+-prefix := /usr/local
++CFLAGS += `${PKG_CONFIG} --cflags libxml-2.0`
++LDFLAGS += `${PKG_CONFIG} --libs libxml-2.0 libudev`
++prefix = ${EPREFIX}/usr
+ 
+ SRCS := firehose.c qdl.c sahara.c util.c patch.c program.c
+ OBJS := $(SRCS:.c=.o)

diff --git a/dev-embedded/qdl/files/qdl-9999-makefile.patch b/dev-embedded/qdl/files/qdl-9999-makefile.patch
new file mode 100755
index 000000000..a24de2b5c
--- /dev/null
+++ b/dev-embedded/qdl/files/qdl-9999-makefile.patch
@@ -0,0 +1,17 @@
+#Created by Quincy Fleming
+#CFLAGS and LDFLAGS were not being respected
+#Bug links: https://bugs.gentoo.org/910480 https://bugs.gentoo.org/910481
+--- a/Makefile
++++ b/Makefile
+@@ -1,8 +1,8 @@
+ OUT := qdl
+ 
+-CFLAGS := -O2 -Wall -g `pkg-config --cflags libxml-2.0`
+-LDFLAGS := `pkg-config --libs libxml-2.0 libudev`
+-prefix := /usr/local
++CFLAGS += `${PKG_CONFIG} --cflags libxml-2.0`
++LDFLAGS += `${PKG_CONFIG} --libs libxml-2.0 libudev`
++prefix = ${EPREFIX}/usr
+ 
+ SRCS := firehose.c qdl.c sahara.c util.c patch.c program.c ufs.c
+ OBJS := $(SRCS:.c=.o)

diff --git a/dev-embedded/qdl/qdl-1.0.ebuild b/dev-embedded/qdl/qdl-1.0.ebuild
index 5e2fb597a..90d2b54ed 100644
--- a/dev-embedded/qdl/qdl-1.0.ebuild
+++ b/dev-embedded/qdl/qdl-1.0.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit toolchain-funcs
+
 DESCRIPTION="Tool to communicate with Qualcomm System On a Chip bootroms"
 HOMEPAGE="https://github.com/andersson/qdl"
 SRC_URI="https://github.com/andersson/qdl/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
@@ -12,13 +14,18 @@ SLOT="0"
 KEYWORDS="~amd64"
 
 BDEPEND="virtual/libudev
+		virtual/pkgconfig
 		dev-libs/libxml2
 "
 
-src_install() {
-	emake DESTDIR="${D}" prefix="${EPREFIX}"/usr install
+PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
 
-	dodoc README
+src_compile() {
+	emake CC=$(tc-getCC) PKG_CONFIG=$(tc-getPKG_CONFIG)
+}
+
+src_install() {
+	default
 	insinto "/usr/share/${PN}"
 	doins LICENSE
 }

diff --git a/dev-embedded/qdl/qdl-9999.ebuild b/dev-embedded/qdl/qdl-9999.ebuild
index 7f17fadec..d1c29872e 100644
--- a/dev-embedded/qdl/qdl-9999.ebuild
+++ b/dev-embedded/qdl/qdl-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit git-r3
+inherit git-r3 toolchain-funcs
 
 DESCRIPTION="Tool to communicate with Qualcomm System On a Chip bootroms"
 HOMEPAGE="https://github.com/andersson/qdl"
@@ -13,13 +13,18 @@ LICENSE="BSD-3"
 SLOT="0"
 
 BDEPEND="virtual/libudev
+		virtual/pkgconfig
 		dev-libs/libxml2
 "
 
-src_install() {
-	emake DESTDIR="${D}" prefix="${EPREFIX}"/usr install
+PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
+
+src_compile() {
+	emake CC=$(tc-getCC) PKG_CONFIG=$(tc-getPKG_CONFIG)
+}
 
-	dodoc README
+src_install() {
+	default
 	insinto "/usr/share/${PN}"
 	doins LICENSE
 }


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-embedded/qdl/, dev-embedded/qdl/files/
@ 2024-03-25 23:15 Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-03-25 23:15 UTC (permalink / raw
  To: gentoo-commits

commit:     f261dc848b22ac3987b5ad1277339dd17916a9fa
Author:     Quincy Fleming <quincyf467 <AT> protonmail <DOT> com>
AuthorDate: Mon Mar 25 20:11:48 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Mar 25 20:11:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f261dc84

dev-embedded/qdl: Fix gcc-14 compile errors

Bug: https://bugs.gentoo.org/927801
Signed-off-by: Quincy Fleming <quincyf467 <AT> protonmail.com>

 dev-embedded/qdl/files/include_stdlib-1.0.patch  | 23 +++++++++++++++++
 dev-embedded/qdl/files/include_stdlib-9999.patch | 33 ++++++++++++++++++++++++
 dev-embedded/qdl/qdl-1.0.ebuild                  |  5 +++-
 dev-embedded/qdl/qdl-9999.ebuild                 |  5 +++-
 4 files changed, 64 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/qdl/files/include_stdlib-1.0.patch b/dev-embedded/qdl/files/include_stdlib-1.0.patch
new file mode 100644
index 0000000000..c2b4a49729
--- /dev/null
+++ b/dev-embedded/qdl/files/include_stdlib-1.0.patch
@@ -0,0 +1,23 @@
+#Created by Quincy Fleming
+#Failure to compile without include "<stdlib.h>"
+#Bug: https://bugs.gentoo.org/927801
+--- a/patch.c
++++ b/patch.c
+@@ -30,6 +30,7 @@
+  */
+ #include <errno.h>
+ #include <string.h>
++#include <stdlib.h>
+ #include <libxml/parser.h>
+ #include <libxml/tree.h>
+ 
+--- a/program.c
++++ b/program.c
+@@ -31,6 +31,7 @@
+ #include <errno.h>
+ #include <fcntl.h>
+ #include <string.h>
++#include <stdlib.h>
+ #include <unistd.h>
+ #include <libxml/parser.h>
+ #include <libxml/tree.h>

diff --git a/dev-embedded/qdl/files/include_stdlib-9999.patch b/dev-embedded/qdl/files/include_stdlib-9999.patch
new file mode 100644
index 0000000000..f2e34743fc
--- /dev/null
+++ b/dev-embedded/qdl/files/include_stdlib-9999.patch
@@ -0,0 +1,33 @@
+#Created by Quincy Fleming
+#Failure to compile without include "<stdlib.h>"
+#Bug: https://bugs.gentoo.org/927801
+--- a/patch.c
++++ b/patch.c
+@@ -30,6 +30,7 @@
+  */
+ #include <errno.h>
+ #include <string.h>
++#include <stdlib.h>
+ #include <libxml/parser.h>
+ #include <libxml/tree.h>
+ 
+--- a/program.c
++++ b/program.c
+@@ -31,6 +31,7 @@
+ #include <errno.h>
+ #include <fcntl.h>
+ #include <string.h>
++#include <stdlib.h>
+ #include <unistd.h>
+ #include <libxml/parser.h>
+ #include <libxml/tree.h>
+--- a/util.c
++++ b/util.c
+@@ -31,6 +31,7 @@
+ #include <ctype.h>
+ #include <stdint.h>
+ #include <stdio.h>
++#include <stdlib.h>
+ #include <string.h>
+ #include <libxml/parser.h>
+ #include <libxml/tree.h>

diff --git a/dev-embedded/qdl/qdl-1.0.ebuild b/dev-embedded/qdl/qdl-1.0.ebuild
index e06c2fd64f..7b7835782f 100644
--- a/dev-embedded/qdl/qdl-1.0.ebuild
+++ b/dev-embedded/qdl/qdl-1.0.ebuild
@@ -18,7 +18,10 @@ BDEPEND="virtual/libudev
 		dev-libs/libxml2
 "
 
-PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
+PATCHES=(
+	"${FILESDIR}/${P}-makefile.patch"
+	"${FILESDIR}/include_stdlib-${PV}.patch"
+)
 
 src_compile() {
 	emake CC=$(tc-getCC) PKG_CONFIG=$(tc-getPKG_CONFIG)

diff --git a/dev-embedded/qdl/qdl-9999.ebuild b/dev-embedded/qdl/qdl-9999.ebuild
index 5421ecdc40..3832903dcb 100644
--- a/dev-embedded/qdl/qdl-9999.ebuild
+++ b/dev-embedded/qdl/qdl-9999.ebuild
@@ -17,7 +17,10 @@ BDEPEND="virtual/libudev
 		dev-libs/libxml2
 "
 
-PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
+PATCHES=(
+	"${FILESDIR}/${P}-makefile.patch"
+	"${FILESDIR}/include_stdlib-${PV}.patch"
+)
 
 src_compile() {
 	emake CC=$(tc-getCC) PKG_CONFIG=$(tc-getPKG_CONFIG)


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-embedded/qdl/, dev-embedded/qdl/files/
@ 2024-03-27 11:50 Rui Huang
  0 siblings, 0 replies; 4+ messages in thread
From: Rui Huang @ 2024-03-27 11:50 UTC (permalink / raw
  To: gentoo-commits

commit:     838cc903ba17bc4e1b707f0172ee15dcff138208
Author:     Quincy Fleming <quincyf467 <AT> protonmail <DOT> com>
AuthorDate: Tue Mar 26 23:41:46 2024 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Tue Mar 26 23:41:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=838cc903

dev-embedded/qdl: Drop version 1.0

Signed-off-by: Quincy Fleming <quincyf467 <AT> protonmail.com>

 dev-embedded/qdl/Manifest                          |  2 +-
 dev-embedded/qdl/files/include_stdlib-1.0.patch    | 23 ----------------------
 ...lude_stdlib-9999.patch => include_stdlib.patch} |  0
 .../{qdl-9999-makefile.patch => makefile.patch}    |  0
 dev-embedded/qdl/files/qdl-1.0-makefile.patch      | 17 ----------------
 .../qdl/{qdl-1.0.ebuild => qdl-20230411.ebuild}    |  9 ++++++---
 dev-embedded/qdl/qdl-9999.ebuild                   |  4 ++--
 7 files changed, 9 insertions(+), 46 deletions(-)

diff --git a/dev-embedded/qdl/Manifest b/dev-embedded/qdl/Manifest
index e7c95553f4..e8e3e0b1c2 100644
--- a/dev-embedded/qdl/Manifest
+++ b/dev-embedded/qdl/Manifest
@@ -1 +1 @@
-DIST qdl-1.0.tar.gz 8418 BLAKE2B 49b7bdc7c39c3cd883549c984cb8d0e5a2493752d0bc0bd61261ee681e4fab8913a98e1e7070c668beb4998dc6f574223d7ba5b54ed7e39d157e7243bd19e8ce SHA512 561b6ffaf26d063f107a0769b41d0ed02f1f6c4656b6284e653e8baf69b2f34d5f6051e54bb45ab55c028bb8bfa9b4e5218b796dbdb7ab7686576168b1b11d77
+DIST qdl-20230411.tar.gz 14561 BLAKE2B 6e80a2e6b8509abd1678dfda244130499655dd9a5a923149f41c22791b1f52ecc6166d09012f1cf1cb4ec954dc20669aa0e566956750b381827e8dd1df829ed3 SHA512 ebd45bfdec65c7a9c0c8a0e187b73940342988bb3ca3bfd7cf84f08cef90afa5c5331f0ccb047f580d9209ded7f4e4ca4146c7f9a4fe4a7ab3a88c2406c7903d

diff --git a/dev-embedded/qdl/files/include_stdlib-1.0.patch b/dev-embedded/qdl/files/include_stdlib-1.0.patch
deleted file mode 100644
index c2b4a49729..0000000000
--- a/dev-embedded/qdl/files/include_stdlib-1.0.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-#Created by Quincy Fleming
-#Failure to compile without include "<stdlib.h>"
-#Bug: https://bugs.gentoo.org/927801
---- a/patch.c
-+++ b/patch.c
-@@ -30,6 +30,7 @@
-  */
- #include <errno.h>
- #include <string.h>
-+#include <stdlib.h>
- #include <libxml/parser.h>
- #include <libxml/tree.h>
- 
---- a/program.c
-+++ b/program.c
-@@ -31,6 +31,7 @@
- #include <errno.h>
- #include <fcntl.h>
- #include <string.h>
-+#include <stdlib.h>
- #include <unistd.h>
- #include <libxml/parser.h>
- #include <libxml/tree.h>

diff --git a/dev-embedded/qdl/files/include_stdlib-9999.patch b/dev-embedded/qdl/files/include_stdlib.patch
similarity index 100%
rename from dev-embedded/qdl/files/include_stdlib-9999.patch
rename to dev-embedded/qdl/files/include_stdlib.patch

diff --git a/dev-embedded/qdl/files/qdl-9999-makefile.patch b/dev-embedded/qdl/files/makefile.patch
similarity index 100%
rename from dev-embedded/qdl/files/qdl-9999-makefile.patch
rename to dev-embedded/qdl/files/makefile.patch

diff --git a/dev-embedded/qdl/files/qdl-1.0-makefile.patch b/dev-embedded/qdl/files/qdl-1.0-makefile.patch
deleted file mode 100644
index e6c7ab1223..0000000000
--- a/dev-embedded/qdl/files/qdl-1.0-makefile.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-#Created by Quincy Fleming
-#CFLAGS and LDFLAGS were not being respected
-#Bug links: https://bugs.gentoo.org/910480 https://bugs.gentoo.org/910481
---- a/Makefile
-+++ b/Makefile
-@@ -1,8 +1,8 @@
- OUT := qdl
- 
--CFLAGS := -O2 -Wall -g `xml2-config --cflags`
--LDFLAGS := `xml2-config --libs`
--prefix := /usr/local
-+CFLAGS += `${PKG_CONFIG} --cflags libxml-2.0`
-+LDFLAGS += `${PKG_CONFIG} --libs libxml-2.0 libudev`
-+prefix = ${EPREFIX}/usr
- 
- SRCS := firehose.c qdl.c sahara.c util.c patch.c program.c
- OBJS := $(SRCS:.c=.o)

diff --git a/dev-embedded/qdl/qdl-1.0.ebuild b/dev-embedded/qdl/qdl-20230411.ebuild
similarity index 68%
rename from dev-embedded/qdl/qdl-1.0.ebuild
rename to dev-embedded/qdl/qdl-20230411.ebuild
index 7b7835782f..1b463b9645 100644
--- a/dev-embedded/qdl/qdl-1.0.ebuild
+++ b/dev-embedded/qdl/qdl-20230411.ebuild
@@ -6,8 +6,11 @@ EAPI=8
 inherit toolchain-funcs
 
 DESCRIPTION="Tool to communicate with Qualcomm System On a Chip bootroms"
+COMMIT_ID="3b22df2bc7de02d867334af3a7aa8606db4f8cdd"
 HOMEPAGE="https://github.com/andersson/qdl"
-SRC_URI="https://github.com/andersson/qdl/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/linux-msm/qdl/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
+
+S="${WORKDIR}/${PN}-${COMMIT_ID}"
 
 LICENSE="BSD"
 SLOT="0"
@@ -19,8 +22,8 @@ BDEPEND="virtual/libudev
 "
 
 PATCHES=(
-	"${FILESDIR}/${P}-makefile.patch"
-	"${FILESDIR}/include_stdlib-${PV}.patch"
+	"${FILESDIR}/makefile.patch"
+	"${FILESDIR}/include_stdlib.patch"
 )
 
 src_compile() {

diff --git a/dev-embedded/qdl/qdl-9999.ebuild b/dev-embedded/qdl/qdl-9999.ebuild
index 3832903dcb..263372f242 100644
--- a/dev-embedded/qdl/qdl-9999.ebuild
+++ b/dev-embedded/qdl/qdl-9999.ebuild
@@ -18,8 +18,8 @@ BDEPEND="virtual/libudev
 "
 
 PATCHES=(
-	"${FILESDIR}/${P}-makefile.patch"
-	"${FILESDIR}/include_stdlib-${PV}.patch"
+	"${FILESDIR}/makefile.patch"
+	"${FILESDIR}/include_stdlib.patch"
 )
 
 src_compile() {


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

* [gentoo-commits] repo/proj/guru:master commit in: dev-embedded/qdl/, dev-embedded/qdl/files/
@ 2024-04-09 16:30 Viorel Munteanu
  0 siblings, 0 replies; 4+ messages in thread
From: Viorel Munteanu @ 2024-04-09 16:30 UTC (permalink / raw
  To: gentoo-commits

commit:     7188d3e8f978ff24d8740977fddebd110a5581a6
Author:     Quincy Fleming <quincyf467 <AT> protonmail <DOT> com>
AuthorDate: Tue Apr  9 15:12:36 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Tue Apr  9 15:12:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7188d3e8

dev-embedded/qdl: update, remove stdlib patch

Signed-off-by: Quincy Fleming <quincyf467 <AT> protonmail.com>

 dev-embedded/qdl/Manifest                          |  2 +-
 dev-embedded/qdl/files/include_stdlib.patch        | 33 ----------------------
 .../{qdl-20230411.ebuild => qdl-2024.4.9.ebuild}   |  3 +-
 dev-embedded/qdl/qdl-9999.ebuild                   |  1 -
 4 files changed, 2 insertions(+), 37 deletions(-)

diff --git a/dev-embedded/qdl/Manifest b/dev-embedded/qdl/Manifest
index e8e3e0b1c2..ab581535da 100644
--- a/dev-embedded/qdl/Manifest
+++ b/dev-embedded/qdl/Manifest
@@ -1 +1 @@
-DIST qdl-20230411.tar.gz 14561 BLAKE2B 6e80a2e6b8509abd1678dfda244130499655dd9a5a923149f41c22791b1f52ecc6166d09012f1cf1cb4ec954dc20669aa0e566956750b381827e8dd1df829ed3 SHA512 ebd45bfdec65c7a9c0c8a0e187b73940342988bb3ca3bfd7cf84f08cef90afa5c5331f0ccb047f580d9209ded7f4e4ca4146c7f9a4fe4a7ab3a88c2406c7903d
+DIST qdl-2024.4.9.tar.gz 14576 BLAKE2B 4eba1733b62114d77c41076b9830d6158aea2ab2a707a33fa2a22135827d17929d11fe4667ba97d97e55725e6fdff08173dc9030e581b435b53d6d2904dfcf3a SHA512 467f7f06eba1b32ac25a36f001743fda55a1a4b91cff63a22966383505ccc1a15fa5bde4f848c1962a38f6395080c192a372d6168b5075acfe42073af181345c

diff --git a/dev-embedded/qdl/files/include_stdlib.patch b/dev-embedded/qdl/files/include_stdlib.patch
deleted file mode 100644
index f2e34743fc..0000000000
--- a/dev-embedded/qdl/files/include_stdlib.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-#Created by Quincy Fleming
-#Failure to compile without include "<stdlib.h>"
-#Bug: https://bugs.gentoo.org/927801
---- a/patch.c
-+++ b/patch.c
-@@ -30,6 +30,7 @@
-  */
- #include <errno.h>
- #include <string.h>
-+#include <stdlib.h>
- #include <libxml/parser.h>
- #include <libxml/tree.h>
- 
---- a/program.c
-+++ b/program.c
-@@ -31,6 +31,7 @@
- #include <errno.h>
- #include <fcntl.h>
- #include <string.h>
-+#include <stdlib.h>
- #include <unistd.h>
- #include <libxml/parser.h>
- #include <libxml/tree.h>
---- a/util.c
-+++ b/util.c
-@@ -31,6 +31,7 @@
- #include <ctype.h>
- #include <stdint.h>
- #include <stdio.h>
-+#include <stdlib.h>
- #include <string.h>
- #include <libxml/parser.h>
- #include <libxml/tree.h>

diff --git a/dev-embedded/qdl/qdl-20230411.ebuild b/dev-embedded/qdl/qdl-2024.4.9.ebuild
similarity index 88%
rename from dev-embedded/qdl/qdl-20230411.ebuild
rename to dev-embedded/qdl/qdl-2024.4.9.ebuild
index 1b463b9645..dcba98c9b0 100644
--- a/dev-embedded/qdl/qdl-20230411.ebuild
+++ b/dev-embedded/qdl/qdl-2024.4.9.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 inherit toolchain-funcs
 
 DESCRIPTION="Tool to communicate with Qualcomm System On a Chip bootroms"
-COMMIT_ID="3b22df2bc7de02d867334af3a7aa8606db4f8cdd"
+COMMIT_ID="a629f43428ebd17080f55543f893d45694234f75"
 HOMEPAGE="https://github.com/andersson/qdl"
 SRC_URI="https://github.com/linux-msm/qdl/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
 
@@ -23,7 +23,6 @@ BDEPEND="virtual/libudev
 
 PATCHES=(
 	"${FILESDIR}/makefile.patch"
-	"${FILESDIR}/include_stdlib.patch"
 )
 
 src_compile() {

diff --git a/dev-embedded/qdl/qdl-9999.ebuild b/dev-embedded/qdl/qdl-9999.ebuild
index 263372f242..748d9684f1 100644
--- a/dev-embedded/qdl/qdl-9999.ebuild
+++ b/dev-embedded/qdl/qdl-9999.ebuild
@@ -19,7 +19,6 @@ BDEPEND="virtual/libudev
 
 PATCHES=(
 	"${FILESDIR}/makefile.patch"
-	"${FILESDIR}/include_stdlib.patch"
 )
 
 src_compile() {


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

end of thread, other threads:[~2024-04-09 16:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-25 23:15 [gentoo-commits] repo/proj/guru:master commit in: dev-embedded/qdl/, dev-embedded/qdl/files/ Julien Roy
  -- strict thread matches above, loose matches on Subject: below --
2024-04-09 16:30 Viorel Munteanu
2024-03-27 11:50 Rui Huang
2023-07-19  8:49 Haelwenn Monnier

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