Sophie

Sophie

distrib > Mageia > 6 > x86_64 > by-pkgid > 9f2dfa6788bf3b41e4bb79b59c1230e5 > files > 2

copy-jdk-configs-2.2-2.mga6.src.rpm

%global project copy_jdk_configs
%global file %{project}.lua
%global fixFile %{project}_fixFiles.sh
%global rpm_state_dir %{_localstatedir}/lib/rpm-state

Name:    copy-jdk-configs

# hash relevant to version tag
%global  htag 3f9d6c4448f867a95fb166416a41c45c7e795c10
Version: 2.2
Release: %mkrel 2
Summary: JDKs configuration files copier
Group:   Development/Java

License:  BSD
URL:      https://pagure.io/%{project}
Source0:  https://pagure.io/%{project}/blob/%{htag}/f/%{file}
Source1:  https://pagure.io/%{project}/blob/%{htag}/f/LICENSE
Source2:  https://pagure.io/%{project}/blob/%{htag}/f/%{fixFile}

# we need to duplicate msot of the percents in that script so they survive rpm expansion (even in that sed they have to be duplicated)
%global pretrans_install %(cat %{SOURCE0} | sed s/%%/%%%%/g | sed s/\\^%%%%/^%%/g) 

BuildArch: noarch

BuildRequires: lua
Requires: lua
Requires: lua-posix

%description
Utility script to transfer JDKs configuration files between updates or for
archiving. With script to fix incorrectly created rpmnew files.

%prep
cp -a %{SOURCE1} .


%build
#blob

%pretrans -p <lua>
function createPretransScript()
-- the sript must be available during pretrans, so multiply it to tmp
  os.execute("mkdir -p %{rpm_state_dir}")
  temp_path="%{rpm_state_dir}/%{file}"
-- print("generating " .. temp_path)
  file = io.open(temp_path, "w")
  file:write([[%{pretrans_install}]])
  file:close()
end

-- in netinst, the above call may fail. pcall should save instalation (as there is nothing to copy anyway)
-- https://bugzilla.redhat.com/show_bug.cgi?id=1295701
-- todo, decide whether to check for {rpm_state_dir} and skip on not-existing, or keep creating
if pcall(createPretransScript) then
-- ok
else
--  print("Error running %{name} pretrans.")
end

%install
mkdir -p %{buildroot}/%{_libexecdir}
cp -a %{SOURCE0} %{buildroot}%{_libexecdir}/%{file}
cp -a %{SOURCE2} %{buildroot}/%{_libexecdir}/%{fixFile}

%posttrans
# remove file created in pretrans
# echo "removing %{rpm_state_dir}/%{file}" || :
rm "%{rpm_state_dir}/%{file}" 2> /dev/null || :

%files
%{_libexecdir}/%{file}
%{_libexecdir}/%{fixFile}
%license LICENSE



%changelog
* Mon Feb 27 2017 luigiwalser <luigiwalser> 2.2-2.mga6
+ Revision: 1088061
- added jre/lib/security/blacklisted.certs to cared files (from fedora)

* Tue Feb 21 2017 luigiwalser <luigiwalser> 2.2-1.mga6
+ Revision: 1087179
- 2.2

* Sun Feb 12 2017 luigiwalser <luigiwalser> 2.1-1.mga6
+ Revision: 1085830
- 2.1

* Fri Jan 27 2017 luigiwalser <luigiwalser> 2.0-1.mga6
+ Revision: 1083676
- 2.0

* Sat Sep 10 2016 luigiwalser <luigiwalser> 1.2-1.mga6
+ Revision: 1051244
- 1.2

* Fri Jan 22 2016 luigiwalser <luigiwalser> 1.1-2.mga6
+ Revision: 926546
- BR lua so as to not auto require /usr/bin/lua

* Fri Jan 22 2016 luigiwalser <luigiwalser> 1.1-1.mga6
+ Revision: 926369
- add group tag
- adapt to mageia
- imported package copy-jdk-configs


* Fri Jan 08 2016 Jiri Vanek <jvanek@redhat.com> - 1.1-3
- pretrasn lua call now done in pcall (protected call)
- also posttrans now always return 0

* Wed Dec 16 2015 Jiri Vanek <jvanek@redhat.com> - 1.1-2
- package now "installs" also during pretrans, so pretrasn scripts can use it
- pretrasn "install" is removed in postrans

* Wed Nov 25 2015 Jiri Vanek <jvanek@redhat.com> - 1.1-1
- initial package