From d847957f5840f5ec574022ef902cb8210a6fb606 Mon Sep 17 00:00:00 2001 From: Chengwei Yang Date: Sun, 25 Aug 2013 09:45:25 +0800 Subject: [PATCH] Remove debian packaging stuff Change-Id: Icfdb30f0c02033f48085173c155ec0fbb31c679c Signed-off-by: Chengwei Yang --- debian/README | 0 debian/capi-system-system-settings-dev.install | 4 -- debian/capi-system-system-settings-dev.postinst | 1 - debian/capi-system-system-settings.install | 1 - debian/capi-system-system-settings.postinst | 1 - debian/changelog | 40 --------------- debian/compat | 1 - debian/control | 22 -------- debian/rules | 68 ------------------------- packaging/capi-system-system-settings.changes | 3 ++ 10 files changed, 3 insertions(+), 138 deletions(-) delete mode 100755 debian/README delete mode 100755 debian/capi-system-system-settings-dev.install delete mode 100755 debian/capi-system-system-settings-dev.postinst delete mode 100755 debian/capi-system-system-settings.install delete mode 100755 debian/capi-system-system-settings.postinst delete mode 100755 debian/changelog delete mode 100755 debian/compat delete mode 100755 debian/control delete mode 100755 debian/rules diff --git a/debian/README b/debian/README deleted file mode 100755 index e69de29..0000000 diff --git a/debian/capi-system-system-settings-dev.install b/debian/capi-system-system-settings-dev.install deleted file mode 100755 index 761a28b..0000000 --- a/debian/capi-system-system-settings-dev.install +++ /dev/null @@ -1,4 +0,0 @@ -/usr/include/* -/usr/include/*/* -/usr/lib/pkgconfig/*.pc - diff --git a/debian/capi-system-system-settings-dev.postinst b/debian/capi-system-system-settings-dev.postinst deleted file mode 100755 index 1a24852..0000000 --- a/debian/capi-system-system-settings-dev.postinst +++ /dev/null @@ -1 +0,0 @@ -#!/bin/sh diff --git a/debian/capi-system-system-settings.install b/debian/capi-system-system-settings.install deleted file mode 100755 index 4a755a4..0000000 --- a/debian/capi-system-system-settings.install +++ /dev/null @@ -1 +0,0 @@ -/usr/lib/lib*.so* diff --git a/debian/capi-system-system-settings.postinst b/debian/capi-system-system-settings.postinst deleted file mode 100755 index 1a24852..0000000 --- a/debian/capi-system-system-settings.postinst +++ /dev/null @@ -1 +0,0 @@ -#!/bin/sh diff --git a/debian/changelog b/debian/changelog deleted file mode 100755 index 69f15eb..0000000 --- a/debian/changelog +++ /dev/null @@ -1,40 +0,0 @@ -capi-system-system-settings (0.0.1-8ubuntu1) precise; urgency=low - - * release - - -- mjpark Thu, 09 May 2013 15:16:34 +0900 - -capi-system-system-settings (0.0.1-8) precise; urgency=low - - * release - * font-type API refinement - - -- mjpark Wed, 23 Jan 2013 15:25:21 +0900 - -capi-system-system-settings (0.0.1-7) unstable; urgency=low - - * release - - -- MyoungJune Park Tue, 04 Sep 2012 10:34:54 +0900 - -capi-system-system-settings (0.0.1-6) unstable; urgency=low - - * tizen build - - -- MyoungJune Park Tue, 14 Aug 2012 10:20:07 +0900 - -capi-system-system-settings (0.0.1-5) unstable; urgency=low - - * Initial upload - * Git: slp/api/system-settings - * Tag: capi-system-system-settings_0.0.1-5 - - -- MyoungJune Park Mon, 21 May 2012 15:45:32 +0900 - -capi-system-system-settings (0.0.1-1) unstable; urgency=low - - * Initial upload - * Git: slp-info.sec.samsung.net:slp/api/system-settings - * Tag: capi-system-system-settings_0.0.1-1 - - -- Junghyuk Park Tue, 06 Dec 2011 21:16:07 +0900 diff --git a/debian/compat b/debian/compat deleted file mode 100755 index 7ed6ff8..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100755 index b4a5614..0000000 --- a/debian/control +++ /dev/null @@ -1,22 +0,0 @@ - -Source: capi-system-system-settings -Section: libs -Priority: extra -Maintainer: Woongsuk Cho , junghyuk park , MyoungJune Park -Build-Depends: debhelper (>= 5), libecore-dev, dlog-dev, libelm-dev, libappcore-efl-dev, libvconf-dev, capi-base-common-dev, libfontconfig1-dev, libxml2-dev ,libglib2.0-dev - -Package: capi-system-system-settings -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} -Description: A System Settings library in Tizen Native API - -Package: capi-system-system-settings-dev -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, capi-system-system-settings (= ${Source-Version}), capi-base-common-dev -Description: A System Settings library in Tizen Native API (DEV) - -Package: capi-system-system-settings-dbg -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, capi-system-system-settings (= ${Source-Version}) -Description: A System Settings library in Tizen Native API (DBG) - diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 2e2326d..0000000 --- a/debian/rules +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/make -f - -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -CMAKE_ROOT_DIR ?= $(CURDIR) -CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp - -FULLVER ?= $(shell dpkg-parsechangelog | grep Version: | cut -d ' ' -f 2 | cut -d '-' -f 1) -MAJORVER ?= $(shell echo $(FULLVER) | cut -d '.' -f 1) - -configure: configure-stamp -configure-stamp: - dh_testdir - mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && cmake .. -DFULLVER=${FULLVER} -DMAJORVER=${MAJORVER} - touch configure-stamp - - -build: build-stamp -build-stamp: configure-stamp - dh_testdir - cd $(CMAKE_BUILD_DIR) && $(MAKE) - touch $@ - -clean: - cd $(CMAKE_ROOT_DIR) - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - rm -f `find . -name *.pc` - rm -rf $(CMAKE_BUILD_DIR) - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install - -binary-indep: build install - -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installexamples - dh_install --sourcedir=debian/tmp - dh_installman - dh_link - dh_strip --dbg-package=capi-system-system-settings-dbg - dh_fixperms - 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/packaging/capi-system-system-settings.changes b/packaging/capi-system-system-settings.changes index 574e0fb..8238535 100644 --- a/packaging/capi-system-system-settings.changes +++ b/packaging/capi-system-system-settings.changes @@ -1,3 +1,6 @@ +* Sun Aug 25 2013 Chengwei Yang +- Remove debian packaging stuff + * Thu Jun 13 2013 Rusty Lynch accepted/tizen/20130611.225820@28398af - Correctly fixing the manifest this time -- 2.7.4