Skip to content
This repository was archived by the owner on Jun 25, 2020. It is now read-only.

Commit 7d5c02c

Browse files
committed
Merge branch 'master' of https://github.com/chybz/jucipp
2 parents 46dee39 + bebab5d commit 7d5c02c

File tree

10 files changed

+113
-1
lines changed

10 files changed

+113
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
!CMakeLists.txt
1111
!config.json
1212
!*.py
13+
!debian/*
1314

14-
build
15+
build

debian/README

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
The Debian Package jucipp
2+
----------------------------
3+
4+
Comments regarding the Package
5+
6+
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200

debian/README.Debian

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
jucipp for Debian
2+
-----------------
3+
4+
<possible notes regarding this package - if none, delete this file>
5+
6+
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200

debian/README.source

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
jucipp for Debian
2+
-----------------
3+
4+
<this file describes information about the source package, see Debian policy
5+
manual section 4.14. You WILL either need to modify or delete this file>
6+
7+
8+
9+
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200
10+

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
jucipp (1.1.3) unstable; urgency=low
2+
3+
* Initial Release.
4+
5+
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200

debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

debian/control

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Source: jucipp
2+
Section: unknown
3+
Priority: optional
4+
Maintainer: Ole Christian Eidheim <eidheim@gmail.com>
5+
Build-Depends: debhelper (>= 9), cmake, make, g++, libclang-dev, liblldb-3.5-dev, clang-format-3.5, pkg-config, libboost-system-dev, libboost-thread-dev, libboost-filesystem-dev, libboost-log-dev, libboost-regex-dev, libgtksourceviewmm-3.0-dev, aspell-en, libaspell-dev
6+
Standards-Version: 3.9.5
7+
Homepage: https://github.com/cppit/jucipp
8+
9+
Package: jucipp
10+
Architecture: any
11+
Depends: ${shlibs:Depends}, ${misc:Depends}
12+
Description: a lightweight, cross-platform C++11/14/17 IDE
13+
a lightweight, platform independent C++-IDE with support for C++11, C++14,
14+
and experimental C++17 features depending on libclang version.

debian/copyright

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: jucipp
3+
Source: <url://example.com>
4+
5+
Files: *
6+
Copyright: <years> <put author's name and email here>
7+
<years> <likewise for another author>
8+
License: MIT
9+
10+
Files: debian/*
11+
Copyright: 2016 Ole Christian Eidheim <eidheim@gmail.com>
12+
License: MIT
13+
14+
License: MIT
15+
Permission is hereby granted, free of charge, to any person obtaining a
16+
copy of this software and associated documentation files (the "Software"),
17+
to deal in the Software without restriction, including without limitation
18+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
19+
and/or sell copies of the Software, and to permit persons to whom the
20+
Software is furnished to do so, subject to the following conditions:
21+
.
22+
The above copyright notice and this permission notice shall be included
23+
in all copies or substantial portions of the Software.
24+
.
25+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
28+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
29+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
30+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
31+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32+
33+
# Please also look if there are files or directories which have a
34+
# different copyright/license attached and list them here.
35+
# Please avoid to pick license terms that are more restrictive than the
36+
# packaged work, as it may make Debian's contributions unacceptable upstream.

debian/docs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
README.md

debian/rules

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/make -f
2+
# See debhelper(7) (uncomment to enable)
3+
# output every command that modifies files on the build system.
4+
#DH_VERBOSE = 1
5+
6+
# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
7+
DPKG_EXPORT_BUILDFLAGS = 1
8+
include /usr/share/dpkg/default.mk
9+
10+
# see FEATURE AREAS in dpkg-buildflags(1)
11+
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
12+
13+
# see ENVIRONMENT in dpkg-buildflags(1)
14+
# package maintainers to append CFLAGS
15+
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
16+
# package maintainers to append LDFLAGS
17+
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
18+
19+
20+
# main packaging script based on dh7 syntax
21+
%:
22+
dh $@ --parallel
23+
24+
# debmake generated override targets
25+
# This is example for Cmake (See http://bugs.debian.org/641051 )
26+
#override_dh_auto_configure:
27+
# dh_auto_configure -- \
28+
# -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
29+
30+
31+
32+

0 commit comments

Comments
 (0)