Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
2a3dae11
Commit
2a3dae11
authored
Oct 23, 2021
by
Alexey Bychko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-22522 RPM packages have meaningless summary/description
added summary/description per package.
parent
9dc05f1f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
6 deletions
+67
-6
cmake/cpack_rpm.cmake
cmake/cpack_rpm.cmake
+67
-6
No files found.
cmake/cpack_rpm.cmake
View file @
2a3dae11
...
...
@@ -48,21 +48,82 @@ SET(CPACK_RPM_PACKAGE_RELOCATABLE FALSE)
SET
(
CPACK_PACKAGE_RELOCATABLE FALSE
)
SET
(
CPACK_RPM_PACKAGE_GROUP
"Applications/Databases"
)
SET
(
CPACK_RPM_PACKAGE_URL
${
CPACK_PACKAGE_URL
}
)
SET
(
CPACK_RPM_PACKAGE_DESCRIPTION
"
${
CPACK_PACKAGE_DESCRIPTION
}
"
)
SET
(
CPACK_RPM_shared_PACKAGE_VENDOR
"MariaDB Corporation Ab"
)
SET
(
CPACK_RPM_shared_PACKAGE_LICENSE
"LGPLv2.1"
)
SET
(
CPACK_RPM_shared_PACKAGE_SUMMARY
"LGPL MariaDB client library"
)
SET
(
CPACK_RPM_shared_PACKAGE_DESCRIPTION
"
This is LGPL MariaDB client library that can be used to connect to MySQL
# Set default description for packages
SET
(
CPACK_RPM_PACKAGE_DESCRIPTION
"MariaDB: a very fast and robust SQL database server
It is GPL v2 licensed, which means you can use the it free of charge under the
conditions of the GNU General Public License Version 2 (http://www.gnu.org/licenses/).
MariaDB documentation can be found at https://mariadb.com/kb
MariaDB bug reports should be submitted through https://jira.mariadb.org"
)
# Packages with default description
SET
(
CPACK_RPM_client_PACKAGE_SUMMARY
"MariaDB database client binaries"
)
SET
(
CPACK_RPM_common_PACKAGE_SUMMARY
"MariaDB database common files (e.g. /etc/mysql/conf.d/mariadb.cnf)"
)
SET
(
CPACK_RPM_compat_PACKAGE_SUMMARY
"MariaDB database client library MySQL compat package"
)
SET
(
CPACK_RPM_devel_PACKAGE_SUMMARY
"MariaDB database development files"
)
SET
(
CPACK_RPM_server_PACKAGE_SUMMARY
"MariaDB database server binaries"
)
SET
(
CPACK_RPM_test_PACKAGE_SUMMARY
"MariaDB database regression test suite"
)
# libmariadb3
SET
(
CPACK_RPM_shared_PACKAGE_SUMMARY
"LGPL MariaDB database client library"
)
SET
(
CPACK_RPM_shared_PACKAGE_DESCRIPTION
"This is LGPL MariaDB client library that can be used to connect to MySQL
or MariaDB.
This code is based on the LGPL libmysql client library from MySQL 3.23
and PHP's mysqlnd extension.
This product includes PHP software, freely available from
<http://www.php.net/software/>
"
)
http://www.php.net/software/"
)
# Summary and descriptions per package
SET
(
CPACK_RPM_backup_PACKAGE_SUMMARY
"Backup tool for MariaDB server"
)
SET
(
CPACK_RPM_backup_PACKAGE_DESCRIPTION
"Mariabackup is an open source tool provided by MariaDB
for performing physical online backups of InnoDB, Aria and MyISAM tables.
For InnoDB, “hot online” backups are possible.
It was originally forked from Percona XtraBackup 2.3.8."
)
SET
(
CPACK_RPM_cassandra-engine_PACKAGE_SUMMARY
"Cassandra storage engine for MariaDB"
)
SET
(
CPACK_RPM_cassandra-engine_PACKAGE_DESCRIPTION
"The Cassandra Storage Engine allows access to data in a Cassandra cluster from
MariaDB, combining the best of SQL and no-SQL worlds. Cassandra SE (storage
engine) makes Cassandra's column family appear as a table in MariaDB that you
can insert to, update, and select from. You can write joins against this table,
it is possible to join data that's stored in MariaDB with data that's stored in
Cassandra."
)
SET
(
CPACK_RPM_connect-engine_PACKAGE_SUMMARY
"Connect storage engine for MariaDB"
)
SET
(
CPACK_RPM_connect-engine_PACKAGE_DESCRIPTION
"Connect engine supports a number of file formats (dbf, xml, txt, bin, etc),
connections to ODBC tables and remote MySQL tables, as well as a number of
other interesting features."
)
SET
(
CPACK_RPM_cracklib-password-check_PACKAGE_SUMMARY
"CrackLib Password Validation Plugin for MariaDB"
)
SET
(
CPACK_RPM_cracklib-password-check_PACKAGE_DESCRIPTION
"This password validation plugin uses cracklib to allow only
sufficiently secure (as defined by cracklib) user passwords in MariaDB."
)
SET
(
CPACK_RPM_gssapi-server_PACKAGE_SUMMARY
"GSSAPI authentication plugin for MariaDB server"
)
SET
(
CPACK_RPM_gssapi-server_PACKAGE_DESCRIPTION
"The gssapi authentication plugin allows the user to authenticate with services
that use the Generic Security Services Application Program Interface (GSSAPI).
The gssapi authentication plugin is most often used for authenticating with Microsoft Active Directory."
)
SET
(
CPACK_RPM_oqgraph-engine_PACKAGE_SUMMARY
"OQGraph storage engine for MariaDB"
)
SET
(
CPACK_RPM_oqgraph-engine_PACKAGE_DESCRIPTION
"The Open Query GRAPH computation engine, or OQGRAPH as the engine itself is called,
allows you to handle hierarchies (tree structures) and complex graphs
(nodes having many connections in several directions).
It is intended to be used for retrieving hierarchical information, such as those used for graphs,
routes or social relationships, in plain SQL."
)
SET
(
CPACK_RPM_rocksdb-engine_PACKAGE_SUMMARY
"RocksDB storage engine for MariaDB"
)
SET
(
CPACK_RPM_rocksdb-engine_PACKAGE_DESCRIPTION
"The RocksDB storage engine is a high performance storage engine, aimed
at maximising storage efficiency while maintaining InnoDB-like performance."
)
SET
(
CPACK_RPM_tokudb-engine_PACKAGE_SUMMARY
"TokuDB storage engine for MariaDB"
)
SET
(
CPACK_RPM_tokudb-engine_PACKAGE_DESCRIPTION
"The TokuDB storage engine is for use in high-performance and write-intensive
environments, offering increased compression and better performance based
on fractal indexes."
)
SET
(
CPACK_RPM_SPEC_MORE_DEFINE
"
%define mysql_vendor
${
CPACK_PACKAGE_VENDOR
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment