[pkg-d-commits] [vibe.d] 05/06: Create .install files for Vibe modules

Matthias Klumpp mak at moszumanska.debian.org
Thu Dec 22 18:59:48 UTC 2016


This is an automated email from the git hooks/post-receive script.

mak pushed a commit to branch master
in repository vibe.d.

commit 24fecaee62180d8aa4251113634a6a1a79c30a68
Author: Matthias Klumpp <matthias at tenstral.net>
Date:   Tue Dec 20 20:59:26 2016 +0100

    Create .install files for Vibe modules
---
 debian/control                  | 123 ++++++++++++++++++++++++++++++++++++++++
 debian/libvibe-core-dev.install |   3 +
 debian/libvibe-core.install     |   1 +
 debian/libvibe-data.install     |   1 +
 debian/libvibe-diet.install     |   1 +
 debian/libvibe-http.install     |   1 +
 debian/libvibe-mail.install     |   1 +
 debian/libvibe-mongodb.install  |   1 +
 debian/libvibe-redis.install    |   1 +
 debian/libvibe-utils.install    |   1 +
 debian/libvibe-web.install      |   1 +
 11 files changed, 135 insertions(+)

diff --git a/debian/control b/debian/control
index baedcb5..89e2099 100644
--- a/debian/control
+++ b/debian/control
@@ -29,3 +29,126 @@ Description: High-performance asynchronous I/O web application toolkit
  development environment.
  .
  This package is a metapackage pulling in all vibe.d modules.
+
+Package: libvibe-core
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Core
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains basic I/O and concurrency primitives, as well
+ as low level utility functions of Vibe.
+
+Package: libvibe-core-dev
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Core (development)
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains development files for basic I/O and concurrency
+ primitives, as well as low level utility functions of Vibe.
+
+Package: libvibe-utils
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Utils
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains low level utility functionality of Vibe.
+
+Package: libvibe-data
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Data
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains data format and serialization support for Vibe.
+
+Package: libvibe-http
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - HTTP
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains the Vibe HTTP server and client implementation
+ and higher level HTTP functionality.
+
+Package: libvibe-mail
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Mail
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains the Vibe SMTP client support.
+
+Package: libvibe-diet
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Diet
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains the Diet HTML template system.
+
+Package: libvibe-mongodb
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - MongoDB
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains the MongoDB database client implementation.
+
+Package: libvibe-redis
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Redis
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains the Redis database client implementation.
+
+Package: libvibe-web
+Architecture: any
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: High-performance web application toolkit - Redis
+ vibe.d is a high-performance asynchronous I/O, concurrency and web
+ application toolkit written in D. It already contains many supplemental
+ features such as database support to be able to offer a complete
+ development environment.
+ .
+ This package contains the high level web and REST service framework.
diff --git a/debian/libvibe-core-dev.install b/debian/libvibe-core-dev.install
new file mode 100644
index 0000000..fcc3efd
--- /dev/null
+++ b/debian/libvibe-core-dev.install
@@ -0,0 +1,3 @@
+usr/lib/*/libvibe-core.so.
+usr/lib/*/pkgconfig/vibe-core.pc
+usr/include/d/vibe/core/*
diff --git a/debian/libvibe-core.install b/debian/libvibe-core.install
new file mode 100644
index 0000000..d7ab227
--- /dev/null
+++ b/debian/libvibe-core.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-core.so.*
diff --git a/debian/libvibe-data.install b/debian/libvibe-data.install
new file mode 100644
index 0000000..ea33cdc
--- /dev/null
+++ b/debian/libvibe-data.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-data.so.*
diff --git a/debian/libvibe-diet.install b/debian/libvibe-diet.install
new file mode 100644
index 0000000..c891561
--- /dev/null
+++ b/debian/libvibe-diet.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-diet.so.*
diff --git a/debian/libvibe-http.install b/debian/libvibe-http.install
new file mode 100644
index 0000000..2e9a736
--- /dev/null
+++ b/debian/libvibe-http.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-http.so.*
diff --git a/debian/libvibe-mail.install b/debian/libvibe-mail.install
new file mode 100644
index 0000000..c1656c3
--- /dev/null
+++ b/debian/libvibe-mail.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-mail.so.*
diff --git a/debian/libvibe-mongodb.install b/debian/libvibe-mongodb.install
new file mode 100644
index 0000000..3fe49f2
--- /dev/null
+++ b/debian/libvibe-mongodb.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-mongodb.so.*
diff --git a/debian/libvibe-redis.install b/debian/libvibe-redis.install
new file mode 100644
index 0000000..b905286
--- /dev/null
+++ b/debian/libvibe-redis.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-redis.so.*
diff --git a/debian/libvibe-utils.install b/debian/libvibe-utils.install
new file mode 100644
index 0000000..49d0bd1
--- /dev/null
+++ b/debian/libvibe-utils.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-utils.so.*
diff --git a/debian/libvibe-web.install b/debian/libvibe-web.install
new file mode 100644
index 0000000..7a545bf
--- /dev/null
+++ b/debian/libvibe-web.install
@@ -0,0 +1 @@
+usr/lib/*/libvibe-web.so.*

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-d/vibe.d.git



More information about the pkg-d-commits mailing list