Revert "Apply python3 build" 20/230420/1 accepted/tizen_6.0_base accepted/tizen_6.0_base_hotfix accepted/tizen_6.5_base accepted/tizen_7.0_base accepted/tizen_7.0_base_hotfix accepted/tizen_8.0_base accepted/tizen_base accepted/tizen_base_dev tizen_6.0_base tizen_6.0_base_hotfix tizen_6.5_base tizen_7.0_base tizen_7.0_base_hotfix tizen_8.0_base tizen_base accepted/tizen/6.0/base/20201029.105607 accepted/tizen/6.0/base/hotfix/20201102.093133 accepted/tizen/6.5/base/20211028.055913 accepted/tizen/7.0/base/20221116.025918 accepted/tizen/7.0/base/hotfix/20221116.055327 accepted/tizen/8.0/base/20231005.045116 accepted/tizen/base/20200413.213118 accepted/tizen/base/20221115.103754 accepted/tizen/base/dev/20230602.080840 submit/tizen_6.0_base/20201029.184802 submit/tizen_6.0_base_hotfix/20201030.192502 submit/tizen_6.0_base_hotfix/20201102.162702 submit/tizen_6.5_base/20211028.134601 submit/tizen_base/20200413.010723 submit/tizen_base/20200413.035900 tizen_6.0.m2_release tizen_6.5.m2_release tizen_7.0_m2_release tizen_8.0_m2_release
authorHyunjee Kim <hj0426.kim@samsung.com>
Fri, 10 Apr 2020 01:48:58 +0000 (10:48 +0900)
committerHyunjee Kim <hj0426.kim@samsung.com>
Fri, 10 Apr 2020 01:49:16 +0000 (10:49 +0900)
This reverts commit 203fa4e2c9ee1d2f7f4ba1fded22deaf05641556.

Change-Id: Ia03e67e7d1108ae1a524edbbee9bb5a3a2e33c6a
Signed-off-by: Hyunjee Kim <hj0426.kim@samsung.com>
packaging/python3-markdown.manifest [deleted file]
packaging/python3-markdown.spec [deleted file]

diff --git a/packaging/python3-markdown.manifest b/packaging/python3-markdown.manifest
deleted file mode 100644 (file)
index 017d22d..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<manifest>
- <request>
-    <domain name="_"/>
- </request>
-</manifest>
diff --git a/packaging/python3-markdown.spec b/packaging/python3-markdown.spec
deleted file mode 100644 (file)
index 9cd8055..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-%define srcname Markdown
-
-Name:           python3-markdown
-Version:        3.1.1
-Release:        1
-Summary:        Markdown implementation in Python3
-Group:          Development/Languages
-License:        BSD
-URL:            http://www.freewisdom.org/projects/python-markdown/
-Source0:        http://pypi.python.org/packages/source/M/%{srcname}/%{srcname}-%{version}.tar.gz
-Source1001:     python3-markdown.manifest
-BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildArch:      noarch
-BuildRequires:  python3-devel
-BuildRequires:  python3-setuptools
-%if 0%{?rhel}
-BuildRequires:  python3-elementtree
-Requires:       python3-elementtree
-%endif
-
-
-%description
-This is a Python3 implementation of John Gruber's Markdown. It is
-almost completely compliant with the reference implementation, though
-there are a few known issues.
-
-
-%prep
-%setup -q -n %{srcname}-%{version}
-
-# remove shebangs
-find markdown -type f -name '*.py' \
-  -exec sed -i -e '/^#!/{1D}' {} \;
-
-
-%build
-cp %{SOURCE1001} .
-%{_bindir}/python3 setup.py build
-
-
-%install
-rm -rf %{buildroot}
-%{_bindir}/python3 setup.py install -O1 --skip-build --root %{buildroot} --prefix %{_prefix}
-
-
-%files
-%manifest %{name}.manifest
-%{python3_sitelib}/*
-%{_bindir}/markdown_py
-
-