-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from ggtakec/master
Updated files for release 1.0.61
- Loading branch information
Showing
127 changed files
with
5,738 additions
and
1,363 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 was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# K2HASH | ||
# | ||
# Utility tools for building configure/packages by AntPickax | ||
# | ||
# Copyright 2018 Yahoo Japan Corporation. | ||
# | ||
# AntPickax provides utility tools for supporting autotools | ||
# builds. | ||
# | ||
# These tools retrieve the necessary information from the | ||
# repository and appropriately set the setting values of | ||
# configure, Makefile, spec,etc file and so on. | ||
# These tools were recreated to reduce the number of fixes and | ||
# reduce the workload of developers when there is a change in | ||
# the project configuration. | ||
# | ||
# For the full copyright and license information, please view | ||
# the license file that was distributed with this source code. | ||
# | ||
# AUTHOR: Takeshi Nakatani | ||
# CREATE: Fri, Apr 13 2018 | ||
# REVISION: | ||
# | ||
|
||
EXTRA_DIST =make_variables.sh \ | ||
make_release_version_file.sh \ | ||
make_commit_hash.sh \ | ||
make_commit_hash_source.sh \ | ||
make_rpm_changelog.sh \ | ||
make_description.sh \ | ||
debian_build.sh | ||
|
||
# | ||
# VIM modelines | ||
# | ||
# vim:set ts=4 fenc=utf-8: | ||
# |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Source: @PACKAGE_NAME@ | ||
Section: database | ||
Priority: extra | ||
Maintainer: @DEV_NAME@ <@DEV_EMAIL@> | ||
Build-Depends: debhelper (>= 9), autotools-dev, libfullock-dev (>= 1.0.28) | ||
Standards-Version: 3.9.5 | ||
Homepage: https://@GIT_DOMAIN@/@GIT_ORG@/@GIT_REPO@ | ||
Vcs-Git: git://@GIT_DOMAIN@/@GIT_ORG@/@GIT_REPO@.git | ||
Vcs-Browser: https://@GIT_DOMAIN@/@GIT_ORG@/@GIT_REPO@ | ||
|
||
Package: @PACKAGE_NAME@-dev | ||
Section: devel | ||
Architecture: amd64 | ||
Depends: @PACKAGE_NAME@ (= ${binary:Version}), libfullock-dev (>= 1.0.28) | ||
Description: @SHORTDESC@ (development) | ||
Development package for building with @PACKAGE_NAME@ shared library. | ||
This package has header files and symbols for it. | ||
|
||
Package: @PACKAGE_NAME@ | ||
Section: database | ||
Architecture: amd64 | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, libfullock (>= 1.0.28) | ||
Description: @SHORTDESC@ | ||
@DEBLONGDESC@ |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: @PACKAGE_NAME@ | ||
Source: https://@GIT_DOMAIN@/@GIT_ORG@/@GIT_REPO@ | ||
|
||
Files: * | ||
Copyright: 2013 Yahoo Japan Corporation | ||
License: @PKGLICENSE@ | ||
@DEBCOPYING@ |
Oops, something went wrong.