diff --git a/.build.mk b/.build.mk
deleted file mode 100644
index 5bfa083e8c95c38245b7d1acaf2a29a482f65efb..0000000000000000000000000000000000000000
--- a/.build.mk
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# Travis rules
-#
-
-travis_deps_linux:
-	sudo apt-get update > /dev/null
-	sudo apt-get -q -y install binutils-dev python-daemon python-yaml
-	sudo pip install six==1.9.0
-	sudo pip install gevent==1.1.2
-
-travis_test_linux: travis_deps_linux
-	cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
-	make -j8
-	cd test && /usr/bin/python test-run.py
-
-travis_coverage: travis_deps_linux
-	cmake . -DCMAKE_BUILD_TYPE=Debug -DENABLE_GCOV=ON
-	make -j8
-	# Enable --long tests for coverage
-	cd test && /usr/bin/python test-run.py --long
-
-travis_deps_osx:
-	brew install openssl readline --force
-	sudo pip install python-daemon PyYAML
-	sudo pip install six==1.9.0
-	sudo pip install gevent==1.1.2
-
-travis_test_osx: travis_deps_osx
-	cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
-	make -j8
-	cd test && python test-run.py unit/ app/ app-tap/ box/ box-tap/
diff --git a/.travis.mk b/.travis.mk
new file mode 100644
index 0000000000000000000000000000000000000000..9a98991120ffa866c2a788c9ebe3e79249ea6025
--- /dev/null
+++ b/.travis.mk
@@ -0,0 +1,43 @@
+#
+# Travis CI rules
+#
+
+all: package
+
+source:
+	git clone https://github.com/packpack/packpack.git packpack
+	TARBALL_COMPRESSOR=gz packpack/packpack tarball
+
+package:
+	git clone https://github.com/packpack/packpack.git packpack
+	./packpack/packpack
+
+test: test_$(TRAVIS_OS_NAME)
+
+deps_linux:
+	sudo apt-get update > /dev/null
+	sudo apt-get -q -y install binutils-dev python-daemon python-yaml
+	sudo pip install six==1.9.0
+	sudo pip install gevent==1.1.2
+
+test_linux: deps_linux
+	cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
+	make -j8
+	cd test && /usr/bin/python test-run.py
+
+deps_osx:
+	brew install openssl readline --force
+	sudo pip install python-daemon PyYAML
+	sudo pip install six==1.9.0
+	sudo pip install gevent==1.1.2
+
+test_osx: deps_osx
+	cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
+	# Increase the maximum number of open file descriptors on macOS
+	sudo sysctl -w kern.maxfiles=20480 || :
+	sudo sysctl -w kern.maxfilesperproc=20480 || :
+	sudo launchctl limit maxfiles 20480 || :
+	ulimit -S -n 20480 || :
+	ulimit -n
+	make -j8
+	cd test && python test-run.py unit/ app/ app-tap/ box/ box-tap/
diff --git a/.travis.yml b/.travis.yml
index 3bd5fadfda2002a39edeaaa57995e336670a74b3..8752ea1e4bbf318698d85b65afb2cbc1821a9b08 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,120 +11,121 @@ compiler:
   - clang
   - gcc
 
+cache:
+    directories:
+      - $HOME/.cache
+
+git:
+    depth: 100500
+
 env:
     global:
-      - ENCRYPTION_LABEL="8f886150b5ec"
-      - SFTP_UPLOAD_SOURCE="True"
+      - PACKAGECLOUD_REPO=1_7
     matrix:
-      - PACK=none
-      - PACK=source
-      - PACK=coverage
-      - OS=el DIST=6 PACK=rpm
-      - OS=el DIST=7 PACK=rpm
-      - OS=fedora DIST=24 PACK=rpm
-      - OS=fedora DIST=25 PACK=rpm
-      - OS=fedora DIST=rawhide PACK=rpm
-      - OS=ubuntu DIST=trusty PACK=deb
-      - OS=ubuntu DIST=precise PACK=deb
-      - OS=ubuntu DIST=xenial PACK=deb
-      - OS=ubuntu DIST=yakkety PACK=deb
-      - OS=debian DIST=jessie PACK=deb
-      - OS=debian DIST=wheezy PACK=deb
-      - OS=debian DIST=stretch PACK=deb
-      - OS=debian DIST=sid PACK=deb
-      - OS=rumprun DIST=hw PACK=rumprun
+      - TARGET=source
+      - TARGET=test
+      - OS=el DIST=6
+      - OS=el DIST=7
+      - OS=fedora DIST=24
+      - OS=fedora DIST=25
+      - OS=ubuntu DIST=precise
+      - OS=ubuntu DIST=trusty
+      - OS=ubuntu DIST=xenial
+      - OS=ubuntu DIST=yakkety
+      - OS=debian DIST=wheezy
+      - OS=debian DIST=jessie
+      - OS=debian DIST=stretch
 
 matrix:
     allow_failures:
-#      - env: PACK=source
-#      - env: OS=el DIST=6 PACK=rpm
-#      - env: OS=el DIST=7 PACK=rpm
-#      - env: OS=fedora DIST=24 PACK=rpm
-#      - env: OS=fedora DIST=25 PACK=rpm
-      - env: OS=fedora DIST=rawhide PACK=rpm
-      - env: OS=ubuntu DIST=precise PACK=deb
-#      - env: OS=ubuntu DIST=trusty PACK=deb
-#      - env: OS=ubuntu DIST=xenial PACK=deb
-#      - env: OS=ubuntu DIST=yakkety PACK=deb
-      - env: OS=debian DIST=wheezy PACK=deb
-#      - env: OS=debian DIST=jessie PACK=deb
-#      - env: OS=debian DIST=stretch PACK=deb
-      - env: OS=debian DIST=sid PACK=deb
-      - env: OS=rumprun DIST=hw PACK=rumprun
-      - env: PACK=none
-        os: osx
-
+#      - env: OS=el DIST=6
+#      - env: OS=el DIST=7
+#      - env: OS=fedora DIST=24
+#      - env: OS=fedora DIST=25
+#      - env: OS=ubuntu DIST=precise
+#      - env: OS=ubuntu DIST=trusty
+#      - env: OS=ubuntu DIST=xenial
+#      - env: OS=ubuntu DIST=yakkety
+#      - env: OS=debian DIST=wheezy
+#      - env: OS=debian DIST=jessie
+#      - env: OS=debian DIST=stretch
     exclude:
-      - env: PACK=coverage
+      - env: OS=el DIST=6
         compiler: clang
-      - env: OS=el DIST=6 PACK=rpm
+      - env: OS=el DIST=7
         compiler: clang
-      - env: OS=el DIST=7 PACK=rpm
+      - env: OS=fedora DIST=24
         compiler: clang
-      - env: OS=fedora DIST=24 PACK=rpm
+      - env: OS=fedora DIST=25
         compiler: clang
-      - env: OS=fedora DIST=25 PACK=rpm
+      - env: OS=ubuntu DIST=precise
         compiler: clang
-      - env: OS=fedora DIST=rawhide PACK=rpm
+      - env: OS=ubuntu DIST=trusty
         compiler: clang
-      - env: OS=ubuntu DIST=precise PACK=deb
+      - env: OS=ubuntu DIST=xenial
         compiler: clang
-      - env: OS=ubuntu DIST=trusty PACK=deb
+      - env: OS=ubuntu DIST=yakkety
         compiler: clang
-      - env: OS=ubuntu DIST=xenial PACK=deb
+      - env: OS=debian DIST=wheezy
         compiler: clang
-      - env: OS=ubuntu DIST=yakkety PACK=deb
+      - env: OS=debian DIST=jessie
         compiler: clang
-      - env: OS=debian DIST=wheezy PACK=deb
+      - env: OS=debian DIST=stretch
         compiler: clang
-      - env: OS=debian DIST=jessie PACK=deb
+      - env: TARGET=source
         compiler: clang
-      - env: OS=debian DIST=stretch PACK=deb
-        compiler: clang
-      - env: OS=debian DIST=sid PACK=deb
-        compiler: clang
-      - env: OS=rumprun DIST=hw PACK=rumprun
-        compiler: clang
-      - env: PACK=coverage
+      - env: OS=el DIST=6
         os: osx
-      - env: PACK=source
-        compiler: clang
-      - env: PACK=source
+      - env: OS=el DIST=7
         os: osx
-      - env: OS=el DIST=6 PACK=rpm
+      - env: OS=fedora DIST=24
         os: osx
-      - env: OS=el DIST=7 PACK=rpm
+      - env: OS=fedora DIST=25
         os: osx
-      - env: OS=fedora DIST=24 PACK=rpm
+      - env: OS=ubuntu DIST=precise
         os: osx
-      - env: OS=fedora DIST=25 PACK=rpm
+      - env: OS=ubuntu DIST=trusty
         os: osx
-      - env: OS=fedora DIST=rawhide PACK=rpm
+      - env: OS=ubuntu DIST=xenial
         os: osx
-      - env: OS=ubuntu DIST=precise PACK=deb
+      - env: OS=ubuntu DIST=yakkety
         os: osx
-      - env: OS=ubuntu DIST=trusty PACK=deb
+      - env: OS=debian DIST=wheezy
         os: osx
-      - env: OS=ubuntu DIST=xenial PACK=deb
+      - env: OS=debian DIST=jessie
         os: osx
-      - env: OS=ubuntu DIST=yakkety PACK=deb
+      - env: OS=debian DIST=stretch
         os: osx
-      - env: OS=debian DIST=wheezy PACK=deb
-        os: osx
-      - env: OS=debian DIST=jessie PACK=deb
-        os: osx
-      - env: OS=debian DIST=stretch PACK=deb
-        os: osx
-      - env: OS=debian DIST=sid PACK=deb
-        os: osx
-      - env: OS=rumprun DIST=hw PACK=rumprun
+      - env: TARGET=source
         os: osx
       - os: osx
         compiler: gcc
 
 script:
-  - git clone https://github.com/tarantool/build.git
-  - ./build/pack/travis.sh
+  - make -f .travis.mk ${TARGET}
+
+before_deploy:
+  - ls -l build/
+
+deploy:
+  # Deploy packages to PackageCloud
+  - provider: packagecloud
+    username: "${PACKAGECLOUD_USER}"
+    repository: "${PACKAGECLOUD_REPO}"
+    token: "${PACKAGECLOUD_TOKEN}"
+    dist: "${OS}/${DIST}"
+    package_glob: build/*.{rpm,deb,dsc}
+    skip_cleanup: true
+    on:
+      branch: "1.7"
+      condition: -n "${OS}" && -n "${DIST}" && -n "${PACKAGECLOUD_TOKEN}"
+  # Deploy sources to SFTP
+  - provider: script
+    script: ./packpack/tools/sftp ${TRAVIS_BRANCH}/src build/*.tar.gz
+    skip_cleanup: true
+    on:
+      branch: "1.7"
+      condition: "x${TARGET} = xsource"
 
 notifications:
   email:
@@ -132,6 +133,3 @@ notifications:
       - build@tarantool.org
     on_success: change
     on_failure: always
-
-git:
-  depth: 500
diff --git a/extra/rpm/mock/tarantool-el-5-i386.cfg b/extra/rpm/mock/tarantool-el-5-i386.cfg
deleted file mode 100644
index 13174e0ed3fbecb8d9cd57085f7589acea9c4d00..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-el-5-i386.cfg
+++ /dev/null
@@ -1,74 +0,0 @@
-config_opts['root'] = 'tarantool-el-5-i386'
-config_opts['target_arch'] = 'i386'
-config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
-config_opts['chroot_setup_cmd'] = 'install buildsys-build scl-utils-build'
-config_opts['dist'] = 'el5'  # only useful for --resultdir variable subst
-config_opts['plugin_conf']['ccache_enable'] = False
-# beware RHEL use 5Server or 5Client
-config_opts['releasever'] = '5'
-if not config_opts.has_key('macros'):  config_opts['macros'] = {}
-config_opts['macros']['%__arch_install_post'] = '%{nil}'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-[base]
-name=BaseOS
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=5&arch=i386&repo=os
-exclude=postgresql*,cmake*
-
-[updates]
-name=updates
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=5&arch=i386&repo=updates
-exclude=postgresql*,cmake*
-
-[groups]
-name=groups
-baseurl=http://buildsys.fedoraproject.org/buildgroups/rhel5/i386/
-
-[epel]
-name=epel
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-5&arch=i386
-
-[testing]
-name=epel-testing
-enabled=1
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel5&arch=i386
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/dist-5E-epel-build/latest/i386/
-cost=2000
-enabled=0
-
-[pgdg91]
-name=PostgreSQL 9.1 $releasever - $basearch
-baseurl=http://yum.postgresql.org/9.1/redhat/rhel-$releasever-$basearch
-enabled=1
-gpgcheck=0
-
-[testing-devtoolset-2-centos]
-name=testing 2 devtools for CentOS
-baseurl=http://people.centos.org/tru/devtools-2/$releasever/$basearch/RPMS
-gpgcheck=0
-
-
-[epel-debug]
-name=epel-debug
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-5&arch=i386
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-el-5-x86_64.cfg b/extra/rpm/mock/tarantool-el-5-x86_64.cfg
deleted file mode 100644
index 00a777109a068b53cc217c991b6e3cdaeef9d631..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-el-5-x86_64.cfg
+++ /dev/null
@@ -1,74 +0,0 @@
-config_opts['root'] = 'tarantool-el-5-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install buildsys-build scl-utils-build'
-config_opts['dist'] = 'el5'  # only useful for --resultdir variable subst
-config_opts['plugin_conf']['ccache_enable'] = False
-# beware RHEL use 5Server or 5Client
-config_opts['releasever'] = '5'
-if not config_opts.has_key('macros'):  config_opts['macros'] = {}
-config_opts['macros']['%__arch_install_post'] = '%{nil}'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-[base]
-name=BaseOS
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=5&arch=x86_64&repo=os
-exclude=postgresql*,cmake*
-
-[updates]
-name=updates
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=5&arch=x86_64&repo=updates
-exclude=postgresql*,cmake*
-
-[groups]
-name=groups
-baseurl=http://buildsys.fedoraproject.org/buildgroups/rhel5/x86_64/
-
-[epel]
-name=epel
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-5&arch=x86_64
-
-[testing]
-name=epel-testing
-enabled=1
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel5&arch=x86_64
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/dist-5E-epel-build/latest/x86_64/
-cost=2000
-enabled=0
-
-[pgdg91]
-name=PostgreSQL 9.1 $releasever - $basearch
-baseurl=http://yum.postgresql.org/9.1/redhat/rhel-$releasever-$basearch
-enabled=1
-gpgcheck=0
-
-[testing-devtoolset-2-centos]
-name=testing 2 devtools for CentOS
-baseurl=http://people.centos.org/tru/devtools-2/$releasever/$basearch/RPMS
-gpgcheck=0
-
-
-[epel-debug]
-name=epel-debug
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-5&arch=x86_64
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-el-6-i386.cfg b/extra/rpm/mock/tarantool-el-6-i386.cfg
deleted file mode 100644
index 27e3ce9de6436223adbce7f551656836d96a8160..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-el-6-i386.cfg
+++ /dev/null
@@ -1,72 +0,0 @@
-config_opts['root'] = 'tarantool-el-6-i386'
-config_opts['target_arch'] = 'i386'
-config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'el6'  # only useful for --resultdir variable subst
-config_opts['plugin_conf']['ccache_enable'] = False
-# beware RHEL use 6Server or 6Client
-config_opts['releasever'] = '6'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-[base]
-name=BaseOS
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=6&arch=i386&repo=os
-exclude=postgresql*,cmake*
-failovermethod=priority
-
-[updates]
-name=updates
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=6&arch=i386&repo=updates
-exclude=postgresql*,cmake*
-failovermethod=priority
-
-[epel]
-name=epel
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-6&arch=i386
-failovermethod=priority
-
-[testing]
-name=epel-testing
-enabled=1
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel6&arch=i386
-failovermethod=priority
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/dist-6E-epel-build/latest/i386/
-cost=2000
-enabled=0
-
-[pgdg91]
-name=PostgreSQL 9.1 $releasever - $basearch
-baseurl=http://yum.postgresql.org/9.1/redhat/rhel-$releasever-$basearch
-enabled=1
-gpgcheck=0
-
-[testing-devtoolset-2-centos]
-name=testing 2 devtools for CentOS
-baseurl=http://people.centos.org/tru/devtools-2/$releasever/$basearch/RPMS
-gpgcheck=0
-
-
-[epel-debug]
-name=epel-debug
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-6&arch=i386
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-el-6-x86_64.cfg b/extra/rpm/mock/tarantool-el-6-x86_64.cfg
deleted file mode 100644
index 089db14b5530254a48e6f1c7b294d1c206d344a4..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-el-6-x86_64.cfg
+++ /dev/null
@@ -1,72 +0,0 @@
-config_opts['root'] = 'tarantool-el-6-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'el6'  # only useful for --resultdir variable subst
-config_opts['plugin_conf']['ccache_enable'] = False
-# beware RHEL use 6Server or 6Client
-config_opts['releasever'] = '6'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-[base]
-name=BaseOS
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=os
-exclude=postgresql*,cmake*
-failovermethod=priority
-
-[updates]
-name=updates
-enabled=1
-mirrorlist=http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=updates
-exclude=postgresql*,cmake*
-failovermethod=priority
-
-[epel]
-name=epel
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-6&arch=x86_64
-failovermethod=priority
-
-[testing]
-name=epel-testing
-enabled=1
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel6&arch=x86_64
-failovermethod=priority
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/dist-6E-epel-build/latest/x86_64/
-cost=2000
-enabled=0
-
-[pgdg91]
-name=PostgreSQL 9.1 $releasever - $basearch
-baseurl=http://yum.postgresql.org/9.1/redhat/rhel-$releasever-$basearch
-enabled=1
-gpgcheck=0
-
-[testing-devtoolset-2-centos]
-name=testing 2 devtools for CentOS
-baseurl=http://people.centos.org/tru/devtools-2/$releasever/$basearch/RPMS
-gpgcheck=0
-
-
-[epel-debug]
-name=epel-debug
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-6&arch=x86_64
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-el-7-x86_64.cfg b/extra/rpm/mock/tarantool-el-7-x86_64.cfg
deleted file mode 100644
index 11a154f8fd69415b09d96948ef62b47914016d1c..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-el-7-x86_64.cfg
+++ /dev/null
@@ -1,48 +0,0 @@
-config_opts['root'] = 'tarantool-el-7-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'el7'  # only useful for --resultdir variable subst
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-[el]
-name=el
-baseurl=http://mirror.centos.org/centos-7/7/os/x86_64/
-failovermethod=priority
-
-[epel]
-name=epel
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-7&arch=x86_64
-failovermethod=priority
-
-[testing]
-name=epel-testing
-enabled=0
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel7&arch=x86_64
-failovermethod=priority
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/epel7-build/latest/x86_64/
-cost=2000
-enabled=0
-
-[epel-debug]
-name=epel-debug
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-7&arch=x86_64
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-19-i386.cfg b/extra/rpm/mock/tarantool-fedora-19-i386.cfg
deleted file mode 100644
index 557c10bafaf3fca9790fe4ac4794b956d254a41b..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-19-i386.cfg
+++ /dev/null
@@ -1,63 +0,0 @@
-config_opts['root'] = 'tarantool-fedora-19-i386'
-config_opts['target_arch'] = 'i386'
-config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'fc19'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '19'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-19&arch=i386
-failovermethod=priority
-
-[updates]
-name=updates
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f19&arch=i386
-failovermethod=priority
-
-[updates-testing]
-name=updates-testing
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-f19&arch=i386
-failovermethod=priority
-enabled=0
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f19-build/latest/i386/
-cost=2000
-enabled=0
-
-[fedora-debuginfo]
-name=fedora-debuginfo
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-debug-19&arch=i386
-failovermethod=priority
-enabled=0
-
-[updates-debuginfo]
-name=updates-debuginfo
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-debug-f19&arch=i386
-failovermethod=priority
-enabled=0
-
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-debug-f19&arch=i386
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-19-x86_64.cfg b/extra/rpm/mock/tarantool-fedora-19-x86_64.cfg
deleted file mode 100644
index a1447b063f55804bc62266e0c14fbad5cb8c7950..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-19-x86_64.cfg
+++ /dev/null
@@ -1,63 +0,0 @@
-config_opts['root'] = 'tarantool-fedora-19-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'fc19'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '19'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-19&arch=x86_64
-failovermethod=priority
-
-[updates]
-name=updates
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f19&arch=x86_64
-failovermethod=priority
-
-[updates-testing]
-name=updates-testing
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-f19&arch=x86_64
-failovermethod=priority
-enabled=0
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f19-build/latest/x86_64/
-cost=2000
-enabled=0
-
-[fedora-debuginfo]
-name=fedora-debuginfo
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-debug-19&arch=x86_64
-failovermethod=priority
-enabled=0
-
-[updates-debuginfo]
-name=updates-debuginfo
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-debug-f19&arch=x86_64
-failovermethod=priority
-enabled=0
-
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-testing-debug-f19&arch=x86_64
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-20-i386.cfg b/extra/rpm/mock/tarantool-fedora-20-i386.cfg
deleted file mode 100644
index f8bb4783f2e84c5d3b1edb691fc5db1e82514b2a..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-20-i386.cfg
+++ /dev/null
@@ -1,63 +0,0 @@
-config_opts['root'] = 'tarantool-fedora-20-i386'
-config_opts['target_arch'] = 'i386'
-config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'fc20'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '20'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch
-failovermethod=priority
-
-[updates]
-name=updates
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
-failovermethod=priority
-
-[updates-testing]
-name=updates-testing
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f20-build/latest/i386/
-cost=2000
-enabled=0
-
-[fedora-debuginfo]
-name=fedora-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-debuginfo]
-name=updates-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-20-x86_64.cfg b/extra/rpm/mock/tarantool-fedora-20-x86_64.cfg
deleted file mode 100644
index a2ab8a849e90530031ab84c2d41c687a69a8b206..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-20-x86_64.cfg
+++ /dev/null
@@ -1,63 +0,0 @@
-config_opts['root'] = 'tarantool-fedora-20-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'fc20'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '20'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch
-failovermethod=priority
-
-[updates]
-name=updates
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
-failovermethod=priority
-
-[updates-testing]
-name=updates-testing
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f20-build/latest/x86_64/
-cost=2000
-enabled=0
-
-[fedora-debuginfo]
-name=fedora-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-debuginfo]
-name=updates-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-21-i386.cfg b/extra/rpm/mock/tarantool-fedora-21-i386.cfg
deleted file mode 100644
index 5d77d87cb0e5323a1439e2557542716740c120a5..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-21-i386.cfg
+++ /dev/null
@@ -1,68 +0,0 @@
-config_opts['root'] = 'fedora-21-i386'
-config_opts['target_arch'] = 'i386'
-config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
-config_opts['dist'] = 'fc21'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '21'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-keepcache=1
-debuglevel=2
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-21-primary
-gpgcheck=1
-
-[updates]
-name=updates
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-21-primary
-gpgcheck=1
-
-[updates-testing]
-name=updates-testing
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f21-build/latest/i386/
-cost=2000
-enabled=0
-
-[fedora-debuginfo]
-name=fedora-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-debuginfo]
-name=updates-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-21-x86_64.cfg b/extra/rpm/mock/tarantool-fedora-21-x86_64.cfg
deleted file mode 100644
index ac48a3212d8381d0eccde2e8f43ddff2ed2e7e2c..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-21-x86_64.cfg
+++ /dev/null
@@ -1,68 +0,0 @@
-config_opts['root'] = 'fedora-21-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
-config_opts['dist'] = 'fc21'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '21'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-keepcache=1
-debuglevel=2
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-21-primary
-gpgcheck=1
-
-[updates]
-name=updates
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-21-primary
-gpgcheck=1
-
-[updates-testing]
-name=updates-testing
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f21-build/latest/x86_64/
-cost=2000
-enabled=0
-
-[fedora-debuginfo]
-name=fedora-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-debuginfo]
-name=updates-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-22-i386.cfg b/extra/rpm/mock/tarantool-fedora-22-i386.cfg
deleted file mode 100644
index 513106374b00a8f0bc889ec1463309defa75fa29..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-22-i386.cfg
+++ /dev/null
@@ -1,60 +0,0 @@
-
-config_opts['root'] = 'fedora-22-i386'
-config_opts['target_arch'] = 'i386'
-config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
-config_opts['dist'] = 'fc22'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '22'
-
-config_opts['yum.conf'] = """
-[main]
-keepcache=1
-debuglevel=2
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-# repos
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-22-primary
-gpgcheck=1
-[updates]
-name=updates
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-22-primary
-gpgcheck=1
-[updates-testing]
-name=updates-testing
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f22-build/latest/i386/
-cost=2000
-enabled=0
-[fedora-debuginfo]
-name=fedora-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-[updates-debuginfo]
-name=updates-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-22-x86_64.cfg b/extra/rpm/mock/tarantool-fedora-22-x86_64.cfg
deleted file mode 100644
index 80796d5bfabbd7e49d8b7d413927545731886694..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-22-x86_64.cfg
+++ /dev/null
@@ -1,60 +0,0 @@
-
-config_opts['root'] = 'fedora-22-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
-config_opts['dist'] = 'fc22'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '22'
-
-config_opts['yum.conf'] = """
-[main]
-keepcache=1
-debuglevel=2
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-# repos
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-22-primary
-gpgcheck=1
-[updates]
-name=updates
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f$releasever&arch=$basearch
-failovermethod=priority
-gpgkey=file:///etc/pki/mock/RPM-GPG-KEY-fedora-22-primary
-gpgcheck=1
-[updates-testing]
-name=updates-testing
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/f22-build/latest/x86_64/
-cost=2000
-enabled=0
-[fedora-debuginfo]
-name=fedora-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=fedora-debug-$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-[updates-debuginfo]
-name=updates-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-released-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-[updates-testing-debuginfo]
-name=updates-testing-debuginfo
-metalink=https://mirrors.fedoraproject.org/metalink?repo=updates-testing-debug-f$releasever&arch=$basearch
-failovermethod=priority
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-rawhide-i386.cfg b/extra/rpm/mock/tarantool-fedora-rawhide-i386.cfg
deleted file mode 100644
index 46db6f37b016e9c589da646ceca2c4eb22498b31..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-rawhide-i386.cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-config_opts['root'] = 'tarantool-fedora-rawhide-i386'
-config_opts['target_arch'] = 'i386'
-config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'rawhide'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '21'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=rawhide&arch=$basearch
-failovermethod=priority
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/rawhide/latest/i386
-cost=2000
-enabled=0
-
-[debug]
-name=Fedora Rawhide - i386 - Debug
-failovermethod=priority
-metalink=https://mirrors.fedoraproject.org/metalink?repo=rawhide-debug&arch=$basearch
-enabled=0
-"""
diff --git a/extra/rpm/mock/tarantool-fedora-rawhide-x86_64.cfg b/extra/rpm/mock/tarantool-fedora-rawhide-x86_64.cfg
deleted file mode 100644
index 136c221dc86dc3c727e7b058a6981de8cc3c31a6..0000000000000000000000000000000000000000
--- a/extra/rpm/mock/tarantool-fedora-rawhide-x86_64.cfg
+++ /dev/null
@@ -1,40 +0,0 @@
-config_opts['root'] = 'tarantool-fedora-rawhide-x86_64'
-config_opts['target_arch'] = 'x86_64'
-config_opts['legal_host_arches'] = ('x86_64',)
-config_opts['chroot_setup_cmd'] = 'install @buildsys-build scl-utils-build'
-config_opts['dist'] = 'rawhide'  # only useful for --resultdir variable subst
-config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
-config_opts['releasever'] = '21'
-
-config_opts['yum.conf'] = """
-[main]
-cachedir=/var/cache/yum
-debuglevel=1
-reposdir=/dev/null
-logfile=/var/log/yum.log
-retries=20
-obsoletes=1
-gpgcheck=0
-assumeyes=1
-syslog_ident=mock
-syslog_device=
-
-# repos
-
-[fedora]
-name=fedora
-metalink=https://mirrors.fedoraproject.org/metalink?repo=rawhide&arch=$basearch
-failovermethod=priority
-
-[local]
-name=local
-baseurl=http://kojipkgs.fedoraproject.org/repos/rawhide/latest/x86_64/
-cost=2000
-enabled=0
-
-[debug]
-name=Fedora Rawhide - x86_64 - Debug
-failovermethod=priority
-metalink=https://mirrors.fedoraproject.org/metalink?repo=rawhide-debug&arch=$basearch
-enabled=0
-"""
diff --git a/extra/rpm/tarantool-scl.rpm.spec b/extra/rpm/tarantool-scl.rpm.spec
deleted file mode 100644
index 0c8255ff3b6682a619119a7428ed48b5aaf9a9ed..0000000000000000000000000000000000000000
--- a/extra/rpm/tarantool-scl.rpm.spec
+++ /dev/null
@@ -1,74 +0,0 @@
-%global scl mailru-16
-
-%define _source_filedigest_algorithm 0
-%define _binary_filedigest_algorithm 0
-
-%global _scl_prefix /opt/tarantool
-%scl_package
-
-BuildRequires: scl-utils-build
-BuildRequires: iso-codes
-
-# Strange bug. Fix according to http://www.jethrocarr.com/2012/05/23/bad-packaging-habits/
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
-Summary: Package that installs %scl Software Collection.
-Name: %scl_name
-Version: 1.0
-Release: 1
-Buildarch: noarch
-License: BSD
-Group: Applications/File
-Requires: %{scl_prefix}tarantool
-Requires: %{scl_prefix}tarantool-dev
-Requires: scl-utils
-
-%description
-This is the main package for %scl_name Software Collection.
-
-%package build
-Summary: Package shipping basic build configuration
-Group: Applications/File
-
-%description build
-Package shipping essential configuration macros to build %scl Software Collection.
-
-%package runtime
-Summary: Package that handles %scl_name Software Collection.
-Group: Applications/File
-Requires: scl-utils
-
-%description runtime
-Package shipping essential configuration macros to build %scl Software Collection.
-
-%prep
-%setup -c -T
-
-%install
-rm -rf %{buildroot}
-mkdir -p %{buildroot}/%{_scl_scripts}/root
-cat > %{buildroot}/%{_scl_scripts}/enable <<\EOF
-export PATH=%{_bindir}${PATH+:${PATH}}
-export MANPATH=%{_mandir}:$MANPATH
-export INFOPATH=%{_infodir}${INFOPATH:+:${INFOPATH}}
-export LD_LIBRARY_PATH=%{_libdir}:\$LD_LIBRARY_PATH
-EOF
-%scl_install
-
-%files
-
-%files build
-%{_root_sysconfdir}/rpm/macros.%{scl}-config
-
-%files runtime
-%if "0%{rhel}" == "07"
-%{_scl_root}/%{_lib}
-%endif
-%scl_files
-
-%changelog
-* Thu Jun 12 2014 Blikh Eugine <bigbes@gmail.com> 1.0-2
-- Port to 1.6 from 1.5
-* Fri Jun 06 2014 Blikh Eugine <bigbes@gmail.com> 1.0-1
-- Initial release
-- Initscripts are broken.