diff options
author | Juergen Daubert <jue@jue.li> | 2021-05-28 17:20:36 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-05-29 12:02:11 +0200 |
commit | 44f3e416efcd16864637f78dbe32c44bc9f76019 (patch) | |
tree | 320956fe32ba5d58a1cb18966824c4560741d20f /apache | |
parent | 1e8745d6c9c3b235a282c70985215451cc3a5a15 (diff) | |
download | opt-44f3e416efcd16864637f78dbe32c44bc9f76019.tar.gz opt-44f3e416efcd16864637f78dbe32c44bc9f76019.tar.xz |
apache: update to 2.4.48
Diffstat (limited to 'apache')
-rw-r--r-- | apache/.footprint | 1 | ||||
-rw-r--r-- | apache/.signature | 8 | ||||
-rw-r--r-- | apache/Pkgfile | 48 |
3 files changed, 29 insertions, 28 deletions
diff --git a/apache/.footprint b/apache/.footprint index bf503ef6c..ee55f3727 100644 --- a/apache/.footprint +++ b/apache/.footprint @@ -70,6 +70,7 @@ drwxr-xr-x root/root usr/include/apache/ -rw-r--r-- root/root usr/include/apache/http_main.h -rw-r--r-- root/root usr/include/apache/http_protocol.h -rw-r--r-- root/root usr/include/apache/http_request.h +-rw-r--r-- root/root usr/include/apache/http_ssl.h -rw-r--r-- root/root usr/include/apache/http_vhost.h -rw-r--r-- root/root usr/include/apache/httpd.h -rw-r--r-- root/root usr/include/apache/mod_auth.h diff --git a/apache/.signature b/apache/.signature index 56fb935af..8d4292494 100644 --- a/apache/.signature +++ b/apache/.signature @@ -1,7 +1,7 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/efSZnxWFeH2M2lkiYYR626D6QFTo3tY+dtgi7cIjky4Nm/TVVageqCQRWXCSCvkj6UYUPtTydDVAjwYGg+i8wg= -SHA256 (Pkgfile) = 1a148bfb52931edafbef0b893b3cbbc14736440c659130813eab1c789fa04d23 -SHA256 (.footprint) = 5e67d75802efcd4097db6c95f25e70dfa4b740e7e437404376fdd65c9a010bb5 -SHA256 (httpd-2.4.46.tar.bz2) = 740eddf6e1c641992b22359cabc66e6325868c3c5e2e3f98faf349b61ecf41ea +RWSE3ohX2g5d/cUVSU199wFFtHil/1hmhVlBHVtwuQBT1hf7DjotSyIX4FQw6eUPaU8cUNvXNh9jGxPM8VW+SXltHauEYpZVTw8= +SHA256 (Pkgfile) = 909e3372084f2bffd36b4b119d0ca7689d5d4590e7b4cb2c79c4c2aca822a3bf +SHA256 (.footprint) = acf30483788e8e161ff93877feff858f69b6e70c7115798bbf5418b33183d628 +SHA256 (httpd-2.4.48.tar.bz2) = 1bc826e7b2e88108c7e4bf43c026636f77a41d849cfb667aa7b5c0b86dbf966c SHA256 (crux.layout) = cf555f92cdc9a078d9e89035819da1ac0d2e248f0d31637b9e8f48fc8d3f42cf SHA256 (apache) = f4ff530751a937bead9030e15689a3b19591f790095b46bddc073efc82f756dd diff --git a/apache/Pkgfile b/apache/Pkgfile index 4b4878f7b..53c757ca2 100644 --- a/apache/Pkgfile +++ b/apache/Pkgfile @@ -1,37 +1,37 @@ # Description: Apache HTTP server version 2.4.x -# Maintainer: Juergen Daubert, jue at crux dot nu -# URL: http://httpd.apache.org/ -# Depends on: apr libpcre openssl libxml2 -# Group: apache +# Maintainer: Juergen Daubert, jue at crux dot nu +# URL: http://httpd.apache.org/ +# Depends on: apr libpcre openssl libxml2 name=apache -version=2.4.46 +version=2.4.48 release=1 source=(http://www.apache.org/dist/httpd/httpd-$version.tar.bz2 \ - crux.layout apache) + crux.layout apache) build(){ - cd httpd-$version + cd httpd-$version - cat $SRC/crux.layout >> config.layout - sed -ri '/^(User|Group)/s/daemon/www/' docs/conf/httpd.conf.in + cat $SRC/crux.layout >> config.layout + sed -ri '/^(User|Group)/s/daemon/www/' docs/conf/httpd.conf.in - ./configure --enable-layout=CRUX \ - --with-apr=/usr \ - --with-apr-util=/usr \ - --with-pcre=/usr \ - --enable-so \ - --enable-modules=all \ - --enable-mods-shared=all \ - --enable-mpms-shared=all \ - --disable-lua - make - make -j1 DESTDIR=$PKG install + ./configure \ + --enable-layout=CRUX \ + --with-apr=/usr \ + --with-apr-util=/usr \ + --with-pcre=/usr \ + --enable-so \ + --enable-modules=all \ + --enable-mods-shared=all \ + --enable-mpms-shared=all \ + --disable-lua + make + make -j1 DESTDIR=$PKG install - install -D -m 755 $SRC/apache $PKG/etc/rc.d/apache + install -D -m 755 $SRC/apache $PKG/etc/rc.d/apache - rm -r $PKG/var/www/htdocs/* - rm $PKG/var/www/{error,icons}/README* + rm -r $PKG/var/www/htdocs/* + rm $PKG/var/www/{error,icons}/README* - chmod -R g-s $PKG/var/www/ + chmod -R g-s $PKG/var/www/ } |