From: Sangyoon Jang Date: Mon, 1 Jun 2015 07:43:05 +0000 (+0900) Subject: Clean up repository X-Git-Tag: accepted/tizen/mobile/20150702.083105~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7bf21d863c1178da807975147c00e70bcfe3dc4;p=platform%2Fcore%2Fappfw%2Fappcore-agent.git Clean up repository remove debian directory remove unnecessary file permissions Change-Id: Ibbb524c16da5b9e04867d86d297edd8e76fdc4c6 Signed-off-by: Sangyoon Jang --- diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index 3efeac1..0000000 --- a/debian/changelog +++ /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 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 Tue, 28 Sep 2010 19:19:52 +0900 - diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 7ed6ff8..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100644 index 39891c0..0000000 --- a/debian/control +++ /dev/null @@ -1,28 +0,0 @@ -Source: appcore-agent -Section: libs -Priority: extra -Maintainer: Jayoun Lee , Sewook Park , Jaeho Lee -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 index ca882bb..0000000 --- a/debian/dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin -usr/sbin diff --git a/debian/docs b/debian/docs deleted file mode 100644 index a0f0008..0000000 --- a/debian/docs +++ /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 index bf766f0..0000000 --- a/debian/libappcore-agent-0.install.in +++ /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 index ac9b27d..0000000 --- a/debian/libappcore-agent-dev.install.in +++ /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 index 96c48dc..0000000 --- a/debian/rules +++ /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 diff --git a/include/appcore-agent.h b/include/appcore-agent.h old mode 100755 new mode 100644 diff --git a/include/service_app.h b/include/service_app.h old mode 100755 new mode 100644 diff --git a/include/service_app_private.h b/include/service_app_private.h old mode 100755 new mode 100644 diff --git a/src/appcore-agent.c b/src/appcore-agent.c old mode 100755 new mode 100644 diff --git a/src/service_app_error.c b/src/service_app_error.c old mode 100755 new mode 100644 diff --git a/src/service_app_main.c b/src/service_app_main.c old mode 100755 new mode 100644 diff --git a/test/test.c b/test/test.c old mode 100755 new mode 100644