Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uffd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
thies
uffd
Compare revisions
master to 43c09a8cf2ced26571e3754aacd8c1dec5bff1fc
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
thies/uffd
Select target project
No results found
43c09a8cf2ced26571e3754aacd8c1dec5bff1fc
Select Git revision
Branches
Dockerfile
consistent_strings
feature_invite_validuntil_minmax
incremental-sync
master
pw-autocomplete-off
pylint_disable_consider-using-f-string
qol_edits
redis-rate-limits
roles-recursive-cte
test_instance_path
typehints
v1.0.x
v1.1.x
v1.2.x
v1.x.x
Tags
v0.1.2
v0.1.4
v0.1.5
v0.2.0
v0.3.0
v1.0.0
v1.0.1
v1.0.2
v1.1.0
v1.1.1
v1.1.2
v1.2.0
v2.0.0
v2.0.1
v2.1.0
v2.2.0
32 results
Swap
Target
uffd/uffd
Select target project
uffd/uffd
rixx/uffd
thies/uffd
leona/uffd
strifel/uffd
thies/uffd-2
6 results
master
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source
1
package uffd for apt
· 43c09a8c
nd
authored
Jul 30, 2021
43c09a8c
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+17
-0
17 additions, 0 deletions
.gitlab-ci.yml
debian/changelog
+5
-0
5 additions, 0 deletions
debian/changelog
debian/control
+19
-0
19 additions, 0 deletions
debian/control
debian/rules
+7
-0
7 additions, 0 deletions
debian/rules
with
48 additions
and
0 deletions
.gitlab-ci.yml
View file @
43c09a8c
...
...
@@ -81,3 +81,20 @@ publish-pip:
-
TWINE_USERNAME="${PYPI_USERNAME}" TWINE_PASSWORD="${PYPI_PASSWORD}" python3 -m twine upload dist/*
rules
:
-
if
:
'
$CI_COMMIT_TAG
=~
/v[0-9]+[.][0-9]+[.][0-9]+.*/'
publish-apt
:
stage
:
deploy
script
:
-
apt update
-
apt-get install -y python3-all debhelper python3-pip git-buildpackage
-
export PYBUILD_INSTALL_ARGS="--install-lib=/usr/share/uffd/ --install-scripts=/usr/share/uffd/"
-
gbp dch --ignore-branch --debian-tag=v%\(version\)s
-
dpkg-buildpackage -us -uc
-
mkdir build
-
mv ../*.deb build/
artifacts
:
paths
:
-
build/*
-
debian/changelog
rules
:
-
if
:
'
$CI_COMMIT_TAG
=~
/v[0-9]+[.][0-9]+[.][0-9]+.*/'
This diff is collapsed.
Click to expand it.
debian/changelog
0 → 100644
View file @
43c09a8c
uffd (0.1.2) unstable; urgency=medium
* Initial release.
-- Andreas Valder <nd@cccv.de> Fri, 31 Jul 2021 23:02:31 +0200
This diff is collapsed.
Click to expand it.
debian/control
0 → 100644
View file @
43c09a8c
Source: uffd
Section: python
Priority: optional
Maintainer: CCCV <it@cccv.de>
Build-Depends:
debhelper-compat (= 12),
dh-python,
python3-all,
python3-setuptools,
Standards-Version: 4.5.0
Homepage: https://git.cccv.de/uffd/uffd
Vcs-Git: https://git.cccv.de/uffd/uffd.git
Package: uffd
Architecture: any
Depends:
${misc:Depends},
${python3:Depends},
Description: UserFerwaltungsFrontend: Ldap based single sign on and user management web software
This diff is collapsed.
Click to expand it.
debian/rules
0 → 100755
View file @
43c09a8c
#!/usr/bin/make -f
export DH_VERBOSE = 1
export PYBUILD_NAME=uffd
%:
dh $@ --with python3 --buildsystem pybuild
This diff is collapsed.
Click to expand it.