Closed
Description
Description
We are trying Gitea as repository.
We are experimenting the same issue that this case using Conan package:
If we upload a conan package using nonSem version, we have error 500 on repo package pages.
To fix this issue, I update semver_compatible from true to false :
giteadb=# UPDATE package SET semver_compatible = 'f' WHERE id = 7;
UPDATE 1
giteadb=# UPDATE package SET semver_compatible = 'f' WHERE id = 9;
UPDATE 1
giteadb=# select * from package;
id | owner_id | repo_id | type | name | lower_name | semver_compatible
----+----------+---------+---------+--------------+--------------+-------------------
1 | 2 | 0 | generic | cirros | cirros | f
2 | 4 | 0 | conan | boost | boost | t
4 | 12 | 0 | conan | b2 | b2 | t
5 | 12 | 0 | conan | boost | boost | t
6 | 12 | 0 | conan | grpc | grpc | t
10 | 12 | 0 | conan | openssl | openssl | t
11 | 12 | 0 | conan | zlib | zlib | t
7 | 12 | 0 | conan | libbacktrace | libbacktrace | f
9 | 12 | 0 | conan | opengv | opengv | f
(9 rows)
giteadb=#
There is no command on conan upload cli to fix semvers to true or false.
Is this a bug in Gitea ?
Thanks,
Gitea Version
1.18-dev
Can you reproduce the bug on the Gitea demo site?
Yes
Log Gist
No response
Screenshots
No response
Git Version
No response
Operating System
Ubuntu 22
How are you running Gitea?
Install gitea on vmware virtual machine, ubuntu22 using the binary.
Database
PostgreSQL