Skip to content

Commit

Permalink
debianize
Browse files Browse the repository at this point in the history
  • Loading branch information
dankamongmen committed Aug 10, 2019
1 parent 06a49b5 commit 2a2656c
Show file tree
Hide file tree
Showing 11 changed files with 98 additions and 0 deletions.
5 changes: 5 additions & 0 deletions debian/changelog
@@ -0,0 +1,5 @@
libtorque (1.0.0) unstable; urgency=medium

* Initial Release.

-- nick black <dankamongmen@gmail.com> Sat, 10 Aug 2019 18:38:48 -0400
1 change: 1 addition & 0 deletions debian/compat
@@ -0,0 +1 @@
11
24 changes: 24 additions & 0 deletions debian/control
@@ -0,0 +1,24 @@
Source: libtorque
Priority: optional
Maintainer: nick black <dankamongmen@gmail.com>
Build-Depends: debhelper (>= 11)
Standards-Version: 4.1.3
Section: libs
Homepage: https://nick-black.com/dankwiki/index.php/Libtorque
Vcs-Browser: https://github.com/dankamongmen/libtorque
Vcs-Git: https://github.com/dankamongmen/libtorque.git

Package: libtorque-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Depends: libtorque1 (= ${binary:Version}), ${misc:Depends}
Description: Event-driven continuations for manycore NUMA (development)
Continuation-based UNIX I/O for manycore NUMA (development).

Package: libtorque1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Event-driven continuations for manycore NUMA
Continuation-based UNIX I/O for manycore NUMA.
33 changes: 33 additions & 0 deletions debian/copyright
@@ -0,0 +1,33 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: libtorque
Source: <url://example.com>

Files: *
Copyright: <years> <put author's name and email here>
<years> <likewise for another author>
License: Apache-2.0

Files: debian/*
Copyright: 2019 nick black <dankamongmen@gmail.com>
License: Apache-2.0

License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
https://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the complete text of the Apache version 2.0 license
can be found in "/usr/share/common-licenses/Apache-2.0".

# Please also look if there are files or directories which have a
# different copyright/license attached and list them here.
# Please avoid picking licenses with terms that are more restrictive than the
# packaged work, as it may make Debian's contributions unacceptable upstream.
2 changes: 2 additions & 0 deletions debian/libtorque-dev.dirs
@@ -0,0 +1,2 @@
usr/lib
usr/include
4 changes: 4 additions & 0 deletions debian/libtorque-dev.install
@@ -0,0 +1,4 @@
usr/include/*
usr/lib/*/lib*.so
usr/lib/*/pkgconfig/*
usr/share/pkgconfig/*
1 change: 1 addition & 0 deletions debian/libtorque1.dirs
@@ -0,0 +1 @@
usr/lib
1 change: 1 addition & 0 deletions debian/libtorque1.install
@@ -0,0 +1 @@
usr/lib/*/lib*.so.*
25 changes: 25 additions & 0 deletions debian/rules
@@ -0,0 +1,25 @@
#!/usr/bin/make -f
# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1


# 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


%:
dh $@


# dh_make generated override targets
# This is example for Cmake (See https://bugs.debian.org/641051 )
#override_dh_auto_configure:
# dh_auto_configure -- # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)

1 change: 1 addition & 0 deletions debian/shlibs.local
@@ -0,0 +1 @@
liblibtorque 1.0.0 libtorque (>> 1.0.0-0), libtorque (<< 1.0.0-99)
1 change: 1 addition & 0 deletions debian/source/format
@@ -0,0 +1 @@
3.0 (native)

0 comments on commit 2a2656c

Please sign in to comment.