Skip to content

Commit 41e209f

Browse files
authored
Merge pull request #44 from ggtakec/release1074
Updated files for release 1.0.74
2 parents babce48 + ccc7da8 commit 41e209f

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

ChangeLog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
chmpx (1.0.74) unstable; urgency=low
2+
3+
* Fixed bugs about reverse peer and etc - #43
4+
* Changed to not check expiration date in merge process - #42
5+
* Fixed code for cppcheck 1.90 - #41
6+
7+
-- Takeshi Nakatani <[email protected]> Fri, 03 Apr 2020 17:54:26 +0900
8+
19
chmpx (1.0.73) unstable; urgency=low
210

311
* Fixed a bug about complete auto merging - #38

buildutils/chmpx.spec.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ License: @PKGLICENSE@
5252
@RPMPKG_GROUP@
5353
URL: https://@GIT_DOMAIN@/@GIT_ORG@/@PACKAGE_NAME@
5454
Source0: https://@GIT_DOMAIN@/@GIT_ORG@/@PACKAGE_NAME@/archive/%{gittag}/%{name}-%{version}.tar.gz
55-
Requires: k2hash%{?_isa} >= 1.0.71, libfullock%{?_isa} >= 1.0.36
56-
BuildRequires: git-core gcc-c++ make libtool k2hash-devel >= 1.0.71, libfullock-devel >= 1.0.36
55+
Requires: k2hash%{?_isa} >= 1.0.74, libfullock%{?_isa} >= 1.0.36
56+
BuildRequires: git-core gcc-c++ make libtool k2hash-devel >= 1.0.74, libfullock-devel >= 1.0.36
5757

5858
%description
5959
@LONGDESC@
@@ -104,7 +104,7 @@ rm -rf %{buildroot}
104104
#
105105
%package devel
106106
Summary: @SHORTDESC@ (development)
107-
Requires: %{name}%{?_isa} = %{version}-%{release}, k2hash-devel%{?_isa} >= 1.0.71, libfullock-devel%{?_isa} >= 1.0.36
107+
Requires: %{name}%{?_isa} = %{version}-%{release}, k2hash-devel%{?_isa} >= 1.0.74, libfullock-devel%{?_isa} >= 1.0.36
108108

109109
%description devel
110110
Development package for building with @PACKAGE_NAME@ shared library.

buildutils/control.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Source: @PACKAGE_NAME@
22
Section: net
33
Priority: optional
44
Maintainer: @DEV_NAME@ <@DEV_EMAIL@>
5-
Build-Depends: @DEBHELPER_DEP@, k2hash-dev (>= 1.0.71), libfullock-dev (>= 1.0.36), libyaml-dev
5+
Build-Depends: @DEBHELPER_DEP@, k2hash-dev (>= 1.0.74), libfullock-dev (>= 1.0.36), libyaml-dev
66
Depends: ${misc:Depends}
77
Standards-Version: 3.9.8
88
Homepage: https://@GIT_DOMAIN@/@GIT_ORG@/@GIT_REPO@
@@ -14,7 +14,7 @@ Section: devel
1414
Architecture: amd64
1515
Conflicts: chmproxy-dev
1616
Replaces: chmproxy-dev
17-
Depends: ${misc:Depends}, @PACKAGE_NAME@ (= ${binary:Version}), k2hash-dev (>= 1.0.71), libfullock-dev (>= 1.0.36), libyaml-dev
17+
Depends: ${misc:Depends}, @PACKAGE_NAME@ (= ${binary:Version}), k2hash-dev (>= 1.0.74), libfullock-dev (>= 1.0.36), libyaml-dev
1818
Description: @SHORTDESC@ (development)
1919
Development package for building with @PACKAGE_NAME@ shared library.
2020
This package has header files and symbols for it.
@@ -24,6 +24,6 @@ Section: net
2424
Architecture: amd64
2525
Conflicts: chmproxy
2626
Replaces: chmproxy
27-
Depends: ${shlibs:Depends}, ${misc:Depends}, k2hash (>= 1.0.71), libfullock (>= 1.0.36)
27+
Depends: ${shlibs:Depends}, ${misc:Depends}, k2hash (>= 1.0.74), libfullock (>= 1.0.36)
2828
Description: @SHORTDESC@
2929
@DEBLONGDESC@

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ AC_ARG_ENABLE(check-depend-libs,
214214
esac]
215215
)
216216
AS_IF([test ${check_depend_libs} = 1], [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)])
217-
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([k2hash], [libk2hash >= 1.0.71], [], [AC_MSG_ERROR(not found k2hash package)])])
217+
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([k2hash], [libk2hash >= 1.0.74], [], [AC_MSG_ERROR(not found k2hash package)])])
218218
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([fullock], [libfullock >= 1.0.36], [], [AC_MSG_ERROR(not found libfullock package)])])
219219

220220
#

0 commit comments

Comments
 (0)