Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
keldonin committed Dec 6, 2018
0 parents commit df9c67f
Show file tree
Hide file tree
Showing 305 changed files with 141,578 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## Compilation artefacts
*.bak
*.o
*.a
*.lo
*.la
*.sed
.deps/
.libs/

## autotools
Makefile
config.log
config.status
config.cache
libtool
autom4te.cache/
.dirstamp
/bin/
/include/stamp-h1

# Directories ending with .ign will be ignored
*.ign/

# Tarballs
*.tar.gz
*.tar
*.tgz

# Solaris distribution files
*.pkg
/pkg/

# emacs backup files
*~
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2017-06-20
### Added
- Initial public release

[1.0.0]: https://github.com/XXXXXX

13 changes: 13 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright (c) 2018 Mastercard

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
20 changes: 20 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Terms of use
Unless specifically stated inside the source file, the following license terms apply:

```
Copyright (c) 2018 Mastercard
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```


57 changes: 57 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Copyright (c) 2018 Mastercard

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

# http://www.apache.org/licenses/LICENSE-2.0

# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

EXTRA_DIST = \
m4/gnulib-cache.m4 \
include/cryptoki \
include/pkcs11lib.h \
with_nss \
with_nfast \
with_beid \
with_softhsm \
with_gemalto \
docs/INSTALL.md \
docs/CONTRIBUTING.md \
docs/MANUAL.md \
README.md \
LICENSE.md \
CHANGELOG.md \
COPYING


SUBDIRS = gl lib src

ACLOCAL_AMFLAGS = -I m4


install-exec-hook:
$(INSTALL) $(srcdir)/with_nss $(srcdir)/with_nfast $(srcdir)/with_beid $(srcdir)/with_softhsm $(DESTDIR)$(bindir)

dist-hook:
-rm -rf $$(find $(distdir)/include -type d -name .svn)

dist-solaris: install
-$(MKDIR_P) pkg
cp COPYING README.md CHANGELOG.md LICENSE.md docs
pkgmk -o -f dist/solaris/pkgproto -p @pkginfo_timestamp@ -r . -d pkg
@echo
pkgtrans pkg ../$(distdir).pkg @pkginfo_pkgname@
rm docs/COPYING docs/README.md docs/CHANGELOG.md docs/LICENSE.md
@echo "----------------------------------"
@echo "package saved under $(distdir).pkg"
@echo


dist-bin:
@$(TAR) -cvf @PACKAGE_TARNAME@-bin-$(target_triplet)-@PACKAGE_VERSION@.tar bin
Loading

0 comments on commit df9c67f

Please sign in to comment.