-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debian package fix lintian errors #437
Open
yurtpage
wants to merge
18
commits into
altlinux:master
Choose a base branch
from
yurtpage:deb
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
841004c
README.md: fix formatting
yurtpage cef4c0f
README.md: add the description and move the screenshot to the top
yurtpage 802f1a9
CMakeLists.txt: set cmake_minimum_required to 3.5
yurtpage 04e94b4
.gitignore: ignore debian generated files
yurtpage ca7f992
.gitignore: ignore generated object files
yurtpage a91d0b1
debian: set email for debian package maintainer
yurtpage c8a9788
debian: use ${shlibs:Depends} to automatically generate the list of d…
yurtpage a948cf3
debian/copyright: fix
yurtpage fc35e37
debian: use debhelper-compat level 11 instead of compat file
yurtpage 89dca1e
debian/rules: remove --buildsystem=cmake since we updated compat
yurtpage d626d2b
debian: add missing source format
yurtpage efe1797
debian: control: set section to admin
yurtpage 8b82242
debian: control: extend description
yurtpage 2da5fdc
debian/changelog: add a new release
yurtpage 6dcc524
debian/control: add Vcs-Git
yurtpage 468dcc8
CMakeLists.txt: Use BUILD_TESTING instead of ADMC_BUILD_DEB
yurtpage a84bed2
README.md split long line
yurtpage 7eb5b5f
debian/control: add Bugs
yurtpage File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 3.0) | ||
cmake_minimum_required(VERSION 3.5) | ||
|
||
set(CMAKE_CXX_STANDARD 11) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
|
@@ -64,10 +64,12 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/CHANGELOG_ru.txt | |
|
||
if (ADMC_BUILD_DEB) | ||
SET(CPACK_GENERATOR "DEB") | ||
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Kees van Vloten") | ||
SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Kees van Vloten <[email protected]>") | ||
SET(CPACK_DEBIAN_PACKAGE_PRIORITY "optional") | ||
SET(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) | ||
SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Samba domain management console.") | ||
SET(CPACK_DEBIAN_PACKAGE_DESCRIPTION "The ADMC is an integrated complex tool that implements | ||
User and Computers and Group Policy Manager modules of | ||
Microsoft Remote Server Administration Tools (RSAT).") | ||
SET(CPACK_DEBIAN_PACKAGE_HOMEPAGE "https://github.com/altlinux/admc") | ||
set(CPACK_STRIP_FILES "${CMAKE_INSTALL_LIBDIR}/libadldap.so;${CMAKE_INSTALL_BINDIR}/admc") | ||
INCLUDE(CPack) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
admc (0.16.3) UNRELEASED; urgency=medium | ||
|
||
* Fix crashes after OU/user creation attempts by users with corresponding | ||
delegated rights. | ||
|
||
-- Semyon Knyazev <[email protected]> Wed, 15 May 2024 00:00:00 +0000 | ||
|
||
admc (0.5.2) UNRELEASED; urgency=medium | ||
|
||
* Initial release. | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
Source: admc | ||
Maintainer: Kees van Vloten | ||
Section: misc | ||
Maintainer: Kees van Vloten <[email protected]> | ||
Section: admin | ||
Priority: optional | ||
Rules-Requires-Root: no | ||
Standards-Version: 3.9.2 | ||
Build-Depends: debhelper (>= 9), cmake, qtbase5-dev, libqt5help5, qttools5-dev, libldap2-dev, pkg-config, samba-dev (>=4.9), libsmbclient-dev, libkrb5-dev, libglib2.0-dev, libsasl2-dev | ||
Build-Depends: debhelper-compat (= 11), debhelper (>= 11), cmake, qtbase5-dev, libqt5help5, qttools5-dev, libldap2-dev, pkgconf, samba-dev (>=4.9), libsmbclient-dev, libkrb5-dev, libglib2.0-dev, libsasl2-dev | ||
|
||
Package: admc | ||
Architecture: any | ||
Depends: libldap-2.4-2, libsasl2-2, libsmbclient (>=4.9), libuuid1 (>= 2.33), libqt5help5 (>= 5.11), libkrb5-3 (>= 1.17) | ||
Description: Samba domain management console. | ||
Samba domain management console. | ||
Depends: ${misc:Depends}, ${shlibs:Depends}, libsasl2-2, libqt5help5 (>= 5.11) | ||
Description: Active Directory Management Center (ADMC) | ||
The ADMC is an integrated complex tool that implements | ||
User and Computers and Group Policy Manager modules of | ||
Microsoft Remote Server Administration Tools (RSAT). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
|
||
Files: * | ||
Copyright: 2020-2024 BaseALT Ltd. | ||
2020-2024 Dmitry Degtyarev | ||
License: GPL-3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the purpose of modifying the
README.md
file in a pull request that specifically addresses Debian packaging? The changes toREADME.md
are unrelated to the purpose of this pull request, please consider removing them and submitting a separate pull request for those changes if you still wish to update the file."