Commit fca74eb7dceacb6ae2eec90df416471402ace005
1 parent
9d0df7ee
Exists in
master
and in
1 other branch
Updating package info.
Showing
2 changed files
with
51 additions
and
22 deletions
Show diff stats
rpm/_service
@@ -5,15 +5,44 @@ | @@ -5,15 +5,44 @@ | ||
5 | <param name="changesgenerate">enable</param> | 5 | <param name="changesgenerate">enable</param> |
6 | <param name="changesauthor">perry.werneck@gmail.com</param> | 6 | <param name="changesauthor">perry.werneck@gmail.com</param> |
7 | <param name="versionformat">@PARENT_TAG@</param> | 7 | <param name="versionformat">@PARENT_TAG@</param> |
8 | - <param name="url">https://github.com/PerryWerneck/lib3270-hllapi-bindings.git</param> | 8 | + <param name="url">https://github.com/PerryWerneck/libhllapi.git</param> |
9 | <param name="scm">git</param> | 9 | <param name="scm">git</param> |
10 | </service> | 10 | </service> |
11 | 11 | ||
12 | <!-- https://github.com/openSUSE/obs-service-extract_file --> | 12 | <!-- https://github.com/openSUSE/obs-service-extract_file --> |
13 | - <!-- service name="extract_file"> | 13 | + <service name="extract_file"> |
14 | <param name="archive">*.tar</param> | 14 | <param name="archive">*.tar</param> |
15 | - <param name="files">*/rpm/*.spec</param> | ||
16 | - </service --> | 15 | + <param name="files">*/rpm/libhllapi.spec</param> |
16 | + </service> | ||
17 | + | ||
18 | + <service name="extract_file"> | ||
19 | + <param name="archive">*.tar</param> | ||
20 | + <param name="files">*/debian/changelog</param> | ||
21 | + <param name="outfilename">debian.changelog</param> | ||
22 | + </service> | ||
23 | + | ||
24 | + <service name="extract_file"> | ||
25 | + <param name="archive">*.tar</param> | ||
26 | + <param name="files">*/debian/*.dsc</param> | ||
27 | + </service> | ||
28 | + | ||
29 | + <service name="extract_file"> | ||
30 | + <param name="archive">*.tar</param> | ||
31 | + <param name="files">*/debian/control</param> | ||
32 | + <param name="outfilename">debian.control</param> | ||
33 | + </service> | ||
34 | + | ||
35 | + <service name="extract_file"> | ||
36 | + <param name="archive">*.tar</param> | ||
37 | + <param name="files">*/debian/rules</param> | ||
38 | + <param name="outfilename">debian.rules</param> | ||
39 | + </service> | ||
40 | + | ||
41 | + <service name="extract_file"> | ||
42 | + <param name="archive">*.tar</param> | ||
43 | + <param name="files">*/debian/compat</param> | ||
44 | + <param name="outfilename">debian.compat</param> | ||
45 | + </service> | ||
17 | 46 | ||
18 | <service name="recompress"> | 47 | <service name="recompress"> |
19 | <param name="file">*.tar</param> | 48 | <param name="file">*.tar</param> |
rpm/libhllapi.spec
@@ -18,35 +18,35 @@ | @@ -18,35 +18,35 @@ | ||
18 | 18 | ||
19 | #---[ Package header ]------------------------------------------------------------------------------------------------ | 19 | #---[ Package header ]------------------------------------------------------------------------------------------------ |
20 | 20 | ||
21 | -Summary: HLLAPI client library for lib3270/pw3270 | ||
22 | -Name: libhllapi | ||
23 | -Version: 5.2 | ||
24 | -Release: 0 | ||
25 | -License: LGPL-3.0 | ||
26 | -Source: lib3270-hllapi-bindings-%{version}.tar.xz | 21 | +Summary: HLLAPI client library for lib3270/pw3270 |
22 | +Name: libhllapi | ||
23 | +Version: 5.2 | ||
24 | +Release: 0 | ||
25 | +License: LGPL-3.0 | ||
26 | +Source: %{name}-%{version}.tar.xz | ||
27 | 27 | ||
28 | -Url: https://github.com/PerryWerneck/lib3270-hllapi-bindings.git | 28 | +Url: https://github.com/PerryWerneck/libhllapi.git |
29 | 29 | ||
30 | Group: Development/Libraries/C and C++ | 30 | Group: Development/Libraries/C and C++ |
31 | 31 | ||
32 | -BuildRequires: autoconf >= 2.61 | ||
33 | -BuildRequires: automake | ||
34 | -BuildRequires: binutils | ||
35 | -BuildRequires: coreutils | ||
36 | -BuildRequires: gcc-c++ | ||
37 | -BuildRequires: gettext-devel | ||
38 | -BuildRequires: m4 | 32 | +BuildRequires: autoconf >= 2.61 |
33 | +BuildRequires: automake | ||
34 | +BuildRequires: binutils | ||
35 | +BuildRequires: coreutils | ||
36 | +BuildRequires: gcc-c++ | ||
37 | +BuildRequires: gettext-devel | ||
38 | +BuildRequires: m4 | ||
39 | BuildRequires: pkgconfig(ipc3270) | 39 | BuildRequires: pkgconfig(ipc3270) |
40 | 40 | ||
41 | %if 0%{?fedora} || 0%{?suse_version} > 1200 | 41 | %if 0%{?fedora} || 0%{?suse_version} > 1200 |
42 | 42 | ||
43 | BuildRequires: gcc-c++ | 43 | BuildRequires: gcc-c++ |
44 | -BuildRequires: pkgconfig(ipc3270) | 44 | +BuildRequires: pkgconfig(ipc3270) |
45 | 45 | ||
46 | %else | 46 | %else |
47 | 47 | ||
48 | -BuildRequires: gcc-c++ >= 4.8 | ||
49 | -BuildRequires: libipc3270-devel | 48 | +BuildRequires: gcc-c++ >= 4.8 |
49 | +BuildRequires: libipc3270-devel | ||
50 | 50 | ||
51 | %endif | 51 | %endif |
52 | 52 | ||
@@ -86,7 +86,7 @@ Development files for lib3270/pw3270 HLLAPI client library. | @@ -86,7 +86,7 @@ Development files for lib3270/pw3270 HLLAPI client library. | ||
86 | #---[ Build & Install ]----------------------------------------------------------------------------------------------- | 86 | #---[ Build & Install ]----------------------------------------------------------------------------------------------- |
87 | 87 | ||
88 | %prep | 88 | %prep |
89 | -%setup -n lib3270-hllapi-bindings-%{version} | 89 | +%setup |
90 | 90 | ||
91 | NOCONFIGURE=1 \ | 91 | NOCONFIGURE=1 \ |
92 | ./autogen.sh | 92 | ./autogen.sh |