Clean up repository 23/40223/1
authorSangyoon Jang <s89.jang@samsung.com>
Mon, 1 Jun 2015 07:43:05 +0000 (16:43 +0900)
committerSangyoon Jang <s89.jang@samsung.com>
Mon, 1 Jun 2015 07:43:05 +0000 (16:43 +0900)
remove debian directory
remove unnecessary file permissions

Change-Id: Ibbb524c16da5b9e04867d86d297edd8e76fdc4c6
Signed-off-by: Sangyoon Jang <s89.jang@samsung.com>
15 files changed:
debian/changelog [deleted file]
debian/compat [deleted file]
debian/control [deleted file]
debian/dirs [deleted file]
debian/docs [deleted file]
debian/libappcore-agent-0.install.in [deleted file]
debian/libappcore-agent-dev.install.in [deleted file]
debian/rules [deleted file]
include/appcore-agent.h [changed mode: 0755->0644]
include/service_app.h [changed mode: 0755->0644]
include/service_app_private.h [changed mode: 0755->0644]
src/appcore-agent.c [changed mode: 0755->0644]
src/service_app_error.c [changed mode: 0755->0644]
src/service_app_main.c [changed mode: 0755->0644]
test/test.c [changed mode: 0755->0644]

diff --git a/debian/changelog b/debian/changelog
deleted file mode 100644 (file)
index 3efeac1..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-appcore-agent (1.0-2) unstable; urgency=low
-
-  * Apply service
-  * Git: slp/pkgs/a/appcore-agent
-  * Tag: appcore-agent_1.0-2
-
- -- Jaeho Lee <jaeho81.lee@samsung.com>  Thu, 23 Feb 2012 15:15:09 +0900
-
-appcore-agent (1.0-1) unstable; urgency=low
-
-  * initial release
-  * Git: slp/pkgs/a/appcore-agent
-  * Tag: appcore-agent_1.0-1
-
- -- Jaeho Lee <jaeho81.lee@samsung.com>  Tue, 28 Sep 2010 19:19:52 +0900
-
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 39891c0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-Source: appcore-agent
-Section: libs
-Priority: extra
-Maintainer: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@samsung.com>
-Build-Depends: debhelper (>= 5), libaul-1-dev, dlog-dev, libslp-sysman-dev, libglib2.0-dev, libslp-pm-dev, capi-appfw-application-dev
-Standards-Version: 3.7.2
-
-Package: libappcore-agent-dev
-Section: libs
-Architecture: any
-Depends: libappcore-agent-0 (= ${Source-Version}), libaul-1-dev, capi-appfw-application-dev
-XB-Generate-Docs: yes
-Description: Samsung Linux platform common application basic (dev)
- Samsung Linux platform application basic.
-
-Package: libappcore-agent-0
-Section: libs
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Samsung Linux platform common application basic
- Samsung Linux platform application basic.
-
-Package: libappcore-agent-dbg
-Section: debug
-Architecture: any
-Depends: ${misc:Depends}, libappcore-agent-0 (= ${Source-Version})
-Description: Samsung Linux platform application basic (unstripped)
- Samsung Linux platform application basic.
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 a0f0008..0000000
+++ /dev/null
@@ -1 +0,0 @@
-CMakeLists.txt
diff --git a/debian/libappcore-agent-0.install.in b/debian/libappcore-agent-0.install.in
deleted file mode 100644 (file)
index bf766f0..0000000
+++ /dev/null
@@ -1 +0,0 @@
-@PREFIX@/lib/*.so*
diff --git a/debian/libappcore-agent-dev.install.in b/debian/libappcore-agent-dev.install.in
deleted file mode 100644 (file)
index ac9b27d..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-@PREFIX@/include/appcore-agent/*
-@PREFIX@/lib/pkgconfig/appcore-agent.pc
diff --git a/debian/rules b/debian/rules
deleted file mode 100755 (executable)
index 96c48dc..0000000
+++ /dev/null
@@ -1,115 +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
-
-LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
-
-CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
-
-configure: configure-stamp
-configure-stamp:
-       dh_testdir
-       mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && \
-       CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX=$(PREFIX)
-
-       touch configure-stamp
-
-build: build-stamp
-
-build-stamp: configure-stamp
-       dh_testdir
-
-       cd $(CMAKE_BUILD_DIR) && $(MAKE)
-
-       #docbook-to-man debian/wavplayer.sgml > wavplayer.1
-
-       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
-
-       rm -rf $(CMAKE_BUILD_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_BUILD_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=libappcore-agent-dbg
-       dh_compress
-       dh_fixperms
-#      dh_perl
-       dh_makeshlibs
-       dh_installdeb
-       dh_shlibdeps
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)