Browse Source

Merge branch 'master' of https://github.com/chybz/jucipp

merge-requests/365/head
eidheim 10 years ago
parent
commit
7d5c02ce12
  1. 3
      .gitignore
  2. 6
      debian/README
  3. 6
      debian/README.Debian
  4. 10
      debian/README.source
  5. 5
      debian/changelog
  6. 1
      debian/compat
  7. 14
      debian/control
  8. 36
      debian/copyright
  9. 1
      debian/docs
  10. 32
      debian/rules

3
.gitignore vendored

@ -10,5 +10,6 @@
!CMakeLists.txt
!config.json
!*.py
!debian/*
build
build

6
debian/README vendored

@ -0,0 +1,6 @@
The Debian Package jucipp
----------------------------
Comments regarding the Package
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200

6
debian/README.Debian vendored

@ -0,0 +1,6 @@
jucipp for Debian
-----------------
<possible notes regarding this package - if none, delete this file>
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200

10
debian/README.source vendored

@ -0,0 +1,10 @@
jucipp for Debian
-----------------
<this file describes information about the source package, see Debian policy
manual section 4.14. You WILL either need to modify or delete this file>
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200

5
debian/changelog vendored

@ -0,0 +1,5 @@
jucipp (1.1.3) unstable; urgency=low
* Initial Release.
-- Ole Christian Eidheim <eidheim@gmail.com> Thu, 28 Apr 2016 15:41:24 +0200

1
debian/compat vendored

@ -0,0 +1 @@
9

14
debian/control vendored

@ -0,0 +1,14 @@
Source: jucipp
Section: unknown
Priority: optional
Maintainer: Ole Christian Eidheim <eidheim@gmail.com>
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
Standards-Version: 3.9.5
Homepage: https://github.com/cppit/jucipp
Package: jucipp
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: a lightweight, cross-platform C++11/14/17 IDE
a lightweight, platform independent C++-IDE with support for C++11, C++14,
and experimental C++17 features depending on libclang version.

36
debian/copyright vendored

@ -0,0 +1,36 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: jucipp
Source: <url://example.com>
Files: *
Copyright: <years> <put author's name and email here>
<years> <likewise for another author>
License: MIT
Files: debian/*
Copyright: 2016 Ole Christian Eidheim <eidheim@gmail.com>
License: MIT
License: MIT
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.
# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.
# Please avoid to pick license terms that are more restrictive than the
# packaged work, as it may make Debian's contributions unacceptable upstream.

1
debian/docs vendored

@ -0,0 +1 @@
README.md

32
debian/rules vendored

@ -0,0 +1,32 @@
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#DH_VERBOSE = 1
# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk
# see FEATURE AREAS in dpkg-buildflags(1)
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# see ENVIRONMENT in dpkg-buildflags(1)
# package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
# package maintainers to append LDFLAGS
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
# main packaging script based on dh7 syntax
%:
dh $@ --parallel
# debmake generated override targets
# This is example for Cmake (See http://bugs.debian.org/641051 )
#override_dh_auto_configure:
# dh_auto_configure -- \
# -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
Loading…
Cancel
Save