Skip to content

Commit

Permalink
First version of open sorce on Github
Browse files Browse the repository at this point in the history
  • Loading branch information
Takeshi Nakatani committed Dec 9, 2016
0 parents commit 86d72e8
Show file tree
Hide file tree
Showing 62 changed files with 9,731 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#### Additional Information
(The following information is very important in order to help us to help you. Omission of the following details may delay your support request or receive no attention at all.)

- Version of K2HTPDTOR being used (release tag or commit SHA1)
```
```
- Version of FULLOCK/K2HASH/CHMPX
```
```

- System information (uname -a)
```
```

- Distro (cat /etc/issue)
```
```

#### Details about issue

6 changes: 6 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#### Relevant Issue (if applicable)
(If there are Issues related to this PullRequest, please list it.)

#### Details
(Please describe the details of PullRequest.)

139 changes: 139 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
#
# k2htpdtor for K2HASH TRANSACTION PLUGIN.
#
# Copyright 2015 Yahoo! JAPAN corporation.
#
# K2HASH TRANSACTION PLUGIN is programable I/F for processing
# transaction data from modifying K2HASH data.
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.
#
# AUTHOR: Takeshi Nakatani
# CREATE: Thu Feb 26 2015
# REVISION:
#

#
# Compiled Object files
#
*.slo
*.lo
*.o
*.Po
*.Plo

#
# Precompiled Headers
#
*.gch
*.pch

#
# Compiled Dynamic libraries
#
*.so
*.so.*
*.dylib
*.dll

#
# Fortran module files
#
*.mod

#
# Compiled Static libraries
#
*.lai
*.la
*.a
*.lib

#
# Executables
#
*.exe
*.out
*.app

#
# autotools
#
aclocal.m4
autom4te.cache
autoscan.log
config.guess
config.h
config.h.in
config.h.in~
config.log
config.status
config.sub
configure
configure.scan
depcomp
install-sh
libtool
ltmain.sh
m4
m4/*
missing
stamp-h1

#
# automakes
#
Makefile.in
*/Makefile.in


#
# archive files and backups
#
*.tgz
*.tar.gz
*.rpm
*.swp

#
# object directories
#
.deps
.libs
*/.deps
*/.deps/*
*/.libs
*/.libs/*

#
# other files
#
compile
compile/*
test-driver
test-driver/*

#
# Other built objects
#
*.pc
Makefile
*/Makefile

#
# project custom
#
RELEASE_VERSION
lib/k2htpdtorversion.cc
src/k2htpdtorsvrversion.cc
*.k2h
src/k2htpdtorsvr
tests/k2htpdtorserver
tests/k2htpdtorclient

#
# VIM modelines
#
# vim:set ts=4 fenc=utf-8:
#
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "fullock"]
path = fullock
url = https://github.com/yahoojapan/fullock.git
[submodule "k2hash"]
path = k2hash
url = https://github.com/yahoojapan/k2hash.git
[submodule "chmpx"]
path = chmpx
url = https://github.com/yahoojapan/chmpx.git
64 changes: 64 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
#
# FULLOCK - Fast User Level LOCK library by Yahoo! JAPAN
#
# Copyright 2015 Yahoo! JAPAN corporation.
#
# FULLOCK is fast locking library on user level by Yahoo! JAPAN.
# FULLOCK is following specifications.
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.
#
# AUTHOR: Takeshi Nakatani
# CREATE: Wed 7 Dec 2016
# REVISION:
#

language: cpp

sudo: required

dist: trusty

cache: apt

git:
submodules: false

before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq git autoconf autotools-dev gcc g++ make gdb dh-make fakeroot dpkg-dev devscripts libtool pkg-config libssl-dev libyaml-dev
- git submodule update --init --recursive
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj
- cd fullock
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj2
- cd k2hash
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone --recursive git://github.com/nakatani-yj/nakatani_yj_test_pj3
- cd chmpx
- ./autogen.sh
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..

script:
- ./autogen.sh
- ./configure --prefix=/usr
- make
- "cd tests && make check-TESTS"

#
# VIM modelines
#
# vim:set ts=4 fenc=utf-8:
#
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
1. Takeshi Nakatani <[email protected]>

Wrote from template the initial version.
21 changes: 21 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2015 Yahoo Japan Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
k2htpdtor (1.0.19) trusty; urgency=low

* First version of open source on Github

-- Takeshi Nakatani <[email protected]> Wed, 07 Dec 2016 19:10:45 +0900

Loading

0 comments on commit 86d72e8

Please sign in to comment.