package/lemon,qjson,qtkeychain: fix c compiler depencency (#50311)

* package/lemon,qjson,qtkeychain: fix c compiler depencency
* remove generated

---------

Co-authored-by: sbulut <sbulut@3vgeomatics.com>
This commit is contained in:
Sinan 2025-05-08 16:44:23 -07:00 committed by GitHub
parent 03cb30cb96
commit f30d8ea2a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 3 deletions

View File

@ -22,7 +22,8 @@ class Lemon(CMakePackage):
# soplex not mentioned in docs but shown in cmakecache # soplex not mentioned in docs but shown in cmakecache
# variant("soplex", default=False, description="Enable SOPLEX solver backend") #TODO # variant("soplex", default=False, description="Enable SOPLEX solver backend") #TODO
depends_on("cxx", type="build") # generated depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("glpk", when="+glpk") depends_on("glpk", when="+glpk")
depends_on("cplex", when="+ilog") depends_on("cplex", when="+ilog")

View File

@ -16,7 +16,8 @@ class Qjson(CMakePackage):
version("0.9.0", sha256="e812617477f3c2bb990561767a4cd8b1d3803a52018d4878da302529552610d4") version("0.9.0", sha256="e812617477f3c2bb990561767a4cd8b1d3803a52018d4878da302529552610d4")
depends_on("cxx", type="build") # generated depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("qt") depends_on("qt")

View File

@ -15,7 +15,8 @@ class Qtkeychain(CMakePackage):
version("0.9.1", sha256="9c2762d9d0759a65cdb80106d547db83c6e9fdea66f1973c6e9014f867c6f28e") version("0.9.1", sha256="9c2762d9d0759a65cdb80106d547db83c6e9fdea66f1973c6e9014f867c6f28e")
depends_on("cxx", type="build") # generated depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("qt+dbus") depends_on("qt+dbus")
depends_on("libsecret") depends_on("libsecret")