Skip to content

Commit 70cbabe

Browse files
authored
Merge pull request #351 from tetengo/happy_new_year
Update the copyright year to 2026 #350
2 parents 5de4a49 + 9d4bdef commit 70cbabe

399 files changed

Lines changed: 406 additions & 406 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/linux-clang.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GitHub Actions Workflow
22
# Build with Clang on Linux
3-
# Copyright 2019-2025 kaoru https://www.tetengo.org/
3+
# Copyright 2019-2026 kaoru https://www.tetengo.org/
44

55
name: Linux - Clang
66

@@ -93,7 +93,7 @@ jobs:
9393
#tar -xf boost_${{ env.BOOST_VER }}.tar.bz2
9494
cd boost_${{ env.BOOST_VER }}
9595
./bootstrap.sh --with-toolset=${{ env.BOOST_BOOTSTRAP_TOOLSET }}
96-
(./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static || :)
96+
(./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi || :)
9797
touch .build_finished
9898
fi
9999
@@ -187,7 +187,7 @@ jobs:
187187
shell: bash
188188
run: |
189189
cd .boost_build/boost_${{ env.BOOST_VER }}
190-
(sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static install --prefix=/usr/local || :)
190+
(sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi install --prefix=/usr/local || :)
191191
192192
- name: Configure
193193
shell: bash
@@ -239,7 +239,7 @@ jobs:
239239
shell: bash
240240
run: |
241241
cd .boost_build/boost_${{ env.BOOST_VER }}
242-
(sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static install --prefix=/usr/local || :)
242+
(sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi install --prefix=/usr/local || :)
243243
244244
- name: Configure
245245
shell: bash

.github/workflows/linux-gcc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GitHub Actions Workflow
22
# Build with GCC on Linux
3-
# Copyright 2019-2025 kaoru https://www.tetengo.org/
3+
# Copyright 2019-2026 kaoru https://www.tetengo.org/
44

55
name: Linux - GCC
66

@@ -54,7 +54,7 @@ jobs:
5454
#tar -xf boost_${{ env.BOOST_VER }}.tar.bz2
5555
cd boost_${{ env.BOOST_VER }}
5656
./bootstrap.sh --with-toolset=${{ env.BOOST_BOOTSTRAP_TOOLSET }}
57-
(./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static || :)
57+
(./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi || :)
5858
touch .build_finished
5959
fi
6060
@@ -87,7 +87,7 @@ jobs:
8787
shell: bash
8888
run: |
8989
cd .boost_build/boost_${{ env.BOOST_VER }}
90-
(sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static install --prefix=/usr/local || :)
90+
(sudo ./b2 -j ${{ env.CONCURRENT_BUILD }} toolset=${{ env.BOOST_TOOLSET }} variant=release link=static --without-mpi install --prefix=/usr/local || :)
9191
9292
- name: Configure
9393
shell: bash

.github/workflows/windows-visualcpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GitHub Actions Workflow
22
# Build with Visual C++ on Windows
3-
# Copyright 2019-2025 kaoru https://www.tetengo.org/
3+
# Copyright 2019-2026 kaoru https://www.tetengo.org/
44

55
name: Windows - Visual C++
66

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (C) 2019-2025 kaoru https://www.tetengo.org/
1+
Copyright (C) 2019-2026 kaoru https://www.tetengo.org/

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2019-2025 kaoru https://www.tetengo.org/
1+
Copyright (C) 2019-2026 kaoru https://www.tetengo.org/
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Automake Settings
2-
# Copyright (C) 2019-2025 kaoru https://www.tetengo.org/
2+
# Copyright (C) 2019-2026 kaoru https://www.tetengo.org/
33

44
ACLOCAL_AMFLAGS = -I m4
55

README.md

Lines changed: 1 addition & 1 deletion

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Bootstrap Script
3-
# Copyright (C) 2019-2025 kaoru https://www.tetengo.org/
3+
# Copyright (C) 2019-2026 kaoru https://www.tetengo.org/
44

55
aclocal -I m4 && \
66
autoheader && \

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Autoconf Settings
2-
# Copyright (C) 2019-2025 kaoru https://www.tetengo.org/
2+
# Copyright (C) 2019-2026 kaoru https://www.tetengo.org/
33

44
#### General ####
55
AC_PREREQ([2.69])

docsrc/0namespace.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*! \file
22
\brief Document for Doxygen.
33

4-
Copyright (C) 2019-2025 kaoru https://www.tetengo.org/
4+
Copyright (C) 2019-2026 kaoru https://www.tetengo.org/
55
*/
66

77
/*! \namespace tetengo

0 commit comments

Comments
 (0)