Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added trust-anchors repo #9

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,5 @@ jobs:
# FIXME: remove external repo when UMD5 is available
dnf install -y epel-release
dnf install -y https://research.cs.wisc.edu/htcondor/repo/23.x/htcondor-release-current.el9.noarch.rpm
dnf config-manager --add-repo http://repository.egi.eu/sw/production/cas/1/current/repo-files/egi-trustanchors.repo
dnf config-manager --set-enabled crb
dnf localinstall -y ui-*.rpm
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to

## [Unreleased]

## [6.0.1]
- Included EGI Trustanchor repo (Andrea Manzi)

## [6.0.0]
- Added support for el9 (#6) (Andrea Manzi)

Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dist:

sources: dist
cp $(build)/$(NAME)-$(VERSION).tar.gz .
cp $(build)/*.repo .

prepare: dist
@mkdir -p $(build)/RPMS/noarch
Expand All @@ -29,6 +30,7 @@ prepare: dist
@mkdir -p $(build)/BUILD/
cp $(build)/$(NAME)-$(VERSION).tar.gz $(build)/SOURCES
cp $(NAME).spec $(build)/SPECS
cp *.repo $(build)/SOURCES

srpm: prepare
rpmbuild -bs --define="dist ${dist}" --define='_topdir ${build}' $(build)/SPECS/$(NAME).spec
Expand Down
6 changes: 6 additions & 0 deletions egi-trustanchors.repo
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[EGI-trustanchors]
name=EGI-trustanchors
baseurl=http://repository.egi.eu/sw/production/cas/1/current/
gpgkey=http://repository.egi.eu/sw/production/cas/1/GPG-KEY-EUGridPMA-RPM-3
gpgcheck=1
enabled=1
11 changes: 9 additions & 2 deletions ui.spec
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
%global debug_package %{nil}

Name: ui
Version: 6.0.0
Version: 6.0.1
Release: 1%{?dist}
Summary: User Interface meta-package
Group: Applications/Internet
License: ASL 2.0
URL: https://github.com/EGI-Federation/ui-metapackage
Source: %{name}-%{version}.tar.gz
Source0: %{name}-%{version}.tar.gz
Source1: egi-trustanchors.repo
BuildRoot: %{_tmppath}/%{name}-%{version}-build

# the above replaced by ca-policy-egi-core
Expand Down Expand Up @@ -71,15 +72,21 @@ can use to access grid services
%install
rm -rf %{buildroot}
make install prefix=%{buildroot}
install -dm 755 %{buildroot}%{_sysconfdir}/yum.repos.d
install -pm 644 %{SOURCE1} \
%{buildroot}%{_sysconfdir}/yum.repos.d

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc /usr/share/doc/ui/README.md
%config(noreplace) /etc/yum.repos.d/egi-trustanchors.repo

%changelog
* Thu Jun 06 2024 <[email protected]> - 6.0.1-1
- Included egi-trustanchors.repo
* Tue Jun 04 2024 <[email protected]> - 6.0.0-1
- Support for El9 (#6) (Andrea Manzi)
* Fri Nov 18 2022 Baptiste Grenier <[email protected]> - 5.0.0-1
Expand Down
Loading