From 78c42d24842a9df57b0279a75a5d0d6544100d35 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Sat, 6 Mar 2021 02:34:40 +0100 Subject: First version of the presentation --- .gitignore | 1 + main.pdf | Bin 28637 -> 29369 bytes main.tex | 38 ++++++++++++++------------------------ package.png | Bin 0 -> 103868 bytes package.spec | 44 ++++++++++++++++++++++++++++++++++++++++++++ presentation.odg | Bin 0 -> 136669 bytes presentation.pdf | Bin 0 -> 144613 bytes 7 files changed, 59 insertions(+), 24 deletions(-) create mode 100644 package.png create mode 100644 package.spec create mode 100644 presentation.odg create mode 100644 presentation.pdf diff --git a/.gitignore b/.gitignore index fa4c9f6..1367c3f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ main.out main.snm main.synctex.gz main.toc +_minted-main/* diff --git a/main.pdf b/main.pdf index fcab51c..0ca32a6 100644 Binary files a/main.pdf and b/main.pdf differ diff --git a/main.tex b/main.tex index de6bfff..bbcb132 100644 --- a/main.tex +++ b/main.tex @@ -1,40 +1,30 @@ -\documentclass[aspectratio=169]{beamer} -\usepackage[utf8]{inputenc} +\documentclass[aspectratio=169,czech]{beamer} +\usepackage{graphicx} \usepackage{bookman} \usepackage{tikz} \usetikzlibrary{shapes.geometric} \usetheme{opensuse} -\title{Presentation Title} -\subtitle{A subtitle if you have} -\author{Author Name} -\date{April 2019} -\newcommand{\authortitle}{Author Title} -\newcommand{\organization}{Organization Name} -\newcommand{\event}{Developers Conference} -\newcommand{\location}{Voilà Hotel} +\title{Python multiversion v openSUSE} +\author{Matěj Cepl} +\date{March 2021} +\newcommand{\authortitle}{} +\newcommand{\organization}{SUSE} +\newcommand{\event}{InstallFest} \begin{document} - + \frame{\titlepage} - -\begin{frame} -\frametitle{Title} -This is a text from the first frame. -\end{frame} \begin{frame} -\frametitle{Image} + \frametitle{Děkuji!} + Můj email je mcepl@cepl.eu.\vspace{1em} + + \tiny \LaTeX\hspace{0.01em}-ový zdroj této prezentace je na github.com/ishwon/opensuse-tex-beamer-tpl.\\ + Šablona je uvolněna pod licencí MIT. \end{frame} -\begin{frame} - \frametitle{Thank you!} - I am reachable at ishwon@opensuse.org.\vspace{1em} - \tiny The \LaTeX\hspace{0.01em} source of this presentation template is available at github.com/ishwon/opensuse-tex-beamer-tpl.\\ - The template is MIT licensed. - \end{frame} - \end{document} diff --git a/package.png b/package.png new file mode 100644 index 0000000..f9f9304 Binary files /dev/null and b/package.png differ diff --git a/package.spec b/package.spec new file mode 100644 index 0000000..2be6e7f --- /dev/null +++ b/package.spec @@ -0,0 +1,44 @@ +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-foobar +Version: 1.0.2 +Release: 0 +Summary: Example foobar package +License: MIT +URL: https://github.com/bumba/foobar +Source: https://files.pythonhosted.org/packages/source/s/foobar/foobar-%{version}.zip +# PATCH-FIX-UPSTREAM remove_mock.patch bsc#123456 mcepl@suse.com +# we don't need stinking mock +Patch0: remove_mock.patch +BuildRequires: %{python_module appdirs} +BuildRequires: %{python_module pytest} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-appdirs +BuildArch: noarch +%python_subpackages + +%description +foobar is a collection of enhancements to the Python packages that +allow you to build and distribute Python packages, + +%prep +%autosetup -p1 -n foobar-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest -k + +%files %{python_files} +%license LICENSE +%doc CHANGES.rst README.rst +%{_bindir}/foobar +%{python_sitelib}/foobar +%{python_sitelib}/foobar-%{version}-py%{python_version}.egg-info + +%changelog diff --git a/presentation.odg b/presentation.odg new file mode 100644 index 0000000..2ceac43 Binary files /dev/null and b/presentation.odg differ diff --git a/presentation.pdf b/presentation.pdf new file mode 100644 index 0000000..2c292a5 Binary files /dev/null and b/presentation.pdf differ -- cgit