Codebase list eiciel / 1bffe34
Rebase patches Michael Biebl 2 years ago
3 changed file(s) with 1 addition(s) and 46 deletion(s). Raw diff Collapse all Expand all
+0
-44
debian/patches/Add-missing-files-to-dist-tarball.patch less more
0 From: Michael Biebl <biebl@debian.org>
1 Date: Wed, 26 Aug 2020 18:42:20 +0200
2 Subject: Add missing files to dist tarball
3
4 ---
5 src/eiciel_participant_target.hpp | 29 +++++++++++++++++++++++++++++
6 1 file changed, 29 insertions(+)
7 create mode 100644 src/eiciel_participant_target.hpp
8
9 diff --git a/src/eiciel_participant_target.hpp b/src/eiciel_participant_target.hpp
10 new file mode 100644
11 index 0000000..a8072b6
12 --- /dev/null
13 +++ b/src/eiciel_participant_target.hpp
14 @@ -0,0 +1,29 @@
15 +/*
16 + Eiciel - GNOME editor of ACL file permissions.
17 + Copyright (C) 2019 Roger Ferrer Ibáñez
18 +
19 + This program is free software; you can redistribute it and/or modify
20 + it under the terms of the GNU General Public License as published by
21 + the Free Software Foundation; either version 2 of the License, or
22 + (at your option) any later version.
23 +
24 + This program is distributed in the hope that it will be useful,
25 + but WITHOUT ANY WARRANTY; without even the implied warranty of
26 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 + GNU General Public License for more details.
28 +
29 + You should have received a copy of the GNU General Public License
30 + along with this program; if not, write to the Free Software
31 + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
32 +*/
33 +
34 +#ifndef EICIEL_PARTICIPANT_TARGET_HPP
35 +#define EICIEL_PARTICIPANT_TARGET_HPP
36 +
37 +enum class AddParticipantTarget {
38 + ADD_PARTICIPANT = 0,
39 + ADD_PARTICIPANT_TO_DIRECTORY,
40 + ADD_PARTICIPANT_TO_FILE,
41 +};
42 +
43 +#endif // EICIEL_PARTICIPANT_TARGET_HPP
99 1 file changed, 1 insertion(+), 1 deletion(-)
1010
1111 diff --git a/configure.ac b/configure.ac
12 index f82ceb0..1ebb720 100644
12 index 75a0ac5..01fed6d 100644
1313 --- a/configure.ac
1414 +++ b/configure.ac
1515 @@ -108,7 +108,7 @@ fi
00 Don-t-hardcode-pkg-config-in-configure.ac.patch
1 Add-missing-files-to-dist-tarball.patch