Skip to content

Commit

Permalink
Update luajit to version 2.1.1692716794
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw authored and pbor committed Aug 27, 2023
1 parent c7e9d51 commit 4f18fe0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions gvsbuild/projects/luajit.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,20 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.

from gvsbuild.utils.base_expanders import Tarball
from gvsbuild.utils.base_expanders import GitRepo
from gvsbuild.utils.base_project import Project, project_add


@project_add
class Luajit(Tarball, Project):
class Luajit(GitRepo, Project):
def __init__(self):
Project.__init__(
self,
"luajit",
version="2.1.0-beta3",
archive_url="http://luajit.org/download/LuaJIT-{version}.tar.gz",
hash="1ad2e34b111c802f9d0cdf019e986909123237a28c746b21295b63c9e785d9c3",
version="2.1.1692716794",
repo_url="https://github.com/LuaJIT/LuaJIT",
fetch_submodules=False,
tag="03c31124cc3b521ef54fe398e10fa55660a5057d",
patches=["set-paths.patch"],
)

Expand Down

0 comments on commit 4f18fe0

Please sign in to comment.