Overview
| Comment: | objfw.spec: Unconditionally (re)generate configure
Using %generate_buildrequires does not seem to work on Copr. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
89234a6f0d97808a7fa8a1ab9f604cf5 |
| User & Date: | js on 2021-09-04 19:59:28 |
| Other Links: | manifest | tags |
Context
|
2021-09-05
| ||
| 20:19 | Don't automatically run tests (check-in: be8865bcd2 user: js tags: trunk) | |
|
2021-09-04
| ||
| 19:59 | objfw.spec: Unconditionally (re)generate configure (check-in: 89234a6f0d user: js tags: trunk) | |
| 19:40 | objfw.spec: Generate configure if it's missing (check-in: bc86f1d9e9 user: js tags: trunk) | |
Changes
Modified objfw.spec from [538d1a367e] to [0940517b18].
| ︙ | ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
Group: Development/Languages/C and C++
%else
License: QPL or GPLv3 or GPLv2
%endif
URL: https://objfw.nil.im
Source0: objfw-%{version}.tar.gz
BuildRequires: clang
BuildRequires: make
Requires: %{libobjfw_pkgname}%{_isa} = %{version}-%{release}
Requires: %{libobjfw_pkgname}-devel = %{version}-%{release}
Requires: %{libobjfwrt_pkgname}%{_isa} = %{version}-%{release}
Requires: %{libobjfwrt_pkgname}-devel = %{version}-%{release}
Requires: ofarc%{_isa} = %{version}-%{release}
Requires: ofdns%{_isa} = %{version}-%{release}
Requires: ofhash%{_isa} = %{version}-%{release}
Requires: ofhttp%{_isa} = %{version}-%{release}
| > > < < < < < < | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
Group: Development/Languages/C and C++
%else
License: QPL or GPLv3 or GPLv2
%endif
URL: https://objfw.nil.im
Source0: objfw-%{version}.tar.gz
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: clang
BuildRequires: make
Requires: %{libobjfw_pkgname}%{_isa} = %{version}-%{release}
Requires: %{libobjfw_pkgname}-devel = %{version}-%{release}
Requires: %{libobjfwrt_pkgname}%{_isa} = %{version}-%{release}
Requires: %{libobjfwrt_pkgname}-devel = %{version}-%{release}
Requires: ofarc%{_isa} = %{version}-%{release}
Requires: ofdns%{_isa} = %{version}-%{release}
Requires: ofhash%{_isa} = %{version}-%{release}
Requires: ofhttp%{_isa} = %{version}-%{release}
%description
ObjFW is a portable, lightweight framework for the Objective-C language. It
enables you to write an application in Objective-C that will run on any
platform supported by ObjFW without having to worry about differences between
operating systems or various frameworks you would otherwise need if you want to
be portable.
|
| ︙ | ︙ | |||
124 125 126 127 128 129 130 | ofhttp is a command line downloader for HTTP and HTTPS (via ObjOpenSSL) using ObjFW's OFHTTPClient class. It supports all features one would expect from a modern command line downloader such as resuming of downloads, using a SOCKS5 proxy, a modern terminal-based UI, etc. %prep %autosetup | | | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | ofhttp is a command line downloader for HTTP and HTTPS (via ObjOpenSSL) using ObjFW's OFHTTPClient class. It supports all features one would expect from a modern command line downloader such as resuming of downloads, using a SOCKS5 proxy, a modern terminal-based UI, etc. %prep %autosetup ./autogen.sh %build %configure --disable-rpath %make_build %install %make_install |
| ︙ | ︙ |