diff options
author | Remi Collet <remi@remirepo.net> | 2019-08-08 09:17:01 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-08-08 09:17:01 +0200 |
commit | c119a40f63cf7aa38e85f809e691d6af7085bfe2 (patch) | |
tree | 84c416e68d4c57149f5f5953990af72a8eb18e38 | |
parent | 82cb98e6ec05385570b9bef2d578aa84f3f4c5be (diff) |
- rebuild from RHEL-7.7 sources temporary workaround waiting for CentOS 7.7
- lower release to ensure official package will be preferred
-rw-r--r-- | .gitignore | 8 | ||||
-rw-r--r-- | LibRaw.spec | 7 | ||||
-rw-r--r-- | Makefile | 4 |
3 files changed, 18 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b0b29b5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +package-*.xml +*.tgz +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm +abi_dumps/ diff --git a/LibRaw.spec b/LibRaw.spec index ea3673b..989d824 100644 --- a/LibRaw.spec +++ b/LibRaw.spec @@ -1,7 +1,7 @@ Summary: Library for reading RAW files obtained from digital photo cameras Name: LibRaw Version: 0.19.2 -Release: 1%{?dist} +Release: 0%{?dist} License: BSD and (CDDL or LGPLv2) URL: http://www.libraw.org @@ -116,6 +116,11 @@ rm -fv %{buildroot}%{_libdir}/lib*.la %changelog +* Thu Aug 8 2019 Remi Collet <remi@remirepo.net> - 0.19.2-0 +- rebuild from RHEL-7.7 sources + temporary workaround waiting for CentOS 7.7 +- lower release to ensure official package will be preferred + * Wed Jan 2 2019 Debarshi Ray <rishi@fedoraproject.org> - 0.19.2-1 - Update to 0.19.2 - Resolves: #1543597 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91b0fd5 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + |