curl-7.77.0 ver. bump
This commit is contained in:
+22466
-22282
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
c95fb30d76daa46166537743d45f5ac9e7383e68
|
||||
3d4d1b4e1660c998bb8fde187577bdc3431d79b9
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
dee84b37349e65ce01517510db1a7ef122395497
|
||||
f70bafd3f8bc73fa72d9e8fea5e5bd6d2c92a8b8
|
||||
@@ -53,4 +53,4 @@ def check():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("CHANGES", "docs/FEATURES", "docs/FAQ", "docs/BUGS*")
|
||||
pisitools.dodoc("CHANGES", "docs/FEATURES*", "docs/FAQ*", "docs/BUGS*")
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>A utility for getting files from remote servers</Summary>
|
||||
<Description>curl is a command line tool for transferring data with URL syntax, supporting various protocols.</Description>
|
||||
<Archive sha1sum="03ec7b71ccda9c7792d0ae5fd2fe3464541a4e12" type="tarbz2">http://curl.haxx.se/download/curl-7.73.0.tar.bz2</Archive>
|
||||
<Archive sha1sum="8f3a4e5606ac6b0c2c3cd0b182d477f2671d5f09" type="tarbz2">http://curl.haxx.se/download/curl-7.77.0.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
@@ -22,6 +22,7 @@
|
||||
<Dependency>libidn2-devel</Dependency>
|
||||
<Dependency>libssh2-devel</Dependency>
|
||||
<Dependency>ca-certificates</Dependency>
|
||||
<Dependency>libnghttp2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch>curl-krb5flags.patch</Patch> -->
|
||||
@@ -36,6 +37,7 @@
|
||||
<Dependency>libidn2</Dependency>
|
||||
<Dependency>libssh2</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>libnghttp2</Dependency>
|
||||
<Dependency>ca-certificates</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -64,6 +66,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-05-29</Date>
|
||||
<Version>7.77.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-12-09</Date>
|
||||
<Version>7.73.0</Version>
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-i")
|
||||
autotools.configure("--disable-hpack-tools \
|
||||
--disable-python-bindings \
|
||||
--disable-static \
|
||||
--with-libxml2")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libnghttp2</Name>
|
||||
<Homepage>https://nghttp2.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary> Experimental HTTP/2 client, server and proxy</Summary>
|
||||
<Description>Deneysel HTTP/2 istemci, sunucu ve proxy</Description>
|
||||
<Archive sha1sum="0ed7652c0de7f8c2575e9544ae0d56d86d804d84" type="targz">https://github.com/nghttp2/nghttp2/archive/refs/tags/v1.43.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>libnghttp2.patch</Patch>
|
||||
<Patch level="1">libnghttp2.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libnghttp2</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/nghttp2</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libnghttp2-devel</Name>
|
||||
<Summary>Development files for libnghttp2</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libnghttp2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-05-29</Date>
|
||||
<Version>1.43.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libnghttp2</Name>
|
||||
<Summary xml:lang="tr"> Experimental HTTP/2 client, server and proxy</Summary>
|
||||
<Description xml:lang="tr">Deneysel HTTP/2 istemci, sunucu ve proxy</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -12,9 +12,9 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python cURL Module</Summary>
|
||||
<Description>PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL from a Python program.</Description>
|
||||
<Archive sha1sum="cd617ed4e40a3b8f5ca5bf54aba7f35ed25afa46" type="targz">https://dl.bintray.com/pycurl/pycurl/pycurl-7.43.0.2.tar.gz</Archive>
|
||||
<Archive sha1sum="a19159dd7cdf8b0c9f96d57e23b3717010c51041" type="targz">https://files.pythonhosted.org/packages/50/1a/35b1d8b8e4e23a234f1b17a8a40299fd550940b16866c9a1f2d47a04b969/pycurl-7.43.0.5.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency versionFrom="7.77.0">curl-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -23,7 +23,7 @@
|
||||
<Package>
|
||||
<Name>pycurl</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>curl</Dependency>
|
||||
<Dependency versionFrom="7.77.0">curl</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -34,6 +34,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2021-05-29</Date>
|
||||
<Version>7.43.0.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-12-09</Date>
|
||||
<Version>7.43.0.2</Version>
|
||||
|
||||
Reference in New Issue
Block a user