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

Updated versions of dependent packages #59

Merged
merged 1 commit into from
May 12, 2023
Merged
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
Updated versions of dependent packages
  • Loading branch information
Takeshi Nakatani committed May 12, 2023
commit 5c64253855e3d9e55aa4f62d4488d81410e3d0b4
4 changes: 2 additions & 2 deletions buildutils/control.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Source: @PACKAGE_NAME@
Section: libs
Priority: optional
Maintainer: @DEV_NAME@ <@DEV_EMAIL@>
Build-Depends: @DEBHELPER_DEP@, k2hash-dev (>= 1.0.71), libfullock-dev (>= 1.0.36), chmpx-dev (>= 1.0.72), libyaml-dev, gnutls-dev
Build-Depends: @DEBHELPER_DEP@, k2hash-dev (>= 1.0.87), libfullock-dev (>= 1.0.50), chmpx-dev (>= 1.0.99), libyaml-dev, gnutls-dev
Depends: ${misc:Depends}
Standards-Version: 3.9.8
Homepage: https://@GIT_DOMAIN@/@GIT_ORG@/@GIT_REPO@
Expand All @@ -12,6 +12,6 @@ Vcs-Browser: https://@GIT_DOMAIN@/@GIT_ORG@/@GIT_REPO@
Package: @PACKAGE_NAME@
Section: libs
Architecture: amd64
Depends: ${shlibs:Depends}, ${misc:Depends}, k2hash (>= 1.0.71), libfullock (>= 1.0.36), chmpx (>= 1.0.72)
Depends: ${shlibs:Depends}, ${misc:Depends}, k2hash (>= 1.0.87), libfullock (>= 1.0.50), chmpx (>= 1.0.99)
Description: @SHORTDESC@
@DEBLONGDESC@
4 changes: 2 additions & 2 deletions buildutils/k2htpdtor.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ License: @PKGLICENSE@
@RPMPKG_GROUP@
URL: https://@GIT_DOMAIN@/@GIT_ORG@/@PACKAGE_NAME@
Source0: https://@GIT_DOMAIN@/@GIT_ORG@/@PACKAGE_NAME@/archive/%{gittag}/%{name}-%{version}.tar.gz
Requires: libfullock%{?_isa} >= 1.0.36, k2hash%{?_isa} >= 1.0.71, chmpx%{?_isa} >= 1.0.72
BuildRequires: git-core gcc-c++ make libtool libfullock-devel >= 1.0.36, k2hash-devel >= 1.0.71, chmpx-devel >= 1.0.72, libyaml-devel, nss-devel
Requires: libfullock%{?_isa} >= 1.0.50, k2hash%{?_isa} >= 1.0.87, chmpx%{?_isa} >= 1.0.99
BuildRequires: git-core gcc-c++ make libtool libfullock-devel >= 1.0.50, k2hash-devel >= 1.0.87, chmpx-devel >= 1.0.99, libyaml-devel, nss-devel

%description
@LONGDESC@
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ AC_ARG_ENABLE(check-depend-libs,
esac]
)
AS_IF([test ${check_depend_libs} = 1], [AC_MSG_RESULT(yes)], [AC_MSG_RESULT(no)])
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([fullock], [libfullock >= 1.0.36], [], [AC_MSG_ERROR(not found libfullock package)])])
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([k2hash], [libk2hash >= 1.0.71], [], [AC_MSG_ERROR(not found k2hash package)])])
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([chmpx], [libchmpx >= 1.0.72], [], [AC_MSG_ERROR(not found chmpx package)])])
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([fullock], [libfullock >= 1.0.50], [], [AC_MSG_ERROR(not found libfullock package)])])
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([k2hash], [libk2hash >= 1.0.87], [], [AC_MSG_ERROR(not found k2hash package)])])
AS_IF([test ${check_depend_libs} = 1], [PKG_CHECK_MODULES([chmpx], [libchmpx >= 1.0.99], [], [AC_MSG_ERROR(not found chmpx package)])])

#
# CFLAGS/CXXFLAGS
Expand Down