1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 21:57:34 +00:00

Ports: Added checksums / signature files and other fixes

* Use ${version} instead of explicit version numbers in urls/filenames
* Move -L option to port script, as this is always good
* Fix some various other stuff
This commit is contained in:
Emanuel Sprung 2020-02-04 01:11:35 +01:00 committed by Andreas Kling
parent 991953ab0a
commit f46d80ac4f
39 changed files with 148 additions and 74 deletions

View file

@ -2,11 +2,9 @@
port=libexpat
version=2.2.9
useconfigure=true
files="https://codeload.github.com/libexpat/libexpat/tar.gz/R_2_2_9 expat-2.2.9.tar.gz"
workdir=libexpat-R_2_2_9/expat/
configure() {
run ./buildconf.sh
run patch -p 0 < fix-autoconf.patch
run ./"$configscript" --host=i686-pc-serenity $configopts
}
files="https://github.com/libexpat/libexpat/releases/download/R_2_2_9/expat-${version}.tar.xz expat-${version}.tar.xz
https://github.com/libexpat/libexpat/releases/download/R_2_2_9/expat-${version}.tar.xz.asc expat-${version}.tar.xz.asc"
workdir=expat-${version}
auth_type="sig"
auth_import_key="CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6"
auth_opts="expat-${version}.tar.xz.asc expat-${version}.tar.xz"

View file

@ -1,15 +1,15 @@
--- conftools/config.sub.orig 2019-10-03 23:14:02.281000072 +0100
+++ conftools/config.sub 2019-10-03 23:14:36.896816822 +0100
--- a/conftools/config.sub
+++ b/conftools/config.sub
@@ -2,7 +2,7 @@
# Configuration validation subroutine script.
# Copyright 1992-2018 Free Software Foundation, Inc.
-timestamp='2018-02-22'
-timestamp='2018-01-01'
+timestamp='2019-10-03'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1364,6 +1364,7 @@
@@ -1409,6 +1409,7 @@ case $os in
# Each alternative MUST end in a * to match a version number.
# -sysv* is not here because it comes later, after sysvr4.
-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
@ -17,3 +17,6 @@
| -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
| -sym* | -kopensolaris* | -plan9* \
--
2.17.1