summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-30 17:08:30 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-30 17:08:30 +0000
commitab3a72dd7f5ec18d318ce893db1e9f65c420151a (patch)
tree5605883aac5176c534eb356a8a25e94544046c35
parent393b2f5348c0ce79fefa3839a992a38baaec2f5d (diff)
automatic import of python-when-changed
-rw-r--r--.gitignore1
-rw-r--r--python-when-changed.spec180
-rw-r--r--sources1
3 files changed, 182 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..8afc6c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/when-changed-0.3.0.tar.gz
diff --git a/python-when-changed.spec b/python-when-changed.spec
new file mode 100644
index 0000000..f85c9e7
--- /dev/null
+++ b/python-when-changed.spec
@@ -0,0 +1,180 @@
+%global _empty_manifest_terminate_build 0
+Name: python-when-changed
+Version: 0.3.0
+Release: 1
+Summary: Make when-changed cross-platform
+License: BSD
+URL: https://github.com/joh/when-changed
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/83/33/80d220730dddda0cc99eac3c76409d9d8a60a799d0e0fcc6e010c14c2834/when-changed-0.3.0.tar.gz
+BuildArch: noarch
+
+
+%description
+ when-changed
+
+ Run a command when a file is changed
+
+
+ ~ What is it?
+
+ Tired of switching to the shell to test the changes you just made to
+ your code? Starting to feel like a mindless drone, manually running
+ pdflatex for the 30th time to see how your resume now looks?
+
+ Worry not, when-changed is here to help! Whenever it sees that you have
+ changed the file, when-changed runs any command you specify.
+
+ So to generate your latex resume automatically, you can do this:
+
+ $ when-changed CV.tex pdflatex CV.tex
+
+ Sweetness!
+
+
+ ~ What do I need?
+
+ Python 2.6+
+ watchdog
+
+
+ ~ Installation
+
+ pip install https://github.com/joh/when-changed/archive/master.zip
+
+
+ ~ Usage
+
+ when-changed FILE COMMAND...
+ when-changed FILE [FILE ...] -c COMMAND
+
+
+%package -n python3-when-changed
+Summary: Make when-changed cross-platform
+Provides: python-when-changed
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-when-changed
+ when-changed
+
+ Run a command when a file is changed
+
+
+ ~ What is it?
+
+ Tired of switching to the shell to test the changes you just made to
+ your code? Starting to feel like a mindless drone, manually running
+ pdflatex for the 30th time to see how your resume now looks?
+
+ Worry not, when-changed is here to help! Whenever it sees that you have
+ changed the file, when-changed runs any command you specify.
+
+ So to generate your latex resume automatically, you can do this:
+
+ $ when-changed CV.tex pdflatex CV.tex
+
+ Sweetness!
+
+
+ ~ What do I need?
+
+ Python 2.6+
+ watchdog
+
+
+ ~ Installation
+
+ pip install https://github.com/joh/when-changed/archive/master.zip
+
+
+ ~ Usage
+
+ when-changed FILE COMMAND...
+ when-changed FILE [FILE ...] -c COMMAND
+
+
+%package help
+Summary: Development documents and examples for when-changed
+Provides: python3-when-changed-doc
+%description help
+ when-changed
+
+ Run a command when a file is changed
+
+
+ ~ What is it?
+
+ Tired of switching to the shell to test the changes you just made to
+ your code? Starting to feel like a mindless drone, manually running
+ pdflatex for the 30th time to see how your resume now looks?
+
+ Worry not, when-changed is here to help! Whenever it sees that you have
+ changed the file, when-changed runs any command you specify.
+
+ So to generate your latex resume automatically, you can do this:
+
+ $ when-changed CV.tex pdflatex CV.tex
+
+ Sweetness!
+
+
+ ~ What do I need?
+
+ Python 2.6+
+ watchdog
+
+
+ ~ Installation
+
+ pip install https://github.com/joh/when-changed/archive/master.zip
+
+
+ ~ Usage
+
+ when-changed FILE COMMAND...
+ when-changed FILE [FILE ...] -c COMMAND
+
+
+%prep
+%autosetup -n when-changed-0.3.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-when-changed -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue May 30 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..be461ce
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+39fa3fd9789b7fe3f6db711307af318e when-changed-0.3.0.tar.gz