Skip to content

Commit 682508b

Browse files
committed
Debian packaging
1 parent 4945ee6 commit 682508b

File tree

9 files changed

+113
-0
lines changed

9 files changed

+113
-0
lines changed

debian/changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
news (0.1) precise; urgency=low
2+
3+
* Initial Release.
4+
5+
-- Allen B <[email protected]> Tue, 9 Sept 2017 04:53:39 -0500

debian/changelog~

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
cmake-hello-world (0.1) precise; urgency=low
2+
3+
* Initial Release.
4+
5+
-- Cody Garver <[email protected]> Tue, 9 Apr 2013 04:53:39 -0500

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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Source: news
2+
Section: x11
3+
Priority: extra
4+
Maintainer: Allen B <[email protected]>
5+
Build-Depends: cmake (>= 2.8),
6+
debhelper (>= 9),
7+
libgtk-3-dev,
8+
valac (>= 0.16),
9+
cmake-elementary,
10+
debhelper (>= 8.0.0)
11+
Standards-Version: 3.9.3
12+
13+
Package: news
14+
Architecture: any
15+
Depends: ${misc:Depends}, ${shlibs:Depends}
16+
Description: News
17+
This is a news viewer written in Vala using CMake build system.

debian/control~

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Source: cmake-hello-world
2+
Section: x11
3+
Priority: extra
4+
Maintainer: Cody Garver <[email protected]>
5+
Build-Depends: cmake (>= 2.8),
6+
debhelper (>= 9),
7+
libgtk-3-dev,
8+
valac (>= 0.16)
9+
Standards-Version: 3.9.3
10+
11+
Package: cmake-hello-world
12+
Architecture: any
13+
Depends: ${misc:Depends}, ${shlibs:Depends}
14+
Description: Hey young world
15+
This is a Hello World written in Vala using CMake build system.

debian/copyright

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Format: http://dep.debian.net/deps/dep5
2+
Upstream-Name: news
3+
Source: https://github.com/allen-b1/news
4+
5+
Files: *
6+
Copyright: 2017 Allen B
7+
License: MIT
8+
9+
License: MIT
10+
MIT License
11+
.
12+
Copyright (c) 2017 Allen B
13+
.
14+
Permission is hereby granted, free of charge, to any person obtaining a copy
15+
of this software and associated documentation files (the "Software"), to deal
16+
in the Software without restriction, including without limitation the rights
17+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18+
copies of the Software, and to permit persons to whom the Software is
19+
furnished to do so, subject to the following conditions:
20+
.
21+
The above copyright notice and this permission notice shall be included in all
22+
copies or substantial portions of the Software.
23+
.
24+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30+
SOFTWARE.

debian/copyright~

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Format: http://dep.debian.net/deps/dep5
2+
Upstream-Name: cmake-hello-world
3+
Source: https://elementaryos.org
4+
5+
Files: *
6+
Copyright: 2013 elementary LLC.
7+
License: GPL-3.0+
8+
9+
License: GPL-3.0+
10+
This program is free software: you can redistribute it and/or modify
11+
it under the terms of the GNU General Public License as published by
12+
the Free Software Foundation, either version 3 of the License, or
13+
(at your option) any later version.
14+
.
15+
This package is distributed in the hope that it will be useful,
16+
but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
GNU General Public License for more details.
19+
.
20+
You should have received a copy of the GNU General Public License
21+
along with this program. If not, see <http://www.gnu.org/licenses/>.
22+
.
23+
On Debian systems, the complete text of the GNU General
24+
Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
25+

debian/rules

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/make -f
2+
# -*- makefile -*-
3+
# Sample debian/rules that uses debhelper.
4+
# This file was originally written by Joey Hess and Craig Small.
5+
# As a special exception, when this file is copied by dh-make into a
6+
# dh-make output file, you may use that output file without restriction.
7+
# This special exception was added by Craig Small in version 0.37 of dh-make.
8+
9+
# Uncomment this to turn on verbose mode.
10+
#export DH_VERBOSE=1
11+
12+
%:
13+
dh $@
14+

debian/source/format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0 (native)

0 commit comments

Comments
 (0)