diff options
| -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 + | 
