-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update to official v1.3.1
- Loading branch information
Showing
27 changed files
with
10,059 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
m4_define([cryptopANT_major_version], [1]) | ||
m4_define([cryptopANT_minor_version], [3]) | ||
m4_define([cryptopANT_micro_version], [0]) | ||
m4_define([cryptopANT_micro_version], [1]) | ||
m4_define([cryptopANT_version], [cryptopANT_major_version.cryptopANT_minor_version.cryptopANT_micro_version]) | ||
|
||
#format: current:revision:age | ||
#If the library source code has changed at all since the last update, then increment revision (‘c:r:a’ becomes ‘c:r+1:a’). | ||
#If the library source code has changed at all since the last update, then increment revision (‘c:r:a’ becomes ‘c:r+1:a’). | ||
#If any interfaces have been added, removed, or changed since the last update, increment current, and set revision to 0. | ||
#If any interfaces have been added since the last public release, then increment age. | ||
#If any interfaces have been removed or changed since the last public release, then set age to 0. | ||
#If any interfaces have been removed or changed since the last public release, then set age to 0. | ||
#see also https://autotools.io/libtool/version.html | ||
m4_define([cryptopANT_library_version], ["1:3:0"]) | ||
m4_define([cryptopANT_library_version], ["1:4:0"]) | ||
|
||
AC_INIT([cryptopANT], [cryptopANT_version], [[email protected]], [cryptopANT]) | ||
dnl m4_pattern_allow(AC_CONFIG_MACRO_DIRS) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ License: GPL | |
URL: http://ant.isi.edu/software/cryptopANT/index.html | ||
Name: %{name} | ||
Version: %{version} | ||
Release: 1%{?dist} | ||
Release: 1 | ||
Source: %{name}-%{version}.tar.gz | ||
Packager: [email protected] | ||
Prefix: /usr | ||
|
@@ -46,10 +46,12 @@ rm -rf $RPM_BUILD_ROOT | |
%files | ||
%defattr(-,root,root,-) | ||
%{_includedir}/* | ||
%{_mandir}/man3/* | ||
%{_libdir}/*.so | ||
%{_libdir}/*.so.* | ||
%{_libdir}/*.a | ||
%exclude %{_libdir}/*.la | ||
%{_bindir}/scramble_ips | ||
%{_mandir}/man3/* | ||
|
||
%changelog | ||
* Mon Mar 25 2024 Yuri Pradkin <[email protected]> - 1.4.1 | ||
- Fixed blowfish regression introduced in 1.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
cryptopant (1.3.1-1~unstable+1) unstable; urgency=low | ||
|
||
* Update to v1.3.1 | ||
|
||
-- Jerry Lundström <[email protected]> Thu, 11 Apr 2024 15:59:32 +0200 | ||
|
||
cryptopant (1.3.0-1~unstable+1) unstable; urgency=low | ||
|
||
* Update to v1.3.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%define sover 1 | ||
%define libname libcryptopant%{sover} | ||
Name: cryptopant | ||
Version: 1.3.0 | ||
Version: 1.3.1 | ||
Release: 1%{?dist} | ||
Summary: IP address anonymization library | ||
Group: Development/Libraries/C and C++ | ||
|
@@ -56,6 +56,10 @@ sh autogen.sh | |
make %{?_smp_mflags} | ||
|
||
|
||
%check | ||
make test | ||
|
||
|
||
%install | ||
rm -rf $RPM_BUILD_ROOT | ||
make install DESTDIR=$RPM_BUILD_ROOT | ||
|
@@ -88,6 +92,8 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Thu Apr 11 2024 Jerry Lundström <[email protected]> 1.3.1-1 | ||
- Update to v1.3.1 | ||
* Wed Mar 20 2024 Jerry Lundström <[email protected]> 1.3.0-1 | ||
- Update to v1.3.0 | ||
* Tue Oct 01 2019 Jerry Lundström <[email protected]> 1.2.1-1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.