Compare commits
20 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d5957d72f4 | ||
|
|
6b817a240a | ||
|
|
18638b8c23 |
||
|
|
bb79b1ebb8 | ||
|
|
20d7993521 | ||
|
|
3bc892f436 | ||
|
|
e78f7acfe5 | ||
|
|
6441e2b263 | ||
|
|
d5df299c63 | ||
|
|
e519dc73ed | ||
|
|
4ad02c7d55 | ||
|
|
74715d4b50 | ||
|
|
fb5fe246fd | ||
|
|
1100acc7c6 | ||
|
|
5919a7f23d | ||
|
|
391e6b34d9 | ||
|
|
bd7939f2a7 | ||
|
|
aa6fccaa59 | ||
|
|
e9731b092c | ||
|
|
d5a8a672d2 |
3 changed files with 77 additions and 5 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
|
@ -1,2 +1,9 @@
|
||||||
/uARMSolver-0.2.zip
|
/uARMSolver-0.2.zip
|
||||||
/uARMSolver-0.2.1.tar.gz
|
/uARMSolver-0.2.1.tar.gz
|
||||||
|
/uARMSolver-0.2.2.tar.gz
|
||||||
|
/uARMSolver-0.2.3.tar.gz
|
||||||
|
/uARMSolver-0.2.4.tar.gz
|
||||||
|
/uARMSolver-0.2.5.tar.gz
|
||||||
|
/uARMSolver-0.2.6.tar.gz
|
||||||
|
/uARMSolver-0.3.0.tar.gz
|
||||||
|
/uARMSolver-0.4.0.tar.gz
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (uARMSolver-0.2.1.tar.gz) = 30e8a71fa2ddb0662e084ab1af52d5a6228ec4b387d08472ff2ae64422e92c56e9c583dbf7b1bd98dad16448a6c7b70827dd63305df55818ce52997346a4cb12
|
SHA512 (uARMSolver-0.4.0.tar.gz) = 5f5deb1bf2b604cb88ebb6ef28076001907e30776bbf78995a1f422810f841b0cc9ac9c56857507fd4fcdd230766a669fbe767bea25067b86cefb10ff5393eb3
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,18 @@
|
||||||
Name: uARMSolver
|
Name: uARMSolver
|
||||||
Version: 0.2.1
|
Version: 0.4.0
|
||||||
Release: 1%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: Universal Association Rule Mining Solver
|
Summary: Universal Association Rule Mining Solver
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/firefly-cpp/uARMSolver
|
URL: https://github.com/firefly-cpp/uARMSolver
|
||||||
Source0: https://github.com/firefly-cpp/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/firefly-cpp/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
|
|
||||||
%description
|
%description
|
||||||
uARMSolver allows users to preprocess their data in a transaction database, to
|
uARMSolver allows users to preprocess their data in a transaction database, to
|
||||||
make discretization of data, to search for association rules and to guide a
|
make discretization of data, to search for association rules and to guide a
|
||||||
presentation/visualization of the best rules found using external tools.
|
presentation/visualization of the best rules found using external tools.
|
||||||
Mining the association rules is defined as an optimization and solved using
|
Mining the association rules is defined as an optimization and solved using
|
||||||
the nature-inspired algorithms that can be incorporated easily. Because
|
the nature-inspired algorithms that can be incorporated easily. Because
|
||||||
|
|
@ -31,14 +31,79 @@ external tools.
|
||||||
%install
|
%install
|
||||||
mkdir -p %{buildroot}%{_bindir}
|
mkdir -p %{buildroot}%{_bindir}
|
||||||
install -p -m 0755 ./bin/uARMSolver %{buildroot}/%{_bindir}/%{name}
|
install -p -m 0755 ./bin/uARMSolver %{buildroot}/%{_bindir}/%{name}
|
||||||
|
|
||||||
|
install -D -t '%{buildroot}%{_mandir}/man1' -m 0644 %{name}.1
|
||||||
|
|
||||||
rm -f %{buildroot}%{_infodir}/dir
|
rm -f %{buildroot}%{_infodir}/dir
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_bindir}/uARMSolver
|
%{_bindir}/uARMSolver
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc bin/README.txt
|
%doc bin/README.txt
|
||||||
|
%doc README.md
|
||||||
|
%doc CHANGELOG.md CODE_OF_CONDUCT.md
|
||||||
|
%doc docs/2010.10884.pdf docs/231.pdf
|
||||||
|
%{_mandir}/man1/%{name}.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 7 2026 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.4.0-1
|
||||||
|
- Update to 0.4.0
|
||||||
|
|
||||||
|
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 12 2024 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.3.0-1
|
||||||
|
- Update to 0.3.0
|
||||||
|
|
||||||
|
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.6-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 4 2024 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.6-1
|
||||||
|
- Update to 0.2.6
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Mar 15 2023 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.5-1
|
||||||
|
- Update to 0.2.5
|
||||||
|
|
||||||
|
* Tue Mar 14 2023 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.4-4
|
||||||
|
- Fix compiler errors | apply patch
|
||||||
|
|
||||||
|
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Mar 20 2022 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.4-1
|
||||||
|
- New upstream's release
|
||||||
|
|
||||||
|
* Sun Jan 23 2022 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.3-1
|
||||||
|
- Add docs
|
||||||
|
|
||||||
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Nov 17 2021 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.2-1
|
||||||
|
- New upstream's release
|
||||||
|
- Add man page
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
* Sun Feb 14 2021 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.1-1
|
* Sun Feb 14 2021 Iztok Fister Jr. <iztokf AT fedoraproject DOT org> - 0.2.1-1
|
||||||
- New version - 0.2.1
|
- New version - 0.2.1
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue