Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
package-helpers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kevin
package-helpers
Commits
c1299029
Commit
c1299029
authored
10 years ago
by
Ruben Rodriguez
Browse files
Options
Downloads
Patches
Plain Diff
Updated software-properties helper
parent
2f846806
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
helpers/make-software-properties
+16
-10
16 additions, 10 deletions
helpers/make-software-properties
with
16 additions
and
10 deletions
helpers/make-software-properties
+
16
−
10
View file @
c1299029
...
...
@@ -18,31 +18,35 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
VERSION=
1
VERSION=
3
. ./config
cat << EOF | patch -p1
--- software-properties-0.76.7/softwareproperties/SoftwareProperties.py 2010-09-20 13:52:10.000000000 +0100
+++ software-properties-0.76.7-2/softwareproperties/SoftwareProperties.py 2011-04-17 02:49:49.000000000 +0100
@@ -644,7 +644,14 @@
Add a source with the given apt line and auto-add
signing key if we have it in the whitelist
--- source.orig/softwareproperties/SoftwareProperties.py 2014-04-14 17:10:58.000000000 +0200
+++ source/softwareproperties/SoftwareProperties.py 2014-05-18 03:02:05.309290804 +0200
@@ -724,7 +724,15 @@
site is in whitelist or the shortcut implementer adds it.
"""
- (deb_line, file) = expand_ppa_line(line.strip(), self.distro.codename)
- (deb_line, file) = shortcut.expand(codename=self.distro.codename)
+ codenames = {}
+ codenames["belenos"] = "trusty"
+ codenames["toutatis"] = "precise"
+ codenames["brigantia"] = "oneiric"
+ codenames["dagda"] = "natty"
+ codenames["slaine"] = "maverick"
+ codenames["taranis"] = "lucid"
+ codenames["awen"] = "karmic"
+ (deb_line, file) =
expand_ppa_line(line.strip(),
codenames[self.distro.codename])
+ (deb_line, file) =
shortcut.expand(codename=
codenames[self.distro.codename])
deb_line = self.expand_http_line(deb_line)
debsrc_
lin
e = 'deb-src'
+ deb_line[3:]
new_deb_entry = SourceEntry(
deb_line
, file)
debsrc_
entry_typ
e = 'deb-src'
if enable_source_code else '# deb-src'
debsrc_line = debsrc_entry_type +
deb_line
[3:]
EOF
sed '/UbuntuDrivers/d' -i softwareproperties/gtk/SoftwarePropertiesGtk.py
sed '/vbox_drivers/,+1 s/True/False/' -i data/gtkbuilder/main.ui
replace Kubuntu Triskel .
replace Ubuntu Trisquel .
replace ftpmaster@ubuntu.com trisquel-devel@listas.trisquel.info .
...
...
@@ -50,6 +54,8 @@ replace cdimage@ubuntu.com trisquel-devel@listas.trisquel.info .
replace TrisquelDistribution UbuntuDistribution .
sed '/NoDisplay/d; s/Trisquel/Ubuntu/' -i data/software-properties-gtk.desktop.in
sed '/ubuntu-drivers-common/d' -i debian/control
changelog "Adapted for Trisquel codenames"
compile
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment