Remove debian files 17/8517/1 accepted/tizen/ivi/stable accepted/tizen/20131007.095339 accepted/tizen/20131007.164500 accepted/tizen/20131007.165147 accepted/tizen_ivi_stable/20131119.040344 submit/tizen/20131007.090058 submit/tizen_ivi_stable/20131119.035231
authorwootak.jung <wootak.jung@samsung.com>
Thu, 22 Aug 2013 08:20:43 +0000 (17:20 +0900)
committerwootak.jung <wootak.jung@samsung.com>
Thu, 22 Aug 2013 08:21:32 +0000 (17:21 +0900)
Change-Id: I6dd7e247ae0df393797c6f2f1463ca4261b89a6b

debian/changelog [deleted file]
debian/compat [deleted file]
debian/control [deleted file]
debian/copyright [deleted file]
debian/dirs [deleted file]
debian/docs [deleted file]
debian/rules [deleted file]
debian/tel-plugin-at_standard.install.in [deleted file]

diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644 (file)
index 31fb65a..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-tel-plugin-at_standard (0.0.1) experimental; urgency=low
-
- * Initial release
- * add package config files
-
- -- Caiwen Zhang <caiwen.zhang@intel.com> Mon, 26 Nov 2012 21:26:34 +0800
diff --git a/debian/compat b/debian/compat
deleted file mode 100644 (file)
index 7ed6ff8..0000000
+++ /dev/null
@@ -1 +0,0 @@
-5
diff --git a/debian/control b/debian/control
deleted file mode 100644 (file)
index 0907e41..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-Source: tel-plugin-at_standard
-Section: libs
-Priority: extra
-Maintainer:
-Uploaders:
-Build-Depends: debhelper (>= 5), libglib2.0-dev, libtcore-dev, dlog-dev
-Standards-Version: 0.0.0
-
-Package: tel-plugin-at_standard
-Section: libs
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends},
-Description: Telephony standard AT Modem library (shared object)
-
-Package: tel-plugin-at_standard-dbg
-Section: debug
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, tel-plugin-at_standard (= ${Source-Version})
-Description: Telephony standard AT Modem library (shared object)
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100644 (file)
index 8dedfb8..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-Copyright (c) 2012 Intel Corporation. All rights reserved.
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the the Apache License, Version 2.0 (the "License");
-You may obtain a copy of the License at
-http://www.apache.org/licenses/LICENSE-2.0.
diff --git a/debian/dirs b/debian/dirs
deleted file mode 100644 (file)
index ca882bb..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-usr/bin
-usr/sbin
diff --git a/debian/docs b/debian/docs
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/debian/rules b/debian/rules
deleted file mode 100644 (file)
index fa22092..0000000
+++ /dev/null
@@ -1,118 +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
-
-CFLAGS ?= -Wall -g
-CXXFLAGS ?=  -Wall -g
-LDFLAGS ?=
-PREFIX ?= /usr
-DATADIR ?= /opt
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-       CFLAGS += -O0
-       CXXFLAGS += -O0
-else
-       CFLAGS += -O2
-       CXXFLAGS += -O2
-endif
-
-#CFLAGS += -fvisibility=hidden -fPIC
-CFLAGS += -fvisibility=default -fPIC
-LDFLAGS += -rdynamic -fPIC -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
-#LDFLAGS += -Wl,--unresolved-symbols=ignore-in-shared-libs,--as-needed
-
-CMAKE_TMP_DIR = $(CURDIR)/cmake_tmp
-
-configure: configure-stamp
-configure-stamp:
-       dh_testdir
-       # Add here commands to configure the package.
-       mkdir -p $(CMAKE_TMP_DIR);
-       cd $(CMAKE_TMP_DIR); CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX=$(PREFIX)
-
-       touch configure-stamp
-
-build: build-stamp
-
-build-stamp: configure-stamp
-       dh_testdir
-
-       # Add here commands to compile the package.
-       cd $(CMAKE_TMP_DIR) && $(MAKE) all
-
-       for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
-               cat $$f > $${f%.in}; \
-               sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
-               sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
-       done
-
-       touch $@
-
-clean:
-       dh_testdir
-       dh_testroot
-       rm -f build-stamp configure-stamp
-
-       # Add here commands to clean up after the build process.
-       rm -rf $(CMAKE_TMP_DIR)
-
-       for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
-               rm -f $${f%.in}; \
-       done
-
-       dh_clean
-
-install: build
-       dh_testdir
-       dh_testroot
-       dh_clean -k
-       dh_installdirs
-
-       # Add here commands to install the package into debian/wavplayer.
-       cd $(CMAKE_TMP_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
-       dh_testdir
-       dh_testroot
-       dh_installchangelogs
-       dh_installdocs
-       dh_installexamples
-       dh_install --sourcedir=debian/tmp
-#      dh_installmenu
-#      dh_installdebconf
-#      dh_installlogrotate
-#      dh_installemacsen
-#      dh_installpam
-#      dh_installmime
-#      dh_python
-#      dh_installinit
-#      dh_installcron
-#      dh_installinfo
-       dh_installman
-       dh_link
-       dh_strip --dbg-package=tel-plugin-at_standard-dbg
-       dh_compress
-       dh_fixperms
-#      dh_perl
-       dh_makeshlibs
-       dh_installdeb
-       dh_shlibdeps --dpkg-shlibdeps-params="-v"
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/debian/tel-plugin-at_standard.install.in b/debian/tel-plugin-at_standard.install.in
deleted file mode 100644 (file)
index 112242d..0000000
+++ /dev/null
@@ -1 +0,0 @@
-@PREFIX@/lib/*