aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-03-07 19:32:18 -0800
committerJakob Odersky <jakob@odersky.com>2016-03-07 19:59:24 -0800
commit1de95454d5fdc3e0cc672708fed55626082615e5 (patch)
tree8e57de96da2bc74bc8e9db7f045ae06b6d4b217b
parent39a07083956ea5f5e8eebbd67aa6b31aec4f2d52 (diff)
downloadakka-serial-1de95454d5fdc3e0cc672708fed55626082615e5.tar.gz
akka-serial-1de95454d5fdc3e0cc672708fed55626082615e5.tar.bz2
akka-serial-1de95454d5fdc3e0cc672708fed55626082615e5.zip
Remove distribution-specific packages.
There is no known use of these packages, thus maintaining them adds no real benefit.
-rw-r--r--flow-native/src/debian/changelog6
-rw-r--r--flow-native/src/debian/compat1
-rw-r--r--flow-native/src/debian/control17
-rw-r--r--flow-native/src/debian/copyright36
-rwxr-xr-xflow-native/src/debian/rules21
-rwxr-xr-xflow-native/src/pkg/mkpkg20
6 files changed, 0 insertions, 101 deletions
diff --git a/flow-native/src/debian/changelog b/flow-native/src/debian/changelog
deleted file mode 100644
index 00bb566..0000000
--- a/flow-native/src/debian/changelog
+++ /dev/null
@@ -1,6 +0,0 @@
-flow (3.0.1) UNRELEASED; urgency=low
-
- * Initial release.
- * Fix termios initialization issue.
-
- -- Jakob Odersky <jodersky@gmail.com> Sun, 11 Jan 2015 10:56:29 +0100
diff --git a/flow-native/src/debian/compat b/flow-native/src/debian/compat
deleted file mode 100644
index ec63514..0000000
--- a/flow-native/src/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-9
diff --git a/flow-native/src/debian/control b/flow-native/src/debian/control
deleted file mode 100644
index f335e0e..0000000
--- a/flow-native/src/debian/control
+++ /dev/null
@@ -1,17 +0,0 @@
-Source: flow
-Maintainer: Jakob Odersky <jodersky@gmail.com>
-Section: java
-Priority: optional
-Build-Depends: debhelper (>= 9), java7-jdk | openjdk-7-jdk
-Standards-Version: 3.9.6
-Homepage: https://github.com/jodersky/flow
-Vcs-Git: git://github.com/jodersky/flow.git
-
-Package: libflow3-jni
-Architecture: any
-Section: java
-Priority: optional
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Provides the native backend and JNI bindings for flow.
- This package contains a native library to fully enable flow, a
- serial communication library for Scala. \ No newline at end of file
diff --git a/flow-native/src/debian/copyright b/flow-native/src/debian/copyright
deleted file mode 100644
index d26a00a..0000000
--- a/flow-native/src/debian/copyright
+++ /dev/null
@@ -1,36 +0,0 @@
-Format: http://dep.debian.net/deps/dep5
-Upstream-Name: flow
-Source: https://github.com/jodersky/flow
-
-Files: *
-Copyright: 2014 Jakob Odersky <jodersky@gmail.com>
-License: BSD-3-Clause
-
-Files: debian/*
-Copyright: 2014 Jakob Odersky <jodersky@gmail.com>
-License: BSD-3-Clause
-
-License: BSD-3-Clause
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions
- are met:
- 1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- 3. Neither the name of the University nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
- .
- THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- SUCH DAMAGE.
diff --git a/flow-native/src/debian/rules b/flow-native/src/debian/rules
deleted file mode 100755
index c062736..0000000
--- a/flow-native/src/debian/rules
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-%:
- dh $@
-
-# override library install directory
-override_dh_auto_configure:
- dh_auto_configure -- --libdir=/usr/lib/jni
-
-# used to suppress ldconfig warnings in preinst and postrm
-override_dh_makeshlibs:
- dh_makeshlibs -X/usr/lib/jni
diff --git a/flow-native/src/pkg/mkpkg b/flow-native/src/pkg/mkpkg
deleted file mode 100755
index c82d9cb..0000000
--- a/flow-native/src/pkg/mkpkg
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-#
-# This script produces a .pkg installable package on a mac.
-
-# Name of the package
-PACKAGE=flow3
-
-# Place to install libraries (should be on java.library.path)
-LIBDIR=/Library/Java/Extensions
-
-# Temporary directory to install libraries
-TEMPDIR=`pwd`/out
-
-mkdir ${TEMPDIR} && \
-cd .. && \
-./configure --libdir=${LIBDIR} && \
-make && \
-DESTDIR=${TEMPDIR} make install && \
-productbuild --root=pkg ${PACKAGE}.pkg
-